library(readxl)
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.0     ✔ stringr   1.5.1
## ✔ ggplot2   3.5.1     ✔ tibble    3.2.1
## ✔ lubridate 1.9.3     ✔ tidyr     1.3.1
## ✔ purrr     1.0.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Training <- read_excel("C:/Users/celin/OneDrive/Desktop/Applied Quant Class/Training.xls")
head(Training)
## # A tibble: 6 × 10
##   County  `Provider\nName`              `Program\nName`   All Students (7/1/20…¹
##   <chr>   <chr>                         <chr>             <chr>                 
## 1 El Paso Academy School of Careers Inc Bilingual Electr… 0                     
## 2 El Paso Academy School of Careers Inc Bookkeeping/Acco… 0                     
## 3 El Paso Academy School of Careers Inc Computer Support… 0                     
## 4 El Paso Academy School of Careers Inc Plumbing as a Me… 0                     
## 5 El Paso Academy School of Careers Inc Truck Driving     38                    
## 6 El Paso Academy School of Careers Inc Truck Driver's H… 0                     
## # ℹ abbreviated name: ¹​`All Students (7/1/2018 - 6/30/2022)`
## # ℹ 6 more variables: `All Student Exiters (7/1/2018 - 6/30/2022)` <chr>,
## #   `All Students Successfully Completed Program(7/1/2018 - 6/30/2022)` <chr>,
## #   `All Students Percent Successfully Completed` <chr>,
## #   `Percent Received Credential` <chr>, `Received Credential` <chr>,
## #   `Note: Apprenticeship program  *` <lgl>
summary(Training$`All Students Successfully Completed Program(7/1/2018 - 6/30/2022)`)
##    Length     Class      Mode 
##      5899 character character
data.frame(Training)
##            County
## 1         El Paso
## 2         El Paso
## 3         El Paso
## 4         El Paso
## 5         El Paso
## 6         El Paso
## 7           Bexar
## 8           Bexar
## 9           Bexar
## 10          Bexar
## 11          Bexar
## 12          Bexar
## 13          Bexar
## 14          Bexar
## 15          Bexar
## 16          Bexar
## 17          Bexar
## 18          Bexar
## 19          Bexar
## 20          Bexar
## 21          Bexar
## 22          Bexar
## 23          Bexar
## 24          Bexar
## 25          Bexar
## 26          Bexar
## 27          Bexar
## 28          Bexar
## 29          Bexar
## 30          Bexar
## 31          Bexar
## 32          Bexar
## 33          Bexar
## 34          Bexar
## 35          Bexar
## 36          Bexar
## 37          Bexar
## 38          Bexar
## 39          Bexar
## 40          Bexar
## 41          Bexar
## 42          Bexar
## 43          Bexar
## 44          Bexar
## 45          Bexar
## 46          Bexar
## 47          Bexar
## 48          Bexar
## 49          Bexar
## 50          Bexar
## 51          Bexar
## 52          Bexar
## 53          Bexar
## 54          Bexar
## 55          Bexar
## 56          Bexar
## 57          Bexar
## 58          Bexar
## 59          Bexar
## 60          Bexar
## 61          Bexar
## 62          Bexar
## 63          Bexar
## 64          Bexar
## 65          Bexar
## 66          Bexar
## 67          Bexar
## 68          Bexar
## 69          Bexar
## 70          Bexar
## 71          Bexar
## 72          Bexar
## 73          Bexar
## 74          Bexar
## 75          Bexar
## 76          Bexar
## 77          Bexar
## 78          Bexar
## 79          Bexar
## 80          Bexar
## 81          Bexar
## 82          Bexar
## 83          Bexar
## 84          Bexar
## 85          Bexar
## 86          Bexar
## 87          Bexar
## 88          Bexar
## 89          Bexar
## 90          Bexar
## 91          Bexar
## 92          Bexar
## 93          Bexar
## 94          Bexar
## 95          Bexar
## 96          Bexar
## 97          Bexar
## 98          Bexar
## 99          Bexar
## 100         Bexar
## 101         Bexar
## 102         Bexar
## 103         Bexar
## 104         Bexar
## 105         Bexar
## 106         Bexar
## 107         Bexar
## 108         Bexar
## 109         Bexar
## 110         Bexar
## 111         Bexar
## 112         Bexar
## 113        Taylor
## 114         Bexar
## 115         Bexar
## 116         Bexar
## 117         Bexar
## 118         Bexar
## 119         Bexar
## 120         Bexar
## 121         Bexar
## 122         Bexar
## 123         Bexar
## 124         Bexar
## 125         Bexar
## 126         Bexar
## 127         Bexar
## 128         Bexar
## 129         Bexar
## 130         Bexar
## 131         Bexar
## 132         Bexar
## 133         Bexar
## 134         Bexar
## 135         Bexar
## 136         Bexar
## 137         Bexar
## 138         Bexar
## 139         Bexar
## 140         Bexar
## 141         Bexar
## 142         Bexar
## 143         Bexar
## 144         Bexar
## 145         Bexar
## 146         Bexar
## 147         Bexar
## 148         Bexar
## 149         Bexar
## 150         Bexar
## 151         Bexar
## 152         Bexar
## 153         Bexar
## 154         Bexar
## 155         Bexar
## 156         Bexar
## 157         Bexar
## 158         Bexar
## 159         Bexar
## 160         Bexar
## 161         Bexar
## 162         Bexar
## 163         Bexar
## 164         Bexar
## 165         Bexar
## 166         Bexar
## 167         Bexar
## 168         Bexar
## 169         Bexar
## 170         Bexar
## 171         Bexar
## 172         Bexar
## 173         Bexar
## 174         Bexar
## 175         Bexar
## 176         Bexar
## 177         Bexar
## 178         Bexar
## 179         Bexar
## 180         Bexar
## 181         Bexar
## 182         Bexar
## 183         Bexar
## 184         Bexar
## 185         Bexar
## 186         Bexar
## 187         Bexar
## 188         Bexar
## 189         Bexar
## 190         Bexar
## 191         Bexar
## 192         Bexar
## 193         Bexar
## 194         Bexar
## 195         Bexar
## 196         Bexar
## 197         Bexar
## 198       Cameron
## 199        Dallas
## 200        Dallas
## 201        Dallas
## 202        Dallas
## 203        Dallas
## 204        Dallas
## 205        Dallas
## 206        Dallas
## 207        Dallas
## 208        Dallas
## 209        Dallas
## 210        Dallas
## 211        Dallas
## 212        Dallas
## 213        Dallas
## 214        Dallas
## 215        Dallas
## 216        Dallas
## 217        Dallas
## 218        Dallas
## 219        Dallas
## 220        Dallas
## 221        Dallas
## 222        Dallas
## 223        Dallas
## 224        Dallas
## 225        Dallas
## 226        Dallas
## 227        Dallas
## 228      Brazoria
## 229      Brazoria
## 230      Brazoria
## 231      Brazoria
## 232      Brazoria
## 233      Brazoria
## 234      Brazoria
## 235      Brazoria
## 236      Brazoria
## 237      Brazoria
## 238      Brazoria
## 239      Brazoria
## 240      Brazoria
## 241      Brazoria
## 242        Potter
## 243        Potter
## 244        Potter
## 245        Potter
## 246        Potter
## 247        Potter
## 248        Potter
## 249        Potter
## 250        Potter
## 251        Potter
## 252        Potter
## 253        Potter
## 254        Potter
## 255        Potter
## 256        Potter
## 257        Potter
## 258        Potter
## 259        Potter
## 260        Potter
## 261        Potter
## 262        Potter
## 263        Potter
## 264        Potter
## 265        Potter
## 266        Potter
## 267        Potter
## 268        Potter
## 269        Potter
## 270        Potter
## 271        Potter
## 272        Potter
## 273        Potter
## 274        Potter
## 275        Potter
## 276        Potter
## 277        Potter
## 278        Potter
## 279        Potter
## 280        Potter
## 281        Potter
## 282        Potter
## 283        Potter
## 284        Potter
## 285        Potter
## 286        Potter
## 287        Potter
## 288        Potter
## 289        Potter
## 290        Potter
## 291        Potter
## 292        Potter
## 293        Potter
## 294        Potter
## 295        Potter
## 296        Potter
## 297        Potter
## 298        Potter
## 299        Potter
## 300        Potter
## 301        Potter
## 302        Potter
## 303        Potter
## 304        Potter
## 305        Potter
## 306        Potter
## 307        Potter
## 308        Potter
## 309        Potter
## 310        Potter
## 311      Angelina
## 312      Angelina
## 313      Angelina
## 314      Angelina
## 315      Angelina
## 316      Angelina
## 317      Angelina
## 318      Angelina
## 319      Angelina
## 320      Angelina
## 321      Angelina
## 322      Angelina
## 323      Angelina
## 324      Angelina
## 325      Angelina
## 326      Angelina
## 327      Angelina
## 328      Angelina
## 329      Angelina
## 330      Angelina
## 331      Angelina
## 332      Angelina
## 333      Angelina
## 334      Angelina
## 335      Angelina
## 336      Angelina
## 337      Angelina
## 338      Angelina
## 339      Angelina
## 340      Angelina
## 341      Angelina
## 342      Angelina
## 343      Angelina
## 344      Angelina
## 345      Angelina
## 346      Angelina
## 347      Angelina
## 348      Angelina
## 349      Angelina
## 350      Angelina
## 351      Angelina
## 352      Angelina
## 353      Angelina
## 354      Angelina
## 355      Angelina
## 356      Angelina
## 357      Angelina
## 358      Angelina
## 359      Angelina
## 360      Angelina
## 361      Angelina
## 362      Angelina
## 363      Angelina
## 364      Angelina
## 365      Angelina
## 366      Angelina
## 367      Angelina
## 368      Angelina
## 369      Angelina
## 370      Angelina
## 371      Angelina
## 372      Angelina
## 373      Angelina
## 374      Angelina
## 375      Angelina
## 376      Angelina
## 377      Angelina
## 378     Tom Green
## 379        Harris
## 380        Harris
## 381        Harris
## 382       Tarrant
## 383       Tarrant
## 384       Tarrant
## 385       Tarrant
## 386       Tarrant
## 387       Tarrant
## 388       Tarrant
## 389        Dallas
## 390        Dallas
## 391        Dallas
## 392        Dallas
## 393        Dallas
## 394        Dallas
## 395        Dallas
## 396        Dallas
## 397        Dallas
## 398        Dallas
## 399        Dallas
## 400        Dallas
## 401        Dallas
## 402      Mclennan
## 403      Mclennan
## 404      Mclennan
## 405        Travis
## 406        Travis
## 407        Travis
## 408        Travis
## 409        Travis
## 410        Travis
## 411        Travis
## 412        Travis
## 413        Travis
## 414        Travis
## 415        Travis
## 416        Travis
## 417        Travis
## 418        Travis
## 419        Travis
## 420        Travis
## 421        Travis
## 422        Travis
## 423        Travis
## 424        Travis
## 425        Travis
## 426        Travis
## 427        Travis
## 428        Travis
## 429        Travis
## 430        Travis
## 431        Travis
## 432        Travis
## 433        Travis
## 434        Travis
## 435        Travis
## 436        Travis
## 437        Travis
## 438        Travis
## 439        Travis
## 440        Travis
## 441        Travis
## 442        Travis
## 443        Travis
## 444        Travis
## 445        Travis
## 446        Travis
## 447        Travis
## 448        Travis
## 449        Travis
## 450        Travis
## 451        Travis
## 452        Travis
## 453        Travis
## 454        Travis
## 455        Travis
## 456        Travis
## 457        Travis
## 458        Travis
## 459        Travis
## 460        Travis
## 461        Travis
## 462        Travis
## 463        Travis
## 464        Travis
## 465        Travis
## 466        Travis
## 467        Travis
## 468        Travis
## 469        Travis
## 470        Travis
## 471        Travis
## 472        Travis
## 473        Travis
## 474        Travis
## 475        Travis
## 476        Travis
## 477        Travis
## 478        Travis
## 479        Travis
## 480        Travis
## 481        Travis
## 482        Travis
## 483        Travis
## 484        Travis
## 485        Travis
## 486        Travis
## 487        Travis
## 488        Travis
## 489        Travis
## 490        Travis
## 491        Travis
## 492        Travis
## 493        Travis
## 494        Travis
## 495        Travis
## 496        Travis
## 497        Travis
## 498        Travis
## 499        Travis
## 500        Travis
## 501        Travis
## 502        Travis
## 503        Travis
## 504        Travis
## 505        Travis
## 506        Travis
## 507        Travis
## 508        Travis
## 509        Travis
## 510        Travis
## 511        Travis
## 512        Travis
## 513        Travis
## 514        Travis
## 515        Travis
## 516        Travis
## 517        Travis
## 518        Travis
## 519        Travis
## 520        Travis
## 521        Travis
## 522        Travis
## 523        Travis
## 524        Travis
## 525        Travis
## 526        Travis
## 527        Travis
## 528        Travis
## 529        Travis
## 530        Travis
## 531        Travis
## 532        Travis
## 533        Travis
## 534        Travis
## 535        Travis
## 536        Travis
## 537        Travis
## 538        Travis
## 539        Travis
## 540        Travis
## 541        Travis
## 542        Travis
## 543        Travis
## 544        Travis
## 545        Travis
## 546        Travis
## 547        Travis
## 548        Travis
## 549        Travis
## 550        Travis
## 551        Travis
## 552        Travis
## 553        Travis
## 554        Travis
## 555        Travis
## 556        Travis
## 557        Travis
## 558     Tom Green
## 559        Harris
## 560        Harris
## 561        Harris
## 562        Brazos
## 563    Washington
## 564    Washington
## 565    Washington
## 566    Washington
## 567    Washington
## 568    Washington
## 569    Washington
## 570    Washington
## 571    Washington
## 572    Washington
## 573    Washington
## 574    Washington
## 575    Washington
## 576    Washington
## 577    Washington
## 578    Washington
## 579    Washington
## 580    Washington
## 581    Washington
## 582    Washington
## 583    Washington
## 584    Washington
## 585    Washington
## 586    Washington
## 587    Washington
## 588    Washington
## 589    Washington
## 590    Washington
## 591    Washington
## 592    Washington
## 593    Washington
## 594    Washington
## 595    Washington
## 596    Washington
## 597    Washington
## 598    Washington
## 599    Washington
## 600    Washington
## 601      Brazoria
## 602      Brazoria
## 603      Brazoria
## 604      Brazoria
## 605      Brazoria
## 606      Brazoria
## 607      Brazoria
## 608      Brazoria
## 609      Brazoria
## 610      Brazoria
## 611      Brazoria
## 612      Brazoria
## 613      Brazoria
## 614      Brazoria
## 615      Brazoria
## 616      Brazoria
## 617      Brazoria
## 618       Tarrant
## 619       Cameron
## 620       Cameron
## 621       Cameron
## 622       Cameron
## 623       Cameron
## 624       Cameron
## 625       Cameron
## 626        Dallas
## 627        Dallas
## 628        Dallas
## 629        Dallas
## 630        Dallas
## 631       Hidalgo
## 632       Hidalgo
## 633       Hidalgo
## 634       Hidalgo
## 635       Hidalgo
## 636       Hidalgo
## 637       Tarrant
## 638       Tarrant
## 639       Tarrant
## 640       Tarrant
## 641       Tarrant
## 642       Tarrant
## 643       Tarrant
## 644       Tarrant
## 645       Tarrant
## 646       Tarrant
## 647       Tarrant
## 648       Tarrant
## 649        Harris
## 650        Dallas
## 651        Dallas
## 652        Dallas
## 653        Dallas
## 654        Dallas
## 655        Dallas
## 656       El Paso
## 657       El Paso
## 658        Travis
## 659          Bell
## 660          Bell
## 661          Bell
## 662          Bell
## 663          Bell
## 664          Bell
## 665          Bell
## 666          Bell
## 667          Bell
## 668          Bell
## 669          Bell
## 670          Bell
## 671          Bell
## 672          Bell
## 673          Bell
## 674          Bell
## 675          Bell
## 676          Bell
## 677        Travis
## 678        Travis
## 679      Eastland
## 680      Eastland
## 681      Eastland
## 682      Eastland
## 683      Eastland
## 684      Eastland
## 685      Eastland
## 686      Eastland
## 687      Eastland
## 688      Eastland
## 689      Eastland
## 690      Eastland
## 691      Eastland
## 692      Eastland
## 693      Eastland
## 694      Eastland
## 695      Eastland
## 696      Eastland
## 697     Childress
## 698     Childress
## 699     Childress
## 700     Childress
## 701     Childress
## 702     Childress
## 703     Childress
## 704     Childress
## 705     Childress
## 706     Childress
## 707     Childress
## 708     Childress
## 709     Childress
## 710     Childress
## 711     Childress
## 712     Childress
## 713     Childress
## 714     Childress
## 715     Childress
## 716     Childress
## 717     Childress
## 718     Childress
## 719     Childress
## 720     Childress
## 721     Childress
## 722     Childress
## 723     Childress
## 724     Childress
## 725     Childress
## 726     Childress
## 727     Childress
## 728     Childress
## 729     Childress
## 730     Childress
## 731     Childress
## 732     Childress
## 733     Childress
## 734     Childress
## 735     Childress
## 736     Childress
## 737       Tarrant
## 738       Tarrant
## 739       Tarrant
## 740       Tarrant
## 741       Tarrant
## 742       Tarrant
## 743        DALLAS
## 744        DALLAS
## 745        DALLAS
## 746        DALLAS
## 747        DALLAS
## 748        DALLAS
## 749        DALLAS
## 750        DALLAS
## 751        DALLAS
## 752        DALLAS
## 753        DALLAS
## 754        DALLAS
## 755        DALLAS
## 756        DALLAS
## 757        DALLAS
## 758        DALLAS
## 759        DALLAS
## 760        DALLAS
## 761        DALLAS
## 762        DALLAS
## 763        DALLAS
## 764     JIM WELLS
## 765     JIM WELLS
## 766     JIM WELLS
## 767     JIM WELLS
## 768     JIM WELLS
## 769     JIM WELLS
## 770     JIM WELLS
## 771     JIM WELLS
## 772     JIM WELLS
## 773     JIM WELLS
## 774     JIM WELLS
## 775     JIM WELLS
## 776     JIM WELLS
## 777     JIM WELLS
## 778     JIM WELLS
## 779     JIM WELLS
## 780     JIM WELLS
## 781     JIM WELLS
## 782     JIM WELLS
## 783     JIM WELLS
## 784     JIM WELLS
## 785     JIM WELLS
## 786     JIM WELLS
## 787     JIM WELLS
## 788     JIM WELLS
## 789     JIM WELLS
## 790     JIM WELLS
## 791     JIM WELLS
## 792     JIM WELLS
## 793     JIM WELLS
## 794     JIM WELLS
## 795     JIM WELLS
## 796     JIM WELLS
## 797     JIM WELLS
## 798     JIM WELLS
## 799     JIM WELLS
## 800     JIM WELLS
## 801     JIM WELLS
## 802     JIM WELLS
## 803     JIM WELLS
## 804     JIM WELLS
## 805     JIM WELLS
## 806     JIM WELLS
## 807     JIM WELLS
## 808     JIM WELLS
## 809     JIM WELLS
## 810     JIM WELLS
## 811     JIM WELLS
## 812     JIM WELLS
## 813     JIM WELLS
## 814     JIM WELLS
## 815     JIM WELLS
## 816     JIM WELLS
## 817     JIM WELLS
## 818     JIM WELLS
## 819     JIM WELLS
## 820     JIM WELLS
## 821     JIM WELLS
## 822     JIM WELLS
## 823     JIM WELLS
## 824     JIM WELLS
## 825     JIM WELLS
## 826     JIM WELLS
## 827     JIM WELLS
## 828     JIM WELLS
## 829     JIM WELLS
## 830     JIM WELLS
## 831     JIM WELLS
## 832     JIM WELLS
## 833     JIM WELLS
## 834     JIM WELLS
## 835     JIM WELLS
## 836     JIM WELLS
## 837     JIM WELLS
## 838     JIM WELLS
## 839     JIM WELLS
## 840     JIM WELLS
## 841     JIM WELLS
## 842     JIM WELLS
## 843     JIM WELLS
## 844     JIM WELLS
## 845     JIM WELLS
## 846     JIM WELLS
## 847     JIM WELLS
## 848     JIM WELLS
## 849     JIM WELLS
## 850     JIM WELLS
## 851     JIM WELLS
## 852     JIM WELLS
## 853     JIM WELLS
## 854     JIM WELLS
## 855     JIM WELLS
## 856     JIM WELLS
## 857     JIM WELLS
## 858     JIM WELLS
## 859     JIM WELLS
## 860     JIM WELLS
## 861     JIM WELLS
## 862     JIM WELLS
## 863     JIM WELLS
## 864     JIM WELLS
## 865     JIM WELLS
## 866     JIM WELLS
## 867     JIM WELLS
## 868     JIM WELLS
## 869     JIM WELLS
## 870     JIM WELLS
## 871     JIM WELLS
## 872     JIM WELLS
## 873     JIM WELLS
## 874     JIM WELLS
## 875     JIM WELLS
## 876     JIM WELLS
## 877     JIM WELLS
## 878     JIM WELLS
## 879     JIM WELLS
## 880     JIM WELLS
## 881     JIM WELLS
## 882     JIM WELLS
## 883     JIM WELLS
## 884     JIM WELLS
## 885     JIM WELLS
## 886     JIM WELLS
## 887     JIM WELLS
## 888     JIM WELLS
## 889     JIM WELLS
## 890     JIM WELLS
## 891     JIM WELLS
## 892     JIM WELLS
## 893     JIM WELLS
## 894     JIM WELLS
## 895     JIM WELLS
## 896     JIM WELLS
## 897     JIM WELLS
## 898     JIM WELLS
## 899     JIM WELLS
## 900     JIM WELLS
## 901     JIM WELLS
## 902     JIM WELLS
## 903     JIM WELLS
## 904     JIM WELLS
## 905     JIM WELLS
## 906     JIM WELLS
## 907     JIM WELLS
## 908     JIM WELLS
## 909     JIM WELLS
## 910     JIM WELLS
## 911     JIM WELLS
## 912     JIM WELLS
## 913     JIM WELLS
## 914     JIM WELLS
## 915     JIM WELLS
## 916     JIM WELLS
## 917     JIM WELLS
## 918     JIM WELLS
## 919     JIM WELLS
## 920     JIM WELLS
## 921     JIM WELLS
## 922     JIM WELLS
## 923     JIM WELLS
## 924     JIM WELLS
## 925     JIM WELLS
## 926     JIM WELLS
## 927     JIM WELLS
## 928     JIM WELLS
## 929     JIM WELLS
## 930     JIM WELLS
## 931     JIM WELLS
## 932     JIM WELLS
## 933     JIM WELLS
## 934     JIM WELLS
## 935     JIM WELLS
## 936     JIM WELLS
## 937     JIM WELLS
## 938     JIM WELLS
## 939     JIM WELLS
## 940     JIM WELLS
## 941     JIM WELLS
## 942     JIM WELLS
## 943     JIM WELLS
## 944     JIM WELLS
## 945     JIM WELLS
## 946     JIM WELLS
## 947     JIM WELLS
## 948     JIM WELLS
## 949     JIM WELLS
## 950     JIM WELLS
## 951     JIM WELLS
## 952     JIM WELLS
## 953     JIM WELLS
## 954     JIM WELLS
## 955     JIM WELLS
## 956     JIM WELLS
## 957     JIM WELLS
## 958     JIM WELLS
## 959     JIM WELLS
## 960     JIM WELLS
## 961     JIM WELLS
## 962     JIM WELLS
## 963     JIM WELLS
## 964     JIM WELLS
## 965     JIM WELLS
## 966     JIM WELLS
## 967     JIM WELLS
## 968     JIM WELLS
## 969     JIM WELLS
## 970     JIM WELLS
## 971     JIM WELLS
## 972     JIM WELLS
## 973     JIM WELLS
## 974     JIM WELLS
## 975     JIM WELLS
## 976     JIM WELLS
## 977     JIM WELLS
## 978     JIM WELLS
## 979     JIM WELLS
## 980     JIM WELLS
## 981     JIM WELLS
## 982     JIM WELLS
## 983     JIM WELLS
## 984     JIM WELLS
## 985     JIM WELLS
## 986     JIM WELLS
## 987     JIM WELLS
## 988     JIM WELLS
## 989     JIM WELLS
## 990     JIM WELLS
## 991     JIM WELLS
## 992     JIM WELLS
## 993     JIM WELLS
## 994     JIM WELLS
## 995     JIM WELLS
## 996     JIM WELLS
## 997     JIM WELLS
## 998         BEXAR
## 999         BEXAR
## 1000        BEXAR
## 1001        BEXAR
## 1002        BEXAR
## 1003       Collin
## 1004       Collin
## 1005       Collin
## 1006       Collin
## 1007       Collin
## 1008       Collin
## 1009       Collin
## 1010    Galveston
## 1011    Galveston
## 1012    Galveston
## 1013    Galveston
## 1014    Galveston
## 1015    Galveston
## 1016    Galveston
## 1017    Galveston
## 1018    Galveston
## 1019    Galveston
## 1020    Galveston
## 1021    Galveston
## 1022    Galveston
## 1023    Galveston
## 1024    Galveston
## 1025    Galveston
## 1026    Galveston
## 1027    Galveston
## 1028       Collin
## 1029       Collin
## 1030       Collin
## 1031       Collin
## 1032       Collin
## 1033       Collin
## 1034       Collin
## 1035       Collin
## 1036       Collin
## 1037       Collin
## 1038       Collin
## 1039       Collin
## 1040       Collin
## 1041       Collin
## 1042       Collin
## 1043       Collin
## 1044       Collin
## 1045   Williamson
## 1046       Harris
## 1047      Tarrant
## 1048      Tarrant
## 1049      Tarrant
## 1050      Tarrant
## 1051      Tarrant
## 1052      Tarrant
## 1053      Tarrant
## 1054      Tarrant
## 1055      Tarrant
## 1056      Tarrant
## 1057      Tarrant
## 1058      Tarrant
## 1059      Tarrant
## 1060      Tarrant
## 1061      Tarrant
## 1062      Tarrant
## 1063      Tarrant
## 1064      Tarrant
## 1065      Tarrant
## 1066      Tarrant
## 1067      Tarrant
## 1068      Tarrant
## 1069      Tarrant
## 1070      Tarrant
## 1071      Tarrant
## 1072      Tarrant
## 1073      Tarrant
## 1074      Tarrant
## 1075      Tarrant
## 1076      Tarrant
## 1077      Tarrant
## 1078      Tarrant
## 1079      Tarrant
## 1080      Tarrant
## 1081      Tarrant
## 1082      Tarrant
## 1083      Tarrant
## 1084      Tarrant
## 1085      Tarrant
## 1086      Tarrant
## 1087      Tarrant
## 1088      Tarrant
## 1089      Tarrant
## 1090      Tarrant
## 1091      Tarrant
## 1092      Tarrant
## 1093      Tarrant
## 1094      Tarrant
## 1095        Bexar
## 1096        Bexar
## 1097        Bexar
## 1098        Bexar
## 1099        Bexar
## 1100        Bexar
## 1101        Bexar
## 1102        Bexar
## 1103        Bexar
## 1104        Bexar
## 1105        Bexar
## 1106        Bexar
## 1107        Bexar
## 1108        Bexar
## 1109        Bexar
## 1110        Bexar
## 1111        Bexar
## 1112        Bexar
## 1113        Bexar
## 1114        Bexar
## 1115        Bexar
## 1116       Dallas
## 1117      Lubbock
## 1118      Lubbock
## 1119       Nueces
## 1120       Nueces
## 1121       Nueces
## 1122       Nueces
## 1123       Nueces
## 1124       Nueces
## 1125       Harris
## 1126       Harris
## 1127       Harris
## 1128       Harris
## 1129       Harris
## 1130       Harris
## 1131       Harris
## 1132       Harris
## 1133       Harris
## 1134       Harris
## 1135       Harris
## 1136       Harris
## 1137       Harris
## 1138       Harris
## 1139       Harris
## 1140       Harris
## 1141       Harris
## 1142       Harris
## 1143       Harris
## 1144       Harris
## 1145       Harris
## 1146       Harris
## 1147       Harris
## 1148       Harris
## 1149       Harris
## 1150       Harris
## 1151       Harris
## 1152       Harris
## 1153       Harris
## 1154       Harris
## 1155       Harris
## 1156       Harris
## 1157       Harris
## 1158       Harris
## 1159       Harris
## 1160       Harris
## 1161       Harris
## 1162       Harris
## 1163       Harris
## 1164       Harris
## 1165       Harris
## 1166       Harris
## 1167       Dallas
## 1168       Dallas
## 1169       Dallas
## 1170       Dallas
## 1171       Dallas
## 1172       Dallas
## 1173       Dallas
## 1174       Dallas
## 1175       Dallas
## 1176       Dallas
## 1177       Dallas
## 1178       Dallas
## 1179       Dallas
## 1180       Dallas
## 1181       Dallas
## 1182       Dallas
## 1183       Dallas
## 1184       Dallas
## 1185       Dallas
## 1186       Dallas
## 1187       Dallas
## 1188       Dallas
## 1189       Dallas
## 1190       Dallas
## 1191       Dallas
## 1192       Dallas
## 1193       Dallas
## 1194       Dallas
## 1195       Dallas
## 1196       Dallas
## 1197       Dallas
## 1198       Dallas
## 1199       Dallas
## 1200       Dallas
## 1201       Dallas
## 1202       Dallas
## 1203       Dallas
## 1204       Dallas
## 1205       Dallas
## 1206       Dallas
## 1207       Dallas
## 1208       Dallas
## 1209       Dallas
## 1210       Dallas
## 1211       Dallas
## 1212       Dallas
## 1213       Dallas
## 1214       Dallas
## 1215       Dallas
## 1216       Dallas
## 1217       Dallas
## 1218       Dallas
## 1219       Dallas
## 1220       Dallas
## 1221       Dallas
## 1222       Dallas
## 1223       Dallas
## 1224       Dallas
## 1225       Dallas
## 1226       Dallas
## 1227       Dallas
## 1228       Dallas
## 1229       Dallas
## 1230       Dallas
## 1231       Dallas
## 1232       Dallas
## 1233       Dallas
## 1234       Dallas
## 1235       Dallas
## 1236       Dallas
## 1237       Dallas
## 1238       Dallas
## 1239       Dallas
## 1240       Dallas
## 1241       Dallas
## 1242       Dallas
## 1243       Dallas
## 1244       Dallas
## 1245       Dallas
## 1246       Dallas
## 1247       Dallas
## 1248       Dallas
## 1249       Dallas
## 1250       Dallas
## 1251       Dallas
## 1252       Dallas
## 1253       Dallas
## 1254       Dallas
## 1255       Dallas
## 1256       Dallas
## 1257       Dallas
## 1258       Dallas
## 1259       Dallas
## 1260       Dallas
## 1261       Dallas
## 1262       Dallas
## 1263       Dallas
## 1264       Dallas
## 1265       Dallas
## 1266       Dallas
## 1267       Dallas
## 1268       Dallas
## 1269       Dallas
## 1270       Dallas
## 1271       Dallas
## 1272       Dallas
## 1273       Dallas
## 1274       Dallas
## 1275       Dallas
## 1276       Dallas
## 1277       Nueces
## 1278       Nueces
## 1279       Nueces
## 1280       Nueces
## 1281       Nueces
## 1282       Nueces
## 1283       Nueces
## 1284       Nueces
## 1285       Nueces
## 1286       Nueces
## 1287       Nueces
## 1288       Nueces
## 1289       Nueces
## 1290       Nueces
## 1291       Nueces
## 1292       Nueces
## 1293       Nueces
## 1294       Nueces
## 1295       Nueces
## 1296       Nueces
## 1297       Nueces
## 1298       Nueces
## 1299       Nueces
## 1300       Nueces
## 1301       Nueces
## 1302       Nueces
## 1303       Nueces
## 1304       Nueces
## 1305       Nueces
## 1306       Nueces
## 1307       Nueces
## 1308       Nueces
## 1309       Nueces
## 1310       Nueces
## 1311       Nueces
## 1312       Nueces
## 1313       Nueces
## 1314       Nueces
## 1315       Nueces
## 1316       Nueces
## 1317       Nueces
## 1318       Nueces
## 1319       Nueces
## 1320       Nueces
## 1321       Nueces
## 1322       Nueces
## 1323       Nueces
## 1324       Nueces
## 1325       Nueces
## 1326       Nueces
## 1327       Nueces
## 1328       Nueces
## 1329       Nueces
## 1330       Nueces
## 1331       Nueces
## 1332       Nueces
## 1333       Nueces
## 1334       Nueces
## 1335       Nueces
## 1336       Nueces
## 1337       Nueces
## 1338       Nueces
## 1339       Nueces
## 1340       Nueces
## 1341       Nueces
## 1342       Nueces
## 1343       Nueces
## 1344       Nueces
## 1345       Nueces
## 1346       Nueces
## 1347       Nueces
## 1348       Nueces
## 1349       Nueces
## 1350       Nueces
## 1351       Nueces
## 1352       Nueces
## 1353       Nueces
## 1354       Nueces
## 1355       Nueces
## 1356       Nueces
## 1357       Nueces
## 1358       Nueces
## 1359       Nueces
## 1360       Nueces
## 1361       Nueces
## 1362       Nueces
## 1363       Nueces
## 1364       Nueces
## 1365       Nueces
## 1366       Nueces
## 1367       Nueces
## 1368       Nueces
## 1369       Nueces
## 1370       Nueces
## 1371       Nueces
## 1372       Nueces
## 1373       Nueces
## 1374       Nueces
## 1375       Nueces
## 1376       Nueces
## 1377       Nueces
## 1378       Nueces
## 1379       Nueces
## 1380       Nueces
## 1381       Nueces
## 1382         Kerr
## 1383        Smith
## 1384       Denton
## 1385    Jefferson
## 1386    Jefferson
## 1387    Jefferson
## 1388    Jefferson
## 1389       Dallas
## 1390       Dallas
## 1391       Dallas
## 1392      Tarrant
## 1393      Tarrant
## 1394      Tarrant
## 1395      Tarrant
## 1396     Mclennan
## 1397    Fort Bend
## 1398      El Paso
## 1399      El Paso
## 1400      El Paso
## 1401      El Paso
## 1402      El Paso
## 1403      El Paso
## 1404      El Paso
## 1405      El Paso
## 1406      El Paso
## 1407      El Paso
## 1408      El Paso
## 1409      El Paso
## 1410      El Paso
## 1411      El Paso
## 1412      El Paso
## 1413      El Paso
## 1414      El Paso
## 1415      El Paso
## 1416      El Paso
## 1417      El Paso
## 1418      El Paso
## 1419      El Paso
## 1420      El Paso
## 1421      El Paso
## 1422      El Paso
## 1423      El Paso
## 1424      El Paso
## 1425      El Paso
## 1426      El Paso
## 1427      El Paso
## 1428      El Paso
## 1429      El Paso
## 1430      El Paso
## 1431      El Paso
## 1432      El Paso
## 1433      El Paso
## 1434      El Paso
## 1435      El Paso
## 1436      El Paso
## 1437      El Paso
## 1438      El Paso
## 1439      El Paso
## 1440      El Paso
## 1441      El Paso
## 1442      El Paso
## 1443      El Paso
## 1444      El Paso
## 1445      El Paso
## 1446      El Paso
## 1447      El Paso
## 1448      El Paso
## 1449      El Paso
## 1450      El Paso
## 1451      El Paso
## 1452      El Paso
## 1453      El Paso
## 1454      El Paso
## 1455      El Paso
## 1456      El Paso
## 1457      El Paso
## 1458      El Paso
## 1459      El Paso
## 1460      El Paso
## 1461      El Paso
## 1462      El Paso
## 1463      El Paso
## 1464      El Paso
## 1465      El Paso
## 1466      El Paso
## 1467      El Paso
## 1468      El Paso
## 1469      El Paso
## 1470      El Paso
## 1471      El Paso
## 1472      El Paso
## 1473      El Paso
## 1474      El Paso
## 1475      El Paso
## 1476      El Paso
## 1477      El Paso
## 1478      El Paso
## 1479      El Paso
## 1480      El Paso
## 1481      El Paso
## 1482      El Paso
## 1483      El Paso
## 1484      El Paso
## 1485      El Paso
## 1486         Bell
## 1487         Bell
## 1488         Bell
## 1489       Harris
## 1490       Dallas
## 1491       Dallas
## 1492       Dallas
## 1493       Travis
## 1494       Travis
## 1495       Harris
## 1496       Harris
## 1497   Hutchinson
## 1498   Hutchinson
## 1499   Hutchinson
## 1500   Hutchinson
## 1501   Hutchinson
## 1502   Hutchinson
## 1503   Hutchinson
## 1504   Hutchinson
## 1505   Hutchinson
## 1506   Hutchinson
## 1507   Hutchinson
## 1508   Hutchinson
## 1509   Hutchinson
## 1510   Hutchinson
## 1511   Hutchinson
## 1512   Hutchinson
## 1513   Hutchinson
## 1514   Hutchinson
## 1515   Hutchinson
## 1516   Hutchinson
## 1517   Hutchinson
## 1518   Hutchinson
## 1519   Hutchinson
## 1520   Hutchinson
## 1521   Hutchinson
## 1522   Hutchinson
## 1523   Hutchinson
## 1524   Hutchinson
## 1525        Bexar
## 1526        Bexar
## 1527        Bexar
## 1528    Galveston
## 1529    Galveston
## 1530    Galveston
## 1531    Galveston
## 1532    Galveston
## 1533    Galveston
## 1534    Galveston
## 1535    Galveston
## 1536    Galveston
## 1537    Galveston
## 1538    Galveston
## 1539    Galveston
## 1540    Galveston
## 1541    Galveston
## 1542    Galveston
## 1543    Galveston
## 1544    Galveston
## 1545    Galveston
## 1546    Galveston
## 1547    Galveston
## 1548    Galveston
## 1549    Galveston
## 1550    Galveston
## 1551    Galveston
## 1552    Galveston
## 1553    Galveston
## 1554    Galveston
## 1555    Galveston
## 1556    Galveston
## 1557    Galveston
## 1558    Galveston
## 1559    Galveston
## 1560    Galveston
## 1561    Galveston
## 1562    Galveston
## 1563    Galveston
## 1564    Galveston
## 1565    Galveston
## 1566    Galveston
## 1567    Galveston
## 1568    Galveston
## 1569    Galveston
## 1570    Galveston
## 1571    Galveston
## 1572    Galveston
## 1573    Galveston
## 1574    Galveston
## 1575    Galveston
## 1576    Galveston
## 1577    Galveston
## 1578    Galveston
## 1579    Galveston
## 1580       Dallas
## 1581        Bexar
## 1582        Bexar
## 1583        Bexar
## 1584        Bexar
## 1585      Grayson
## 1586      Grayson
## 1587      Grayson
## 1588      Grayson
## 1589      Grayson
## 1590      Grayson
## 1591      Grayson
## 1592      Grayson
## 1593      Grayson
## 1594      Grayson
## 1595      Grayson
## 1596      Grayson
## 1597      Grayson
## 1598      Grayson
## 1599      Grayson
## 1600      Grayson
## 1601      Grayson
## 1602      Grayson
## 1603      Grayson
## 1604      Grayson
## 1605      Grayson
## 1606      Grayson
## 1607      Grayson
## 1608      Grayson
## 1609      Grayson
## 1610      Grayson
## 1611      Grayson
## 1612      Grayson
## 1613      Grayson
## 1614      Grayson
## 1615      Grayson
## 1616      Grayson
## 1617      Grayson
## 1618      Grayson
## 1619      Grayson
## 1620      Grayson
## 1621      Grayson
## 1622        Bexar
## 1623        Bexar
## 1624        Bexar
## 1625        Bexar
## 1626        Bexar
## 1627        Bexar
## 1628         Webb
## 1629         Webb
## 1630      Hidalgo
## 1631      Hidalgo
## 1632         Hill
## 1633         Hill
## 1634         Hill
## 1635         Hill
## 1636         Hill
## 1637         Hill
## 1638         Hill
## 1639         Hill
## 1640         Hill
## 1641       Dallas
## 1642       Dallas
## 1643       Dallas
## 1644       Dallas
## 1645       Dallas
## 1646      El Paso
## 1647       Howard
## 1648       Howard
## 1649       Howard
## 1650       Howard
## 1651       Howard
## 1652       Howard
## 1653       Howard
## 1654       Howard
## 1655       Howard
## 1656       Howard
## 1657       Howard
## 1658       Howard
## 1659       Howard
## 1660       Howard
## 1661       Howard
## 1662       Howard
## 1663       Howard
## 1664       Howard
## 1665       Howard
## 1666       Howard
## 1667       Howard
## 1668       Howard
## 1669       Howard
## 1670       Howard
## 1671       Howard
## 1672       Howard
## 1673       Howard
## 1674       Howard
## 1675       Howard
## 1676       Howard
## 1677       Howard
## 1678       Howard
## 1679       Howard
## 1680       Howard
## 1681       Howard
## 1682       Howard
## 1683       Howard
## 1684       Howard
## 1685       Howard
## 1686       Howard
## 1687       Howard
## 1688       Howard
## 1689       Howard
## 1690       Howard
## 1691       Howard
## 1692       Howard
## 1693       Howard
## 1694       Howard
## 1695       Howard
## 1696       Howard
## 1697       Howard
## 1698       Howard
## 1699       Howard
## 1700       Howard
## 1701       Howard
## 1702       Howard
## 1703       Howard
## 1704       Howard
## 1705       Dallas
## 1706       Dallas
## 1707       Dallas
## 1708       Dallas
## 1709       Dallas
## 1710       Dallas
## 1711       Dallas
## 1712       Dallas
## 1713       Dallas
## 1714       Dallas
## 1715       Dallas
## 1716       Dallas
## 1717       Dallas
## 1718       Dallas
## 1719       Dallas
## 1720       Dallas
## 1721       Dallas
## 1722       Dallas
## 1723       Dallas
## 1724       Dallas
## 1725       Dallas
## 1726       Dallas
## 1727       Dallas
## 1728       Dallas
## 1729       Dallas
## 1730       Dallas
## 1731       Dallas
## 1732       Harris
## 1733       Harris
## 1734       Harris
## 1735       Harris
## 1736       Harris
## 1737       Harris
## 1738       Harris
## 1739       Harris
## 1740       Harris
## 1741       Harris
## 1742       Harris
## 1743       Harris
## 1744       Harris
## 1745       Harris
## 1746       Harris
## 1747       Harris
## 1748       Harris
## 1749       Harris
## 1750      El Paso
## 1751       Dallas
## 1752       Dallas
## 1753       Dallas
## 1754       Dallas
## 1755       Dallas
## 1756       Dallas
## 1757       Dallas
## 1758       Dallas
## 1759       Dallas
## 1760       Dallas
## 1761       Dallas
## 1762       Dallas
## 1763       Dallas
## 1764       Dallas
## 1765       Dallas
## 1766       Dallas
## 1767       Dallas
## 1768       Dallas
## 1769       Dallas
## 1770       Dallas
## 1771       Dallas
## 1772       Dallas
## 1773       Dallas
## 1774       Dallas
## 1775       Dallas
## 1776       Dallas
## 1777       Dallas
## 1778       Dallas
## 1779       Dallas
## 1780       Dallas
## 1781       Dallas
## 1782       Dallas
## 1783       Dallas
## 1784       Dallas
## 1785       Dallas
## 1786       Dallas
## 1787       Dallas
## 1788       Dallas
## 1789        Gregg
## 1790        Gregg
## 1791        Gregg
## 1792        Gregg
## 1793        Gregg
## 1794        Gregg
## 1795        Gregg
## 1796        Gregg
## 1797        Gregg
## 1798        Gregg
## 1799        Gregg
## 1800        Gregg
## 1801        Gregg
## 1802        Gregg
## 1803        Gregg
## 1804        Gregg
## 1805        Gregg
## 1806        Gregg
## 1807        Gregg
## 1808        Gregg
## 1809        Gregg
## 1810        Gregg
## 1811        Gregg
## 1812        Gregg
## 1813        Gregg
## 1814        Gregg
## 1815        Gregg
## 1816   Montgomery
## 1817   Montgomery
## 1818   Montgomery
## 1819   Montgomery
## 1820   Montgomery
## 1821   Montgomery
## 1822   Montgomery
## 1823   Montgomery
## 1824   Montgomery
## 1825   Montgomery
## 1826   Montgomery
## 1827   Montgomery
## 1828   Montgomery
## 1829   Montgomery
## 1830   Montgomery
## 1831   Montgomery
## 1832   Montgomery
## 1833   Montgomery
## 1834   Montgomery
## 1835   Montgomery
## 1836   Montgomery
## 1837       Harris
## 1838       Harris
## 1839       Harris
## 1840    Jefferson
## 1841    Jefferson
## 1842    Jefferson
## 1843    Jefferson
## 1844    Jefferson
## 1845    Jefferson
## 1846    Jefferson
## 1847    Jefferson
## 1848    Jefferson
## 1849    Jefferson
## 1850    Jefferson
## 1851    Jefferson
## 1852    Jefferson
## 1853    Jefferson
## 1854    Jefferson
## 1855    Jefferson
## 1856    Jefferson
## 1857    Jefferson
## 1858    Jefferson
## 1859    Jefferson
## 1860    Jefferson
## 1861    Jefferson
## 1862    Jefferson
## 1863    Jefferson
## 1864    Jefferson
## 1865    Jefferson
## 1866    Jefferson
## 1867    Jefferson
## 1868       Orange
## 1869       Orange
## 1870       Orange
## 1871       Orange
## 1872       Orange
## 1873       Orange
## 1874       Orange
## 1875       Orange
## 1876       Orange
## 1877       Orange
## 1878       Orange
## 1879       Orange
## 1880       Orange
## 1881       Orange
## 1882       Orange
## 1883       Orange
## 1884       Orange
## 1885       Orange
## 1886       Orange
## 1887       Orange
## 1888    Jefferson
## 1889    Jefferson
## 1890    Jefferson
## 1891    Jefferson
## 1892    Jefferson
## 1893    Jefferson
## 1894    Jefferson
## 1895    Jefferson
## 1896    Jefferson
## 1897    Jefferson
## 1898    Jefferson
## 1899    Jefferson
## 1900    Jefferson
## 1901    Jefferson
## 1902    Jefferson
## 1903    Jefferson
## 1904    Jefferson
## 1905    Jefferson
## 1906    Jefferson
## 1907    Jefferson
## 1908    Jefferson
## 1909    Jefferson
## 1910    Jefferson
## 1911    Jefferson
## 1912    Jefferson
## 1913    Jefferson
## 1914    Jefferson
## 1915    Jefferson
## 1916    Jefferson
## 1917    Jefferson
## 1918        Bexar
## 1919        Bexar
## 1920        Bexar
## 1921        Bexar
## 1922        Bexar
## 1923        Bexar
## 1924        Bexar
## 1925       Collin
## 1926       Collin
## 1927       Collin
## 1928       Collin
## 1929       Collin
## 1930       Collin
## 1931       Collin
## 1932       Collin
## 1933       Collin
## 1934       Collin
## 1935       Collin
## 1936       Collin
## 1937       Collin
## 1938       Collin
## 1939       Collin
## 1940       Collin
## 1941       Collin
## 1942       Collin
## 1943       Collin
## 1944       Collin
## 1945       Collin
## 1946       Collin
## 1947       Collin
## 1948       Collin
## 1949       Collin
## 1950       Collin
## 1951       Collin
## 1952       Collin
## 1953         Webb
## 1954         Webb
## 1955         Webb
## 1956         Webb
## 1957         Webb
## 1958         Webb
## 1959         Webb
## 1960         Webb
## 1961         Webb
## 1962         Webb
## 1963         Webb
## 1964         Webb
## 1965         Webb
## 1966         Webb
## 1967         Webb
## 1968         Webb
## 1969         Webb
## 1970         Webb
## 1971         Webb
## 1972         Webb
## 1973       Dallas
## 1974       Dallas
## 1975       Dallas
## 1976       Dallas
## 1977       Dallas
## 1978       Dallas
## 1979       Dallas
## 1980       Dallas
## 1981       Dallas
## 1982       Dallas
## 1983       Dallas
## 1984       Dallas
## 1985       Dallas
## 1986       Dallas
## 1987       Dallas
## 1988       Dallas
## 1989       Harris
## 1990       Harris
## 1991       Harris
## 1992       Harris
## 1993       Harris
## 1994       Harris
## 1995       Harris
## 1996       Harris
## 1997       Harris
## 1998       Harris
## 1999       Harris
## 2000       Harris
## 2001       Harris
## 2002       Harris
## 2003       Harris
## 2004       Harris
## 2005       Harris
## 2006       Harris
## 2007       Harris
## 2008       Harris
## 2009       Harris
## 2010       Harris
## 2011       Harris
## 2012       Harris
## 2013       Harris
## 2014      Hidalgo
## 2015         Webb
## 2016       Dallas
## 2017       Dallas
## 2018       Dallas
## 2019    Galveston
## 2020    Galveston
## 2021    Galveston
## 2022    Galveston
## 2023    Galveston
## 2024    Galveston
## 2025    Galveston
## 2026    Galveston
## 2027    Galveston
## 2028    Galveston
## 2029    Galveston
## 2030    Galveston
## 2031    Galveston
## 2032    Galveston
## 2033      Hidalgo
## 2034      Hidalgo
## 2035      Hidalgo
## 2036      Hidalgo
## 2037     Mclennan
## 2038     Mclennan
## 2039     Mclennan
## 2040     Mclennan
## 2041     Mclennan
## 2042     Mclennan
## 2043     Mclennan
## 2044     Mclennan
## 2045     Mclennan
## 2046     Mclennan
## 2047     Mclennan
## 2048     Mclennan
## 2049     Mclennan
## 2050     Mclennan
## 2051     Mclennan
## 2052     Mclennan
## 2053     Mclennan
## 2054     Mclennan
## 2055     Mclennan
## 2056     Mclennan
## 2057     Mclennan
## 2058     Mclennan
## 2059     Mclennan
## 2060     Mclennan
## 2061     Mclennan
## 2062     Mclennan
## 2063     Mclennan
## 2064       Dallas
## 2065       Dallas
## 2066        Ellis
## 2067        Ellis
## 2068        Ellis
## 2069       Harris
## 2070       Harris
## 2071       Harris
## 2072      Midland
## 2073      Midland
## 2074      Midland
## 2075      Midland
## 2076      Midland
## 2077      Midland
## 2078      Midland
## 2079      Midland
## 2080      Midland
## 2081      Midland
## 2082      Midland
## 2083      Midland
## 2084      Midland
## 2085      Midland
## 2086      Midland
## 2087      Midland
## 2088      Midland
## 2089      Midland
## 2090      Midland
## 2091      Midland
## 2092      Midland
## 2093      Midland
## 2094      Midland
## 2095      Midland
## 2096      Midland
## 2097      Midland
## 2098      Midland
## 2099      Midland
## 2100      Midland
## 2101      Midland
## 2102      Midland
## 2103      Midland
## 2104      Midland
## 2105      Midland
## 2106      Midland
## 2107      Midland
## 2108      Midland
## 2109      Midland
## 2110      Midland
## 2111      Midland
## 2112      Midland
## 2113      Midland
## 2114      Midland
## 2115      Midland
## 2116      Midland
## 2117      Midland
## 2118      Midland
## 2119      Midland
## 2120      Midland
## 2121      Midland
## 2122      Midland
## 2123      Midland
## 2124      Midland
## 2125      Midland
## 2126      Midland
## 2127      Midland
## 2128      Midland
## 2129      Midland
## 2130      Midland
## 2131      Midland
## 2132      Wichita
## 2133      Wichita
## 2134       Dallas
## 2135       Dallas
## 2136       Dallas
## 2137       Dallas
## 2138       Dallas
## 2139       Dallas
## 2140       Dallas
## 2141       Dallas
## 2142       Dallas
## 2143   Montgomery
## 2144   Montgomery
## 2145   Montgomery
## 2146   Montgomery
## 2147   Montgomery
## 2148   Montgomery
## 2149   Montgomery
## 2150   Montgomery
## 2151   Montgomery
## 2152   Montgomery
## 2153   Montgomery
## 2154   Montgomery
## 2155   Montgomery
## 2156   Montgomery
## 2157   Montgomery
## 2158   Montgomery
## 2159   Montgomery
## 2160   Montgomery
## 2161   Montgomery
## 2162   Montgomery
## 2163   Montgomery
## 2164   Montgomery
## 2165   Montgomery
## 2166   Montgomery
## 2167   Montgomery
## 2168   Montgomery
## 2169   Montgomery
## 2170      El Paso
## 2171      El Paso
## 2172      El Paso
## 2173      El Paso
## 2174      El Paso
## 2175       Dallas
## 2176       Dallas
## 2177       Dallas
## 2178       Dallas
## 2179       Dallas
## 2180       Dallas
## 2181       Dallas
## 2182       Dallas
## 2183       Dallas
## 2184       Dallas
## 2185       Dallas
## 2186       Dallas
## 2187       Dallas
## 2188       Dallas
## 2189      El Paso
## 2190      El Paso
## 2191      El Paso
## 2192      El Paso
## 2193      El Paso
## 2194      El Paso
## 2195      El Paso
## 2196      El Paso
## 2197      El Paso
## 2198      El Paso
## 2199      El Paso
## 2200      El Paso
## 2201      El Paso
## 2202      El Paso
## 2203      El Paso
## 2204      El Paso
## 2205      El Paso
## 2206      Navarro
## 2207      Navarro
## 2208      Navarro
## 2209      Navarro
## 2210      Navarro
## 2211      Navarro
## 2212      Navarro
## 2213      Tarrant
## 2214      Tarrant
## 2215      Tarrant
## 2216      Tarrant
## 2217      Tarrant
## 2218      Tarrant
## 2219      Tarrant
## 2220      Tarrant
## 2221      Tarrant
## 2222      Tarrant
## 2223      Tarrant
## 2224      Tarrant
## 2225      Tarrant
## 2226      Tarrant
## 2227      Tarrant
## 2228      Tarrant
## 2229      Tarrant
## 2230      Tarrant
## 2231      Tarrant
## 2232      Tarrant
## 2233      Tarrant
## 2234      Tarrant
## 2235       Harris
## 2236       Harris
## 2237       Dallas
## 2238       Dallas
## 2239       Dallas
## 2240       Dallas
## 2241       Dallas
## 2242      Hidalgo
## 2243      Hidalgo
## 2244      Hidalgo
## 2245      Hidalgo
## 2246      Hidalgo
## 2247      Hidalgo
## 2248        Cooke
## 2249        Cooke
## 2250        Cooke
## 2251        Cooke
## 2252        Cooke
## 2253        Cooke
## 2254        Cooke
## 2255        Cooke
## 2256        Cooke
## 2257        Cooke
## 2258        Cooke
## 2259        Cooke
## 2260        Cooke
## 2261        Cooke
## 2262        Cooke
## 2263        Cooke
## 2264        Cooke
## 2265        Cooke
## 2266        Cooke
## 2267        Cooke
## 2268        Cooke
## 2269        Cooke
## 2270        Cooke
## 2271        Cooke
## 2272        Cooke
## 2273        Cooke
## 2274        Cooke
## 2275        Cooke
## 2276        Cooke
## 2277        Cooke
## 2278        Cooke
## 2279        Cooke
## 2280        Cooke
## 2281        Cooke
## 2282        Cooke
## 2283        Cooke
## 2284        Cooke
## 2285        Cooke
## 2286        Cooke
## 2287        Cooke
## 2288        Cooke
## 2289        Cooke
## 2290        Cooke
## 2291        Cooke
## 2292        Cooke
## 2293        Cooke
## 2294        Cooke
## 2295        Cooke
## 2296        Cooke
## 2297        Cooke
## 2298        Cooke
## 2299        Cooke
## 2300       Harris
## 2301       Harris
## 2302       Harris
## 2303       Harris
## 2304       Harris
## 2305       Harris
## 2306       Harris
## 2307       Harris
## 2308       Harris
## 2309       Harris
## 2310       Harris
## 2311       Harris
## 2312       Harris
## 2313       Harris
## 2314       Harris
## 2315       Harris
## 2316       Harris
## 2317       Harris
## 2318       Harris
## 2319       Harris
## 2320       Harris
## 2321       Harris
## 2322       Harris
## 2323       Harris
## 2324       Harris
## 2325       Harris
## 2326       Harris
## 2327       Harris
## 2328       Harris
## 2329       Harris
## 2330       Harris
## 2331       Harris
## 2332       Harris
## 2333       Harris
## 2334       Harris
## 2335       Harris
## 2336       Harris
## 2337       Harris
## 2338       Harris
## 2339       Harris
## 2340       Harris
## 2341       Harris
## 2342       Harris
## 2343       Harris
## 2344       Harris
## 2345       Harris
## 2346       Harris
## 2347       Harris
## 2348       Harris
## 2349      Tarrant
## 2350      Tarrant
## 2351      Tarrant
## 2352      Tarrant
## 2353      Tarrant
## 2354      Tarrant
## 2355      Tarrant
## 2356      Tarrant
## 2357       Denton
## 2358        Titus
## 2359        Titus
## 2360        Titus
## 2361        Titus
## 2362        Titus
## 2363        Titus
## 2364        Titus
## 2365        Titus
## 2366        Titus
## 2367        Titus
## 2368        Titus
## 2369        Titus
## 2370        Titus
## 2371        Titus
## 2372        Titus
## 2373        Titus
## 2374       Harris
## 2375       Harris
## 2376        Ector
## 2377        Ector
## 2378        Ector
## 2379        Ector
## 2380        Ector
## 2381        Ector
## 2382        Ector
## 2383        Ector
## 2384        Ector
## 2385        Ector
## 2386        Ector
## 2387        Ector
## 2388        Ector
## 2389        Ector
## 2390        Ector
## 2391        Ector
## 2392        Ector
## 2393        Ector
## 2394        Ector
## 2395        Ector
## 2396        Ector
## 2397        Ector
## 2398        Ector
## 2399        Ector
## 2400        Ector
## 2401        Ector
## 2402        Ector
## 2403        Ector
## 2404        Ector
## 2405        Ector
## 2406        Ector
## 2407        Ector
## 2408        Ector
## 2409        Ector
## 2410        Ector
## 2411        Ector
## 2412        Ector
## 2413        Ector
## 2414        Ector
## 2415        Ector
## 2416        Ector
## 2417        Ector
## 2418        Ector
## 2419        Ector
## 2420        Ector
## 2421        Ector
## 2422        Ector
## 2423        Ector
## 2424        Ector
## 2425        Ector
## 2426        Ector
## 2427        Ector
## 2428        Ector
## 2429        Ector
## 2430        Ector
## 2431        Ector
## 2432        Ector
## 2433        Ector
## 2434        Ector
## 2435        Ector
## 2436        Ector
## 2437        Ector
## 2438         Bell
## 2439         Bell
## 2440         Bell
## 2441         Bell
## 2442         Bell
## 2443         Bell
## 2444         Bell
## 2445         Bell
## 2446         Bell
## 2447         Bell
## 2448         Bell
## 2449         Bell
## 2450         Bell
## 2451         Bell
## 2452         Bell
## 2453         Bell
## 2454       Panola
## 2455       Panola
## 2456       Panola
## 2457       Panola
## 2458       Panola
## 2459       Panola
## 2460       Panola
## 2461       Panola
## 2462       Panola
## 2463       Panola
## 2464       Panola
## 2465       Panola
## 2466       Panola
## 2467       Panola
## 2468       Panola
## 2469       Panola
## 2470       Panola
## 2471       Panola
## 2472       Panola
## 2473       Panola
## 2474       Panola
## 2475       Panola
## 2476       Panola
## 2477       Panola
## 2478       Panola
## 2479       Panola
## 2480       Panola
## 2481        Lamar
## 2482        Lamar
## 2483        Lamar
## 2484        Lamar
## 2485        Lamar
## 2486        Lamar
## 2487        Lamar
## 2488        Lamar
## 2489        Lamar
## 2490        Lamar
## 2491        Lamar
## 2492        Lamar
## 2493        Lamar
## 2494        Lamar
## 2495        Lamar
## 2496        Lamar
## 2497        Lamar
## 2498        Lamar
## 2499        Lamar
## 2500        Lamar
## 2501        Lamar
## 2502        Lamar
## 2503       Dallas
## 2504       Dallas
## 2505       Dallas
## 2506       Dallas
## 2507       Dallas
## 2508       Dallas
## 2509       Dallas
## 2510       Dallas
## 2511       Harris
## 2512       Harris
## 2513       Harris
## 2514       Harris
## 2515       Harris
## 2516       Harris
## 2517       Harris
## 2518       Harris
## 2519       Harris
## 2520       Harris
## 2521    Fort Bend
## 2522        BEXAR
## 2523        BEXAR
## 2524        BEXAR
## 2525        BEXAR
## 2526        BEXAR
## 2527        BEXAR
## 2528        BEXAR
## 2529     Eastland
## 2530     Eastland
## 2531     Eastland
## 2532     Eastland
## 2533     Eastland
## 2534     Eastland
## 2535     Eastland
## 2536     Eastland
## 2537     Eastland
## 2538     Eastland
## 2539     Eastland
## 2540     Eastland
## 2541     Eastland
## 2542     Eastland
## 2543       Harris
## 2544       Harris
## 2545       Harris
## 2546       Harris
## 2547       Walker
## 2548       Walker
## 2549       Walker
## 2550       Walker
## 2551       Walker
## 2552       Walker
## 2553       Walker
## 2554       Walker
## 2555       Walker
## 2556       Walker
## 2557       Walker
## 2558       Walker
## 2559       Walker
## 2560      Hidalgo
## 2561      Hidalgo
## 2562      Hidalgo
## 2563       Harris
## 2564       Harris
## 2565       Harris
## 2566       Harris
## 2567       Harris
## 2568       Harris
## 2569       Harris
## 2570       Harris
## 2571       Harris
## 2572       Harris
## 2573       Harris
## 2574       Harris
## 2575       Harris
## 2576       Harris
## 2577       Harris
## 2578       Harris
## 2579        Starr
## 2580        Starr
## 2581      Hidalgo
## 2582      Hidalgo
## 2583      Hidalgo
## 2584      Hidalgo
## 2585      Hidalgo
## 2586      Hidalgo
## 2587      Hidalgo
## 2588      Hidalgo
## 2589      Hidalgo
## 2590        Bexar
## 2591        Bexar
## 2592        Bexar
## 2593        Bexar
## 2594       Harris
## 2595       Harris
## 2596       Harris
## 2597       Harris
## 2598       Harris
## 2599       Harris
## 2600       Harris
## 2601       Harris
## 2602       Harris
## 2603       Harris
## 2604       Harris
## 2605       Harris
## 2606       Harris
## 2607       Harris
## 2608       Harris
## 2609       Harris
## 2610       Harris
## 2611       Harris
## 2612       Harris
## 2613       Harris
## 2614       Harris
## 2615       Harris
## 2616       Harris
## 2617       Harris
## 2618       Harris
## 2619       Harris
## 2620       Harris
## 2621       Harris
## 2622       Harris
## 2623       Harris
## 2624       Harris
## 2625       Harris
## 2626       Harris
## 2627       Harris
## 2628       Harris
## 2629       Harris
## 2630       Harris
## 2631       Harris
## 2632       Harris
## 2633       Harris
## 2634       Harris
## 2635       Harris
## 2636       Harris
## 2637       Harris
## 2638       Harris
## 2639       Harris
## 2640       Harris
## 2641       Harris
## 2642       Harris
## 2643       Harris
## 2644       Harris
## 2645       Harris
## 2646       Harris
## 2647       Harris
## 2648        Bexar
## 2649        Bexar
## 2650       Dallas
## 2651         Kerr
## 2652         Kerr
## 2653         Kerr
## 2654       Dallas
## 2655      Hockley
## 2656      Hockley
## 2657      Hockley
## 2658      Hockley
## 2659      Hockley
## 2660      Hockley
## 2661      Hockley
## 2662      Hockley
## 2663      Hockley
## 2664      Hockley
## 2665      Hockley
## 2666      Hockley
## 2667      Hockley
## 2668      Hockley
## 2669      Hockley
## 2670      Hockley
## 2671      Hockley
## 2672      Hockley
## 2673      Hockley
## 2674      Hockley
## 2675      Hockley
## 2676      Hockley
## 2677      Hockley
## 2678      Hockley
## 2679      Hockley
## 2680      Hockley
## 2681      Hockley
## 2682      Hockley
## 2683      Hockley
## 2684      Hockley
## 2685      Hockley
## 2686      Hockley
## 2687      Hockley
## 2688      Hockley
## 2689      Hockley
## 2690      Hockley
## 2691      Hockley
## 2692      Hockley
## 2693      Hockley
## 2694      Hockley
## 2695      Hockley
## 2696      Hockley
## 2697      Hockley
## 2698      Hockley
## 2699      Hockley
## 2700      Hockley
## 2701      Hockley
## 2702      Hockley
## 2703      Hockley
## 2704      Hockley
## 2705      Hockley
## 2706      Hockley
## 2707      Hockley
## 2708      Hockley
## 2709      Hockley
## 2710      Hockley
## 2711      Hockley
## 2712      Hockley
## 2713      Hockley
## 2714      Hockley
## 2715      Hockley
## 2716      Hockley
## 2717      Hockley
## 2718      Hockley
## 2719      Hockley
## 2720      Hockley
## 2721      Hockley
## 2722      Hockley
## 2723      Hockley
## 2724      Hockley
## 2725      Hockley
## 2726      Hockley
## 2727      Hockley
## 2728      Hockley
## 2729      Hockley
## 2730      Hockley
## 2731      Hockley
## 2732      Hockley
## 2733      Hockley
## 2734      Hockley
## 2735      Hockley
## 2736      Hockley
## 2737      Hockley
## 2738      Hockley
## 2739      Hockley
## 2740      Hockley
## 2741      Hockley
## 2742      Hockley
## 2743      Hockley
## 2744      Hidalgo
## 2745      Hidalgo
## 2746      Hidalgo
## 2747      Hidalgo
## 2748      Hidalgo
## 2749      Hidalgo
## 2750      Hidalgo
## 2751      Hidalgo
## 2752      Hidalgo
## 2753      Hidalgo
## 2754      Hidalgo
## 2755      Hidalgo
## 2756      Hidalgo
## 2757      Hidalgo
## 2758      Hidalgo
## 2759      Hidalgo
## 2760      Hidalgo
## 2761      Hidalgo
## 2762      Hidalgo
## 2763      Hidalgo
## 2764      Hidalgo
## 2765      Hidalgo
## 2766      Hidalgo
## 2767      Hidalgo
## 2768      Hidalgo
## 2769      Hidalgo
## 2770      Hidalgo
## 2771      Hidalgo
## 2772      Hidalgo
## 2773      Hidalgo
## 2774      Hidalgo
## 2775      Hidalgo
## 2776      Hidalgo
## 2777      Hidalgo
## 2778      Hidalgo
## 2779      Hidalgo
## 2780      Hidalgo
## 2781      Hidalgo
## 2782      Hidalgo
## 2783      Hidalgo
## 2784      Hidalgo
## 2785      Hidalgo
## 2786      Hidalgo
## 2787      Hidalgo
## 2788      Hidalgo
## 2789      Hidalgo
## 2790      Hidalgo
## 2791      Hidalgo
## 2792      Hidalgo
## 2793      Hidalgo
## 2794      Hidalgo
## 2795      Hidalgo
## 2796      Hidalgo
## 2797      Hidalgo
## 2798      Hidalgo
## 2799      Hidalgo
## 2800      Hidalgo
## 2801      Hidalgo
## 2802      Hidalgo
## 2803      Hidalgo
## 2804      Hidalgo
## 2805      Hidalgo
## 2806      Hidalgo
## 2807      Hidalgo
## 2808      Hidalgo
## 2809      Hidalgo
## 2810      Hidalgo
## 2811      Hidalgo
## 2812      Hidalgo
## 2813      Hidalgo
## 2814      Hidalgo
## 2815      Hidalgo
## 2816      Hidalgo
## 2817      Hidalgo
## 2818      Hidalgo
## 2819      Hidalgo
## 2820      Hidalgo
## 2821      Hidalgo
## 2822      Hidalgo
## 2823      Hidalgo
## 2824      Hidalgo
## 2825      Hidalgo
## 2826      Hidalgo
## 2827      Hidalgo
## 2828      Hidalgo
## 2829      Hidalgo
## 2830      Hidalgo
## 2831      Hidalgo
## 2832      Hidalgo
## 2833      Hidalgo
## 2834      Hidalgo
## 2835      Hidalgo
## 2836      Hidalgo
## 2837      Hidalgo
## 2838      Hidalgo
## 2839      Hidalgo
## 2840      Hidalgo
## 2841      Hidalgo
## 2842      Hidalgo
## 2843      Hidalgo
## 2844      Hidalgo
## 2845      Hidalgo
## 2846      Hidalgo
## 2847      Hidalgo
## 2848      Hidalgo
## 2849      Hidalgo
## 2850      Hidalgo
## 2851      Hidalgo
## 2852      Hidalgo
## 2853      Hidalgo
## 2854      Hidalgo
## 2855      Hidalgo
## 2856      Hidalgo
## 2857      Hidalgo
## 2858      Hidalgo
## 2859      Hidalgo
## 2860      Hidalgo
## 2861      Hidalgo
## 2862      Hidalgo
## 2863      Hidalgo
## 2864      Hidalgo
## 2865      Hidalgo
## 2866      Hidalgo
## 2867      Hidalgo
## 2868      Hidalgo
## 2869      Hidalgo
## 2870      Hidalgo
## 2871      Hidalgo
## 2872      Hidalgo
## 2873      Hidalgo
## 2874      Hidalgo
## 2875      Hidalgo
## 2876      Hidalgo
## 2877      Hidalgo
## 2878      Hidalgo
## 2879      Hidalgo
## 2880      Hidalgo
## 2881      Hidalgo
## 2882      Hidalgo
## 2883      Hidalgo
## 2884      Hidalgo
## 2885      Hidalgo
## 2886      Cameron
## 2887      Cameron
## 2888      Cameron
## 2889      Cameron
## 2890      Cameron
## 2891      Cameron
## 2892      Cameron
## 2893      Cameron
## 2894        Bexar
## 2895        Bexar
## 2896        Bexar
## 2897        Bexar
## 2898        Bexar
## 2899        Bexar
## 2900        Bexar
## 2901       Uvalde
## 2902       Uvalde
## 2903       Uvalde
## 2904       Uvalde
## 2905       Uvalde
## 2906       Uvalde
## 2907       Uvalde
## 2908       Uvalde
## 2909       Uvalde
## 2910       Uvalde
## 2911       Uvalde
## 2912       Uvalde
## 2913       Uvalde
## 2914       Uvalde
## 2915       Uvalde
## 2916       Uvalde
## 2917       Uvalde
## 2918       Uvalde
## 2919       Uvalde
## 2920       Uvalde
## 2921       Uvalde
## 2922       Uvalde
## 2923       Uvalde
## 2924       Uvalde
## 2925       Uvalde
## 2926       Uvalde
## 2927       Uvalde
## 2928       Uvalde
## 2929       Uvalde
## 2930       Uvalde
## 2931       Uvalde
## 2932       Uvalde
## 2933       Uvalde
## 2934       Uvalde
## 2935       Uvalde
## 2936       Uvalde
## 2937       Uvalde
## 2938       Uvalde
## 2939       Uvalde
## 2940       Uvalde
## 2941       Uvalde
## 2942       Uvalde
## 2943       Uvalde
## 2944       Uvalde
## 2945       Uvalde
## 2946       Uvalde
## 2947       Uvalde
## 2948       Uvalde
## 2949      El Paso
## 2950      El Paso
## 2951      El Paso
## 2952      El Paso
## 2953      El Paso
## 2954       Harris
## 2955       Harris
## 2956       Harris
## 2957       Harris
## 2958       Harris
## 2959    Val Verde
## 2960    Val Verde
## 2961   Williamson
## 2962      Tarrant
## 2963      Tarrant
## 2964      Tarrant
## 2965      Tarrant
## 2966      Tarrant
## 2967      Tarrant
## 2968      Tarrant
## 2969      Tarrant
## 2970      Tarrant
## 2971      Tarrant
## 2972      Tarrant
## 2973      Tarrant
## 2974      Tarrant
## 2975      Tarrant
## 2976      Tarrant
## 2977      Tarrant
## 2978      Tarrant
## 2979      Tarrant
## 2980      Tarrant
## 2981      Tarrant
## 2982      Tarrant
## 2983      Tarrant
## 2984      Tarrant
## 2985      Tarrant
## 2986      Tarrant
## 2987      Tarrant
## 2988      Tarrant
## 2989      Tarrant
## 2990      Tarrant
## 2991      Tarrant
## 2992      Tarrant
## 2993      Tarrant
## 2994      Tarrant
## 2995      Tarrant
## 2996      Tarrant
## 2997      Tarrant
## 2998      Tarrant
## 2999      Tarrant
## 3000      Tarrant
## 3001      Tarrant
## 3002      Tarrant
## 3003      Tarrant
## 3004      Tarrant
## 3005      Tarrant
## 3006      Tarrant
## 3007      Tarrant
## 3008      Tarrant
## 3009      Tarrant
## 3010      Tarrant
## 3011      Tarrant
## 3012      Tarrant
## 3013      Tarrant
## 3014      Tarrant
## 3015      Tarrant
## 3016      Tarrant
## 3017      Tarrant
## 3018      Tarrant
## 3019      Tarrant
## 3020      Tarrant
## 3021      Tarrant
## 3022      Tarrant
## 3023      Tarrant
## 3024      Tarrant
## 3025      Tarrant
## 3026         Bell
## 3027         Bell
## 3028         Bell
## 3029         Bell
## 3030         Bell
## 3031         Bell
## 3032         Bell
## 3033         Bell
## 3034         Bell
## 3035         Bell
## 3036         Bell
## 3037         Bell
## 3038        Bowie
## 3039        Bowie
## 3040        Bowie
## 3041        Bowie
## 3042        Bowie
## 3043        Bowie
## 3044        Bowie
## 3045        Bowie
## 3046        Bowie
## 3047        Bowie
## 3048        Bowie
## 3049        Bowie
## 3050        Bowie
## 3051        Bowie
## 3052        Bowie
## 3053       Nueces
## 3054       Nueces
## 3055       Nueces
## 3056       Nueces
## 3057       Nueces
## 3058       Nueces
## 3059       Nueces
## 3060       Nueces
## 3061       Nueces
## 3062       Nueces
## 3063       Nueces
## 3064       Nueces
## 3065       Nueces
## 3066       Nueces
## 3067       Nueces
## 3068       Nueces
## 3069       Nueces
## 3070       Nueces
## 3071       Nueces
## 3072       Nueces
## 3073       Nueces
## 3074       Nueces
## 3075       Nueces
## 3076       Nueces
## 3077       Nueces
## 3078       Nueces
## 3079       Nueces
## 3080       Nueces
## 3081       Nueces
## 3082       Nueces
## 3083       Nueces
## 3084       Nueces
## 3085       Nueces
## 3086       Nueces
## 3087       Nueces
## 3088       Nueces
## 3089       Nueces
## 3090       Nueces
## 3091       Nueces
## 3092       Nueces
## 3093       Nueces
## 3094       Nueces
## 3095       Nueces
## 3096       Nueces
## 3097       Nueces
## 3098       Nueces
## 3099       Nueces
## 3100       Nueces
## 3101       Nueces
## 3102       Nueces
## 3103       Nueces
## 3104       Nueces
## 3105       Nueces
## 3106       Nueces
## 3107       Nueces
## 3108       Nueces
## 3109       Nueces
## 3110       Nueces
## 3111       Nueces
## 3112       Nueces
## 3113       Nueces
## 3114       Nueces
## 3115       Nueces
## 3116       Nueces
## 3117       Nueces
## 3118       Nueces
## 3119       Nueces
## 3120       Nueces
## 3121       Nueces
## 3122       Nueces
## 3123       Nueces
## 3124       Nueces
## 3125       Nueces
## 3126       Nueces
## 3127       Nueces
## 3128       Nueces
## 3129       Dallas
## 3130       Dallas
## 3131       Dallas
## 3132       Dallas
## 3133       Dallas
## 3134       Dallas
## 3135       Dallas
## 3136       Dallas
## 3137       Harris
## 3138        BEXAR
## 3139        BEXAR
## 3140        BEXAR
## 3141        BEXAR
## 3142      Cameron
## 3143      Cameron
## 3144      Cameron
## 3145      Cameron
## 3146      Cameron
## 3147      Cameron
## 3148      Cameron
## 3149      Cameron
## 3150      Cameron
## 3151      Cameron
## 3152      Cameron
## 3153      Cameron
## 3154      Cameron
## 3155      Cameron
## 3156      Cameron
## 3157      Cameron
## 3158      Cameron
## 3159      Cameron
## 3160      Cameron
## 3161      Cameron
## 3162      Cameron
## 3163      Cameron
## 3164      Cameron
## 3165      Cameron
## 3166      Cameron
## 3167      Cameron
## 3168      Cameron
## 3169      Cameron
## 3170      Cameron
## 3171      Cameron
## 3172      Cameron
## 3173      Cameron
## 3174      Cameron
## 3175      Cameron
## 3176      Cameron
## 3177      Cameron
## 3178      Cameron
## 3179      Cameron
## 3180      Cameron
## 3181      Cameron
## 3182      Cameron
## 3183      Cameron
## 3184      Cameron
## 3185       Taylor
## 3186       Taylor
## 3187       Taylor
## 3188       Taylor
## 3189       Taylor
## 3190       Taylor
## 3191       Taylor
## 3192       Taylor
## 3193       Taylor
## 3194       Taylor
## 3195       Taylor
## 3196       Taylor
## 3197       Taylor
## 3198       Taylor
## 3199       Taylor
## 3200       Taylor
## 3201     Stephens
## 3202     Stephens
## 3203        Brown
## 3204        Brown
## 3205        Brown
## 3206        Brown
## 3207        Brown
## 3208   Williamson
## 3209   Williamson
## 3210   Williamson
## 3211   Williamson
## 3212   Williamson
## 3213   Williamson
## 3214   Williamson
## 3215   Williamson
## 3216   Williamson
## 3217   Williamson
## 3218   Williamson
## 3219   Williamson
## 3220   Williamson
## 3221   Williamson
## 3222    Fort Bend
## 3223    Fort Bend
## 3224    Fort Bend
## 3225    Fort Bend
## 3226    Fort Bend
## 3227    Fort Bend
## 3228    Fort Bend
## 3229    Fort Bend
## 3230    Fort Bend
## 3231    Fort Bend
## 3232    Fort Bend
## 3233    Fort Bend
## 3234    Fort Bend
## 3235    Fort Bend
## 3236    Fort Bend
## 3237    Fort Bend
## 3238    Fort Bend
## 3239    Fort Bend
## 3240    Fort Bend
## 3241    Fort Bend
## 3242    Fort Bend
## 3243    Fort Bend
## 3244    Fort Bend
## 3245      Cameron
## 3246      Cameron
## 3247      Cameron
## 3248      Cameron
## 3249      Cameron
## 3250      Cameron
## 3251      Cameron
## 3252      Cameron
## 3253      Cameron
## 3254      Cameron
## 3255      Cameron
## 3256      Cameron
## 3257      Cameron
## 3258      Cameron
## 3259      Cameron
## 3260      Cameron
## 3261      Cameron
## 3262      Cameron
## 3263      Cameron
## 3264      Cameron
## 3265      Cameron
## 3266      Cameron
## 3267      Cameron
## 3268      Cameron
## 3269      Cameron
## 3270      Cameron
## 3271      Cameron
## 3272      Cameron
## 3273      Cameron
## 3274      Cameron
## 3275      Cameron
## 3276      Cameron
## 3277      Cameron
## 3278      Cameron
## 3279      Cameron
## 3280      Cameron
## 3281      Cameron
## 3282      Cameron
## 3283      Cameron
## 3284      Cameron
## 3285      Cameron
## 3286      Cameron
## 3287      Cameron
## 3288      Cameron
## 3289      Cameron
## 3290      Cameron
## 3291      Cameron
## 3292      Cameron
## 3293      Cameron
## 3294      Cameron
## 3295     Harrison
## 3296     Harrison
## 3297     Harrison
## 3298     Harrison
## 3299     Harrison
## 3300     Harrison
## 3301     Harrison
## 3302     Harrison
## 3303     Harrison
## 3304     Harrison
## 3305     Harrison
## 3306     Harrison
## 3307     Harrison
## 3308     Harrison
## 3309     Harrison
## 3310     Harrison
## 3311     Harrison
## 3312     Harrison
## 3313     Harrison
## 3314     Harrison
## 3315     Harrison
## 3316     Harrison
## 3317     Harrison
## 3318     Harrison
## 3319     Harrison
## 3320        Ellis
## 3321        Ellis
## 3322        Ellis
## 3323        Ellis
## 3324        Ellis
## 3325        Ellis
## 3326        Ellis
## 3327        Ellis
## 3328        Ellis
## 3329        Ellis
## 3330        Ellis
## 3331        Ellis
## 3332        Ellis
## 3333        Ellis
## 3334        Ellis
## 3335        Ellis
## 3336        Ellis
## 3337        Ellis
## 3338        Ellis
## 3339        Ellis
## 3340        Ellis
## 3341        Nolan
## 3342        Nolan
## 3343        Nolan
## 3344        Nolan
## 3345        Nolan
## 3346        Nolan
## 3347        Nolan
## 3348        Nolan
## 3349        Nolan
## 3350        Nolan
## 3351     Mclennan
## 3352     Mclennan
## 3353     Mclennan
## 3354     Mclennan
## 3355     Mclennan
## 3356     Mclennan
## 3357     Mclennan
## 3358     Mclennan
## 3359     Mclennan
## 3360     Mclennan
## 3361     Mclennan
## 3362     Mclennan
## 3363     Mclennan
## 3364     Mclennan
## 3365     Mclennan
## 3366     Mclennan
## 3367     Mclennan
## 3368     Mclennan
## 3369     Mclennan
## 3370     Mclennan
## 3371     Mclennan
## 3372     Mclennan
## 3373     Mclennan
## 3374     Mclennan
## 3375     Mclennan
## 3376     Mclennan
## 3377     Mclennan
## 3378     Mclennan
## 3379     Mclennan
## 3380     Mclennan
## 3381     Mclennan
## 3382     Mclennan
## 3383     Mclennan
## 3384     Mclennan
## 3385     Mclennan
## 3386     Mclennan
## 3387     Mclennan
## 3388     Mclennan
## 3389     Mclennan
## 3390     Mclennan
## 3391     Mclennan
## 3392     Mclennan
## 3393      El Paso
## 3394      El Paso
## 3395       Harris
## 3396       Harris
## 3397       Harris
## 3398       Harris
## 3399       Harris
## 3400       Harris
## 3401       Harris
## 3402       Harris
## 3403       Harris
## 3404       Harris
## 3405       Harris
## 3406       Harris
## 3407       Harris
## 3408       Harris
## 3409       Harris
## 3410       Harris
## 3411       Harris
## 3412       Harris
## 3413       Harris
## 3414       Harris
## 3415       Harris
## 3416       Harris
## 3417       Harris
## 3418       Harris
## 3419       Harris
## 3420       Harris
## 3421       Harris
## 3422       Harris
## 3423       Harris
## 3424       Harris
## 3425       Harris
## 3426       Harris
## 3427       Harris
## 3428       Harris
## 3429       Harris
## 3430       Harris
## 3431       Harris
## 3432       Harris
## 3433       Harris
## 3434        Bexar
## 3435        Bexar
## 3436       Harris
## 3437       Harris
## 3438       Harris
## 3439       Harris
## 3440       Harris
## 3441       Harris
## 3442       Harris
## 3443       Harris
## 3444       Harris
## 3445       Harris
## 3446       Harris
## 3447       Harris
## 3448       Harris
## 3449       Harris
## 3450       Harris
## 3451       Harris
## 3452       Harris
## 3453       Harris
## 3454       Harris
## 3455       Harris
## 3456       Harris
## 3457       Harris
## 3458       Harris
## 3459       Harris
## 3460        Ellis
## 3461        Ellis
## 3462        Ellis
## 3463        Ellis
## 3464    Henderson
## 3465    Henderson
## 3466    Henderson
## 3467    Henderson
## 3468    Henderson
## 3469    Henderson
## 3470    Henderson
## 3471    Henderson
## 3472    Henderson
## 3473    Henderson
## 3474    Henderson
## 3475    Henderson
## 3476    Henderson
## 3477    Henderson
## 3478    Henderson
## 3479    Henderson
## 3480    Henderson
## 3481    Henderson
## 3482    Henderson
## 3483    Henderson
## 3484    Henderson
## 3485    Henderson
## 3486    Henderson
## 3487    Henderson
## 3488    Henderson
## 3489    Henderson
## 3490    Henderson
## 3491    Henderson
## 3492    Henderson
## 3493    Henderson
## 3494    Henderson
## 3495    Henderson
## 3496    Henderson
## 3497    Henderson
## 3498    Henderson
## 3499    Henderson
## 3500    Henderson
## 3501    Henderson
## 3502    Henderson
## 3503    Henderson
## 3504    Henderson
## 3505    Henderson
## 3506    Henderson
## 3507    Henderson
## 3508    Henderson
## 3509    Henderson
## 3510    Henderson
## 3511    Henderson
## 3512    Henderson
## 3513    Henderson
## 3514    Henderson
## 3515    Henderson
## 3516    Henderson
## 3517    Henderson
## 3518    Henderson
## 3519    Henderson
## 3520    Henderson
## 3521    Henderson
## 3522    Henderson
## 3523    Henderson
## 3524    Henderson
## 3525    Henderson
## 3526    Henderson
## 3527    Henderson
## 3528    Henderson
## 3529    Henderson
## 3530    Henderson
## 3531    Henderson
## 3532    Henderson
## 3533    Henderson
## 3534    Henderson
## 3535    Henderson
## 3536    Henderson
## 3537    Henderson
## 3538    Henderson
## 3539    Henderson
## 3540    Henderson
## 3541    Henderson
## 3542    Henderson
## 3543    Henderson
## 3544    Henderson
## 3545    Henderson
## 3546    Henderson
## 3547    Henderson
## 3548    Henderson
## 3549    Henderson
## 3550    Henderson
## 3551    Henderson
## 3552    Henderson
## 3553    Henderson
## 3554    Henderson
## 3555    Henderson
## 3556    Henderson
## 3557    Henderson
## 3558    Henderson
## 3559    Henderson
## 3560    Henderson
## 3561    Henderson
## 3562    Henderson
## 3563    Henderson
## 3564    Henderson
## 3565    Henderson
## 3566    Henderson
## 3567    Henderson
## 3568    Henderson
## 3569    Henderson
## 3570    Henderson
## 3571    Henderson
## 3572    Henderson
## 3573    Henderson
## 3574    Henderson
## 3575        Duval
## 3576        Duval
## 3577        Duval
## 3578        Duval
## 3579        Tyler
## 3580        Smith
## 3581        Smith
## 3582        Smith
## 3583        Smith
## 3584        Smith
## 3585        Smith
## 3586        Smith
## 3587        Smith
## 3588        Smith
## 3589        Smith
## 3590        Smith
## 3591        Smith
## 3592        Smith
## 3593        Smith
## 3594        Smith
## 3595        Smith
## 3596        Smith
## 3597        Smith
## 3598        Smith
## 3599        Smith
## 3600        Smith
## 3601        Smith
## 3602        Smith
## 3603        Smith
## 3604        Smith
## 3605        Smith
## 3606        Smith
## 3607        Smith
## 3608        Smith
## 3609        Smith
## 3610        Smith
## 3611        Smith
## 3612        Smith
## 3613        Smith
## 3614        Smith
## 3615        Smith
## 3616        Smith
## 3617        Smith
## 3618        Smith
## 3619        Smith
## 3620        Smith
## 3621        Smith
## 3622        Smith
## 3623        Smith
## 3624        Smith
## 3625        Smith
## 3626        Smith
## 3627        Smith
## 3628        Smith
## 3629        Smith
## 3630        Smith
## 3631        Smith
## 3632        Smith
## 3633       Harris
## 3634       Harris
## 3635       Harris
## 3636       Harris
## 3637       Harris
## 3638       Harris
## 3639       Harris
## 3640      Tarrant
## 3641      Tarrant
## 3642      Tarrant
## 3643      Tarrant
## 3644      Tarrant
## 3645      Tarrant
## 3646      Tarrant
## 3647      Tarrant
## 3648      Tarrant
## 3649      Tarrant
## 3650      Tarrant
## 3651      Tarrant
## 3652      Tarrant
## 3653      Tarrant
## 3654       Travis
## 3655      El Paso
## 3656      El Paso
## 3657      El Paso
## 3658      El Paso
## 3659      El Paso
## 3660      El Paso
## 3661      El Paso
## 3662      El Paso
## 3663      El Paso
## 3664      El Paso
## 3665      El Paso
## 3666      El Paso
## 3667      El Paso
## 3668      El Paso
## 3669      El Paso
## 3670      El Paso
## 3671      El Paso
## 3672      El Paso
## 3673      El Paso
## 3674      El Paso
## 3675      El Paso
## 3676      El Paso
## 3677      El Paso
## 3678      El Paso
## 3679      El Paso
## 3680      El Paso
## 3681      El Paso
## 3682      El Paso
## 3683      El Paso
## 3684      El Paso
## 3685      El Paso
## 3686      El Paso
## 3687      El Paso
## 3688      El Paso
## 3689      El Paso
## 3690      El Paso
## 3691      El Paso
## 3692      El Paso
## 3693      El Paso
## 3694      El Paso
## 3695      El Paso
## 3696      El Paso
## 3697      El Paso
## 3698      El Paso
## 3699      El Paso
## 3700      El Paso
## 3701      El Paso
## 3702      El Paso
## 3703      El Paso
## 3704      El Paso
## 3705      El Paso
## 3706      El Paso
## 3707      El Paso
## 3708      El Paso
## 3709      El Paso
## 3710      El Paso
## 3711      El Paso
## 3712      El Paso
## 3713      El Paso
## 3714      El Paso
## 3715      El Paso
## 3716      El Paso
## 3717      El Paso
## 3718      El Paso
## 3719      El Paso
## 3720      El Paso
## 3721      El Paso
## 3722      El Paso
## 3723    Galveston
## 3724      Hidalgo
## 3725      Hidalgo
## 3726      Hidalgo
## 3727      Hidalgo
## 3728      Hidalgo
## 3729      Hidalgo
## 3730      Hidalgo
## 3731      Hidalgo
## 3732      Hidalgo
## 3733      Hidalgo
## 3734      Hidalgo
## 3735        Bexar
## 3736        Bexar
## 3737        Bexar
## 3738        Bexar
## 3739        Bexar
## 3740        Bexar
## 3741        Bexar
## 3742        Bexar
## 3743        Bexar
## 3744        Bexar
## 3745       Harris
## 3746       Harris
## 3747       Harris
## 3748       Harris
## 3749       Harris
## 3750       Harris
## 3751       Harris
## 3752       Harris
## 3753       Harris
## 3754       Harris
## 3755       Harris
## 3756       Harris
## 3757       Harris
## 3758       Harris
## 3759       Harris
## 3760       Harris
## 3761       Harris
## 3762       Harris
## 3763       Harris
## 3764       Harris
## 3765       Dallas
## 3766       Dallas
## 3767      Cameron
## 3768      Hidalgo
## 3769      Hidalgo
## 3770      Hidalgo
## 3771      Hidalgo
## 3772      Hidalgo
## 3773      Hidalgo
## 3774    Wilbarger
## 3775    Wilbarger
## 3776    Wilbarger
## 3777    Wilbarger
## 3778    Wilbarger
## 3779    Wilbarger
## 3780    Wilbarger
## 3781    Wilbarger
## 3782    Wilbarger
## 3783    Wilbarger
## 3784    Wilbarger
## 3785    Wilbarger
## 3786    Wilbarger
## 3787    Wilbarger
## 3788    Wilbarger
## 3789    Wilbarger
## 3790    Wilbarger
## 3791    Wilbarger
## 3792    Wilbarger
## 3793    Wilbarger
## 3794    Wilbarger
## 3795    Wilbarger
## 3796    Wilbarger
## 3797    Wilbarger
## 3798    Wilbarger
## 3799    Wilbarger
## 3800    Wilbarger
## 3801     Victoria
## 3802     Victoria
## 3803     Victoria
## 3804     Victoria
## 3805     Victoria
## 3806     Victoria
## 3807     Victoria
## 3808     Victoria
## 3809     Victoria
## 3810     Victoria
## 3811     Victoria
## 3812     Victoria
## 3813     Victoria
## 3814     Victoria
## 3815     Victoria
## 3816     Victoria
## 3817     Victoria
## 3818     Victoria
## 3819     Victoria
## 3820     Victoria
## 3821     Victoria
## 3822     Victoria
## 3823     Victoria
## 3824     Victoria
## 3825       Dallas
## 3826       Dallas
## 3827       Dallas
## 3828       Dallas
## 3829       Dallas
## 3830       Dallas
## 3831       Dallas
## 3832       Parker
## 3833       Parker
## 3834       Parker
## 3835       Parker
## 3836       Parker
## 3837       Parker
## 3838       Parker
## 3839       Parker
## 3840       Parker
## 3841       Parker
## 3842       Parker
## 3843       Parker
## 3844       Parker
## 3845       Parker
## 3846       Parker
## 3847       Parker
## 3848       Parker
## 3849       Parker
## 3850       Parker
## 3851       Parker
## 3852       Parker
## 3853       Parker
## 3854       Parker
## 3855       Parker
## 3856       Parker
## 3857       Parker
## 3858       Parker
## 3859       Parker
## 3860       Parker
## 3861       Parker
## 3862       Parker
## 3863       Parker
## 3864       Parker
## 3865       Harris
## 3866       Harris
## 3867       Harris
## 3868       Harris
## 3869       Harris
## 3870       Harris
## 3871       Harris
## 3872       Harris
## 3873       Harris
## 3874       Harris
## 3875       Harris
## 3876       Harris
## 3877       Harris
## 3878       Harris
## 3879       Harris
## 3880       Harris
## 3881       Scurry
## 3882       Scurry
## 3883      Wharton
## 3884      Wharton
## 3885      Wharton
## 3886      Wharton
## 3887      Wharton
## 3888      Wharton
## 3889      Wharton
## 3890      Wharton
## 3891      Wharton
## 3892      Wharton
## 3893      Wharton
## 3894      Wharton
## 3895      Wharton
## 3896      Wharton
## 3897      Wharton
## 3898      Wharton
## 3899      Wharton
## 3900      Wharton
## 3901      Wharton
## 3902      Wharton
## 3903      Wharton
## 3904      Wharton
## 3905        Bexar
## 3906      Tarrant
## 3907       Harris
## 3908       Harris
## 3909       Harris
## 3910       Harris
## 3911       Harris
## 3912       Harris
## 3913       Harris
## 3914       Harris
## 3915       Harris
## 3916       Harris
## 3917       Harris
## 3918       Harris
## 3919       Harris
## 3920       Harris
## 3921       Harris
## 3922       Harris
## 3923       Harris
## 3924       Harris
## 3925       Harris
## 3926       Harris
## 3927       Harris
## 3928       Harris
## 3929       Harris
## 3930       Harris
## 3931       Harris
## 3932       Harris
## 3933       Harris
## 3934       Harris
## 3935       Harris
## 3936       Harris
## 3937       Harris
## 3938       Harris
## 3939       Harris
## 3940       Harris
## 3941       Harris
## 3942       Harris
## 3943       Harris
## 3944       Harris
## 3945       Harris
## 3946       Harris
## 3947       Harris
## 3948       Harris
## 3949       Harris
## 3950       Harris
## 3951       Harris
## 3952       Harris
## 3953       Harris
## 3954       Harris
## 3955       Harris
## 3956       Harris
## 3957       Harris
## 3958       Harris
## 3959       Harris
## 3960       Harris
## 3961       Harris
## 3962       Harris
## 3963       Harris
## 3964       Harris
## 3965       Harris
## 3966       Harris
## 3967       Harris
## 3968       Harris
## 3969       Harris
## 3970       Harris
## 3971       Harris
## 3972       Harris
## 3973       Harris
## 3974       Harris
## 3975       Harris
## 3976       Harris
## 3977       Harris
## 3978       Harris
## 3979       Harris
## 3980       Harris
## 3981       Harris
## 3982       Harris
## 3983       Harris
## 3984       Harris
## 3985       Harris
## 3986       Harris
## 3987       Harris
## 3988       Harris
## 3989       Harris
## 3990       Harris
## 3991       Harris
## 3992       Harris
## 3993       Harris
## 3994       Harris
## 3995       Harris
## 3996       Harris
## 3997       Harris
## 3998       Harris
## 3999       Harris
## 4000       Harris
## 4001       Harris
## 4002       Harris
## 4003       Harris
## 4004       Harris
## 4005       Harris
## 4006       Harris
## 4007       Harris
## 4008       Harris
## 4009       Harris
## 4010       Harris
## 4011       Harris
## 4012       Harris
## 4013       Harris
## 4014       Harris
## 4015       Harris
## 4016       Harris
## 4017       Harris
## 4018       Harris
## 4019       Harris
## 4020       Harris
## 4021       Harris
## 4022       Harris
## 4023       Harris
## 4024       Harris
## 4025       Harris
## 4026       Harris
## 4027       Harris
## 4028       Harris
## 4029       Harris
## 4030       Harris
## 4031       Harris
## 4032        Bexar
## 4033        Bexar
## 4034        Bexar
## 4035        Bexar
## 4036        Bexar
## 4037        Bexar
## 4038        Bexar
## 4039        Bexar
## 4040        Bexar
## 4041        Bexar
## 4042        Bexar
## 4043       Dallas
## 4044       Dallas
## 4045       Travis
## 4046      Cameron
## 4047      Cameron
## 4048      Cameron
## 4049      Cameron
## 4050      Cameron
## 4051      Cameron
## 4052      Cameron
## 4053        Bexar
## 4054       Dallas
## 4055       Dallas
## 4056       Dallas
## 4057       Dallas
## 4058       Dallas
## 4059       Dallas
## 4060      Tarrant
## 4061      Tarrant
## 4062      Tarrant
## 4063      Tarrant
## 4064      Tarrant
## 4065      Tarrant
## 4066      Tarrant
## 4067      Tarrant
## 4068       Harris
## 4069       Harris
## 4070       Harris
## 4071       Harris
## 4072       Harris
## 4073       Harris
## 4074       Harris
## 4075       Harris
## 4076       Harris
## 4077       Harris
## 4078       Harris
## 4079       Harris
## 4080       Harris
## 4081       Harris
## 4082       Harris
## 4083       Harris
## 4084       Harris
## 4085       Harris
## 4086       Harris
## 4087       Harris
## 4088       Harris
## 4089       Harris
## 4090       Harris
## 4091       Harris
## 4092       Harris
## 4093       Harris
## 4094       Harris
## 4095       Harris
## 4096       Harris
## 4097       Harris
## 4098       Harris
## 4099       Harris
## 4100       Harris
## 4101       Denton
## 4102         Wood
## 4103         Wood
## 4104         Wood
## 4105         Wood
## 4106         Wood
## 4107         Wood
## 4108         Wood
## 4109         Wood
## 4110         Wood
## 4111         Wood
## 4112         Wood
## 4113         Wood
## 4114        Smith
## 4115        Smith
## 4116        Smith
## 4117      Hidalgo
## 4118      Hidalgo
## 4119       Dallas
## 4120       Dallas
## 4121       Dallas
## 4122       Dallas
## 4123       Dallas
## 4124       Dallas
## 4125       Dallas
## 4126       Dallas
## 4127       Travis
## 4128       Travis
## 4129       Travis
## 4130       Travis
## 4131       Travis
## 4132       Travis
## 4133       Travis
## 4134       Travis
## 4135       Travis
## 4136       Travis
## 4137       Travis
## 4138       Menard
## 4139      Hidalgo
## 4140       Harris
## 4141       Harris
## 4142       Harris
## 4143       Harris
## 4144    Jefferson
## 4145       Harris
## 4146       Harris
## 4147       Harris
## 4148       Harris
## 4149       Harris
## 4150       Harris
## 4151       Harris
## 4152       Harris
## 4153       Harris
## 4154       Harris
## 4155       Harris
## 4156       Harris
## 4157       Harris
## 4158       Harris
## 4159       Harris
## 4160       Harris
## 4161       Harris
## 4162       Harris
## 4163       Harris
## 4164       Harris
## 4165       Nueces
## 4166        Smith
## 4167        Smith
## 4168      Hidalgo
## 4169       Dallas
## 4170       Travis
## 4171       Travis
## 4172       Travis
## 4173       Travis
## 4174       Travis
## 4175      Cameron
## 4176      Cameron
## 4177      Cameron
## 4178      Cameron
## 4179      Cameron
## 4180       Dallas
## 4181       Dallas
## 4182       Dallas
## 4183       Dallas
## 4184       Dallas
## 4185       Dallas
## 4186       Dallas
## 4187       Dallas
## 4188       Dallas
## 4189       Dallas
## 4190       Dallas
## 4191       Dallas
## 4192       Dallas
## 4193       Dallas
## 4194      Hidalgo
## 4195      Hidalgo
## 4196       Collin
## 4197       Collin
## 4198       Parker
## 4199       Travis
## 4200       Travis
## 4201       Travis
## 4202      Lubbock
## 4203        Bexar
## 4204        Bexar
## 4205        Bexar
## 4206        Bexar
## 4207        Bexar
## 4208       Harris
## 4209       Harris
## 4210       Harris
## 4211       Harris
## 4212       Harris
## 4213      Lubbock
## 4214      Lubbock
## 4215      Lubbock
## 4216      Lubbock
## 4217      Lubbock
## 4218      Lubbock
## 4219      Lubbock
## 4220      Lubbock
## 4221      Lubbock
## 4222      Lubbock
## 4223      Lubbock
## 4224        Bexar
## 4225       Dallas
## 4226       Dallas
## 4227       Dallas
## 4228       Dallas
## 4229       Dallas
## 4230       Dallas
## 4231       Dallas
## 4232       Dallas
## 4233       Dallas
## 4234       Dallas
## 4235       Dallas
## 4236       Dallas
## 4237       Dallas
## 4238       Dallas
## 4239       Dallas
## 4240      Tarrant
## 4241      Tarrant
## 4242      Tarrant
## 4243      Tarrant
## 4244      Tarrant
## 4245      Tarrant
## 4246      Tarrant
## 4247      Tarrant
## 4248      Tarrant
## 4249      Tarrant
## 4250      Tarrant
## 4251       Travis
## 4252       Dallas
## 4253       Dallas
## 4254       Dallas
## 4255       Dallas
## 4256       Dallas
## 4257       Dallas
## 4258       Dallas
## 4259       Dallas
## 4260       Dallas
## 4261       Dallas
## 4262       Dallas
## 4263       Dallas
## 4264       Dallas
## 4265       Harris
## 4266        Bexar
## 4267        Bexar
## 4268   Williamson
## 4269       Harris
## 4270       Harris
## 4271       Harris
## 4272       Harris
## 4273       Harris
## 4274       Harris
## 4275       Harris
## 4276       Harris
## 4277       Harris
## 4278       Harris
## 4279       Harris
## 4280       Harris
## 4281       Harris
## 4282       Harris
## 4283       Harris
## 4284       Harris
## 4285       Harris
## 4286       Harris
## 4287       Harris
## 4288       Harris
## 4289       Harris
## 4290       Harris
## 4291       Harris
## 4292       Harris
## 4293       Harris
## 4294       Harris
## 4295       Harris
## 4296       Harris
## 4297       Harris
## 4298       Harris
## 4299       Harris
## 4300       Harris
## 4301       Harris
## 4302       Harris
## 4303       Harris
## 4304       Harris
## 4305       Harris
## 4306       Harris
## 4307       Harris
## 4308       Harris
## 4309       Harris
## 4310       Harris
## 4311       Harris
## 4312       Harris
## 4313       Harris
## 4314       Harris
## 4315       Harris
## 4316       Harris
## 4317       Harris
## 4318       Harris
## 4319        Bexar
## 4320       Travis
## 4321       Travis
## 4322       Travis
## 4323       Travis
## 4324       Travis
## 4325       Travis
## 4326       Travis
## 4327       Travis
## 4328       Travis
## 4329       Travis
## 4330       Travis
## 4331       Travis
## 4332       Travis
## 4333       Travis
## 4334      Lubbock
## 4335      Lubbock
## 4336      Lubbock
## 4337      Lubbock
## 4338      Lubbock
## 4339      Lubbock
## 4340      Lubbock
## 4341      Lubbock
## 4342      Lubbock
## 4343      Lubbock
## 4344      Lubbock
## 4345      Lubbock
## 4346      Lubbock
## 4347      Lubbock
## 4348      Lubbock
## 4349      Lubbock
## 4350      Lubbock
## 4351      Lubbock
## 4352      Lubbock
## 4353      Lubbock
## 4354      Lubbock
## 4355      Lubbock
## 4356      Lubbock
## 4357      Lubbock
## 4358      Lubbock
## 4359      Lubbock
## 4360      Lubbock
## 4361      Lubbock
## 4362      Lubbock
## 4363      Lubbock
## 4364      Lubbock
## 4365      Lubbock
## 4366      Lubbock
## 4367      Lubbock
## 4368      Lubbock
## 4369      Lubbock
## 4370      Lubbock
## 4371      Lubbock
## 4372      Lubbock
## 4373      Lubbock
## 4374      Lubbock
## 4375      Lubbock
## 4376      Lubbock
## 4377      Lubbock
## 4378      Lubbock
## 4379      Lubbock
## 4380      Lubbock
## 4381      Lubbock
## 4382      Lubbock
## 4383      Lubbock
## 4384      Lubbock
## 4385      Lubbock
## 4386      Lubbock
## 4387      Lubbock
## 4388      Lubbock
## 4389      Lubbock
## 4390      Lubbock
## 4391      Lubbock
## 4392      Lubbock
## 4393      Lubbock
## 4394      Lubbock
## 4395      Lubbock
## 4396      Lubbock
## 4397      Lubbock
## 4398      Lubbock
## 4399      Lubbock
## 4400      Lubbock
## 4401      Lubbock
## 4402      Lubbock
## 4403      Lubbock
## 4404      Lubbock
## 4405      Lubbock
## 4406      Lubbock
## 4407      Lubbock
## 4408      Lubbock
## 4409      Lubbock
## 4410      Lubbock
## 4411      Lubbock
## 4412      Lubbock
## 4413      Lubbock
## 4414      Lubbock
## 4415      Lubbock
## 4416      Lubbock
## 4417      Lubbock
## 4418      Lubbock
## 4419      Lubbock
## 4420      Lubbock
## 4421      Lubbock
## 4422      Lubbock
## 4423      Lubbock
## 4424      Lubbock
## 4425      Lubbock
## 4426      Lubbock
## 4427      Lubbock
## 4428      Lubbock
## 4429      Lubbock
## 4430      Lubbock
## 4431      Lubbock
## 4432      Lubbock
## 4433      Lubbock
## 4434      Lubbock
## 4435      Lubbock
## 4436      Lubbock
## 4437      Lubbock
## 4438      Lubbock
## 4439      Lubbock
## 4440      Lubbock
## 4441      Lubbock
## 4442      Lubbock
## 4443      Lubbock
## 4444      Lubbock
## 4445      Lubbock
## 4446       Harris
## 4447       Harris
## 4448       Harris
## 4449       Harris
## 4450       Harris
## 4451       Harris
## 4452       Harris
## 4453       Harris
## 4454       Harris
## 4455       Harris
## 4456       Harris
## 4457       Harris
## 4458       Harris
## 4459       Harris
## 4460       Harris
## 4461      Tarrant
## 4462      Tarrant
## 4463      Tarrant
## 4464      Tarrant
## 4465      Tarrant
## 4466      Tarrant
## 4467      Tarrant
## 4468      Tarrant
## 4469      Tarrant
## 4470      Tarrant
## 4471      Tarrant
## 4472      Tarrant
## 4473      Tarrant
## 4474      Tarrant
## 4475      Tarrant
## 4476      Tarrant
## 4477      Tarrant
## 4478      Tarrant
## 4479      Tarrant
## 4480      Tarrant
## 4481      Tarrant
## 4482      Tarrant
## 4483      Tarrant
## 4484      Tarrant
## 4485      Tarrant
## 4486      Tarrant
## 4487      Tarrant
## 4488      Tarrant
## 4489      Tarrant
## 4490      Tarrant
## 4491      Tarrant
## 4492      Tarrant
## 4493      Tarrant
## 4494      Tarrant
## 4495      Tarrant
## 4496      Tarrant
## 4497      Tarrant
## 4498      Tarrant
## 4499      Tarrant
## 4500      Tarrant
## 4501      Tarrant
## 4502      Tarrant
## 4503      Tarrant
## 4504      Tarrant
## 4505      Tarrant
## 4506      Tarrant
## 4507      Tarrant
## 4508      Tarrant
## 4509      Tarrant
## 4510      Tarrant
## 4511      Tarrant
## 4512      Tarrant
## 4513      Tarrant
## 4514      Tarrant
## 4515      Tarrant
## 4516      Tarrant
## 4517      Tarrant
## 4518      Tarrant
## 4519      Tarrant
## 4520      Tarrant
## 4521      Tarrant
## 4522      Tarrant
## 4523      Tarrant
## 4524      Tarrant
## 4525      Tarrant
## 4526      Tarrant
## 4527      Tarrant
## 4528      Tarrant
## 4529      Tarrant
## 4530      Tarrant
## 4531      Tarrant
## 4532      Tarrant
## 4533      Tarrant
## 4534      Tarrant
## 4535      Tarrant
## 4536      Tarrant
## 4537      Tarrant
## 4538      Tarrant
## 4539      Tarrant
## 4540      Tarrant
## 4541      Tarrant
## 4542       Denton
## 4543       Denton
## 4544       Dallas
## 4545       Dallas
## 4546       Dallas
## 4547       Dallas
## 4548       Dallas
## 4549       Dallas
## 4550       Dallas
## 4551       Dallas
## 4552       Dallas
## 4553       Dallas
## 4554       Dallas
## 4555       Dallas
## 4556       Dallas
## 4557       Dallas
## 4558       Dallas
## 4559       Dallas
## 4560       Dallas
## 4561       Dallas
## 4562       Dallas
## 4563       Dallas
## 4564       Dallas
## 4565       Dallas
## 4566       Dallas
## 4567       Dallas
## 4568       Dallas
## 4569       Dallas
## 4570       Dallas
## 4571       Dallas
## 4572       Dallas
## 4573       Dallas
## 4574       Dallas
## 4575       Dallas
## 4576       Dallas
## 4577       Dallas
## 4578       Dallas
## 4579       Dallas
## 4580       Dallas
## 4581       Dallas
## 4582       Dallas
## 4583       Dallas
## 4584       Dallas
## 4585       Dallas
## 4586       Dallas
## 4587       Dallas
## 4588       Dallas
## 4589       Dallas
## 4590       Dallas
## 4591       Dallas
## 4592       Dallas
## 4593       Dallas
## 4594       Dallas
## 4595       Dallas
## 4596       Dallas
## 4597       Dallas
## 4598       Dallas
## 4599       Dallas
## 4600       Dallas
## 4601       Dallas
## 4602       Travis
## 4603       Travis
## 4604       Travis
## 4605       Travis
## 4606       Travis
## 4607       Travis
## 4608       Travis
## 4609       Travis
## 4610       Travis
## 4611       Travis
## 4612       Travis
## 4613       Travis
## 4614       Travis
## 4615       Travis
## 4616       Travis
## 4617       Travis
## 4618       Travis
## 4619       Travis
## 4620       Travis
## 4621       Travis
## 4622       Travis
## 4623       Travis
## 4624    Jefferson
## 4625    Jefferson
## 4626    Jefferson
## 4627    Jefferson
## 4628    Jefferson
## 4629    Jefferson
## 4630       Denton
## 4631       Denton
## 4632       Denton
## 4633       Harris
## 4634       Harris
## 4635       Harris
## 4636    Fort Bend
## 4637    Fort Bend
## 4638        Bexar
## 4639        Bexar
## 4640        Bexar
## 4641        Bexar
## 4642        Bexar
## 4643        Bexar
## 4644        Bexar
## 4645        Bexar
## 4646        Bexar
## 4647        Bexar
## 4648        Bexar
## 4649        Bexar
## 4650        Bexar
## 4651        Bexar
## 4652        Bexar
## 4653        Bexar
## 4654        Bexar
## 4655        Bexar
## 4656        Bexar
## 4657        Bexar
## 4658        Bexar
## 4659        Bexar
## 4660        Bexar
## 4661        Bexar
## 4662        Bexar
## 4663        Bexar
## 4664        Bexar
## 4665        Bexar
## 4666        Bexar
## 4667        Bexar
## 4668        Bexar
## 4669        Bexar
## 4670        Bexar
## 4671        Bexar
## 4672        Bexar
## 4673        Bexar
## 4674        Bexar
## 4675        Bexar
## 4676        Bexar
## 4677        Bexar
## 4678        Bexar
## 4679        Bexar
## 4680        Bexar
## 4681        Bexar
## 4682        Bexar
## 4683        Bexar
## 4684        Bexar
## 4685        Bexar
## 4686        Bexar
## 4687        Bexar
## 4688        Bexar
## 4689        Bexar
## 4690        Bexar
## 4691        Bexar
## 4692        Bexar
## 4693        Bexar
## 4694        Bexar
## 4695        Bexar
## 4696        Bexar
## 4697       Harris
## 4698       Harris
## 4699       Harris
## 4700       Harris
## 4701       Harris
## 4702       Harris
## 4703       Harris
## 4704       Harris
## 4705       Harris
## 4706       Harris
## 4707       Dallas
## 4708         Webb
## 4709        BEXAR
## 4710        Bexar
## 4711        Bexar
## 4712        Bexar
## 4713        Bexar
## 4714        Bexar
## 4715        Bexar
## 4716        Bexar
## 4717        Bexar
## 4718        Bexar
## 4719        Bexar
## 4720        Bexar
## 4721        Bexar
## 4722        Bexar
## 4723        Bexar
## 4724        Bexar
## 4725        Bexar
## 4726        Bexar
## 4727        Bexar
## 4728        Bexar
## 4729        Bexar
## 4730        Bexar
## 4731       Travis
## 4732       Travis
## 4733       Travis
## 4734       Travis
## 4735       Travis
## 4736       Travis
## 4737       Travis
## 4738       Travis
## 4739        BEXAR
## 4740        BEXAR
## 4741        BEXAR
## 4742        BEXAR
## 4743        BEXAR
## 4744        BEXAR
## 4745        BEXAR
## 4746        BEXAR
## 4747        BEXAR
## 4748        BEXAR
## 4749        BEXAR
## 4750        BEXAR
## 4751        BEXAR
## 4752        BEXAR
## 4753        BEXAR
## 4754        BEXAR
## 4755        BEXAR
## 4756        BEXAR
## 4757        BEXAR
## 4758        BEXAR
## 4759        BEXAR
## 4760      Randall
## 4761      Randall
## 4762      Randall
## 4763      Randall
## 4764      Randall
## 4765      Randall
## 4766      Randall
## 4767      Randall
## 4768      Randall
## 4769      Randall
## 4770      Randall
## 4771      Randall
## 4772      Randall
## 4773      Randall
## 4774      Randall
## 4775      Randall
## 4776      Randall
## 4777      Randall
## 4778      Randall
## 4779        Smith
## 4780         Hays
## 4781         Hays
## 4782         Hays
## 4783         Hays
## 4784         Hays
## 4785         Hays
## 4786         Hays
## 4787         Hays
## 4788         Hays
## 4789         Hays
## 4790         Hays
## 4791         Hays
## 4792         Hays
## 4793         Hays
## 4794         Hays
## 4795         Hays
## 4796         Hays
## 4797         Hays
## 4798         Hays
## 4799         Hays
## 4800         Hays
## 4801         Hays
## 4802         Hays
## 4803         Hays
## 4804         Hays
## 4805         Hays
## 4806         Hays
## 4807         Hays
## 4808         Hays
## 4809         Hays
## 4810         Hays
## 4811       Travis
## 4812       Travis
## 4813       Travis
## 4814       Travis
## 4815       Travis
## 4816       Travis
## 4817       Travis
## 4818       Travis
## 4819        Bexar
## 4820        Bexar
## 4821       Dallas
## 4822       Dallas
## 4823       Dallas
## 4824       Dallas
## 4825       Dallas
## 4826       Dallas
## 4827       Dallas
## 4828       Dallas
## 4829       Dallas
## 4830       Dallas
## 4831       Dallas
## 4832        Bexar
## 4833     Cherokee
## 4834       Nueces
## 4835       Nueces
## 4836       Nueces
## 4837       Nueces
## 4838       Nueces
## 4839       Nueces
## 4840       Harris
## 4841       Harris
## 4842       Harris
## 4843       Harris
## 4844       Harris
## 4845       Harris
## 4846       Harris
## 4847       Harris
## 4848       Harris
## 4849       Travis
## 4850       Travis
## 4851       Travis
## 4852       Travis
## 4853       Travis
## 4854       Travis
## 4855       Travis
## 4856       Travis
## 4857       Harris
## 4858       Harris
## 4859       Harris
## 4860       Harris
## 4861       Harris
## 4862       Harris
## 4863       Harris
## 4864       Harris
## 4865       Harris
## 4866     Mclennan
## 4867      Tarrant
## 4868      Tarrant
## 4869      Tarrant
## 4870      Tarrant
## 4871       Travis
## 4872     Harrison
## 4873     Harrison
## 4874     Harrison
## 4875     Harrison
## 4876     Harrison
## 4877     Harrison
## 4878     Harrison
## 4879     Harrison
## 4880     Harrison
## 4881     Harrison
## 4882     Harrison
## 4883     Harrison
## 4884     Harrison
## 4885     Harrison
## 4886      Liberty
## 4887       Dallas
## 4888       Dallas
## 4889       Dallas
## 4890       Dallas
## 4891       Dallas
## 4892       Dallas
## 4893       Dallas
## 4894       Dallas
## 4895       Dallas
## 4896       Dallas
## 4897       Dallas
## 4898       Dallas
## 4899      Tarrant
## 4900   Williamson
## 4901   Williamson
## 4902   Williamson
## 4903   Williamson
## 4904       Dallas
## 4905       Dallas
## 4906       Dallas
## 4907       Dallas
## 4908       Harris
## 4909       Harris
## 4910       Harris
## 4911       Harris
## 4912       Harris
## 4913       Harris
## 4914       Harris
## 4915        Bexar
## 4916        Bexar
## 4917        Bexar
## 4918        Bexar
## 4919        Bexar
## 4920        Bexar
## 4921        Bexar
## 4922         Webb
## 4923         Webb
## 4924         Webb
## 4925         Webb
## 4926         Webb
## 4927         Webb
## 4928         Webb
## 4929       Harris
## 4930       Harris
## 4931       Harris
## 4932       Harris
## 4933       Harris
## 4934       Harris
## 4935       Harris
## 4936       Harris
## 4937       Harris
## 4938       Harris
## 4939       Harris
## 4940       Harris
## 4941       Dallas
## 4942      Cameron
## 4943      Cameron
## 4944      Cameron
## 4945      Cameron
## 4946      Cameron
## 4947      Cameron
## 4948      Cameron
## 4949      Cameron
## 4950       Dallas
## 4951       Dallas
## 4952       Dallas
## 4953       Dallas
## 4954       Dallas
## 4955       Dallas
## 4956       Dallas
## 4957       Dallas
## 4958       Dallas
## 4959       Dallas
## 4960       Dallas
## 4961       Dallas
## 4962       Dallas
## 4963       Dallas
## 4964       Dallas
## 4965       Dallas
## 4966       Dallas
## 4967       Dallas
## 4968       Dallas
## 4969       Dallas
## 4970       Dallas
## 4971       Dallas
## 4972       Dallas
## 4973       Dallas
## 4974       Dallas
## 4975       Dallas
## 4976       Dallas
## 4977       Dallas
## 4978       Dallas
## 4979       Dallas
## 4980       Dallas
## 4981       Dallas
## 4982       Dallas
## 4983       Dallas
## 4984       Dallas
## 4985       Dallas
## 4986       Dallas
## 4987       Dallas
## 4988       Dallas
## 4989       Dallas
## 4990       Dallas
## 4991       Dallas
## 4992       Dallas
## 4993       Dallas
## 4994       Dallas
## 4995       Dallas
## 4996       Dallas
## 4997       Dallas
## 4998       Dallas
## 4999       Dallas
## 5000       Dallas
## 5001       Dallas
## 5002       Dallas
## 5003       Dallas
## 5004       Dallas
## 5005       Dallas
## 5006       Dallas
## 5007       Dallas
## 5008       Dallas
## 5009       Dallas
## 5010       Dallas
## 5011       Dallas
## 5012       Dallas
## 5013       Dallas
## 5014       Dallas
## 5015       Dallas
## 5016       Dallas
## 5017       Dallas
## 5018       Dallas
## 5019       Dallas
## 5020    Fort Bend
## 5021       Harris
## 5022       Harris
## 5023       Harris
## 5024       Harris
## 5025       Harris
## 5026       Harris
## 5027       Harris
## 5028       Harris
## 5029       Harris
## 5030       Harris
## 5031       Harris
## 5032       Harris
## 5033       Harris
## 5034       Harris
## 5035       Harris
## 5036       Harris
## 5037       Harris
## 5038       Harris
## 5039       Harris
## 5040       Harris
## 5041       Dallas
## 5042       Harris
## 5043       Harris
## 5044        Bexar
## 5045       Harris
## 5046      CAMERON
## 5047      Tarrant
## 5048      Tarrant
## 5049         Hays
## 5050         Hays
## 5051       Harris
## 5052      Cameron
## 5053   Williamson
## 5054      Hidalgo
## 5055      Hidalgo
## 5056       Harris
## 5057       Harris
## 5058       Dallas
## 5059       Dallas
## 5060       Dallas
## 5061       Dallas
## 5062       Dallas
## 5063       Dallas
## 5064       Dallas
## 5065       Dallas
## 5066       Dallas
## 5067       Dallas
## 5068       Dallas
## 5069       Dallas
## 5070        Bexar
## 5071        Bexar
## 5072        Bexar
## 5073        Bexar
## 5074        Bexar
## 5075       Burnet
## 5076       Harris
## 5077       Nueces
## 5078       Dallas
## 5079       Dallas
## 5080       Dallas
## 5081       Dallas
## 5082       Collin
## 5083         Hunt
## 5084         Hunt
## 5085         Hunt
## 5086         Hunt
## 5087         Hunt
## 5088         Hunt
## 5089         Hunt
## 5090         Hunt
## 5091         Hunt
## 5092         Hunt
## 5093         Hunt
## 5094         Hunt
## 5095         Hunt
## 5096         Hunt
## 5097       Dallas
## 5098       Dallas
## 5099       Dallas
## 5100       Dallas
## 5101       Dallas
## 5102      El Paso
## 5103       Nueces
## 5104       Nueces
## 5105       Nueces
## 5106       Nueces
## 5107       Nueces
## 5108       Nueces
## 5109      Cameron
## 5110      Cameron
## 5111      Cameron
## 5112      Cameron
## 5113         King
## 5114         King
## 5115         King
## 5116       Harris
## 5117       Harris
## 5118     Cherokee
## 5119     Cherokee
## 5120     Cherokee
## 5121     Cherokee
## 5122     Cherokee
## 5123     Cherokee
## 5124     Cherokee
## 5125     Cherokee
## 5126     Cherokee
## 5127     Cherokee
## 5128     Cherokee
## 5129     Cherokee
## 5130     Cherokee
## 5131     Cherokee
## 5132     Cherokee
## 5133     Cherokee
## 5134     Cherokee
## 5135     Cherokee
## 5136     Cherokee
## 5137     Cherokee
## 5138     Cherokee
## 5139     Cherokee
## 5140     Cherokee
## 5141     Cherokee
## 5142     Cherokee
## 5143     Cherokee
## 5144     Cherokee
## 5145     Cherokee
## 5146     Cherokee
## 5147     Cherokee
## 5148     Cherokee
## 5149     Cherokee
## 5150     Cherokee
## 5151     Cherokee
## 5152     Cherokee
## 5153     Cherokee
## 5154     Cherokee
## 5155     Cherokee
## 5156     Cherokee
## 5157     Cherokee
## 5158     Cherokee
## 5159     Cherokee
## 5160     Cherokee
## 5161     Cherokee
## 5162     Cherokee
## 5163     Cherokee
## 5164     Cherokee
## 5165     Cherokee
## 5166     Cherokee
## 5167     Cherokee
## 5168     Cherokee
## 5169     Cherokee
## 5170     Cherokee
## 5171     Cherokee
## 5172     Cherokee
## 5173     Cherokee
## 5174     Cherokee
## 5175     Cherokee
## 5176     Cherokee
## 5177     Cherokee
## 5178       Travis
## 5179       Travis
## 5180       Travis
## 5181       Travis
## 5182       Travis
## 5183     Angelina
## 5184     Angelina
## 5185     Angelina
## 5186       Travis
## 5187       Travis
## 5188       Travis
## 5189       Travis
## 5190      Houston
## 5191       Harris
## 5192       Harris
## 5193       Harris
## 5194         Webb
## 5195       Dallas
## 5196       Dallas
## 5197       Dallas
## 5198       Dallas
## 5199       Dallas
## 5200       Dallas
## 5201       Dallas
## 5202       Dallas
## 5203       Dallas
## 5204       Dallas
## 5205       Dallas
## 5206       Dallas
## 5207       Dallas
## 5208       Dallas
## 5209       Dallas
## 5210       Dallas
## 5211       Dallas
## 5212       Dallas
## 5213  Nacogdoches
## 5214      Hidalgo
## 5215      Hidalgo
## 5216      Hidalgo
## 5217       Walker
## 5218       Harris
## 5219        BEXAR
## 5220        BEXAR
## 5221    Jefferson
## 5222    Jefferson
## 5223    Jefferson
## 5224    Jefferson
## 5225    Jefferson
## 5226    Jefferson
## 5227    Jefferson
## 5228    Jefferson
## 5229    Jefferson
## 5230    Jefferson
## 5231       Dallas
## 5232         Bell
## 5233 Out of State
## 5234       Dallas
## 5235       Dallas
## 5236       Dallas
## 5237       Dallas
## 5238       Dallas
## 5239       Dallas
## 5240       Dallas
## 5241       Dallas
## 5242      Tarrant
## 5243       Dallas
## 5244       Dallas
## 5245       Dallas
## 5246       Dallas
## 5247       Dallas
## 5248      Cameron
## 5249       Harris
## 5250       Dallas
## 5251       Dallas
## 5252       Dallas
## 5253       Dallas
## 5254       Dallas
## 5255       Dallas
## 5256       Dallas
## 5257       Dallas
## 5258       Dallas
## 5259       Dallas
## 5260       Dallas
## 5261       Dallas
## 5262       Dallas
## 5263       Dallas
## 5264       Dallas
## 5265       Dallas
## 5266       Dallas
## 5267       Dallas
## 5268       Dallas
## 5269       Dallas
## 5270       Dallas
## 5271       Denton
## 5272       Denton
## 5273       Denton
## 5274       Denton
## 5275       Nueces
## 5276        Bexar
## 5277         Bell
## 5278         Bell
## 5279         Bell
## 5280         Bell
## 5281       Dallas
## 5282       Harris
## 5283      Cameron
## 5284      Cameron
## 5285      Cameron
## 5286      Cameron
## 5287      Tarrant
## 5288      Tarrant
## 5289      El Paso
## 5290      Hidalgo
## 5291      Hidalgo
## 5292      Hidalgo
## 5293      Hidalgo
## 5294       Harris
## 5295       Harris
## 5296       Harris
## 5297       Harris
## 5298       Harris
## 5299       Harris
## 5300       Harris
## 5301       Harris
## 5302       Harris
## 5303       Harris
## 5304       Harris
## 5305        Bexar
## 5306        Bexar
## 5307        Bexar
## 5308        Bexar
## 5309        Bexar
## 5310    Val Verde
## 5311       Denton
## 5312         Bell
## 5313         Bell
## 5314         Bell
## 5315         Bell
## 5316         Bell
## 5317         Bell
## 5318         Bell
## 5319         Bell
## 5320       Dallas
## 5321       Dallas
## 5322       Dallas
## 5323      Tarrant
## 5324      Tarrant
## 5325        Bexar
## 5326       Dallas
## 5327       Dallas
## 5328       Dallas
## 5329       Dallas
## 5330       Dallas
## 5331       Dallas
## 5332       Taylor
## 5333       Taylor
## 5334       Taylor
## 5335       Taylor
## 5336       Taylor
## 5337       Taylor
## 5338       Taylor
## 5339       Taylor
## 5340       Taylor
## 5341       Taylor
## 5342       Taylor
## 5343       Taylor
## 5344       Taylor
## 5345    Fort Bend
## 5346    Fort Bend
## 5347    Fort Bend
## 5348    Fort Bend
## 5349       Harris
## 5350       Harris
## 5351       Harris
## 5352       Harris
## 5353       Harris
## 5354       Harris
## 5355       Travis
## 5356       Travis
## 5357       Travis
## 5358       Harris
## 5359         Hays
## 5360         Hays
## 5361   Williamson
## 5362   Williamson
## 5363   Williamson
## 5364    Galveston
## 5365       Travis
## 5366       Travis
## 5367       Travis
## 5368       Travis
## 5369       Travis
## 5370       Travis
## 5371       Travis
## 5372       Travis
## 5373       Travis
## 5374       Travis
## 5375       Travis
## 5376       Travis
## 5377       Travis
## 5378       Dallas
## 5379       Dallas
## 5380       Dallas
## 5381       Dallas
## 5382       Harris
## 5383       Harris
## 5384       Harris
## 5385       Harris
## 5386       Harris
## 5387       Harris
## 5388       Harris
## 5389       Harris
## 5390       Dallas
## 5391       Dallas
## 5392       Dallas
## 5393       Dallas
## 5394       Dallas
## 5395       Dallas
## 5396       Dallas
## 5397       Dallas
## 5398       Dallas
## 5399       Dallas
## 5400       Dallas
## 5401       Dallas
## 5402       Dallas
## 5403       Dallas
## 5404       Collin
## 5405       Collin
## 5406       Collin
## 5407       Collin
## 5408       Collin
## 5409       Collin
## 5410       Collin
## 5411       Collin
## 5412       Collin
## 5413       Collin
## 5414       Collin
## 5415       Collin
## 5416       Collin
## 5417       Collin
## 5418       Collin
## 5419       Collin
## 5420       Collin
## 5421       Collin
## 5422       Collin
## 5423       Collin
## 5424       Collin
## 5425       Collin
## 5426       Collin
## 5427       Collin
## 5428       Collin
## 5429       Collin
## 5430       Collin
## 5431       Collin
## 5432       Collin
## 5433       Collin
## 5434       Collin
## 5435       Collin
## 5436       Collin
## 5437       Collin
## 5438       Collin
## 5439       Collin
## 5440      Tarrant
## 5441       Dallas
## 5442      El Paso
## 5443      El Paso
## 5444      El Paso
## 5445       Harris
## 5446       Travis
## 5447       Collin
## 5448        Comal
## 5449        Comal
## 5450        Comal
## 5451        Comal
## 5452        Comal
## 5453        Comal
## 5454        Comal
## 5455      Kleberg
## 5456      Kleberg
## 5457      Kleberg
## 5458      Kleberg
## 5459      Kleberg
## 5460      Kleberg
## 5461      Kleberg
## 5462      Cameron
## 5463       Harris
## 5464       Harris
## 5465       Harris
## 5466       Harris
## 5467       Harris
## 5468       Harris
## 5469       Harris
## 5470       Harris
## 5471       Harris
## 5472       Harris
## 5473       Harris
## 5474       Harris
## 5475       Harris
## 5476       Harris
## 5477       Harris
## 5478       Travis
## 5479       Travis
## 5480       Travis
## 5481       Travis
## 5482       Travis
## 5483       Travis
## 5484       Travis
## 5485       Travis
## 5486       Travis
## 5487 San Patricio
## 5488 San Patricio
## 5489       Nueces
## 5490       Nueces
## 5491       Nueces
## 5492       Nueces
## 5493       Nueces
## 5494       Nueces
## 5495       Nueces
## 5496       Nueces
## 5497       Nueces
## 5498       Nueces
## 5499       Nueces
## 5500       Nueces
## 5501       Nueces
## 5502       Nueces
## 5503       Nueces
## 5504       Nueces
## 5505       Nueces
## 5506       Nueces
## 5507       Nueces
## 5508       Dallas
## 5509       Dallas
## 5510        Bexar
## 5511        Bexar
## 5512        Bexar
## 5513      Kendall
## 5514       Dallas
## 5515       Dallas
## 5516       Harris
## 5517       Harris
## 5518       Harris
## 5519       Harris
## 5520       Harris
## 5521       Harris
## 5522       Harris
## 5523       Harris
## 5524       Harris
## 5525       Harris
## 5526       Harris
## 5527       Harris
## 5528       Harris
## 5529       Harris
## 5530       Harris
## 5531       Harris
## 5532       Harris
## 5533       Harris
## 5534       Dallas
## 5535       Dallas
## 5536       Dallas
## 5537       Dallas
## 5538       Dallas
## 5539       Dallas
## 5540       Dallas
## 5541       Dallas
## 5542     Rockwall
## 5543       Dallas
## 5544       Dallas
## 5545       Dallas
## 5546       Dallas
## 5547        Ector
## 5548      Hidalgo
## 5549       DALLAS
## 5550       Potter
## 5551       Potter
## 5552       Harris
## 5553       Harris
## 5554     Harrison
## 5555     Harrison
## 5556     Harrison
## 5557     Harrison
## 5558     Harrison
## 5559     Harrison
## 5560     Harrison
## 5561     Harrison
## 5562        Bexar
## 5563        Bexar
## 5564        Bexar
## 5565        Bexar
## 5566        Bexar
## 5567        Bexar
## 5568        Bexar
## 5569        Bexar
## 5570        Bexar
## 5571        Bexar
## 5572        Bexar
## 5573        Bexar
## 5574        Bexar
## 5575        Bexar
## 5576        Bexar
## 5577        Bexar
## 5578        Bexar
## 5579        Bexar
## 5580        Bexar
## 5581        Bexar
## 5582        Bexar
## 5583        Bexar
## 5584        Bexar
## 5585        Bexar
## 5586        Bexar
## 5587        Bexar
## 5588        Bexar
## 5589        Bexar
## 5590        Bexar
## 5591        Bexar
## 5592        Bexar
## 5593        Bexar
## 5594        Bexar
## 5595        Bexar
## 5596        Bexar
## 5597        Bexar
## 5598        Bexar
## 5599        Bexar
## 5600        Bexar
## 5601        Bexar
## 5602        Bexar
## 5603        Bexar
## 5604        Bexar
## 5605        Bexar
## 5606       Dallas
## 5607 Out of State
## 5608 Out of State
## 5609 Out of State
## 5610       Taylor
## 5611       Taylor
## 5612      Tarrant
## 5613       Dallas
## 5614       Dallas
## 5615       Dallas
## 5616       Dallas
## 5617       Dallas
## 5618       Dallas
## 5619       Dallas
## 5620       Dallas
## 5621       Dallas
## 5622       Dallas
## 5623       Dallas
## 5624       Dallas
## 5625       Dallas
## 5626       Dallas
## 5627       Dallas
## 5628       Dallas
## 5629       Dallas
## 5630       Dallas
## 5631       Dallas
## 5632       Dallas
## 5633       Dallas
## 5634       Dallas
## 5635       Dallas
## 5636       Dallas
## 5637       Dallas
## 5638       Dallas
## 5639       Dallas
## 5640      Tarrant
## 5641      Tarrant
## 5642      Tarrant
## 5643      Tarrant
## 5644      Tarrant
## 5645      Tarrant
## 5646      Tarrant
## 5647        Bexar
## 5648       Harris
## 5649       Harris
## 5650       Harris
## 5651       Harris
## 5652       Harris
## 5653       Harris
## 5654       Harris
## 5655       Harris
## 5656       Dallas
## 5657      Tarrant
## 5658       Dallas
## 5659       Dallas
## 5660       Dallas
## 5661       Dallas
## 5662       Dallas
## 5663       Dallas
## 5664        Bexar
## 5665      El Paso
## 5666      El Paso
## 5667      El Paso
## 5668       Dallas
## 5669       Dallas
## 5670       Dallas
## 5671       Dallas
## 5672       Harris
## 5673       Dallas
## 5674       Dallas
## 5675       Dallas
## 5676       Dallas
## 5677        Lamar
## 5678       Dallas
## 5679       Dallas
## 5680      Tarrant
## 5681    Jefferson
## 5682      Cameron
## 5683      Cameron
## 5684      Cameron
## 5685      Cameron
## 5686      Cameron
## 5687      Cameron
## 5688      Cameron
## 5689      Cameron
## 5690      Cameron
## 5691      Cameron
## 5692      Cameron
## 5693      Cameron
## 5694      Cameron
## 5695      Cameron
## 5696      Cameron
## 5697      Cameron
## 5698      Cameron
## 5699     Rockwall
## 5700         Bell
## 5701       Denton
## 5702       Dallas
## 5703       Dallas
## 5704       Dallas
## 5705       Morris
## 5706       Harris
## 5707       Harris
## 5708       Harris
## 5709       Harris
## 5710       Harris
## 5711       Harris
## 5712       Harris
## 5713       Harris
## 5714       Harris
## 5715       Harris
## 5716       Harris
## 5717       Harris
## 5718       Harris
## 5719       Harris
## 5720       Harris
## 5721       Harris
## 5722       Harris
## 5723       Harris
## 5724       Harris
## 5725       Harris
## 5726       Harris
## 5727       Harris
## 5728        Bexar
## 5729      Tarrant
## 5730      Tarrant
## 5731      Tarrant
## 5732       Dallas
## 5733       Dallas
## 5734       Dallas
## 5735       Dallas
## 5736       Dallas
## 5737      Cameron
## 5738       Dallas
## 5739       Dallas
## 5740       Dallas
## 5741       Dallas
## 5742       Dallas
## 5743       Zapata
## 5744        Gregg
## 5745        Gregg
## 5746        Gregg
## 5747        Gregg
## 5748       Dallas
## 5749       Dallas
## 5750       Dallas
## 5751       Dallas
## 5752       Dallas
## 5753       Dallas
## 5754       Dallas
## 5755       Travis
## 5756       Travis
## 5757       Travis
## 5758    Jefferson
## 5759       Dallas
## 5760       Dallas
## 5761       Dallas
## 5762       Dallas
## 5763       Dallas
## 5764       Dallas
## 5765       Dallas
## 5766         Hays
## 5767       Harris
## 5768     Victoria
## 5769     Victoria
## 5770     Victoria
## 5771       Harris
## 5772       Harris
## 5773       Harris
## 5774       Harris
## 5775       Harris
## 5776       Harris
## 5777       Harris
## 5778       Harris
## 5779       Harris
## 5780       Harris
## 5781       Harris
## 5782       Harris
## 5783       Harris
## 5784       Harris
## 5785       Harris
## 5786       Harris
## 5787       Harris
## 5788       Harris
## 5789       Harris
## 5790       Harris
## 5791       Harris
## 5792       Harris
## 5793       Harris
## 5794       Harris
## 5795       Harris
## 5796       Harris
## 5797       Harris
## 5798       Harris
## 5799       Harris
## 5800      El Paso
## 5801      El Paso
## 5802      El Paso
## 5803      El Paso
## 5804      El Paso
## 5805      El Paso
## 5806      El Paso
## 5807      El Paso
## 5808       Harris
## 5809       Harris
## 5810       Harris
## 5811       Harris
## 5812       Harris
## 5813       Harris
## 5814       Harris
## 5815       Harris
## 5816       Harris
## 5817       Harris
## 5818       Harris
## 5819    Jefferson
## 5820        Bexar
## 5821       Collin
## 5822      Tarrant
## 5823      Tarrant
## 5824      Tarrant
## 5825      Tarrant
## 5826      Tarrant
## 5827      Tarrant
## 5828      Tarrant
## 5829      Tarrant
## 5830      Tarrant
## 5831 out of state
## 5832       Harris
## 5833       Harris
## 5834 out of state
## 5835 out of state
## 5836 out of state
## 5837       Travis
## 5838       Travis
## 5839       Travis
## 5840       Travis
## 5841       Travis
## 5842       Travis
## 5843       Travis
## 5844       Travis
## 5845       Travis
## 5846        Ellis
## 5847   Montgomery
## 5848       Dallas
## 5849       Dallas
## 5850       Dallas
## 5851       Dallas
## 5852       Dallas
## 5853       Dallas
## 5854       Dallas
## 5855       Dallas
## 5856       Dallas
## 5857       Dallas
## 5858       Dallas
## 5859      Hidalgo
## 5860      Hidalgo
## 5861       Harris
## 5862       Harris
## 5863       Dallas
## 5864       Dallas
## 5865      Tarrant
## 5866      El Paso
## 5867   Williamson
## 5868   Williamson
## 5869   Williamson
## 5870   Williamson
## 5871       Dallas
## 5872       Dallas
## 5873   Washington
## 5874        Bexar
## 5875        Bexar
## 5876        Bexar
## 5877      Tarrant
## 5878       Harris
## 5879      Hidalgo
## 5880      Hidalgo
## 5881        BEXAR
## 5882        BEXAR
## 5883        BEXAR
## 5884        BEXAR
## 5885        BEXAR
## 5886        BEXAR
## 5887       Harris
## 5888       Dallas
## 5889        Ector
## 5890      Midland
## 5891      Midland
## 5892      Midland
## 5893      Midland
## 5894        Ector
## 5895        Ector
## 5896        Ector
## 5897        Ector
## 5898        Other
## 5899         <NA>
##                                                              Provider.Name
## 1                                            Academy School of Careers Inc
## 2                                            Academy School of Careers Inc
## 3                                            Academy School of Careers Inc
## 4                                            Academy School of Careers Inc
## 5                                            Academy School of Careers Inc
## 6                                            Academy School of Careers Inc
## 7                                             ACCD Northwest Vista College
## 8                                             ACCD Northwest Vista College
## 9                                             ACCD Northwest Vista College
## 10                                            ACCD Northwest Vista College
## 11                                            ACCD Northwest Vista College
## 12                                            ACCD Northwest Vista College
## 13                                            ACCD Northwest Vista College
## 14                                            ACCD Northwest Vista College
## 15                                            ACCD Northwest Vista College
## 16                                            ACCD Northwest Vista College
## 17                                                  ACCD Palo Alto College
## 18                                                  ACCD Palo Alto College
## 19                                                  ACCD Palo Alto College
## 20                                                  ACCD Palo Alto College
## 21                                                  ACCD Palo Alto College
## 22                                                  ACCD Palo Alto College
## 23                                                  ACCD Palo Alto College
## 24                                                  ACCD Palo Alto College
## 25                                                  ACCD Palo Alto College
## 26                                                  ACCD Palo Alto College
## 27                                                  ACCD Palo Alto College
## 28                                                  ACCD Palo Alto College
## 29                                                  ACCD Palo Alto College
## 30                                                  ACCD Palo Alto College
## 31                                                  ACCD Palo Alto College
## 32                                                  ACCD Palo Alto College
## 33                                                  ACCD Palo Alto College
## 34                                                  ACCD Palo Alto College
## 35                                                  ACCD Palo Alto College
## 36                                                  ACCD Palo Alto College
## 37                                                  ACCD Palo Alto College
## 38                                                  ACCD Palo Alto College
## 39                                                  ACCD Palo Alto College
## 40                                                  ACCD Palo Alto College
## 41                                                  ACCD Palo Alto College
## 42                                                  ACCD Palo Alto College
## 43                                                  ACCD Palo Alto College
## 44                                                  ACCD Palo Alto College
## 45                                                  ACCD Palo Alto College
## 46                                                  ACCD Palo Alto College
## 47                                                  ACCD Palo Alto College
## 48                                                  ACCD Palo Alto College
## 49                                                  ACCD Palo Alto College
## 50                                                  ACCD Palo Alto College
## 51                                                  ACCD Palo Alto College
## 52                                                  ACCD Palo Alto College
## 53                                                  ACCD Palo Alto College
## 54                                                  ACCD Palo Alto College
## 55                                                  ACCD Palo Alto College
## 56                                                  ACCD Palo Alto College
## 57                                                  ACCD Palo Alto College
## 58                                                  ACCD Palo Alto College
## 59                                                  ACCD Palo Alto College
## 60                                                ACCD San Antonio College
## 61                                                ACCD San Antonio College
## 62                                                ACCD San Antonio College
## 63                                                ACCD San Antonio College
## 64                                                ACCD San Antonio College
## 65                                                ACCD San Antonio College
## 66                                                ACCD San Antonio College
## 67                                                ACCD San Antonio College
## 68                                                ACCD San Antonio College
## 69                                                ACCD San Antonio College
## 70                                                ACCD San Antonio College
## 71                                                ACCD San Antonio College
## 72                                                ACCD San Antonio College
## 73                                                ACCD San Antonio College
## 74                                                ACCD San Antonio College
## 75                                                ACCD San Antonio College
## 76                                                ACCD San Antonio College
## 77                                                ACCD San Antonio College
## 78                                                ACCD San Antonio College
## 79                                                 ACCD St Philips College
## 80                                                 ACCD St Philips College
## 81                                                 ACCD St Philips College
## 82                                                 ACCD St Philips College
## 83                                                 ACCD St Philips College
## 84                                                 ACCD St Philips College
## 85                                                 ACCD St Philips College
## 86                                                 ACCD St Philips College
## 87                                                 ACCD St Philips College
## 88                                                 ACCD St Philips College
## 89                                                 ACCD St Philips College
## 90                                                 ACCD St Philips College
## 91                                                 ACCD St Philips College
## 92                                                 ACCD St Philips College
## 93                                                 ACCD St Philips College
## 94                                                 ACCD St Philips College
## 95                                                 ACCD St Philips College
## 96                                                 ACCD St Philips College
## 97                                                 ACCD St Philips College
## 98                                                 ACCD St Philips College
## 99                                                 ACCD St Philips College
## 100                                                ACCD St Philips College
## 101                                                ACCD St Philips College
## 102                                                ACCD St Philips College
## 103                                                ACCD St Philips College
## 104                                                ACCD St Philips College
## 105                                                ACCD St Philips College
## 106                                                ACCD St Philips College
## 107                                                ACCD St Philips College
## 108                                                ACCD St Philips College
## 109                                                ACCD St Philips College
## 110                                                ACCD St Philips College
## 111                                                ACCD St Philips College
## 112                                                ACCD St Philips College
## 113                                                 Action Career Training
## 114                                       Alamo Community College District
## 115                                       Alamo Community College District
## 116                                       Alamo Community College District
## 117                                       Alamo Community College District
## 118                                       Alamo Community College District
## 119                                       Alamo Community College District
## 120                                       Alamo Community College District
## 121                                       Alamo Community College District
## 122                                       Alamo Community College District
## 123                                       Alamo Community College District
## 124                                       Alamo Community College District
## 125                                       Alamo Community College District
## 126                                       Alamo Community College District
## 127                                       Alamo Community College District
## 128                                       Alamo Community College District
## 129                                       Alamo Community College District
## 130                                       Alamo Community College District
## 131                                       Alamo Community College District
## 132                                       Alamo Community College District
## 133                                       Alamo Community College District
## 134                                       Alamo Community College District
## 135                                       Alamo Community College District
## 136                                       Alamo Community College District
## 137                                       Alamo Community College District
## 138                                       Alamo Community College District
## 139                                       Alamo Community College District
## 140                                       Alamo Community College District
## 141                                       Alamo Community College District
## 142                                       Alamo Community College District
## 143                                       Alamo Community College District
## 144                                       Alamo Community College District
## 145                                       Alamo Community College District
## 146                                       Alamo Community College District
## 147                                       Alamo Community College District
## 148                                       Alamo Community College District
## 149                                       Alamo Community College District
## 150                                       Alamo Community College District
## 151                                       Alamo Community College District
## 152                                       Alamo Community College District
## 153                                       Alamo Community College District
## 154                                       Alamo Community College District
## 155                                       Alamo Community College District
## 156                                       Alamo Community College District
## 157                                       Alamo Community College District
## 158                                       Alamo Community College District
## 159                                       Alamo Community College District
## 160                                       Alamo Community College District
## 161                                       Alamo Community College District
## 162                                       Alamo Community College District
## 163                                       Alamo Community College District
## 164                                       Alamo Community College District
## 165                                       Alamo Community College District
## 166                                       Alamo Community College District
## 167                                       Alamo Community College District
## 168                                       Alamo Community College District
## 169                                       Alamo Community College District
## 170                                       Alamo Community College District
## 171                                       Alamo Community College District
## 172                                       Alamo Community College District
## 173                                       Alamo Community College District
## 174                                       Alamo Community College District
## 175                                       Alamo Community College District
## 176                                       Alamo Community College District
## 177                                       Alamo Community College District
## 178                                       Alamo Community College District
## 179                                       Alamo Community College District
## 180                                       Alamo Community College District
## 181                                       Alamo Community College District
## 182                                       Alamo Community College District
## 183                                       Alamo Community College District
## 184                                       Alamo Community College District
## 185                                       Alamo Community College District
## 186                                       Alamo Community College District
## 187                                       Alamo Community College District
## 188                                       Alamo Community College District
## 189                                       Alamo Community College District
## 190                                       Alamo Community College District
## 191                                       Alamo Community College District
## 192                                       Alamo Community College District
## 193                                       Alamo Community College District
## 194                                       Alamo Community College District
## 195                                       Alamo Community College District
## 196                                       Alamo Community College District
## 197                                            Alamo Truck Driver Training
## 198                                          Allied Skills Training Center
## 199                                                Alpha Medical Institute
## 200                                                Alpha Medical Institute
## 201                                                Alpha Medical Institute
## 202                                                Alpha Medical Institute
## 203                                                Alpha Medical Institute
## 204                                                Alpha Medical Institute
## 205                                                Alpha Medical Institute
## 206                                                Alpha Medical Institute
## 207                                                Alpha Medical Institute
## 208                                                Alpha Medical Institute
## 209                                                Alpha Medical Institute
## 210                                                Alpha Medical Institute
## 211                                                Alpha Medical Institute
## 212                                                Alpha Medical Institute
## 213                                                Alpha Medical Institute
## 214                                                Alpha Medical Institute
## 215                                                Alpha Medical Institute
## 216                                                Alpha Medical Institute
## 217                                                Alpha Medical Institute
## 218                                                Alpha Medical Institute
## 219                                                Alpha Medical Institute
## 220                                                Alpha Medical Institute
## 221                                                Alpha Medical Institute
## 222                                                Alpha Medical Institute
## 223                                                Alpha Medical Institute
## 224                                                Alpha Medical Institute
## 225                                                Alpha Medical Institute
## 226                                                Alpha Medical Institute
## 227                                                Alpha Medical Institute
## 228                                                Alvin Community College
## 229                                                Alvin Community College
## 230                                                Alvin Community College
## 231                                                Alvin Community College
## 232                                                Alvin Community College
## 233                                                Alvin Community College
## 234                                                Alvin Community College
## 235                                                Alvin Community College
## 236                                                Alvin Community College
## 237                                                Alvin Community College
## 238                                                Alvin Community College
## 239                                                Alvin Community College
## 240                                                Alvin Community College
## 241                                                Alvin Community College
## 242                                                       Amarillo College
## 243                                                       Amarillo College
## 244                                                       Amarillo College
## 245                                                       Amarillo College
## 246                                                       Amarillo College
## 247                                                       Amarillo College
## 248                                                       Amarillo College
## 249                                                       Amarillo College
## 250                                                       Amarillo College
## 251                                                       Amarillo College
## 252                                                       Amarillo College
## 253                                                       Amarillo College
## 254                                                       Amarillo College
## 255                                                       Amarillo College
## 256                                                       Amarillo College
## 257                                                       Amarillo College
## 258                                                       Amarillo College
## 259                                                       Amarillo College
## 260                                                       Amarillo College
## 261                                                       Amarillo College
## 262                                                       Amarillo College
## 263                                                       Amarillo College
## 264                                                       Amarillo College
## 265                                                       Amarillo College
## 266                                                       Amarillo College
## 267                                                       Amarillo College
## 268                                                       Amarillo College
## 269                                                       Amarillo College
## 270                                                       Amarillo College
## 271                                                       Amarillo College
## 272                                                       Amarillo College
## 273                                                       Amarillo College
## 274                                                       Amarillo College
## 275                                                       Amarillo College
## 276                                                       Amarillo College
## 277                                                       Amarillo College
## 278                                                       Amarillo College
## 279                                                       Amarillo College
## 280                                                       Amarillo College
## 281                                                       Amarillo College
## 282                                                       Amarillo College
## 283                                                       Amarillo College
## 284                                                       Amarillo College
## 285                                                       Amarillo College
## 286                                                       Amarillo College
## 287                                                       Amarillo College
## 288                                                       Amarillo College
## 289                                                       Amarillo College
## 290                                                       Amarillo College
## 291                                                       Amarillo College
## 292                                                       Amarillo College
## 293                                                       Amarillo College
## 294                                                       Amarillo College
## 295                                                       Amarillo College
## 296                                                       Amarillo College
## 297                                                       Amarillo College
## 298                                                       Amarillo College
## 299                                                       Amarillo College
## 300                                                       Amarillo College
## 301                                                       Amarillo College
## 302                                                       Amarillo College
## 303                                                       Amarillo College
## 304                                                       Amarillo College
## 305                                                       Amarillo College
## 306                                                       Amarillo College
## 307                                                       Amarillo College
## 308                                                       Amarillo College
## 309                                                       Amarillo College
## 310                                                       Amarillo College
## 311                                                       Angelina College
## 312                                                       Angelina College
## 313                                                       Angelina College
## 314                                                       Angelina College
## 315                                                       Angelina College
## 316                                                       Angelina College
## 317                                                       Angelina College
## 318                                                       Angelina College
## 319                                                       Angelina College
## 320                                                       Angelina College
## 321                                                       Angelina College
## 322                                                       Angelina College
## 323                                                       Angelina College
## 324                                                       Angelina College
## 325                                                       Angelina College
## 326                                                       Angelina College
## 327                                                       Angelina College
## 328                                                       Angelina College
## 329                                                       Angelina College
## 330                                                       Angelina College
## 331                                                       Angelina College
## 332                                                       Angelina College
## 333                                                       Angelina College
## 334                                                       Angelina College
## 335                                                       Angelina College
## 336                                                       Angelina College
## 337                                                       Angelina College
## 338                                                       Angelina College
## 339                                                       Angelina College
## 340                                                       Angelina College
## 341                                                       Angelina College
## 342                                                       Angelina College
## 343                                                       Angelina College
## 344                                                       Angelina College
## 345                                                       Angelina College
## 346                                                       Angelina College
## 347                                                       Angelina College
## 348                                                       Angelina College
## 349                                                       Angelina College
## 350                                                       Angelina College
## 351                                                       Angelina College
## 352                                                       Angelina College
## 353                                                       Angelina College
## 354                                                       Angelina College
## 355                                                       Angelina College
## 356                                                       Angelina College
## 357                                                       Angelina College
## 358                                                       Angelina College
## 359                                                       Angelina College
## 360                                                       Angelina College
## 361                                                       Angelina College
## 362                                                       Angelina College
## 363                                                       Angelina College
## 364                                                       Angelina College
## 365                                                       Angelina College
## 366                                                       Angelina College
## 367                                                       Angelina College
## 368                                                       Angelina College
## 369                                                       Angelina College
## 370                                                       Angelina College
## 371                                                       Angelina College
## 372                                                       Angelina College
## 373                                                       Angelina College
## 374                                                       Angelina College
## 375                                                       Angelina College
## 376                                                       Angelina College
## 377                                                       Angelina College
## 378                                                Angelo State University
## 379                                                 Arclabs Welding School
## 380                                                 Arclabs Welding School
## 381                                                 Arclabs Welding School
## 382                                             Arlington Career Institute
## 383                                             Arlington Career Institute
## 384                                             Arlington Career Institute
## 385                                             Arlington Career Institute
## 386                                             Arlington Career Institute
## 387                                             Arlington Career Institute
## 388                                             Arlington Career Institute
## 389                                                          Asher College
## 390                                                          Asher College
## 391                                                          Asher College
## 392                                                          Asher College
## 393                                                          Asher College
## 394                                                          Asher College
## 395                                                          Asher College
## 396                                                          Asher College
## 397                                                          Asher College
## 398                                                          Asher College
## 399                                                          Asher College
## 400                                                          Asher College
## 401                                            Aspire Truck Driving School
## 402                                                                   ATDS
## 403                                                                   ATDS
## 404                                                                   ATDS
## 405                                                Austin Career Institute
## 406                                                Austin Career Institute
## 407                                                Austin Career Institute
## 408                                                Austin Career Institute
## 409                                                Austin Career Institute
## 410                                                Austin Career Institute
## 411                                                Austin Career Institute
## 412                                               Austin Community College
## 413                                               Austin Community College
## 414                                               Austin Community College
## 415                                               Austin Community College
## 416                                               Austin Community College
## 417                                               Austin Community College
## 418                                               Austin Community College
## 419                                               Austin Community College
## 420                                               Austin Community College
## 421                                               Austin Community College
## 422                                               Austin Community College
## 423                                               Austin Community College
## 424                                               Austin Community College
## 425                                               Austin Community College
## 426                                               Austin Community College
## 427                                               Austin Community College
## 428                                               Austin Community College
## 429                                               Austin Community College
## 430                                               Austin Community College
## 431                                               Austin Community College
## 432                                               Austin Community College
## 433                                               Austin Community College
## 434                                               Austin Community College
## 435                                               Austin Community College
## 436                                               Austin Community College
## 437                                               Austin Community College
## 438                                               Austin Community College
## 439                                               Austin Community College
## 440                                               Austin Community College
## 441                                               Austin Community College
## 442                                               Austin Community College
## 443                                               Austin Community College
## 444                                               Austin Community College
## 445                                               Austin Community College
## 446                                               Austin Community College
## 447                                               Austin Community College
## 448                                               Austin Community College
## 449                                               Austin Community College
## 450                                               Austin Community College
## 451                                               Austin Community College
## 452                                               Austin Community College
## 453                                               Austin Community College
## 454                                               Austin Community College
## 455                                               Austin Community College
## 456                                               Austin Community College
## 457                                               Austin Community College
## 458                                               Austin Community College
## 459                                               Austin Community College
## 460                                               Austin Community College
## 461                                               Austin Community College
## 462                                               Austin Community College
## 463                                               Austin Community College
## 464                                               Austin Community College
## 465                                               Austin Community College
## 466                                               Austin Community College
## 467                                               Austin Community College
## 468                                               Austin Community College
## 469                                               Austin Community College
## 470                                               Austin Community College
## 471                                               Austin Community College
## 472                                               Austin Community College
## 473                                               Austin Community College
## 474                                               Austin Community College
## 475                                               Austin Community College
## 476                                               Austin Community College
## 477                                               Austin Community College
## 478                                               Austin Community College
## 479                                               Austin Community College
## 480                                               Austin Community College
## 481                                               Austin Community College
## 482                                               Austin Community College
## 483                                               Austin Community College
## 484                                               Austin Community College
## 485                                               Austin Community College
## 486                                               Austin Community College
## 487                                               Austin Community College
## 488                                               Austin Community College
## 489                                               Austin Community College
## 490                                               Austin Community College
## 491                                               Austin Community College
## 492                                               Austin Community College
## 493                                               Austin Community College
## 494                                               Austin Community College
## 495                                               Austin Community College
## 496                                               Austin Community College
## 497                                               Austin Community College
## 498                                               Austin Community College
## 499                                               Austin Community College
## 500                                               Austin Community College
## 501                                               Austin Community College
## 502                                               Austin Community College
## 503                                               Austin Community College
## 504                                               Austin Community College
## 505                                               Austin Community College
## 506                                               Austin Community College
## 507                                               Austin Community College
## 508                                               Austin Community College
## 509                                               Austin Community College
## 510                                               Austin Community College
## 511                                               Austin Community College
## 512                                               Austin Community College
## 513                                               Austin Community College
## 514                                               Austin Community College
## 515                                               Austin Community College
## 516                                               Austin Community College
## 517                                               Austin Community College
## 518                                               Austin Community College
## 519                                               Austin Community College
## 520                                               Austin Community College
## 521                                               Austin Community College
## 522                                               Austin Community College
## 523                                               Austin Community College
## 524                                               Austin Community College
## 525                                               Austin Community College
## 526                                               Austin Community College
## 527                                               Austin Community College
## 528                                               Austin Community College
## 529                                               Austin Community College
## 530                                               Austin Community College
## 531                                               Austin Community College
## 532                                               Austin Community College
## 533                                               Austin Community College
## 534                                               Austin Community College
## 535                                               Austin Community College
## 536                                               Austin Community College
## 537                                               Austin Community College
## 538                                               Austin Community College
## 539                                               Austin Community College
## 540                                               Austin Community College
## 541                                               Austin Community College
## 542                                               Austin Community College
## 543                                               Austin Community College
## 544                                               Austin Community College
## 545                                               Austin Community College
## 546                                               Austin Community College
## 547                                               Austin Community College
## 548                                               Austin Community College
## 549                                               Austin Community College
## 550                                               Austin Community College
## 551                                               Austin Community College
## 552                                               Austin Community College
## 553                                               Austin Community College
## 554                                               Austin Community College
## 555                                               Austin Community College
## 556                                               Austin Community College
## 557                                               Austin Community College
## 558                                               Baptist Memorials Center
## 559                                         Bell Tech Career Institute Inc
## 560                                                 Birring NDE Center Inc
## 561                                                 Birring NDE Center Inc
## 562                                         Black Wolf CDL Training Center
## 563                                                 Blinn College District
## 564                                                 Blinn College District
## 565                                                 Blinn College District
## 566                                                 Blinn College District
## 567                                                 Blinn College District
## 568                                                 Blinn College District
## 569                                                 Blinn College District
## 570                                                 Blinn College District
## 571                                                 Blinn College District
## 572                                                 Blinn College District
## 573                                                 Blinn College District
## 574                                                 Blinn College District
## 575                                                 Blinn College District
## 576                                                 Blinn College District
## 577                                                 Blinn College District
## 578                                                 Blinn College District
## 579                                                 Blinn College District
## 580                                                 Blinn College District
## 581                                                 Blinn College District
## 582                                                 Blinn College District
## 583                                                 Blinn College District
## 584                                                 Blinn College District
## 585                                                 Blinn College District
## 586                                                 Blinn College District
## 587                                                 Blinn College District
## 588                                                 Blinn College District
## 589                                                 Blinn College District
## 590                                                 Blinn College District
## 591                                                 Blinn College District
## 592                                                 Blinn College District
## 593                                                 Blinn College District
## 594                                                 Blinn College District
## 595                                                 Blinn College District
## 596                                                 Blinn College District
## 597                                                 Blinn College District
## 598                                                 Blinn College District
## 599                                                 Blinn College District
## 600                                                 Blinn College District
## 601                                                     Brazosport College
## 602                                                     Brazosport College
## 603                                                     Brazosport College
## 604                                                     Brazosport College
## 605                                                     Brazosport College
## 606                                                     Brazosport College
## 607                                                     Brazosport College
## 608                                                     Brazosport College
## 609                                                     Brazosport College
## 610                                                     Brazosport College
## 611                                                     Brazosport College
## 612                                                     Brazosport College
## 613                                                     Brazosport College
## 614                                                     Brazosport College
## 615                                                     Brazosport College
## 616                                                     Brazosport College
## 617                                                     Brazosport College
## 618                                           C1 Truck Driver Training LLC
## 619                                Cameron County Education Initiative Inc
## 620                                Cameron County Education Initiative Inc
## 621                                Cameron County Education Initiative Inc
## 622                                Cameron County Education Initiative Inc
## 623                                Cameron County Education Initiative Inc
## 624                                Cameron County Education Initiative Inc
## 625                                Cameron County Education Initiative Inc
## 626                                           Careers Institute of America
## 627                                           Careers Institute of America
## 628                                           Careers Institute of America
## 629                                           Careers Institute of America
## 630                                           Careers Institute of America
## 631                                                 CAREERS UNLIMITED  LLC
## 632                                                 CAREERS UNLIMITED  LLC
## 633                                                 CAREERS UNLIMITED  LLC
## 634                                                 CAREERS UNLIMITED  LLC
## 635                                                 CAREERS UNLIMITED  LLC
## 636                                                 CAREERS UNLIMITED  LLC
## 637                                                CCI Training Center Inc
## 638                                                CCI Training Center Inc
## 639                                                CCI Training Center Inc
## 640                                                CCI Training Center Inc
## 641                                                CCI Training Center Inc
## 642                                                CCI Training Center Inc
## 643                                                CCI Training Center Inc
## 644                                                CCI Training Center Inc
## 645                                                CCI Training Center Inc
## 646                                                CCI Training Center Inc
## 647                                                CCI Training Center Inc
## 648                                                CCI Training Center Inc
## 649                                      Center for Advanced Legal Studies
## 650                                             Center for Career Training
## 651                                             Center for Career Training
## 652                                             Center for Career Training
## 653                                             Center for Career Training
## 654                                             Center for Career Training
## 655                                             Center for Career Training
## 656                                         Center For Employment Training
## 657                                         Center For Employment Training
## 658                              Central Texas AC and Refrigeration School
## 659                                                  Central Texas College
## 660                                                  Central Texas College
## 661                                                  Central Texas College
## 662                                                  Central Texas College
## 663                                                  Central Texas College
## 664                                                  Central Texas College
## 665                                                  Central Texas College
## 666                                                  Central Texas College
## 667                                                  Central Texas College
## 668                                                  Central Texas College
## 669                                                  Central Texas College
## 670                                                  Central Texas College
## 671                                                  Central Texas College
## 672                                                  Central Texas College
## 673                                                  Central Texas College
## 674                                                  Central Texas College
## 675                                                  Central Texas College
## 676                                                  Central Texas College
## 677                                        Central Texas Nurse Network Inc
## 678                                        Central Texas Nurse Network Inc
## 679                                                          Cisco College
## 680                                                          Cisco College
## 681                                                          Cisco College
## 682                                                          Cisco College
## 683                                                          Cisco College
## 684                                                          Cisco College
## 685                                                          Cisco College
## 686                                                          Cisco College
## 687                                                          Cisco College
## 688                                                          Cisco College
## 689                                                          Cisco College
## 690                                                          Cisco College
## 691                                                          Cisco College
## 692                                                          Cisco College
## 693                                                          Cisco College
## 694                                                          Cisco College
## 695                                                          Cisco College
## 696                                                          Cisco College
## 697                                                      Clarendon College
## 698                                                      Clarendon College
## 699                                                      Clarendon College
## 700                                                      Clarendon College
## 701                                                      Clarendon College
## 702                                                      Clarendon College
## 703                                                      Clarendon College
## 704                                                      Clarendon College
## 705                                                      Clarendon College
## 706                                                      Clarendon College
## 707                                                      Clarendon College
## 708                                                      Clarendon College
## 709                                                      Clarendon College
## 710                                                      Clarendon College
## 711                                                      Clarendon College
## 712                                                      Clarendon College
## 713                                                      Clarendon College
## 714                                                      Clarendon College
## 715                                                      Clarendon College
## 716                                                      Clarendon College
## 717                                                      Clarendon College
## 718                                                      Clarendon College
## 719                                                      Clarendon College
## 720                                                      Clarendon College
## 721                                                      Clarendon College
## 722                                                      Clarendon College
## 723                                                      Clarendon College
## 724                                                      Clarendon College
## 725                                                      Clarendon College
## 726                                                      Clarendon College
## 727                                                      Clarendon College
## 728                                                      Clarendon College
## 729                                                      Clarendon College
## 730                                                      Clarendon College
## 731                                                      Clarendon College
## 732                                                      Clarendon College
## 733                                                      Clarendon College
## 734                                                      Clarendon College
## 735                                                      Clarendon College
## 736                                                      Clarendon College
## 737                                                       CLC Incorporated
## 738                                                       CLC Incorporated
## 739                                                       CLC Incorporated
## 740                                                       CLC Incorporated
## 741                                                       CLC Incorporated
## 742                                                       CLC Incorporated
## 743                                               Cloud Technology Experts
## 744                                               Cloud Technology Experts
## 745                                               Cloud Technology Experts
## 746                                               Cloud Technology Experts
## 747                                               Cloud Technology Experts
## 748                                               Cloud Technology Experts
## 749                                               Cloud Technology Experts
## 750                                               Cloud Technology Experts
## 751                                               Cloud Technology Experts
## 752                                               Cloud Technology Experts
## 753                                               Cloud Technology Experts
## 754                                               Cloud Technology Experts
## 755                                               Cloud Technology Experts
## 756                                               Cloud Technology Experts
## 757                                               Cloud Technology Experts
## 758                                               Cloud Technology Experts
## 759                                               Cloud Technology Experts
## 760                                               Cloud Technology Experts
## 761                                               Cloud Technology Experts
## 762                                               Cloud Technology Experts
## 763                                               Cloud Technology Experts
## 764                                                   Coastal Bend College
## 765                                                   Coastal Bend College
## 766                                                   Coastal Bend College
## 767                                                   Coastal Bend College
## 768                                                   Coastal Bend College
## 769                                                   Coastal Bend College
## 770                                                   Coastal Bend College
## 771                                                   Coastal Bend College
## 772                                                   Coastal Bend College
## 773                                                   Coastal Bend College
## 774                                                   Coastal Bend College
## 775                                                   Coastal Bend College
## 776                                                   Coastal Bend College
## 777                                                   Coastal Bend College
## 778                                                   Coastal Bend College
## 779                                                   Coastal Bend College
## 780                                                   Coastal Bend College
## 781                                                   Coastal Bend College
## 782                                                   Coastal Bend College
## 783                                                   Coastal Bend College
## 784                                                   Coastal Bend College
## 785                                                   Coastal Bend College
## 786                                                   Coastal Bend College
## 787                                                   Coastal Bend College
## 788                                                   Coastal Bend College
## 789                                                   Coastal Bend College
## 790                                                   Coastal Bend College
## 791                                                   Coastal Bend College
## 792                                                   Coastal Bend College
## 793                                                   Coastal Bend College
## 794                                                   Coastal Bend College
## 795                                                   Coastal Bend College
## 796                                                   Coastal Bend College
## 797                                                   Coastal Bend College
## 798                                                   Coastal Bend College
## 799                                                   Coastal Bend College
## 800                                                   Coastal Bend College
## 801                                                   Coastal Bend College
## 802                                                   Coastal Bend College
## 803                                                   Coastal Bend College
## 804                                                   Coastal Bend College
## 805                                                   Coastal Bend College
## 806                                                   Coastal Bend College
## 807                                                   Coastal Bend College
## 808                                                   Coastal Bend College
## 809                                                   Coastal Bend College
## 810                                                   Coastal Bend College
## 811                                                   Coastal Bend College
## 812                                                   Coastal Bend College
## 813                                                   Coastal Bend College
## 814                                                   Coastal Bend College
## 815                                                   Coastal Bend College
## 816                                                   Coastal Bend College
## 817                                                   Coastal Bend College
## 818                                                   Coastal Bend College
## 819                                                   Coastal Bend College
## 820                                                   Coastal Bend College
## 821                                                   Coastal Bend College
## 822                                                   Coastal Bend College
## 823                                                   Coastal Bend College
## 824                                                   Coastal Bend College
## 825                                                   Coastal Bend College
## 826                                                   Coastal Bend College
## 827                                                   Coastal Bend College
## 828                                                   Coastal Bend College
## 829                                                   Coastal Bend College
## 830                                                   Coastal Bend College
## 831                                                   Coastal Bend College
## 832                                                   Coastal Bend College
## 833                                                   Coastal Bend College
## 834                                                   Coastal Bend College
## 835                                                   Coastal Bend College
## 836                                                   Coastal Bend College
## 837                                                   Coastal Bend College
## 838                                                   Coastal Bend College
## 839                                                   Coastal Bend College
## 840                                                   Coastal Bend College
## 841                                                   Coastal Bend College
## 842                                                   Coastal Bend College
## 843                                                   Coastal Bend College
## 844                                                   Coastal Bend College
## 845                                                   Coastal Bend College
## 846                                                   Coastal Bend College
## 847                                                   Coastal Bend College
## 848                                                   Coastal Bend College
## 849                                                   Coastal Bend College
## 850                                                   Coastal Bend College
## 851                                                   Coastal Bend College
## 852                                                   Coastal Bend College
## 853                                                   Coastal Bend College
## 854                                                   Coastal Bend College
## 855                                                   Coastal Bend College
## 856                                                   Coastal Bend College
## 857                                                   Coastal Bend College
## 858                                                   Coastal Bend College
## 859                                                   Coastal Bend College
## 860                                                   Coastal Bend College
## 861                                                   Coastal Bend College
## 862                                                   Coastal Bend College
## 863                                                   Coastal Bend College
## 864                                                   Coastal Bend College
## 865                                                   Coastal Bend College
## 866                                                   Coastal Bend College
## 867                                                   Coastal Bend College
## 868                                                   Coastal Bend College
## 869                                                   Coastal Bend College
## 870                                                   Coastal Bend College
## 871                                                   Coastal Bend College
## 872                                                   Coastal Bend College
## 873                                                   Coastal Bend College
## 874                                                   Coastal Bend College
## 875                                                   Coastal Bend College
## 876                                                   Coastal Bend College
## 877                                                   Coastal Bend College
## 878                                                   Coastal Bend College
## 879                                                   Coastal Bend College
## 880                                                   Coastal Bend College
## 881                                                   Coastal Bend College
## 882                                                   Coastal Bend College
## 883                                                   Coastal Bend College
## 884                                                   Coastal Bend College
## 885                                                   Coastal Bend College
## 886                                                   Coastal Bend College
## 887                                                   Coastal Bend College
## 888                                                   Coastal Bend College
## 889                                                   Coastal Bend College
## 890                                                   Coastal Bend College
## 891                                                   Coastal Bend College
## 892                                                   Coastal Bend College
## 893                                                   Coastal Bend College
## 894                                                   Coastal Bend College
## 895                                                   Coastal Bend College
## 896                                                   Coastal Bend College
## 897                                                   Coastal Bend College
## 898                                                   Coastal Bend College
## 899                                                   Coastal Bend College
## 900                                                   Coastal Bend College
## 901                                                   Coastal Bend College
## 902                                                   Coastal Bend College
## 903                                                   Coastal Bend College
## 904                                                   Coastal Bend College
## 905                                                   Coastal Bend College
## 906                                                   Coastal Bend College
## 907                                                   Coastal Bend College
## 908                                                   Coastal Bend College
## 909                                                   Coastal Bend College
## 910                                                   Coastal Bend College
## 911                                                   Coastal Bend College
## 912                                                   Coastal Bend College
## 913                                                   Coastal Bend College
## 914                                                   Coastal Bend College
## 915                                                   Coastal Bend College
## 916                                                   Coastal Bend College
## 917                                                   Coastal Bend College
## 918                                                   Coastal Bend College
## 919                                                   Coastal Bend College
## 920                                                   Coastal Bend College
## 921                                                   Coastal Bend College
## 922                                                   Coastal Bend College
## 923                                                   Coastal Bend College
## 924                                                   Coastal Bend College
## 925                                                   Coastal Bend College
## 926                                                   Coastal Bend College
## 927                                                   Coastal Bend College
## 928                                                   Coastal Bend College
## 929                                                   Coastal Bend College
## 930                                                   Coastal Bend College
## 931                                                   Coastal Bend College
## 932                                                   Coastal Bend College
## 933                                                   Coastal Bend College
## 934                                                   Coastal Bend College
## 935                                                   Coastal Bend College
## 936                                                   Coastal Bend College
## 937                                                   Coastal Bend College
## 938                                                   Coastal Bend College
## 939                                                   Coastal Bend College
## 940                                                   Coastal Bend College
## 941                                                   Coastal Bend College
## 942                                                   Coastal Bend College
## 943                                                   Coastal Bend College
## 944                                                   Coastal Bend College
## 945                                                   Coastal Bend College
## 946                                                   Coastal Bend College
## 947                                                   Coastal Bend College
## 948                                                   Coastal Bend College
## 949                                                   Coastal Bend College
## 950                                                   Coastal Bend College
## 951                                                   Coastal Bend College
## 952                                                   Coastal Bend College
## 953                                                   Coastal Bend College
## 954                                                   Coastal Bend College
## 955                                                   Coastal Bend College
## 956                                                   Coastal Bend College
## 957                                                   Coastal Bend College
## 958                                                   Coastal Bend College
## 959                                                   Coastal Bend College
## 960                                                   Coastal Bend College
## 961                                                   Coastal Bend College
## 962                                                   Coastal Bend College
## 963                                                   Coastal Bend College
## 964                                                   Coastal Bend College
## 965                                                   Coastal Bend College
## 966                                                   Coastal Bend College
## 967                                                   Coastal Bend College
## 968                                                   Coastal Bend College
## 969                                                   Coastal Bend College
## 970                                                   Coastal Bend College
## 971                                                   Coastal Bend College
## 972                                                   Coastal Bend College
## 973                                                   Coastal Bend College
## 974                                                   Coastal Bend College
## 975                                                   Coastal Bend College
## 976                                                   Coastal Bend College
## 977                                                   Coastal Bend College
## 978                                                   Coastal Bend College
## 979                                                   Coastal Bend College
## 980                                                   Coastal Bend College
## 981                                                   Coastal Bend College
## 982                                                   Coastal Bend College
## 983                                                   Coastal Bend College
## 984                                                   Coastal Bend College
## 985                                                   Coastal Bend College
## 986                                                   Coastal Bend College
## 987                                                   Coastal Bend College
## 988                                                   Coastal Bend College
## 989                                                   Coastal Bend College
## 990                                                   Coastal Bend College
## 991                                                   Coastal Bend College
## 992                                                   Coastal Bend College
## 993                                                   Coastal Bend College
## 994                                                   Coastal Bend College
## 995                                                   Coastal Bend College
## 996                                                   Coastal Bend College
## 997                                                   Coastal Bend College
## 998                                                             Codeup Inc
## 999                                                             Codeup Inc
## 1000                                                            Codeup Inc
## 1001                                                            Codeup Inc
## 1002                                                            Codeup Inc
## 1003                                                         Colaberry Inc
## 1004                                                         Colaberry Inc
## 1005                                                         Colaberry Inc
## 1006                                                         Colaberry Inc
## 1007                                                         Colaberry Inc
## 1008                                                         Colaberry Inc
## 1009                                                         Colaberry Inc
## 1010                                               College of the Mainland
## 1011                                               College of the Mainland
## 1012                                               College of the Mainland
## 1013                                               College of the Mainland
## 1014                                               College of the Mainland
## 1015                                               College of the Mainland
## 1016                                               College of the Mainland
## 1017                                               College of the Mainland
## 1018                                               College of the Mainland
## 1019                                               College of the Mainland
## 1020                                               College of the Mainland
## 1021                                               College of the Mainland
## 1022                                               College of the Mainland
## 1023                                               College of the Mainland
## 1024                                               College of the Mainland
## 1025                                               College of the Mainland
## 1026                                               College of the Mainland
## 1027                                               College of the Mainland
## 1028                                                        Collin College
## 1029                                                        Collin College
## 1030                                                        Collin College
## 1031                                                        Collin College
## 1032                                                        Collin College
## 1033                                                        Collin College
## 1034                                                        Collin College
## 1035                                                        Collin College
## 1036                                                        Collin College
## 1037                                                        Collin College
## 1038                                                        Collin College
## 1039                                                        Collin College
## 1040                                                        Collin College
## 1041                                                        Collin College
## 1042                                                        Collin College
## 1043                                                        Collin College
## 1044                                                        Collin College
## 1045                                    Community Truck Driving School LLC
## 1046                                         Compusoft Training Center Inc
## 1047                                                     ComputerMinds com
## 1048                                                     ComputerMinds com
## 1049                                                     ComputerMinds com
## 1050                                                     ComputerMinds com
## 1051                                                     ComputerMinds com
## 1052                                                     ComputerMinds com
## 1053                                                     ComputerMinds com
## 1054                                                     ComputerMinds com
## 1055                                                     ComputerMinds com
## 1056                                                     ComputerMinds com
## 1057                                                     ComputerMinds com
## 1058                                                     ComputerMinds com
## 1059                                                     ComputerMinds com
## 1060                                                     ComputerMinds com
## 1061                                                     ComputerMinds com
## 1062                                                     ComputerMinds com
## 1063                                                     ComputerMinds com
## 1064                                                     ComputerMinds com
## 1065                                                     ComputerMinds com
## 1066                                                     ComputerMinds com
## 1067                                                     ComputerMinds com
## 1068                                                     ComputerMinds com
## 1069                                                     ComputerMinds com
## 1070                                                     ComputerMinds com
## 1071                                                     ComputerMinds com
## 1072                                                     ComputerMinds com
## 1073                                                     ComputerMinds com
## 1074                                                     ComputerMinds com
## 1075                                                     ComputerMinds com
## 1076                                                     ComputerMinds com
## 1077                                                     ComputerMinds com
## 1078                                                     ComputerMinds com
## 1079                                                     ComputerMinds com
## 1080                                                     ComputerMinds com
## 1081                                                     ComputerMinds com
## 1082                                                     ComputerMinds com
## 1083                                                     ComputerMinds com
## 1084                                                     ComputerMinds com
## 1085                                                     ComputerMinds com
## 1086                                                     ComputerMinds com
## 1087                                                     ComputerMinds com
## 1088                                                     ComputerMinds com
## 1089                                                     ComputerMinds com
## 1090                                                     ComputerMinds com
## 1091                                                     ComputerMinds com
## 1092                                                     ComputerMinds com
## 1093                                                     ComputerMinds com
## 1094                                                     ComputerMinds com
## 1095                                               Concorde Career College
## 1096                                               Concorde Career College
## 1097                                               Concorde Career College
## 1098                                               Concorde Career College
## 1099                                               Concorde Career College
## 1100                                               Concorde Career College
## 1101                                               Concorde Career College
## 1102                                               Concorde Career College
## 1103                                               Concorde Career College
## 1104                                               Concorde Career College
## 1105                                               Concorde Career College
## 1106                                               Concorde Career College
## 1107                                               Concorde Career College
## 1108                                               Concorde Career College
## 1109                                               Concorde Career College
## 1110                                               Concorde Career College
## 1111                                               Concorde Career College
## 1112                                               Concorde Career College
## 1113                                               Concorde Career College
## 1114                                               Concorde Career College
## 1115                                               Concorde Career College
## 1116                Continental Truck Driver Training and Education School
## 1117                          Covenant School of Nursing and Allied Health
## 1118                                          Covenant School of Radiology
## 1119                             Craft Training Center of the Coastal Bend
## 1120                             Craft Training Center of the Coastal Bend
## 1121                             Craft Training Center of the Coastal Bend
## 1122                             Craft Training Center of the Coastal Bend
## 1123                             Craft Training Center of the Coastal Bend
## 1124                             Craft Training Center of the Coastal Bend
## 1125                              Cy Fair College Lone Star College System
## 1126                              Cy Fair College Lone Star College System
## 1127                              Cy Fair College Lone Star College System
## 1128                              Cy Fair College Lone Star College System
## 1129                              Cy Fair College Lone Star College System
## 1130                              Cy Fair College Lone Star College System
## 1131                              Cy Fair College Lone Star College System
## 1132                              Cy Fair College Lone Star College System
## 1133                              Cy Fair College Lone Star College System
## 1134                              Cy Fair College Lone Star College System
## 1135                              Cy Fair College Lone Star College System
## 1136                              Cy Fair College Lone Star College System
## 1137                              Cy Fair College Lone Star College System
## 1138                              Cy Fair College Lone Star College System
## 1139                              Cy Fair College Lone Star College System
## 1140                              Cy Fair College Lone Star College System
## 1141                              Cy Fair College Lone Star College System
## 1142                              Cy Fair College Lone Star College System
## 1143                              Cy Fair College Lone Star College System
## 1144                              Cy Fair College Lone Star College System
## 1145                              Cy Fair College Lone Star College System
## 1146                              Cy Fair College Lone Star College System
## 1147                              Cy Fair College Lone Star College System
## 1148                              Cy Fair College Lone Star College System
## 1149                              Cy Fair College Lone Star College System
## 1150                              Cy Fair College Lone Star College System
## 1151                              Cy Fair College Lone Star College System
## 1152                              Cy Fair College Lone Star College System
## 1153                              Cy Fair College Lone Star College System
## 1154                              Cy Fair College Lone Star College System
## 1155                              Cy Fair College Lone Star College System
## 1156                              Cy Fair College Lone Star College System
## 1157                              Cy Fair College Lone Star College System
## 1158                              Cy Fair College Lone Star College System
## 1159                              Cy Fair College Lone Star College System
## 1160                              Cy Fair College Lone Star College System
## 1161                              Cy Fair College Lone Star College System
## 1162                              Cy Fair College Lone Star College System
## 1163                              Cy Fair College Lone Star College System
## 1164                              Cy Fair College Lone Star College System
## 1165                              Cy Fair College Lone Star College System
## 1166                              Cy Fair College Lone Star College System
## 1167                                               Dallas Career Institute
## 1168                                               Dallas Career Institute
## 1169                                               Dallas Career Institute
## 1170                                               Dallas Career Institute
## 1171                                               Dallas Career Institute
## 1172                                               Dallas Career Institute
## 1173                                                        Dallas College
## 1174                                                        Dallas College
## 1175                                                        Dallas College
## 1176                                                        Dallas College
## 1177                                                        Dallas College
## 1178                                                        Dallas College
## 1179                                                        Dallas College
## 1180                                                        Dallas College
## 1181                                                        Dallas College
## 1182                                                        Dallas College
## 1183                                                        Dallas College
## 1184                                                        Dallas College
## 1185                                                        Dallas College
## 1186                                                        Dallas College
## 1187                                                        Dallas College
## 1188                                                        Dallas College
## 1189                                                        Dallas College
## 1190                                                        Dallas College
## 1191                                                        Dallas College
## 1192                                                        Dallas College
## 1193                                                        Dallas College
## 1194                                                        Dallas College
## 1195                                                        Dallas College
## 1196                                                        Dallas College
## 1197                                                        Dallas College
## 1198                                                        Dallas College
## 1199                                                        Dallas College
## 1200                                                        Dallas College
## 1201                                                        Dallas College
## 1202                                                        Dallas College
## 1203                                                        Dallas College
## 1204                                                        Dallas College
## 1205                                                        Dallas College
## 1206                                                        Dallas College
## 1207                                                        Dallas College
## 1208                                                        Dallas College
## 1209                                                        Dallas College
## 1210                                                        Dallas College
## 1211                                                        Dallas College
## 1212                                                        Dallas College
## 1213                                                        Dallas College
## 1214                                                        Dallas College
## 1215                                                        Dallas College
## 1216                                                        Dallas College
## 1217                                                        Dallas College
## 1218                                                        Dallas College
## 1219                                                        Dallas College
## 1220                                                        Dallas College
## 1221                                                        Dallas College
## 1222                                                        Dallas College
## 1223                                                        Dallas College
## 1224                                                        Dallas College
## 1225                                                        Dallas College
## 1226                                                        Dallas College
## 1227                                                        Dallas College
## 1228                                                        Dallas College
## 1229                                                        Dallas College
## 1230                                                        Dallas College
## 1231                                                        Dallas College
## 1232                                                        Dallas College
## 1233                                                        Dallas College
## 1234                                                        Dallas College
## 1235                                                        Dallas College
## 1236                                                        Dallas College
## 1237                                                        Dallas College
## 1238                                                        Dallas College
## 1239                                                        Dallas College
## 1240                                                        Dallas College
## 1241                                                        Dallas College
## 1242                                                        Dallas College
## 1243                                                        Dallas College
## 1244                                                        Dallas College
## 1245                                                        Dallas College
## 1246                                                        Dallas College
## 1247                                                        Dallas College
## 1248                                                        Dallas College
## 1249                                                        Dallas College
## 1250                                                        Dallas College
## 1251                                                        Dallas College
## 1252                                                        Dallas College
## 1253                                                        Dallas College
## 1254                                                        Dallas College
## 1255                                                        Dallas College
## 1256                                                        Dallas College
## 1257                                                        Dallas College
## 1258                                                        Dallas College
## 1259                                                        Dallas College
## 1260                                                        Dallas College
## 1261                                                        Dallas College
## 1262                                                        Dallas College
## 1263                                                        Dallas College
## 1264                                                        Dallas College
## 1265                                                        Dallas College
## 1266                                                        Dallas College
## 1267                                                        Dallas College
## 1268                                                        Dallas College
## 1269                                                        Dallas College
## 1270                                                        Dallas College
## 1271                                                        Dallas College
## 1272                                                        Dallas College
## 1273                                                        Dallas College
## 1274                                                        Dallas College
## 1275                                                        Dallas College
## 1276                                                        Dallas College
## 1277                                                       Del Mar College
## 1278                                                       Del Mar College
## 1279                                                       Del Mar College
## 1280                                                       Del Mar College
## 1281                                                       Del Mar College
## 1282                                                       Del Mar College
## 1283                                                       Del Mar College
## 1284                                                       Del Mar College
## 1285                                                       Del Mar College
## 1286                                                       Del Mar College
## 1287                                                       Del Mar College
## 1288                                                       Del Mar College
## 1289                                                       Del Mar College
## 1290                                                       Del Mar College
## 1291                                                       Del Mar College
## 1292                                                       Del Mar College
## 1293                                                       Del Mar College
## 1294                                                       Del Mar College
## 1295                                                       Del Mar College
## 1296                                                       Del Mar College
## 1297                                                       Del Mar College
## 1298                                                       Del Mar College
## 1299                                                       Del Mar College
## 1300                                                       Del Mar College
## 1301                                                       Del Mar College
## 1302                                                       Del Mar College
## 1303                                                       Del Mar College
## 1304                                                       Del Mar College
## 1305                                                       Del Mar College
## 1306                                                       Del Mar College
## 1307                                                       Del Mar College
## 1308                                                       Del Mar College
## 1309                                                       Del Mar College
## 1310                                                       Del Mar College
## 1311                                                       Del Mar College
## 1312                                                       Del Mar College
## 1313                                                       Del Mar College
## 1314                                                       Del Mar College
## 1315                                                       Del Mar College
## 1316                                                       Del Mar College
## 1317                                                       Del Mar College
## 1318                                                       Del Mar College
## 1319                                                       Del Mar College
## 1320                                                       Del Mar College
## 1321                                                       Del Mar College
## 1322                                                       Del Mar College
## 1323                                                       Del Mar College
## 1324                                                       Del Mar College
## 1325                                                       Del Mar College
## 1326                                                       Del Mar College
## 1327                                                       Del Mar College
## 1328                                                       Del Mar College
## 1329                                                       Del Mar College
## 1330                                                       Del Mar College
## 1331                                                       Del Mar College
## 1332                                                       Del Mar College
## 1333                                                       Del Mar College
## 1334                                                       Del Mar College
## 1335                                                       Del Mar College
## 1336                                                       Del Mar College
## 1337                                                       Del Mar College
## 1338                                                       Del Mar College
## 1339                                                       Del Mar College
## 1340                                                       Del Mar College
## 1341                                                       Del Mar College
## 1342                                                       Del Mar College
## 1343                                                       Del Mar College
## 1344                                                       Del Mar College
## 1345                                                       Del Mar College
## 1346                                                       Del Mar College
## 1347                                                       Del Mar College
## 1348                                                       Del Mar College
## 1349                                                       Del Mar College
## 1350                                                       Del Mar College
## 1351                                                       Del Mar College
## 1352                                                       Del Mar College
## 1353                                                       Del Mar College
## 1354                                                       Del Mar College
## 1355                                                       Del Mar College
## 1356                                                       Del Mar College
## 1357                                                       Del Mar College
## 1358                                                       Del Mar College
## 1359                                                       Del Mar College
## 1360                                                       Del Mar College
## 1361                                                       Del Mar College
## 1362                                                       Del Mar College
## 1363                                                       Del Mar College
## 1364                                                       Del Mar College
## 1365                                                       Del Mar College
## 1366                                                       Del Mar College
## 1367                                                       Del Mar College
## 1368                                                       Del Mar College
## 1369                                                       Del Mar College
## 1370                                                       Del Mar College
## 1371                                                       Del Mar College
## 1372                                                       Del Mar College
## 1373                                                       Del Mar College
## 1374                                                       Del Mar College
## 1375                                                       Del Mar College
## 1376                                                       Del Mar College
## 1377                                                       Del Mar College
## 1378                                                       Del Mar College
## 1379                                                       Del Mar College
## 1380                                                       Del Mar College
## 1381                                                       Del Mar College
## 1382                                      Dental Assisting School of Texas
## 1383                                                              DFE Tech
## 1384                                           DFW Dental Assisting School
## 1385                                         Digital Workforce Academy Inc
## 1386                                         Digital Workforce Academy Inc
## 1387                                         Digital Workforce Academy Inc
## 1388                                         Digital Workforce Academy Inc
## 1389                                                    Divergence Academy
## 1390                                                    Divergence Academy
## 1391                                                    Divergence Academy
## 1392                                                     Edge Tech Academy
## 1393                                                     Edge Tech Academy
## 1394                                                     Edge Tech Academy
## 1395                                                     Edge Tech Academy
## 1396                                    Education Service Center Region 12
## 1397                                          Edwin's Healthcare Institute
## 1398                                             El Paso Community College
## 1399                                             El Paso Community College
## 1400                                             El Paso Community College
## 1401                                             El Paso Community College
## 1402                                             El Paso Community College
## 1403                                             El Paso Community College
## 1404                                             El Paso Community College
## 1405                                             El Paso Community College
## 1406                                             El Paso Community College
## 1407                                             El Paso Community College
## 1408                                             El Paso Community College
## 1409                                             El Paso Community College
## 1410                                             El Paso Community College
## 1411                                             El Paso Community College
## 1412                                             El Paso Community College
## 1413                                             El Paso Community College
## 1414                                             El Paso Community College
## 1415                                             El Paso Community College
## 1416                                             El Paso Community College
## 1417                                             El Paso Community College
## 1418                                             El Paso Community College
## 1419                                             El Paso Community College
## 1420                                             El Paso Community College
## 1421                                             El Paso Community College
## 1422                                             El Paso Community College
## 1423                                             El Paso Community College
## 1424                                             El Paso Community College
## 1425                                             El Paso Community College
## 1426                                             El Paso Community College
## 1427                                             El Paso Community College
## 1428                                             El Paso Community College
## 1429                                             El Paso Community College
## 1430                                             El Paso Community College
## 1431                                             El Paso Community College
## 1432                                             El Paso Community College
## 1433                                             El Paso Community College
## 1434                                             El Paso Community College
## 1435                                             El Paso Community College
## 1436                                             El Paso Community College
## 1437                                             El Paso Community College
## 1438                                             El Paso Community College
## 1439                                             El Paso Community College
## 1440                                             El Paso Community College
## 1441                                             El Paso Community College
## 1442                                             El Paso Community College
## 1443                                             El Paso Community College
## 1444                                             El Paso Community College
## 1445                                             El Paso Community College
## 1446                                             El Paso Community College
## 1447                                             El Paso Community College
## 1448                                             El Paso Community College
## 1449                                             El Paso Community College
## 1450                                             El Paso Community College
## 1451                                             El Paso Community College
## 1452                                             El Paso Community College
## 1453                                             El Paso Community College
## 1454                                             El Paso Community College
## 1455                                             El Paso Community College
## 1456                                             El Paso Community College
## 1457                                             El Paso Community College
## 1458                                             El Paso Community College
## 1459                                             El Paso Community College
## 1460                                             El Paso Community College
## 1461                                             El Paso Community College
## 1462                                             El Paso Community College
## 1463                                             El Paso Community College
## 1464                                             El Paso Community College
## 1465                                             El Paso Community College
## 1466                                             El Paso Community College
## 1467                                             El Paso Community College
## 1468                                             El Paso Community College
## 1469                                             El Paso Community College
## 1470                                             El Paso Community College
## 1471                                             El Paso Community College
## 1472                                             El Paso Community College
## 1473                                             El Paso Community College
## 1474                                             El Paso Community College
## 1475                                             El Paso Community College
## 1476                                             El Paso Community College
## 1477                                             El Paso Community College
## 1478                                             El Paso Community College
## 1479                                             El Paso Community College
## 1480                                             El Paso Community College
## 1481                                             El Paso Community College
## 1482                                             El Paso Community College
## 1483                                             El Paso Community College
## 1484                                             El Paso Community College
## 1485                             El Paso Pediatric Dental Assistant School
## 1486                                             Elite Nurse Aide Training
## 1487                                             Elite Nurse Aide Training
## 1488                                             Elite Nurse Aide Training
## 1489                                             Elite Welding Academy LLC
## 1490                                                 Excel Career Training
## 1491                                                 Excel Career Training
## 1492                                                 Excel Career Training
## 1493                                                              GRS Inc.
## 1494                                                              GRS Inc.
## 1495                                        Fortis College   Houston South
## 1496                                        Fortis Institute Houston North
## 1497                                                Frank Phillips College
## 1498                                                Frank Phillips College
## 1499                                                Frank Phillips College
## 1500                                                Frank Phillips College
## 1501                                                Frank Phillips College
## 1502                                                Frank Phillips College
## 1503                                                Frank Phillips College
## 1504                                                Frank Phillips College
## 1505                                                Frank Phillips College
## 1506                                                Frank Phillips College
## 1507                                                Frank Phillips College
## 1508                                                Frank Phillips College
## 1509                                                Frank Phillips College
## 1510                                                Frank Phillips College
## 1511                                                Frank Phillips College
## 1512                                                Frank Phillips College
## 1513                                                Frank Phillips College
## 1514                                                Frank Phillips College
## 1515                                                Frank Phillips College
## 1516                                                Frank Phillips College
## 1517                                                Frank Phillips College
## 1518                                                Frank Phillips College
## 1519                                                Frank Phillips College
## 1520                                                Frank Phillips College
## 1521                                                Frank Phillips College
## 1522                                                Frank Phillips College
## 1523                                                Frank Phillips College
## 1524                                                Frank Phillips College
## 1525                                              Galen College of Nursing
## 1526                                              Galen College of Nursing
## 1527                                              Galen College of Nursing
## 1528                                                     Galveston College
## 1529                                                     Galveston College
## 1530                                                     Galveston College
## 1531                                                     Galveston College
## 1532                                                     Galveston College
## 1533                                                     Galveston College
## 1534                                                     Galveston College
## 1535                                                     Galveston College
## 1536                                                     Galveston College
## 1537                                                     Galveston College
## 1538                                                     Galveston College
## 1539                                                     Galveston College
## 1540                                                     Galveston College
## 1541                                                     Galveston College
## 1542                                                     Galveston College
## 1543                                                     Galveston College
## 1544                                                     Galveston College
## 1545                                                     Galveston College
## 1546                                                     Galveston College
## 1547                                                     Galveston College
## 1548                                                     Galveston College
## 1549                                                     Galveston College
## 1550                                                     Galveston College
## 1551                                                     Galveston College
## 1552                                                     Galveston College
## 1553                                                     Galveston College
## 1554                                                     Galveston College
## 1555                                                     Galveston College
## 1556                                                     Galveston College
## 1557                                                     Galveston College
## 1558                                                     Galveston College
## 1559                                                     Galveston College
## 1560                                                     Galveston College
## 1561                                                     Galveston College
## 1562                                                     Galveston College
## 1563                                                     Galveston College
## 1564                                                     Galveston College
## 1565                                                     Galveston College
## 1566                                                     Galveston College
## 1567                                                     Galveston College
## 1568                                                     Galveston College
## 1569                                                     Galveston College
## 1570                                                     Galveston College
## 1571                                                     Galveston College
## 1572                                                     Galveston College
## 1573                                                     Galveston College
## 1574                                                     Galveston College
## 1575                                                     Galveston College
## 1576                                                     Galveston College
## 1577                                                     Galveston College
## 1578                                                     Galveston College
## 1579                                                     Galveston College
## 1580                                       Golden Touch Enrichment Academy
## 1581                                                  Good Careers Academy
## 1582                                                  Good Careers Academy
## 1583                                                  Good Careers Academy
## 1584                                                  Good Careers Academy
## 1585                                                Grayson County College
## 1586                                                Grayson County College
## 1587                                                Grayson County College
## 1588                                                Grayson County College
## 1589                                                Grayson County College
## 1590                                                Grayson County College
## 1591                                                Grayson County College
## 1592                                                Grayson County College
## 1593                                                Grayson County College
## 1594                                                Grayson County College
## 1595                                                Grayson County College
## 1596                                                Grayson County College
## 1597                                                Grayson County College
## 1598                                                Grayson County College
## 1599                                                Grayson County College
## 1600                                                Grayson County College
## 1601                                                Grayson County College
## 1602                                                Grayson County College
## 1603                                                Grayson County College
## 1604                                                Grayson County College
## 1605                                                Grayson County College
## 1606                                                Grayson County College
## 1607                                                Grayson County College
## 1608                                                Grayson County College
## 1609                                                Grayson County College
## 1610                                                Grayson County College
## 1611                                                Grayson County College
## 1612                                                Grayson County College
## 1613                                                Grayson County College
## 1614                                                Grayson County College
## 1615                                                Grayson County College
## 1616                                                Grayson County College
## 1617                                                Grayson County College
## 1618                                                Grayson County College
## 1619                                                Grayson County College
## 1620                                                Grayson County College
## 1621                                                Grayson County College
## 1622                                                   Hallmark University
## 1623                                                   Hallmark University
## 1624                                                   Hallmark University
## 1625                                                   Hallmark University
## 1626                                                   Hallmark University
## 1627                                                   Hallmark University
## 1628                                 Health Career Institute of Laredo LLC
## 1629                                 Health Career Institute of Laredo LLC
## 1630                              Health Sciences Institute at Renaissance
## 1631                              Health Sciences Institute at Renaissance
## 1632                                                          Hill College
## 1633                                                          Hill College
## 1634                                                          Hill College
## 1635                                                          Hill College
## 1636                                                          Hill College
## 1637                                                          Hill College
## 1638                                                          Hill College
## 1639                                                          Hill College
## 1640                                                          Hill College
## 1641                                    Hogg's Automotive Training Academy
## 1642                                    Hogg's Automotive Training Academy
## 1643                                    Hogg's Automotive Training Academy
## 1644                                    Hogg's Automotive Training Academy
## 1645                                    Hogg's Automotive Training Academy
## 1646                                               Home Builders Institute
## 1647                                                        Howard College
## 1648                                                        Howard College
## 1649                                                        Howard College
## 1650                                                        Howard College
## 1651                                                        Howard College
## 1652                                                        Howard College
## 1653                                                        Howard College
## 1654                                                        Howard College
## 1655                                                        Howard College
## 1656                                                        Howard College
## 1657                                                        Howard College
## 1658                                                        Howard College
## 1659                                                        Howard College
## 1660                                                        Howard College
## 1661                                                        Howard College
## 1662                                                        Howard College
## 1663                                                        Howard College
## 1664                                                        Howard College
## 1665                                                        Howard College
## 1666                                                        Howard College
## 1667                                                        Howard College
## 1668                                                        Howard College
## 1669                                                        Howard College
## 1670                                                        Howard College
## 1671                                                        Howard College
## 1672                                                        Howard College
## 1673                                                        Howard College
## 1674                                                        Howard College
## 1675                                                        Howard College
## 1676                                                        Howard College
## 1677                                                        Howard College
## 1678                                                        Howard College
## 1679                                                        Howard College
## 1680                                                        Howard College
## 1681                                                        Howard College
## 1682                                                        Howard College
## 1683                                                        Howard College
## 1684                                                        Howard College
## 1685                                                        Howard College
## 1686                                                        Howard College
## 1687                                                        Howard College
## 1688                                                        Howard College
## 1689                                                        Howard College
## 1690                                                        Howard College
## 1691                                                        Howard College
## 1692                                                        Howard College
## 1693                                                        Howard College
## 1694                                                        Howard College
## 1695                                                        Howard College
## 1696                                                        Howard College
## 1697                                                        Howard College
## 1698                                                        Howard College
## 1699                                                        Howard College
## 1700                                                        Howard College
## 1701                                                        Howard College
## 1702                                                        Howard College
## 1703                                                        Howard College
## 1704                                                        Howard College
## 1705                                                    IDTC Career Center
## 1706                                                    IDTC Career Center
## 1707                                                    IDTC Career Center
## 1708                                                    IDTC Career Center
## 1709                                                    IDTC Career Center
## 1710                                                    IDTC Career Center
## 1711                                                    IDTC Career Center
## 1712                                                    IDTC Career Center
## 1713                                                    IDTC Career Center
## 1714                                           iMed Health Training Center
## 1715                                           iMed Health Training Center
## 1716                                           iMed Health Training Center
## 1717                                           iMed Health Training Center
## 1718                                           iMed Health Training Center
## 1719                                                      IMPACT Institute
## 1720                                                      IMPACT Institute
## 1721                                                      IMPACT Institute
## 1722                                                      IMPACT Institute
## 1723                                                      IMPACT Institute
## 1724                                                      IMPACT Institute
## 1725                                                      IMPACT Institute
## 1726                                                      IMPACT Institute
## 1727                                                      IMPACT Institute
## 1728                                                      IMPACT Institute
## 1729                                                      IMPACT Institute
## 1730                                                      IMPACT Institute
## 1731                                                      IMPACT Institute
## 1732                                            Industrial Welding Academy
## 1733                                            Industrial Welding Academy
## 1734                                            Industrial Welding Academy
## 1735                                            Industrial Welding Academy
## 1736                                            Industrial Welding Academy
## 1737                                            Industrial Welding Academy
## 1738                                            Industrial Welding Academy
## 1739                                            Industrial Welding Academy
## 1740                                            Industrial Welding Academy
## 1741                                            Industrial Welding Academy
## 1742                                            Industrial Welding Academy
## 1743                                              InfoTech learning Center
## 1744                                              InfoTech learning Center
## 1745                                              InfoTech learning Center
## 1746                                              InfoTech learning Center
## 1747                                              InfoTech learning Center
## 1748                                              InfoTech learning Center
## 1749                                              InfoTech learning Center
## 1750                                                      Innovative Minds
## 1751                                               Joshua Career Institute
## 1752                                               Joshua Career Institute
## 1753                                               Joshua Career Institute
## 1754                                               Joshua Career Institute
## 1755                                               Joshua Career Institute
## 1756                                               Joshua Career Institute
## 1757                                               Joshua Career Institute
## 1758                                               Joshua Career Institute
## 1759                                               Joshua Career Institute
## 1760                                               Joshua Career Institute
## 1761                                               Joshua Career Institute
## 1762                                               Joshua Career Institute
## 1763                                               Joshua Career Institute
## 1764                                               Joshua Career Institute
## 1765                                               Joshua Career Institute
## 1766                                               Joshua Career Institute
## 1767                                               Joshua Career Institute
## 1768                                               Joshua Career Institute
## 1769                                               Joshua Career Institute
## 1770                                               Joshua Career Institute
## 1771                                               Joshua Career Institute
## 1772                                               Joshua Career Institute
## 1773                                               Joshua Career Institute
## 1774                                               Joshua Career Institute
## 1775                                               Joshua Career Institute
## 1776                                               Joshua Career Institute
## 1777                                               Joshua Career Institute
## 1778                                               Joshua Career Institute
## 1779                                               Joshua Career Institute
## 1780                                               Joshua Career Institute
## 1781                                               Joshua Career Institute
## 1782                                               Joshua Career Institute
## 1783                                               Joshua Career Institute
## 1784                                               Joshua Career Institute
## 1785                                               Joshua Career Institute
## 1786                                               Joshua Career Institute
## 1787                                               Joshua Career Institute
## 1788                                               Joshua Career Institute
## 1789                                                       Kilgore College
## 1790                                                       Kilgore College
## 1791                                                       Kilgore College
## 1792                                                       Kilgore College
## 1793                                                       Kilgore College
## 1794                                                       Kilgore College
## 1795                                                       Kilgore College
## 1796                                                       Kilgore College
## 1797                                                       Kilgore College
## 1798                                                       Kilgore College
## 1799                                                       Kilgore College
## 1800                                                       Kilgore College
## 1801                                                       Kilgore College
## 1802                                                       Kilgore College
## 1803                                                       Kilgore College
## 1804                                                       Kilgore College
## 1805                                                       Kilgore College
## 1806                                                       Kilgore College
## 1807                                                       Kilgore College
## 1808                                                       Kilgore College
## 1809                                                       Kilgore College
## 1810                                                       Kilgore College
## 1811                                                       Kilgore College
## 1812                                                       Kilgore College
## 1813                                                       Kilgore College
## 1814                                                       Kilgore College
## 1815                                                       Kilgore College
## 1816                           Kingwood College (Lone Star College System)
## 1817                           Kingwood College (Lone Star College System)
## 1818                           Kingwood College (Lone Star College System)
## 1819                           Kingwood College (Lone Star College System)
## 1820                           Kingwood College (Lone Star College System)
## 1821                           Kingwood College (Lone Star College System)
## 1822                           Kingwood College (Lone Star College System)
## 1823                           Kingwood College (Lone Star College System)
## 1824                           Kingwood College (Lone Star College System)
## 1825                           Kingwood College (Lone Star College System)
## 1826                           Kingwood College (Lone Star College System)
## 1827                           Kingwood College (Lone Star College System)
## 1828                           Kingwood College (Lone Star College System)
## 1829                           Kingwood College (Lone Star College System)
## 1830                           Kingwood College (Lone Star College System)
## 1831                           Kingwood College (Lone Star College System)
## 1832                           Kingwood College (Lone Star College System)
## 1833                           Kingwood College (Lone Star College System)
## 1834                           Kingwood College (Lone Star College System)
## 1835                           Kingwood College (Lone Star College System)
## 1836                           Kingwood College (Lone Star College System)
## 1837                                                        Knowledge Bank
## 1838                                                        Knowledge Bank
## 1839                                                        Knowledge Bank
## 1840                                         Lamar Institute of Technology
## 1841                                         Lamar Institute of Technology
## 1842                                         Lamar Institute of Technology
## 1843                                         Lamar Institute of Technology
## 1844                                         Lamar Institute of Technology
## 1845                                         Lamar Institute of Technology
## 1846                                         Lamar Institute of Technology
## 1847                                         Lamar Institute of Technology
## 1848                                         Lamar Institute of Technology
## 1849                                         Lamar Institute of Technology
## 1850                                         Lamar Institute of Technology
## 1851                                         Lamar Institute of Technology
## 1852                                         Lamar Institute of Technology
## 1853                                         Lamar Institute of Technology
## 1854                                         Lamar Institute of Technology
## 1855                                         Lamar Institute of Technology
## 1856                                         Lamar Institute of Technology
## 1857                                         Lamar Institute of Technology
## 1858                                         Lamar Institute of Technology
## 1859                                         Lamar Institute of Technology
## 1860                                         Lamar Institute of Technology
## 1861                                         Lamar Institute of Technology
## 1862                                         Lamar Institute of Technology
## 1863                                         Lamar Institute of Technology
## 1864                                         Lamar Institute of Technology
## 1865                                         Lamar Institute of Technology
## 1866                                         Lamar Institute of Technology
## 1867                                         Lamar Institute of Technology
## 1868                                            Lamar State College Orange
## 1869                                            Lamar State College Orange
## 1870                                            Lamar State College Orange
## 1871                                            Lamar State College Orange
## 1872                                            Lamar State College Orange
## 1873                                            Lamar State College Orange
## 1874                                            Lamar State College Orange
## 1875                                            Lamar State College Orange
## 1876                                            Lamar State College Orange
## 1877                                            Lamar State College Orange
## 1878                                            Lamar State College Orange
## 1879                                            Lamar State College Orange
## 1880                                            Lamar State College Orange
## 1881                                            Lamar State College Orange
## 1882                                            Lamar State College Orange
## 1883                                            Lamar State College Orange
## 1884                                            Lamar State College Orange
## 1885                                            Lamar State College Orange
## 1886                                            Lamar State College Orange
## 1887                                            Lamar State College Orange
## 1888                                     Lamar State College   Port Arthur
## 1889                                     Lamar State College   Port Arthur
## 1890                                     Lamar State College   Port Arthur
## 1891                                     Lamar State College   Port Arthur
## 1892                                     Lamar State College   Port Arthur
## 1893                                     Lamar State College   Port Arthur
## 1894                                     Lamar State College   Port Arthur
## 1895                                     Lamar State College   Port Arthur
## 1896                                     Lamar State College   Port Arthur
## 1897                                     Lamar State College   Port Arthur
## 1898                                     Lamar State College   Port Arthur
## 1899                                     Lamar State College   Port Arthur
## 1900                                     Lamar State College   Port Arthur
## 1901                                     Lamar State College   Port Arthur
## 1902                                     Lamar State College   Port Arthur
## 1903                                     Lamar State College   Port Arthur
## 1904                                     Lamar State College   Port Arthur
## 1905                                     Lamar State College   Port Arthur
## 1906                                     Lamar State College   Port Arthur
## 1907                                     Lamar State College   Port Arthur
## 1908                                     Lamar State College   Port Arthur
## 1909                                     Lamar State College   Port Arthur
## 1910                                     Lamar State College   Port Arthur
## 1911                                     Lamar State College   Port Arthur
## 1912                                     Lamar State College   Port Arthur
## 1913                                     Lamar State College   Port Arthur
## 1914                                     Lamar State College   Port Arthur
## 1915                                     Lamar State College   Port Arthur
## 1916                                     Lamar State College   Port Arthur
## 1917                                     Lamar State College   Port Arthur
## 1918                                                      Lamson Institute
## 1919                                                      Lamson Institute
## 1920                                                      Lamson Institute
## 1921                                                      Lamson Institute
## 1922                                                      Lamson Institute
## 1923                                                      Lamson Institute
## 1924                                                      Lamson Institute
## 1925                                                          Lanecert Inc
## 1926                                                          Lanecert Inc
## 1927                                                          Lanecert Inc
## 1928                                                          Lanecert Inc
## 1929                                                          Lanecert Inc
## 1930                                                          Lanecert Inc
## 1931                                                          Lanecert Inc
## 1932                                                          Lanecert Inc
## 1933                                                          Lanecert Inc
## 1934                                                          Lanecert Inc
## 1935                                                          Lanecert Inc
## 1936                                                          Lanecert Inc
## 1937                                                          Lanecert Inc
## 1938                                                          Lanecert Inc
## 1939                                                          Lanecert Inc
## 1940                                                          Lanecert Inc
## 1941                                                          Lanecert Inc
## 1942                                                          Lanecert Inc
## 1943                                                          Lanecert Inc
## 1944                                                          Lanecert Inc
## 1945                                                          Lanecert Inc
## 1946                                                          Lanecert Inc
## 1947                                                          Lanecert Inc
## 1948                                                          Lanecert Inc
## 1949                                                          Lanecert Inc
## 1950                                                          Lanecert Inc
## 1951                                                          Lanecert Inc
## 1952                                                          Lanecert Inc
## 1953                                                        Laredo College
## 1954                                                        Laredo College
## 1955                                                        Laredo College
## 1956                                                        Laredo College
## 1957                                                        Laredo College
## 1958                                                        Laredo College
## 1959                                                        Laredo College
## 1960                                                        Laredo College
## 1961                                                        Laredo College
## 1962                                                        Laredo College
## 1963                                                        Laredo College
## 1964                                                        Laredo College
## 1965                                                        Laredo College
## 1966                                                        Laredo College
## 1967                                                        Laredo College
## 1968                                                        Laredo College
## 1969                                                        Laredo College
## 1970                                                        Laredo College
## 1971                                                        Laredo College
## 1972                                                        Laredo College
## 1973                                                                   ACI
## 1974                                                                   ACI
## 1975                                                                   ACI
## 1976                                                                   ACI
## 1977                                                                   ACI
## 1978                                                                   ACI
## 1979                                                                   ACI
## 1980                                                                   ACI
## 1981                                                                   ACI
## 1982                                                                   ACI
## 1983                                                                   ACI
## 1984                                                                   ACI
## 1985                                                                   ACI
## 1986                                                                   ACI
## 1987                                                                   ACI
## 1988                                                                   ACI
## 1989                                                           Lee College
## 1990                                                           Lee College
## 1991                                                           Lee College
## 1992                                                           Lee College
## 1993                                                           Lee College
## 1994                                                           Lee College
## 1995                                                           Lee College
## 1996                                                           Lee College
## 1997                                                           Lee College
## 1998                                                           Lee College
## 1999                                                           Lee College
## 2000                                                           Lee College
## 2001                                                           Lee College
## 2002                                                           Lee College
## 2003                                                           Lee College
## 2004                                                           Lee College
## 2005                                                           Lee College
## 2006                                                           Lee College
## 2007                                                           Lee College
## 2008                                                           Lee College
## 2009                                                           Lee College
## 2010                                                           Lee College
## 2011                                                           Lee College
## 2012                                                           Lee College
## 2013                                                           Lee College
## 2014                                                  LHCT Training Center
## 2015                                         LHCT Training Center   Laredo
## 2016                                   Lindsey Cooper Refrigeration School
## 2017                                   Lindsey Cooper Refrigeration School
## 2018                                   Lindsey Cooper Refrigeration School
## 2019                                            Mainliners Welding Academy
## 2020                                            Mainliners Welding Academy
## 2021                                            Mainliners Welding Academy
## 2022                                            Mainliners Welding Academy
## 2023                                            Mainliners Welding Academy
## 2024                                            Mainliners Welding Academy
## 2025                                            Mainliners Welding Academy
## 2026                                            Mainliners Welding Academy
## 2027                                            Mainliners Welding Academy
## 2028                                            Mainliners Welding Academy
## 2029                                            Mainliners Welding Academy
## 2030                                            Mainliners Welding Academy
## 2031                                            Mainliners Welding Academy
## 2032                                            Mainliners Welding Academy
## 2033                                             McAllen Careers Institute
## 2034                                             McAllen Careers Institute
## 2035                                             McAllen Careers Institute
## 2036                                             McAllen Careers Institute
## 2037                                            McLennan Community College
## 2038                                            McLennan Community College
## 2039                                            McLennan Community College
## 2040                                            McLennan Community College
## 2041                                            McLennan Community College
## 2042                                            McLennan Community College
## 2043                                            McLennan Community College
## 2044                                            McLennan Community College
## 2045                                            McLennan Community College
## 2046                                            McLennan Community College
## 2047                                            McLennan Community College
## 2048                                            McLennan Community College
## 2049                                            McLennan Community College
## 2050                                            McLennan Community College
## 2051                                            McLennan Community College
## 2052                                            McLennan Community College
## 2053                                            McLennan Community College
## 2054                                            McLennan Community College
## 2055                                            McLennan Community College
## 2056                                            McLennan Community College
## 2057                                            McLennan Community College
## 2058                                            McLennan Community College
## 2059                                            McLennan Community College
## 2060                                            McLennan Community College
## 2061                                            McLennan Community College
## 2062                                            McLennan Community College
## 2063                                            McLennan Community College
## 2064                                   Medical and Dental School of Dallas
## 2065                                   Medical and Dental School of Dallas
## 2066                                    Medical Professional Institute LLC
## 2067                                    Medical Professional Institute LLC
## 2068                                    Medical Professional Institute LLC
## 2069                                            MIAT College of Technology
## 2070                                            MIAT College of Technology
## 2071                                            MIAT College of Technology
## 2072                                                       Midland College
## 2073                                                       Midland College
## 2074                                                       Midland College
## 2075                                                       Midland College
## 2076                                                       Midland College
## 2077                                                       Midland College
## 2078                                                       Midland College
## 2079                                                       Midland College
## 2080                                                       Midland College
## 2081                                                       Midland College
## 2082                                                       Midland College
## 2083                                                       Midland College
## 2084                                                       Midland College
## 2085                                                       Midland College
## 2086                                                       Midland College
## 2087                                                       Midland College
## 2088                                                       Midland College
## 2089                                                       Midland College
## 2090                                                       Midland College
## 2091                                                       Midland College
## 2092                                                       Midland College
## 2093                                                       Midland College
## 2094                                                       Midland College
## 2095                                                       Midland College
## 2096                                                       Midland College
## 2097                                                       Midland College
## 2098                                                       Midland College
## 2099                                                       Midland College
## 2100                                                       Midland College
## 2101                                                       Midland College
## 2102                                                       Midland College
## 2103                                                       Midland College
## 2104                                                       Midland College
## 2105                                                       Midland College
## 2106                                                       Midland College
## 2107                                                       Midland College
## 2108                                                       Midland College
## 2109                                                       Midland College
## 2110                                                       Midland College
## 2111                                                       Midland College
## 2112                                                       Midland College
## 2113                                                       Midland College
## 2114                                                       Midland College
## 2115                                                       Midland College
## 2116                                                       Midland College
## 2117                                                       Midland College
## 2118                                                       Midland College
## 2119                                                       Midland College
## 2120                                                       Midland College
## 2121                                                       Midland College
## 2122                                                       Midland College
## 2123                                                       Midland College
## 2124                                                       Midland College
## 2125                                                       Midland College
## 2126                                                       Midland College
## 2127                                                       Midland College
## 2128                                                       Midland College
## 2129                                                       Midland College
## 2130                                                       Midland College
## 2131                                                       Midland College
## 2132                                           Midwestern State University
## 2133                                           Midwestern State University
## 2134                                                Miller Crane Works Inc
## 2135                                                Miller Crane Works Inc
## 2136                                                Miller Crane Works Inc
## 2137                                                Miller Crane Works Inc
## 2138                                                Miller Crane Works Inc
## 2139                                                Miller Crane Works Inc
## 2140                                                Miller Crane Works Inc
## 2141                                                Miller Crane Works Inc
## 2142                                                Miller Crane Works Inc
## 2143                           Montgomery College Lone Star College System
## 2144                           Montgomery College Lone Star College System
## 2145                           Montgomery College Lone Star College System
## 2146                           Montgomery College Lone Star College System
## 2147                           Montgomery College Lone Star College System
## 2148                           Montgomery College Lone Star College System
## 2149                           Montgomery College Lone Star College System
## 2150                           Montgomery College Lone Star College System
## 2151                           Montgomery College Lone Star College System
## 2152                           Montgomery College Lone Star College System
## 2153                           Montgomery College Lone Star College System
## 2154                           Montgomery College Lone Star College System
## 2155                           Montgomery College Lone Star College System
## 2156                           Montgomery College Lone Star College System
## 2157                           Montgomery College Lone Star College System
## 2158                           Montgomery College Lone Star College System
## 2159                           Montgomery College Lone Star College System
## 2160                           Montgomery College Lone Star College System
## 2161                           Montgomery College Lone Star College System
## 2162                           Montgomery College Lone Star College System
## 2163                           Montgomery College Lone Star College System
## 2164                           Montgomery College Lone Star College System
## 2165                           Montgomery College Lone Star College System
## 2166                           Montgomery College Lone Star College System
## 2167                           Montgomery College Lone Star College System
## 2168                           Montgomery College Lone Star College System
## 2169                           Montgomery College Lone Star College System
## 2170                                Mountain View Vocational Institute LLC
## 2171                                Mountain View Vocational Institute LLC
## 2172                                Mountain View Vocational Institute LLC
## 2173                                Mountain View Vocational Institute LLC
## 2174                                Mountain View Vocational Institute LLC
## 2175                                                    MT Training Center
## 2176                                                    MT Training Center
## 2177                                                    MT Training Center
## 2178                                                    MT Training Center
## 2179                                                    MT Training Center
## 2180                                                    MT Training Center
## 2181                                                    MT Training Center
## 2182                                                    MT Training Center
## 2183                                                    MT Training Center
## 2184                                                    MT Training Center
## 2185                                                    MT Training Center
## 2186                                                    MT Training Center
## 2187                                                  MyComputerCareer com
## 2188                                                  MyComputerCareer com
## 2189                                                   National University
## 2190                                                   National University
## 2191                                                   National University
## 2192                                                   National University
## 2193                                                   National University
## 2194                                                   National University
## 2195                                                   National University
## 2196                                                   National University
## 2197                                                   National University
## 2198                                                   National University
## 2199                                                   National University
## 2200                                                   National University
## 2201                                                   National University
## 2202                                                   National University
## 2203                                                   National University
## 2204                                                   National University
## 2205                                                   National University
## 2206                                                       Navarro College
## 2207                                                       Navarro College
## 2208                                                       Navarro College
## 2209                                                       Navarro College
## 2210                                                       Navarro College
## 2211                                                       Navarro College
## 2212                                                       Navarro College
## 2213                                           NDS Dental Assistant School
## 2214                                           NDS Dental Assistant School
## 2215                                           NDS Dental Assistant School
## 2216                                           NDS Dental Assistant School
## 2217                                           NDS Dental Assistant School
## 2218                                           NDS Dental Assistant School
## 2219                                           NDS Dental Assistant School
## 2220                                           NDS Dental Assistant School
## 2221                                           NDS Dental Assistant School
## 2222                                           NDS Dental Assistant School
## 2223                                           NDS Dental Assistant School
## 2224                                           NDS Dental Assistant School
## 2225                                           NDS Dental Assistant School
## 2226                                           NDS Dental Assistant School
## 2227                                           NDS Dental Assistant School
## 2228                                           NDS Dental Assistant School
## 2229                                           NDS Dental Assistant School
## 2230                                           NDS Dental Assistant School
## 2231                                           NDS Dental Assistant School
## 2232                                           NDS Dental Assistant School
## 2233                                           NDS Dental Assistant School
## 2234                                           NDS Dental Assistant School
## 2235                                          NDT Consultancy Services Inc
## 2236                                          NDT Consultancy Services Inc
## 2237                                           New Era Training Center Inc
## 2238                                           New Era Training Center Inc
## 2239                                           New Era Training Center Inc
## 2240                                           New Era Training Center Inc
## 2241                                           New Era Training Center Inc
## 2242                                                      New Start School
## 2243                                                      New Start School
## 2244                                                      New Start School
## 2245                                                      New Start School
## 2246                                                      New Start School
## 2247                                                      New Start School
## 2248                                           North Central Texas College
## 2249                                           North Central Texas College
## 2250                                           North Central Texas College
## 2251                                           North Central Texas College
## 2252                                           North Central Texas College
## 2253                                           North Central Texas College
## 2254                                           North Central Texas College
## 2255                                           North Central Texas College
## 2256                                           North Central Texas College
## 2257                                           North Central Texas College
## 2258                                           North Central Texas College
## 2259                                           North Central Texas College
## 2260                                           North Central Texas College
## 2261                                           North Central Texas College
## 2262                                           North Central Texas College
## 2263                                           North Central Texas College
## 2264                                           North Central Texas College
## 2265                                           North Central Texas College
## 2266                                           North Central Texas College
## 2267                                           North Central Texas College
## 2268                                           North Central Texas College
## 2269                                           North Central Texas College
## 2270                                           North Central Texas College
## 2271                                           North Central Texas College
## 2272                                           North Central Texas College
## 2273                                           North Central Texas College
## 2274                                           North Central Texas College
## 2275                                           North Central Texas College
## 2276                                           North Central Texas College
## 2277                                           North Central Texas College
## 2278                                           North Central Texas College
## 2279                                           North Central Texas College
## 2280                                           North Central Texas College
## 2281                                           North Central Texas College
## 2282                                           North Central Texas College
## 2283                                           North Central Texas College
## 2284                                           North Central Texas College
## 2285                                           North Central Texas College
## 2286                                           North Central Texas College
## 2287                                           North Central Texas College
## 2288                                           North Central Texas College
## 2289                                           North Central Texas College
## 2290                                           North Central Texas College
## 2291                                           North Central Texas College
## 2292                                           North Central Texas College
## 2293                                           North Central Texas College
## 2294                                           North Central Texas College
## 2295                                           North Central Texas College
## 2296                                           North Central Texas College
## 2297                                           North Central Texas College
## 2298                                           North Central Texas College
## 2299                                           North Central Texas College
## 2300                         North Harris College Lone Star College System
## 2301                         North Harris College Lone Star College System
## 2302                         North Harris College Lone Star College System
## 2303                         North Harris College Lone Star College System
## 2304                         North Harris College Lone Star College System
## 2305                         North Harris College Lone Star College System
## 2306                         North Harris College Lone Star College System
## 2307                         North Harris College Lone Star College System
## 2308                         North Harris College Lone Star College System
## 2309                         North Harris College Lone Star College System
## 2310                         North Harris College Lone Star College System
## 2311                         North Harris College Lone Star College System
## 2312                         North Harris College Lone Star College System
## 2313                         North Harris College Lone Star College System
## 2314                         North Harris College Lone Star College System
## 2315                         North Harris College Lone Star College System
## 2316                         North Harris College Lone Star College System
## 2317                         North Harris College Lone Star College System
## 2318                         North Harris College Lone Star College System
## 2319                         North Harris College Lone Star College System
## 2320                         North Harris College Lone Star College System
## 2321                         North Harris College Lone Star College System
## 2322                         North Harris College Lone Star College System
## 2323                         North Harris College Lone Star College System
## 2324                         North Harris College Lone Star College System
## 2325                         North Harris College Lone Star College System
## 2326                         North Harris College Lone Star College System
## 2327                         North Harris College Lone Star College System
## 2328                         North Harris College Lone Star College System
## 2329                         North Harris College Lone Star College System
## 2330                         North Harris College Lone Star College System
## 2331                         North Harris College Lone Star College System
## 2332                         North Harris College Lone Star College System
## 2333                         North Harris College Lone Star College System
## 2334                         North Harris College Lone Star College System
## 2335                         North Harris College Lone Star College System
## 2336                         North Harris College Lone Star College System
## 2337                         North Harris College Lone Star College System
## 2338                         North Harris College Lone Star College System
## 2339                         North Harris College Lone Star College System
## 2340                         North Harris College Lone Star College System
## 2341                         North Harris College Lone Star College System
## 2342                         North Harris College Lone Star College System
## 2343                         North Harris College Lone Star College System
## 2344                         North Harris College Lone Star College System
## 2345                         North Harris College Lone Star College System
## 2346                         North Harris College Lone Star College System
## 2347                         North Harris College Lone Star College System
## 2348                         North Harris College Lone Star College System
## 2349                          North Texas Institute for Career Development
## 2350                          North Texas Institute for Career Development
## 2351                          North Texas Institute for Career Development
## 2352                          North Texas Institute for Career Development
## 2353                          North Texas Institute for Career Development
## 2354                          North Texas Institute for Career Development
## 2355                          North Texas Institute for Career Development
## 2356                          North Texas Institute for Career Development
## 2357                              North Texas Nursing and Career Institute
## 2358                                     Northeast Texas Community College
## 2359                                     Northeast Texas Community College
## 2360                                     Northeast Texas Community College
## 2361                                     Northeast Texas Community College
## 2362                                     Northeast Texas Community College
## 2363                                     Northeast Texas Community College
## 2364                                     Northeast Texas Community College
## 2365                                     Northeast Texas Community College
## 2366                                     Northeast Texas Community College
## 2367                                     Northeast Texas Community College
## 2368                                     Northeast Texas Community College
## 2369                                     Northeast Texas Community College
## 2370                                     Northeast Texas Community College
## 2371                                     Northeast Texas Community College
## 2372                                     Northeast Texas Community College
## 2373                                     Northeast Texas Community College
## 2374                                                 Ocean Corporation The
## 2375                                                 Ocean Corporation The
## 2376                                                        Odessa College
## 2377                                                        Odessa College
## 2378                                                        Odessa College
## 2379                                                        Odessa College
## 2380                                                        Odessa College
## 2381                                                        Odessa College
## 2382                                                        Odessa College
## 2383                                                        Odessa College
## 2384                                                        Odessa College
## 2385                                                        Odessa College
## 2386                                                        Odessa College
## 2387                                                        Odessa College
## 2388                                                        Odessa College
## 2389                                                        Odessa College
## 2390                                                        Odessa College
## 2391                                                        Odessa College
## 2392                                                        Odessa College
## 2393                                                        Odessa College
## 2394                                                        Odessa College
## 2395                                                        Odessa College
## 2396                                                        Odessa College
## 2397                                                        Odessa College
## 2398                                                        Odessa College
## 2399                                                        Odessa College
## 2400                                                        Odessa College
## 2401                                                        Odessa College
## 2402                                                        Odessa College
## 2403                                                        Odessa College
## 2404                                                        Odessa College
## 2405                                                        Odessa College
## 2406                                                        Odessa College
## 2407                                                        Odessa College
## 2408                                                        Odessa College
## 2409                                                        Odessa College
## 2410                                                        Odessa College
## 2411                                                        Odessa College
## 2412                                                        Odessa College
## 2413                                                        Odessa College
## 2414                                                        Odessa College
## 2415                                                        Odessa College
## 2416                                                        Odessa College
## 2417                                                        Odessa College
## 2418                                                        Odessa College
## 2419                                                        Odessa College
## 2420                                                        Odessa College
## 2421                                                        Odessa College
## 2422                                                        Odessa College
## 2423                                                        Odessa College
## 2424                                                        Odessa College
## 2425                                                        Odessa College
## 2426                                                        Odessa College
## 2427                                                        Odessa College
## 2428                                                        Odessa College
## 2429                                                        Odessa College
## 2430                                                        Odessa College
## 2431                                                        Odessa College
## 2432                                                        Odessa College
## 2433                                                        Odessa College
## 2434                                                        Odessa College
## 2435                                                        Odessa College
## 2436                                                        Odessa College
## 2437                                                        Odessa College
## 2438                                  OS2U Training and Development Center
## 2439                                  OS2U Training and Development Center
## 2440                                  OS2U Training and Development Center
## 2441                                  OS2U Training and Development Center
## 2442                                  OS2U Training and Development Center
## 2443                                  OS2U Training and Development Center
## 2444                                  OS2U Training and Development Center
## 2445                                  OS2U Training and Development Center
## 2446                                  OS2U Training and Development Center
## 2447                                  OS2U Training and Development Center
## 2448                                  OS2U Training and Development Center
## 2449                                  OS2U Training and Development Center
## 2450                                  OS2U Training and Development Center
## 2451                                  OS2U Training and Development Center
## 2452                                  OS2U Training and Development Center
## 2453                                  OS2U Training and Development Center
## 2454                                                        Panola College
## 2455                                                        Panola College
## 2456                                                        Panola College
## 2457                                                        Panola College
## 2458                                                        Panola College
## 2459                                                        Panola College
## 2460                                                        Panola College
## 2461                                                        Panola College
## 2462                                                        Panola College
## 2463                                                        Panola College
## 2464                                                        Panola College
## 2465                                                        Panola College
## 2466                                                        Panola College
## 2467                                                        Panola College
## 2468                                                        Panola College
## 2469                                                        Panola College
## 2470                                                        Panola College
## 2471                                                        Panola College
## 2472                                                        Panola College
## 2473                                                        Panola College
## 2474                                                        Panola College
## 2475                                                        Panola College
## 2476                                                        Panola College
## 2477                                                        Panola College
## 2478                                                        Panola College
## 2479                                                        Panola College
## 2480                                                        Panola College
## 2481                                         Paris Junior College District
## 2482                                         Paris Junior College District
## 2483                                         Paris Junior College District
## 2484                                         Paris Junior College District
## 2485                                         Paris Junior College District
## 2486                                         Paris Junior College District
## 2487                                         Paris Junior College District
## 2488                                         Paris Junior College District
## 2489                                         Paris Junior College District
## 2490                                         Paris Junior College District
## 2491                                         Paris Junior College District
## 2492                                         Paris Junior College District
## 2493                                         Paris Junior College District
## 2494                                         Paris Junior College District
## 2495                                         Paris Junior College District
## 2496                                         Paris Junior College District
## 2497                                         Paris Junior College District
## 2498                                         Paris Junior College District
## 2499                                         Paris Junior College District
## 2500                                         Paris Junior College District
## 2501                                         Paris Junior College District
## 2502                                         Paris Junior College District
## 2503                                                     Parker University
## 2504                                                       Peloton College
## 2505                                                       Peloton College
## 2506                                                       Peloton College
## 2507                                                       Peloton College
## 2508                                                       Per Scholas Inc
## 2509                                                       Per Scholas Inc
## 2510                                                       Per Scholas Inc
## 2511                                           Prairie View A&M University
## 2512                                           Prairie View A&M University
## 2513                                           Prairie View A&M University
## 2514                                           Prairie View A&M University
## 2515                                           Prairie View A&M University
## 2516                                           Prairie View A&M University
## 2517                                Professional Career Training Institute
## 2518                                Professional Career Training Institute
## 2519                                Professional Career Training Institute
## 2520                                Professional Career Training Institute
## 2521                 Professional Healthcare Education Service Inc  (PHES)
## 2522                                                         Quest College
## 2523                                                         Quest College
## 2524                                                         Quest College
## 2525                                                         Quest College
## 2526                                                         Quest College
## 2527                                                         Quest College
## 2528                                                         Quest College
## 2529                                                        Ranger College
## 2530                                                        Ranger College
## 2531                                                        Ranger College
## 2532                                                        Ranger College
## 2533                                                        Ranger College
## 2534                                                        Ranger College
## 2535                                                        Ranger College
## 2536                                                        Ranger College
## 2537                                                        Ranger College
## 2538                                                        Ranger College
## 2539                                                        Ranger College
## 2540                                                        Ranger College
## 2541                                                        Ranger College
## 2542                                                        Ranger College
## 2543                                     Region 4 Education Service Center
## 2544                                     Region 4 Education Service Center
## 2545                                     Region 4 Education Service Center
## 2546                                     Region 4 Education Service Center
## 2547                                     Region 6 Education Service Center
## 2548                                     Region 6 Education Service Center
## 2549                                     Region 6 Education Service Center
## 2550                                     Region 6 Education Service Center
## 2551                                     Region 6 Education Service Center
## 2552                                     Region 6 Education Service Center
## 2553                                     Region 6 Education Service Center
## 2554                                     Region 6 Education Service Center
## 2555                                     Region 6 Education Service Center
## 2556                                     Region 6 Education Service Center
## 2557                                     Region 6 Education Service Center
## 2558                                     Region 6 Education Service Center
## 2559                                     Region 6 Education Service Center
## 2560                                               RGV Vocational Services
## 2561                                               RGV Vocational Services
## 2562                                               RGV Vocational Services
## 2563                                      Rice University Glasscock School
## 2564                                      Rice University Glasscock School
## 2565                                      Rice University Glasscock School
## 2566                                      Rice University Glasscock School
## 2567                                      Rice University Glasscock School
## 2568                                      Rice University Glasscock School
## 2569                                      Rice University Glasscock School
## 2570                                      Rice University Glasscock School
## 2571                                      Rice University Glasscock School
## 2572                                      Rice University Glasscock School
## 2573                                      Rice University Glasscock School
## 2574                                      Rice University Glasscock School
## 2575                                      Rice University Glasscock School
## 2576                                      Rice University Glasscock School
## 2577                                      Rice University Glasscock School
## 2578                                      Rice University Glasscock School
## 2579                                             Rio Grande Nursing School
## 2580                                             Rio Grande Nursing School
## 2581                                             Rio Grande Valley College
## 2582                                             Rio Grande Valley College
## 2583                                             Rio Grande Valley College
## 2584                                             Rio Grande Valley College
## 2585                                             Rio Grande Valley College
## 2586                                             Rio Grande Valley College
## 2587                                             Rio Grande Valley College
## 2588                                             Rio Grande Valley College
## 2589                                             Rio Grande Valley College
## 2590                                             Roadmaster Drivers School
## 2591                                             Roadmaster Drivers School
## 2592                                             Roadmaster Drivers School
## 2593                                             Roadmaster Drivers School
## 2594                                          San Jacinto College District
## 2595                                          San Jacinto College District
## 2596                                          San Jacinto College District
## 2597                                          San Jacinto College District
## 2598                                          San Jacinto College District
## 2599                                          San Jacinto College District
## 2600                                          San Jacinto College District
## 2601                                          San Jacinto College District
## 2602                                          San Jacinto College District
## 2603                                          San Jacinto College District
## 2604                                          San Jacinto College District
## 2605                                          San Jacinto College District
## 2606                                          San Jacinto College District
## 2607                                          San Jacinto College District
## 2608                                          San Jacinto College District
## 2609                                          San Jacinto College District
## 2610                                          San Jacinto College District
## 2611                                          San Jacinto College District
## 2612                                          San Jacinto College District
## 2613                                          San Jacinto College District
## 2614                                          San Jacinto College District
## 2615                                          San Jacinto College District
## 2616                                          San Jacinto College District
## 2617                                          San Jacinto College District
## 2618                                          San Jacinto College District
## 2619                                          San Jacinto College District
## 2620                                          San Jacinto College District
## 2621                                          San Jacinto College District
## 2622                                          San Jacinto College District
## 2623                                          San Jacinto College District
## 2624                                          San Jacinto College District
## 2625                                          San Jacinto College District
## 2626                                          San Jacinto College District
## 2627                                          San Jacinto College District
## 2628                                          San Jacinto College District
## 2629                                          San Jacinto College District
## 2630                                          San Jacinto College District
## 2631                                          San Jacinto College District
## 2632                                          San Jacinto College District
## 2633                                          San Jacinto College District
## 2634                                          San Jacinto College District
## 2635                                          San Jacinto College District
## 2636                                          San Jacinto College District
## 2637                                          San Jacinto College District
## 2638                                          San Jacinto College District
## 2639                                          San Jacinto College District
## 2640                                          San Jacinto College District
## 2641                                          San Jacinto College District
## 2642                                          San Jacinto College District
## 2643                                          San Jacinto College District
## 2644                                          San Jacinto College District
## 2645                                          San Jacinto College District
## 2646                                          San Jacinto College District
## 2647                                          San Jacinto College District
## 2648                                             Savant Achievement Center
## 2649                                             Savant Achievement Center
## 2650                                          School of Health Careers LLC
## 2651                                                  Schreiner University
## 2652                                                  Schreiner University
## 2653                                                  Schreiner University
## 2654                                           SIPS Training & Development
## 2655                                                  South Plains College
## 2656                                                  South Plains College
## 2657                                                  South Plains College
## 2658                                                  South Plains College
## 2659                                                  South Plains College
## 2660                                                  South Plains College
## 2661                                                  South Plains College
## 2662                                                  South Plains College
## 2663                                                  South Plains College
## 2664                                                  South Plains College
## 2665                                                  South Plains College
## 2666                                                  South Plains College
## 2667                                                  South Plains College
## 2668                                                  South Plains College
## 2669                                                  South Plains College
## 2670                                                  South Plains College
## 2671                                                  South Plains College
## 2672                                                  South Plains College
## 2673                                                  South Plains College
## 2674                                                  South Plains College
## 2675                                                  South Plains College
## 2676                                                  South Plains College
## 2677                                                  South Plains College
## 2678                                                  South Plains College
## 2679                                                  South Plains College
## 2680                                                  South Plains College
## 2681                                                  South Plains College
## 2682                                                  South Plains College
## 2683                                                  South Plains College
## 2684                                                  South Plains College
## 2685                                                  South Plains College
## 2686                                                  South Plains College
## 2687                                                  South Plains College
## 2688                                                  South Plains College
## 2689                                                  South Plains College
## 2690                                                  South Plains College
## 2691                                                  South Plains College
## 2692                                                  South Plains College
## 2693                                                  South Plains College
## 2694                                                  South Plains College
## 2695                                                  South Plains College
## 2696                                                  South Plains College
## 2697                                                  South Plains College
## 2698                                                  South Plains College
## 2699                                                  South Plains College
## 2700                                                  South Plains College
## 2701                                                  South Plains College
## 2702                                                  South Plains College
## 2703                                                  South Plains College
## 2704                                                  South Plains College
## 2705                                                  South Plains College
## 2706                                                  South Plains College
## 2707                                                  South Plains College
## 2708                                                  South Plains College
## 2709                                                  South Plains College
## 2710                                                  South Plains College
## 2711                                                  South Plains College
## 2712                                                  South Plains College
## 2713                                                  South Plains College
## 2714                                                  South Plains College
## 2715                                                  South Plains College
## 2716                                                  South Plains College
## 2717                                                  South Plains College
## 2718                                                  South Plains College
## 2719                                                  South Plains College
## 2720                                                  South Plains College
## 2721                                                  South Plains College
## 2722                                                  South Plains College
## 2723                                                  South Plains College
## 2724                                                  South Plains College
## 2725                                                  South Plains College
## 2726                                                  South Plains College
## 2727                                                  South Plains College
## 2728                                                  South Plains College
## 2729                                                  South Plains College
## 2730                                                  South Plains College
## 2731                                                  South Plains College
## 2732                                                  South Plains College
## 2733                                                  South Plains College
## 2734                                                  South Plains College
## 2735                                                  South Plains College
## 2736                                                  South Plains College
## 2737                                                  South Plains College
## 2738                                                  South Plains College
## 2739                                                  South Plains College
## 2740                                                  South Plains College
## 2741                                                  South Plains College
## 2742                                                  South Plains College
## 2743                                                  South Plains College
## 2744                                                   South Texas College
## 2745                                                   South Texas College
## 2746                                                   South Texas College
## 2747                                                   South Texas College
## 2748                                                   South Texas College
## 2749                                                   South Texas College
## 2750                                                   South Texas College
## 2751                                                   South Texas College
## 2752                                                   South Texas College
## 2753                                                   South Texas College
## 2754                                                   South Texas College
## 2755                                                   South Texas College
## 2756                                                   South Texas College
## 2757                                                   South Texas College
## 2758                                                   South Texas College
## 2759                                                   South Texas College
## 2760                                                   South Texas College
## 2761                                                   South Texas College
## 2762                                                   South Texas College
## 2763                                                   South Texas College
## 2764                                                   South Texas College
## 2765                                                   South Texas College
## 2766                                                   South Texas College
## 2767                                                   South Texas College
## 2768                                                   South Texas College
## 2769                                                   South Texas College
## 2770                                                   South Texas College
## 2771                                                   South Texas College
## 2772                                                   South Texas College
## 2773                                                   South Texas College
## 2774                                                   South Texas College
## 2775                                                   South Texas College
## 2776                                                   South Texas College
## 2777                                                   South Texas College
## 2778                                                   South Texas College
## 2779                                                   South Texas College
## 2780                                                   South Texas College
## 2781                                                   South Texas College
## 2782                                                   South Texas College
## 2783                                                   South Texas College
## 2784                                                   South Texas College
## 2785                                                   South Texas College
## 2786                                                   South Texas College
## 2787                                                   South Texas College
## 2788                                                   South Texas College
## 2789                                                   South Texas College
## 2790                                                   South Texas College
## 2791                                                   South Texas College
## 2792                                                   South Texas College
## 2793                                                   South Texas College
## 2794                                                   South Texas College
## 2795                                                   South Texas College
## 2796                                                   South Texas College
## 2797                                                   South Texas College
## 2798                                                   South Texas College
## 2799                                                   South Texas College
## 2800                                                   South Texas College
## 2801                                                   South Texas College
## 2802                                                   South Texas College
## 2803                                                   South Texas College
## 2804                                                   South Texas College
## 2805                                           South Texas Training Center
## 2806                                           South Texas Training Center
## 2807                                           South Texas Training Center
## 2808                                           South Texas Training Center
## 2809                                           South Texas Training Center
## 2810                                           South Texas Training Center
## 2811                                           South Texas Training Center
## 2812                                           South Texas Training Center
## 2813                                           South Texas Training Center
## 2814                                           South Texas Training Center
## 2815                                           South Texas Training Center
## 2816                                           South Texas Training Center
## 2817                                           South Texas Training Center
## 2818                                           South Texas Training Center
## 2819                    South Texas Vocational Technical Institute-McAllen
## 2820                    South Texas Vocational Technical Institute-McAllen
## 2821                    South Texas Vocational Technical Institute-McAllen
## 2822                    South Texas Vocational Technical Institute-McAllen
## 2823                    South Texas Vocational Technical Institute-McAllen
## 2824                                            South Texas Welding School
## 2825                                            South Texas Welding School
## 2826                                            South Texas Welding School
## 2827                                            South Texas Welding School
## 2828                                            South Texas Welding School
## 2829                                            South Texas Welding School
## 2830                                            South Texas Welding School
## 2831                                            South Texas Welding School
## 2832                                            South Texas Welding School
## 2833                                            South Texas Welding School
## 2834                                            South Texas Welding School
## 2835                                            Southern Careers Institute
## 2836                                            Southern Careers Institute
## 2837                                            Southern Careers Institute
## 2838                                            Southern Careers Institute
## 2839                                            Southern Careers Institute
## 2840                                            Southern Careers Institute
## 2841                                            Southern Careers Institute
## 2842                                            Southern Careers Institute
## 2843                                            Southern Careers Institute
## 2844                                            Southern Careers Institute
## 2845                                            Southern Careers Institute
## 2846                                            Southern Careers Institute
## 2847                                            Southern Careers Institute
## 2848                                            Southern Careers Institute
## 2849                                            Southern Careers Institute
## 2850                                            Southern Careers Institute
## 2851                                            Southern Careers Institute
## 2852                                            Southern Careers Institute
## 2853                                            Southern Careers Institute
## 2854                                            Southern Careers Institute
## 2855                                            Southern Careers Institute
## 2856                                            Southern Careers Institute
## 2857                                            Southern Careers Institute
## 2858                                            Southern Careers Institute
## 2859                                            Southern Careers Institute
## 2860                                            Southern Careers Institute
## 2861                                            Southern Careers Institute
## 2862                                            Southern Careers Institute
## 2863                                            Southern Careers Institute
## 2864                                            Southern Careers Institute
## 2865                                            Southern Careers Institute
## 2866                                            Southern Careers Institute
## 2867                                            Southern Careers Institute
## 2868                                            Southern Careers Institute
## 2869                                            Southern Careers Institute
## 2870                                            Southern Careers Institute
## 2871                                            Southern Careers Institute
## 2872                                            Southern Careers Institute
## 2873                                            Southern Careers Institute
## 2874                                            Southern Careers Institute
## 2875                                            Southern Careers Institute
## 2876                                            Southern Careers Institute
## 2877                                            Southern Careers Institute
## 2878                                            Southern Careers Institute
## 2879                                            Southern Careers Institute
## 2880                                            Southern Careers Institute
## 2881                                            Southern Careers Institute
## 2882                                            Southern Careers Institute
## 2883                                            Southern Careers Institute
## 2884                                            Southern Careers Institute
## 2885                                            Southern Careers Institute
## 2886                                    Southern Industrial Careers Center
## 2887                                    Southern Industrial Careers Center
## 2888                                    Southern Industrial Careers Center
## 2889                                    Southern Industrial Careers Center
## 2890                                    Southern Industrial Careers Center
## 2891                                    Southern Industrial Careers Center
## 2892                                    Southern Industrial Careers Center
## 2893                                    Southern Industrial Careers Center
## 2894                    Southwest School of Business and Technical Careers
## 2895                    Southwest School of Business and Technical Careers
## 2896                    Southwest School of Business and Technical Careers
## 2897                    Southwest School of Business and Technical Careers
## 2898                    Southwest School of Business and Technical Careers
## 2899                    Southwest School of Business and Technical Careers
## 2900                    Southwest School of Business and Technical Careers
## 2901                                        Southwest Texas Junior College
## 2902                                        Southwest Texas Junior College
## 2903                                        Southwest Texas Junior College
## 2904                                        Southwest Texas Junior College
## 2905                                        Southwest Texas Junior College
## 2906                                        Southwest Texas Junior College
## 2907                                        Southwest Texas Junior College
## 2908                                        Southwest Texas Junior College
## 2909                                        Southwest Texas Junior College
## 2910                                        Southwest Texas Junior College
## 2911                                        Southwest Texas Junior College
## 2912                                        Southwest Texas Junior College
## 2913                                        Southwest Texas Junior College
## 2914                                        Southwest Texas Junior College
## 2915                                        Southwest Texas Junior College
## 2916                                        Southwest Texas Junior College
## 2917                                        Southwest Texas Junior College
## 2918                                        Southwest Texas Junior College
## 2919                                        Southwest Texas Junior College
## 2920                                        Southwest Texas Junior College
## 2921                                        Southwest Texas Junior College
## 2922                                        Southwest Texas Junior College
## 2923                                        Southwest Texas Junior College
## 2924                                        Southwest Texas Junior College
## 2925                                        Southwest Texas Junior College
## 2926                                        Southwest Texas Junior College
## 2927                                        Southwest Texas Junior College
## 2928                                        Southwest Texas Junior College
## 2929                                        Southwest Texas Junior College
## 2930                                        Southwest Texas Junior College
## 2931                                        Southwest Texas Junior College
## 2932                                        Southwest Texas Junior College
## 2933                                        Southwest Texas Junior College
## 2934                                        Southwest Texas Junior College
## 2935                                        Southwest Texas Junior College
## 2936                                        Southwest Texas Junior College
## 2937                                        Southwest Texas Junior College
## 2938                                        Southwest Texas Junior College
## 2939                                        Southwest Texas Junior College
## 2940                                        Southwest Texas Junior College
## 2941                                        Southwest Texas Junior College
## 2942                                        Southwest Texas Junior College
## 2943                                        Southwest Texas Junior College
## 2944                                        Southwest Texas Junior College
## 2945                                        Southwest Texas Junior College
## 2946                                        Southwest Texas Junior College
## 2947                                        Southwest Texas Junior College
## 2948                                        Southwest Texas Junior College
## 2949                                       Southwest University at El Paso
## 2950                                       Southwest University at El Paso
## 2951                                       Southwest University at El Paso
## 2952                                       Southwest University at El Paso
## 2953                                       Southwest University at El Paso
## 2954                                        St  Michael's Learning Academy
## 2955                                        St  Michael's Learning Academy
## 2956                                        St  Michael's Learning Academy
## 2957                                        St  Michael's Learning Academy
## 2958                                        St  Michael's Learning Academy
## 2959                                                  Star Career Training
## 2960                                                  Star Career Training
## 2961                                 Star of Texas Dental Assisting School
## 2962                                                         Stone Academy
## 2963                                                         Stone Academy
## 2964                                                         Stone Academy
## 2965                                                         Stone Academy
## 2966                                                Tarrant County College
## 2967                                                Tarrant County College
## 2968                                                Tarrant County College
## 2969                                                Tarrant County College
## 2970                                                Tarrant County College
## 2971                                                Tarrant County College
## 2972                                                Tarrant County College
## 2973                                                Tarrant County College
## 2974                                                Tarrant County College
## 2975                                                Tarrant County College
## 2976                                                Tarrant County College
## 2977                                                Tarrant County College
## 2978                                                Tarrant County College
## 2979                                                Tarrant County College
## 2980                                                Tarrant County College
## 2981                                                Tarrant County College
## 2982                                                Tarrant County College
## 2983                                                Tarrant County College
## 2984                                                Tarrant County College
## 2985                                                Tarrant County College
## 2986                                                Tarrant County College
## 2987                                                Tarrant County College
## 2988                                                Tarrant County College
## 2989                                                Tarrant County College
## 2990                                                Tarrant County College
## 2991                                                Tarrant County College
## 2992                                                Tarrant County College
## 2993                                                Tarrant County College
## 2994                                                Tarrant County College
## 2995                                                Tarrant County College
## 2996                                                Tarrant County College
## 2997                                                Tarrant County College
## 2998                                                Tarrant County College
## 2999                                                Tarrant County College
## 3000                                                Tarrant County College
## 3001                                                Tarrant County College
## 3002                                                Tarrant County College
## 3003                                                Tarrant County College
## 3004                                                Tarrant County College
## 3005                                                Tarrant County College
## 3006                                                Tarrant County College
## 3007                                                Tarrant County College
## 3008                                                Tarrant County College
## 3009                                                Tarrant County College
## 3010                                                Tarrant County College
## 3011                                                Tarrant County College
## 3012                                                Tarrant County College
## 3013                                                Tarrant County College
## 3014                                                Tarrant County College
## 3015                                                Tarrant County College
## 3016                                                Tarrant County College
## 3017                                                Tarrant County College
## 3018                                                Tarrant County College
## 3019                                                Tarrant County College
## 3020                                                Tarrant County College
## 3021                                                Tarrant County College
## 3022                                                Tarrant County College
## 3023                                                Tarrant County College
## 3024                                                Tarrant County College
## 3025                                                Tarrant County College
## 3026                                                        Temple College
## 3027                                                        Temple College
## 3028                                                        Temple College
## 3029                                                        Temple College
## 3030                                                        Temple College
## 3031                                                        Temple College
## 3032                                                        Temple College
## 3033                                                        Temple College
## 3034                                                        Temple College
## 3035                                                        Temple College
## 3036                                                        Temple College
## 3037                                                        Temple College
## 3038                                                     Texarkana College
## 3039                                                     Texarkana College
## 3040                                                     Texarkana College
## 3041                                                     Texarkana College
## 3042                                                     Texarkana College
## 3043                                                     Texarkana College
## 3044                                                     Texarkana College
## 3045                                                     Texarkana College
## 3046                                                     Texarkana College
## 3047                                                     Texarkana College
## 3048                                                     Texarkana College
## 3049                                                     Texarkana College
## 3050                                                     Texarkana College
## 3051                                                     Texarkana College
## 3052                                                     Texarkana College
## 3053                                 Texas A&M University   Corpus Christi
## 3054                                 Texas A&M University   Corpus Christi
## 3055                                 Texas A&M University   Corpus Christi
## 3056                                 Texas A&M University   Corpus Christi
## 3057                                 Texas A&M University   Corpus Christi
## 3058                                 Texas A&M University   Corpus Christi
## 3059                                 Texas A&M University   Corpus Christi
## 3060                                 Texas A&M University   Corpus Christi
## 3061                                 Texas A&M University   Corpus Christi
## 3062                                 Texas A&M University   Corpus Christi
## 3063                                 Texas A&M University   Corpus Christi
## 3064                                 Texas A&M University   Corpus Christi
## 3065                                 Texas A&M University   Corpus Christi
## 3066                                 Texas A&M University   Corpus Christi
## 3067                                 Texas A&M University   Corpus Christi
## 3068                                 Texas A&M University   Corpus Christi
## 3069                                 Texas A&M University   Corpus Christi
## 3070                                 Texas A&M University   Corpus Christi
## 3071                                 Texas A&M University   Corpus Christi
## 3072                                 Texas A&M University   Corpus Christi
## 3073                                 Texas A&M University   Corpus Christi
## 3074                                 Texas A&M University   Corpus Christi
## 3075                                 Texas A&M University   Corpus Christi
## 3076                                 Texas A&M University   Corpus Christi
## 3077                                 Texas A&M University   Corpus Christi
## 3078                                 Texas A&M University   Corpus Christi
## 3079                                 Texas A&M University   Corpus Christi
## 3080                                 Texas A&M University   Corpus Christi
## 3081                                 Texas A&M University   Corpus Christi
## 3082                                 Texas A&M University   Corpus Christi
## 3083                                 Texas A&M University   Corpus Christi
## 3084                                 Texas A&M University   Corpus Christi
## 3085                                 Texas A&M University   Corpus Christi
## 3086                                 Texas A&M University   Corpus Christi
## 3087                                 Texas A&M University   Corpus Christi
## 3088                                 Texas A&M University   Corpus Christi
## 3089                                 Texas A&M University   Corpus Christi
## 3090                                 Texas A&M University   Corpus Christi
## 3091                                 Texas A&M University   Corpus Christi
## 3092                                 Texas A&M University   Corpus Christi
## 3093                                 Texas A&M University   Corpus Christi
## 3094                                 Texas A&M University   Corpus Christi
## 3095                                 Texas A&M University   Corpus Christi
## 3096                                 Texas A&M University   Corpus Christi
## 3097                                 Texas A&M University   Corpus Christi
## 3098                                 Texas A&M University   Corpus Christi
## 3099                                 Texas A&M University   Corpus Christi
## 3100                                 Texas A&M University   Corpus Christi
## 3101                                 Texas A&M University   Corpus Christi
## 3102                                 Texas A&M University   Corpus Christi
## 3103                                 Texas A&M University   Corpus Christi
## 3104                                 Texas A&M University   Corpus Christi
## 3105                                 Texas A&M University   Corpus Christi
## 3106                                 Texas A&M University   Corpus Christi
## 3107                                 Texas A&M University   Corpus Christi
## 3108                                 Texas A&M University   Corpus Christi
## 3109                                 Texas A&M University   Corpus Christi
## 3110                                 Texas A&M University   Corpus Christi
## 3111                                 Texas A&M University   Corpus Christi
## 3112                                 Texas A&M University   Corpus Christi
## 3113                                 Texas A&M University   Corpus Christi
## 3114                                 Texas A&M University   Corpus Christi
## 3115                                 Texas A&M University   Corpus Christi
## 3116                                 Texas A&M University   Corpus Christi
## 3117                                 Texas A&M University   Corpus Christi
## 3118                                 Texas A&M University   Corpus Christi
## 3119                                 Texas A&M University   Corpus Christi
## 3120                                 Texas A&M University   Corpus Christi
## 3121                                 Texas A&M University   Corpus Christi
## 3122                                 Texas A&M University   Corpus Christi
## 3123                                 Texas A&M University   Corpus Christi
## 3124                                 Texas A&M University   Corpus Christi
## 3125                                 Texas A&M University   Corpus Christi
## 3126                                 Texas A&M University   Corpus Christi
## 3127                                 Texas A&M University   Corpus Christi
## 3128                                 Texas A&M University   Corpus Christi
## 3129                                                Texas Career Institute
## 3130                                                Texas Career Institute
## 3131                                                Texas Career Institute
## 3132                                                Texas Career Institute
## 3133                                                Texas Career Institute
## 3134                                                Texas Career Institute
## 3135                                                Texas Career Institute
## 3136                                                Texas Career Institute
## 3137                                                   Texas Health School
## 3138                  Texas School of Continuing Education and Recruitment
## 3139                  Texas School of Continuing Education and Recruitment
## 3140                  Texas School of Continuing Education and Recruitment
## 3141                  Texas School of Continuing Education and Recruitment
## 3142                                               Texas Southmost College
## 3143                                               Texas Southmost College
## 3144                                               Texas Southmost College
## 3145                                               Texas Southmost College
## 3146                                               Texas Southmost College
## 3147                                               Texas Southmost College
## 3148                                               Texas Southmost College
## 3149                                               Texas Southmost College
## 3150                                               Texas Southmost College
## 3151                                               Texas Southmost College
## 3152                                               Texas Southmost College
## 3153                                               Texas Southmost College
## 3154                                               Texas Southmost College
## 3155                                               Texas Southmost College
## 3156                                               Texas Southmost College
## 3157                                               Texas Southmost College
## 3158                                               Texas Southmost College
## 3159                                               Texas Southmost College
## 3160                                               Texas Southmost College
## 3161                                               Texas Southmost College
## 3162                                               Texas Southmost College
## 3163                                               Texas Southmost College
## 3164                                               Texas Southmost College
## 3165                                               Texas Southmost College
## 3166                                               Texas Southmost College
## 3167                                               Texas Southmost College
## 3168                                               Texas Southmost College
## 3169                                               Texas Southmost College
## 3170                                               Texas Southmost College
## 3171                                               Texas Southmost College
## 3172                                               Texas Southmost College
## 3173                                               Texas Southmost College
## 3174                                               Texas Southmost College
## 3175                                               Texas Southmost College
## 3176                                               Texas Southmost College
## 3177                                               Texas Southmost College
## 3178                                               Texas Southmost College
## 3179                                               Texas Southmost College
## 3180                                               Texas Southmost College
## 3181                                               Texas Southmost College
## 3182                                               Texas Southmost College
## 3183                                               Texas Southmost College
## 3184                                               Texas Southmost College
## 3185                                 Texas State Technical College Abilene
## 3186                                 Texas State Technical College Abilene
## 3187                                 Texas State Technical College Abilene
## 3188                                 Texas State Technical College Abilene
## 3189                                 Texas State Technical College Abilene
## 3190                                 Texas State Technical College Abilene
## 3191                                 Texas State Technical College Abilene
## 3192                                 Texas State Technical College Abilene
## 3193                                 Texas State Technical College Abilene
## 3194                                 Texas State Technical College Abilene
## 3195                                 Texas State Technical College Abilene
## 3196                                 Texas State Technical College Abilene
## 3197                                 Texas State Technical College Abilene
## 3198                                 Texas State Technical College Abilene
## 3199                                 Texas State Technical College Abilene
## 3200                                 Texas State Technical College Abilene
## 3201                            Texas State Technical College Breckenridge
## 3202                            Texas State Technical College Breckenridge
## 3203                               Texas State Technical College Brownwood
## 3204                               Texas State Technical College Brownwood
## 3205                               Texas State Technical College Brownwood
## 3206                               Texas State Technical College Brownwood
## 3207                               Texas State Technical College Brownwood
## 3208                  Texas State Technical College East Williamson County
## 3209                  Texas State Technical College East Williamson County
## 3210                  Texas State Technical College East Williamson County
## 3211                  Texas State Technical College East Williamson County
## 3212                  Texas State Technical College East Williamson County
## 3213                  Texas State Technical College East Williamson County
## 3214                  Texas State Technical College East Williamson County
## 3215                  Texas State Technical College East Williamson County
## 3216                  Texas State Technical College East Williamson County
## 3217                  Texas State Technical College East Williamson County
## 3218                  Texas State Technical College East Williamson County
## 3219                  Texas State Technical College East Williamson County
## 3220                  Texas State Technical College East Williamson County
## 3221                  Texas State Technical College East Williamson County
## 3222                               Texas State Technical College Fort Bend
## 3223                               Texas State Technical College Fort Bend
## 3224                               Texas State Technical College Fort Bend
## 3225                               Texas State Technical College Fort Bend
## 3226                               Texas State Technical College Fort Bend
## 3227                               Texas State Technical College Fort Bend
## 3228                               Texas State Technical College Fort Bend
## 3229                               Texas State Technical College Fort Bend
## 3230                               Texas State Technical College Fort Bend
## 3231                               Texas State Technical College Fort Bend
## 3232                               Texas State Technical College Fort Bend
## 3233                               Texas State Technical College Fort Bend
## 3234                               Texas State Technical College Fort Bend
## 3235                               Texas State Technical College Fort Bend
## 3236                               Texas State Technical College Fort Bend
## 3237                               Texas State Technical College Fort Bend
## 3238                               Texas State Technical College Fort Bend
## 3239                               Texas State Technical College Fort Bend
## 3240                               Texas State Technical College Fort Bend
## 3241                               Texas State Technical College Fort Bend
## 3242                               Texas State Technical College Fort Bend
## 3243                               Texas State Technical College Fort Bend
## 3244                               Texas State Technical College Fort Bend
## 3245                               Texas State Technical College Harlingen
## 3246                               Texas State Technical College Harlingen
## 3247                               Texas State Technical College Harlingen
## 3248                               Texas State Technical College Harlingen
## 3249                               Texas State Technical College Harlingen
## 3250                               Texas State Technical College Harlingen
## 3251                               Texas State Technical College Harlingen
## 3252                               Texas State Technical College Harlingen
## 3253                               Texas State Technical College Harlingen
## 3254                               Texas State Technical College Harlingen
## 3255                               Texas State Technical College Harlingen
## 3256                               Texas State Technical College Harlingen
## 3257                               Texas State Technical College Harlingen
## 3258                               Texas State Technical College Harlingen
## 3259                               Texas State Technical College Harlingen
## 3260                               Texas State Technical College Harlingen
## 3261                               Texas State Technical College Harlingen
## 3262                               Texas State Technical College Harlingen
## 3263                               Texas State Technical College Harlingen
## 3264                               Texas State Technical College Harlingen
## 3265                               Texas State Technical College Harlingen
## 3266                               Texas State Technical College Harlingen
## 3267                               Texas State Technical College Harlingen
## 3268                               Texas State Technical College Harlingen
## 3269                               Texas State Technical College Harlingen
## 3270                               Texas State Technical College Harlingen
## 3271                               Texas State Technical College Harlingen
## 3272                               Texas State Technical College Harlingen
## 3273                               Texas State Technical College Harlingen
## 3274                               Texas State Technical College Harlingen
## 3275                               Texas State Technical College Harlingen
## 3276                               Texas State Technical College Harlingen
## 3277                               Texas State Technical College Harlingen
## 3278                               Texas State Technical College Harlingen
## 3279                               Texas State Technical College Harlingen
## 3280                               Texas State Technical College Harlingen
## 3281                               Texas State Technical College Harlingen
## 3282                               Texas State Technical College Harlingen
## 3283                               Texas State Technical College Harlingen
## 3284                               Texas State Technical College Harlingen
## 3285                               Texas State Technical College Harlingen
## 3286                               Texas State Technical College Harlingen
## 3287                               Texas State Technical College Harlingen
## 3288                               Texas State Technical College Harlingen
## 3289                               Texas State Technical College Harlingen
## 3290                               Texas State Technical College Harlingen
## 3291                               Texas State Technical College Harlingen
## 3292                               Texas State Technical College Harlingen
## 3293                               Texas State Technical College Harlingen
## 3294                               Texas State Technical College Harlingen
## 3295                                Texas State Technical College Marshall
## 3296                                Texas State Technical College Marshall
## 3297                                Texas State Technical College Marshall
## 3298                                Texas State Technical College Marshall
## 3299                                Texas State Technical College Marshall
## 3300                                Texas State Technical College Marshall
## 3301                                Texas State Technical College Marshall
## 3302                                Texas State Technical College Marshall
## 3303                                Texas State Technical College Marshall
## 3304                                Texas State Technical College Marshall
## 3305                                Texas State Technical College Marshall
## 3306                                Texas State Technical College Marshall
## 3307                                Texas State Technical College Marshall
## 3308                                Texas State Technical College Marshall
## 3309                                Texas State Technical College Marshall
## 3310                                Texas State Technical College Marshall
## 3311                                Texas State Technical College Marshall
## 3312                                Texas State Technical College Marshall
## 3313                                Texas State Technical College Marshall
## 3314                                Texas State Technical College Marshall
## 3315                                Texas State Technical College Marshall
## 3316                                Texas State Technical College Marshall
## 3317                                Texas State Technical College Marshall
## 3318                                Texas State Technical College Marshall
## 3319                                Texas State Technical College Marshall
## 3320                      Texas State Technical College North Texas Center
## 3321                      Texas State Technical College North Texas Center
## 3322                      Texas State Technical College North Texas Center
## 3323                      Texas State Technical College North Texas Center
## 3324                      Texas State Technical College North Texas Center
## 3325                      Texas State Technical College North Texas Center
## 3326                      Texas State Technical College North Texas Center
## 3327                      Texas State Technical College North Texas Center
## 3328                      Texas State Technical College North Texas Center
## 3329                      Texas State Technical College North Texas Center
## 3330                      Texas State Technical College North Texas Center
## 3331                      Texas State Technical College North Texas Center
## 3332                      Texas State Technical College North Texas Center
## 3333                      Texas State Technical College North Texas Center
## 3334                      Texas State Technical College North Texas Center
## 3335                      Texas State Technical College North Texas Center
## 3336                      Texas State Technical College North Texas Center
## 3337                      Texas State Technical College North Texas Center
## 3338                      Texas State Technical College North Texas Center
## 3339                      Texas State Technical College North Texas Center
## 3340                      Texas State Technical College North Texas Center
## 3341                              Texas State Technical College Sweetwater
## 3342                              Texas State Technical College Sweetwater
## 3343                              Texas State Technical College Sweetwater
## 3344                              Texas State Technical College Sweetwater
## 3345                              Texas State Technical College Sweetwater
## 3346                              Texas State Technical College Sweetwater
## 3347                              Texas State Technical College Sweetwater
## 3348                              Texas State Technical College Sweetwater
## 3349                              Texas State Technical College Sweetwater
## 3350                              Texas State Technical College Sweetwater
## 3351                                    Texas State Technical College Waco
## 3352                                    Texas State Technical College Waco
## 3353                                    Texas State Technical College Waco
## 3354                                    Texas State Technical College Waco
## 3355                                    Texas State Technical College Waco
## 3356                                    Texas State Technical College Waco
## 3357                                    Texas State Technical College Waco
## 3358                                    Texas State Technical College Waco
## 3359                                    Texas State Technical College Waco
## 3360                                    Texas State Technical College Waco
## 3361                                    Texas State Technical College Waco
## 3362                                    Texas State Technical College Waco
## 3363                                    Texas State Technical College Waco
## 3364                                    Texas State Technical College Waco
## 3365                                    Texas State Technical College Waco
## 3366                                    Texas State Technical College Waco
## 3367                                    Texas State Technical College Waco
## 3368                                    Texas State Technical College Waco
## 3369                                    Texas State Technical College Waco
## 3370                                    Texas State Technical College Waco
## 3371                                    Texas State Technical College Waco
## 3372                                    Texas State Technical College Waco
## 3373                                    Texas State Technical College Waco
## 3374                                    Texas State Technical College Waco
## 3375                                    Texas State Technical College Waco
## 3376                                    Texas State Technical College Waco
## 3377                                    Texas State Technical College Waco
## 3378                                    Texas State Technical College Waco
## 3379                                    Texas State Technical College Waco
## 3380                                    Texas State Technical College Waco
## 3381                                    Texas State Technical College Waco
## 3382                                    Texas State Technical College Waco
## 3383                                    Texas State Technical College Waco
## 3384                                    Texas State Technical College Waco
## 3385                                    Texas State Technical College Waco
## 3386                                    Texas State Technical College Waco
## 3387                                    Texas State Technical College Waco
## 3388                                    Texas State Technical College Waco
## 3389                                    Texas State Technical College Waco
## 3390                                    Texas State Technical College Waco
## 3391                                    Texas State Technical College Waco
## 3392                                    Texas State Technical College Waco
## 3393                  Texas Tech University Health Sciences Center El Paso
## 3394                  Texas Tech University Health Sciences Center El Paso
## 3395                                              Texas Woman's University
## 3396                                The College of Health Care Professions
## 3397                                The College of Health Care Professions
## 3398                                The College of Health Care Professions
## 3399                                The College of Health Care Professions
## 3400                                The College of Health Care Professions
## 3401                                The College of Health Care Professions
## 3402                                The College of Health Care Professions
## 3403                                The College of Health Care Professions
## 3404                                The College of Health Care Professions
## 3405                                The College of Health Care Professions
## 3406                                The College of Health Care Professions
## 3407                                The College of Health Care Professions
## 3408                                The College of Health Care Professions
## 3409                                The College of Health Care Professions
## 3410                                The College of Health Care Professions
## 3411                                The College of Health Care Professions
## 3412                                The College of Health Care Professions
## 3413                                The College of Health Care Professions
## 3414                                The College of Health Care Professions
## 3415                                The College of Health Care Professions
## 3416                                The College of Health Care Professions
## 3417                                The College of Health Care Professions
## 3418                                The College of Health Care Professions
## 3419                                The College of Health Care Professions
## 3420                                The College of Health Care Professions
## 3421                                The College of Health Care Professions
## 3422                                The College of Health Care Professions
## 3423                                The College of Health Care Professions
## 3424                                The College of Health Care Professions
## 3425                                The College of Health Care Professions
## 3426                                The College of Health Care Professions
## 3427                                The College of Health Care Professions
## 3428                                The College of Health Care Professions
## 3429                                The College of Health Care Professions
## 3430                                The College of Health Care Professions
## 3431                                The College of Health Care Professions
## 3432                                The College of Health Care Professions
## 3433                                The College of Health Care Professions
## 3434                                    The Institute of Allied Healthcare
## 3435                                    The Institute of Allied Healthcare
## 3436                     The Training Center of Air Conditioning   Houston
## 3437                                  The Vocational Nursing Institute Inc
## 3438                                  The Vocational Nursing Institute Inc
## 3439                            Tomball College (Lone Star College System)
## 3440                            Tomball College (Lone Star College System)
## 3441                            Tomball College (Lone Star College System)
## 3442                            Tomball College (Lone Star College System)
## 3443                            Tomball College (Lone Star College System)
## 3444                            Tomball College (Lone Star College System)
## 3445                            Tomball College (Lone Star College System)
## 3446                            Tomball College (Lone Star College System)
## 3447                            Tomball College (Lone Star College System)
## 3448                            Tomball College (Lone Star College System)
## 3449                            Tomball College (Lone Star College System)
## 3450                            Tomball College (Lone Star College System)
## 3451                            Tomball College (Lone Star College System)
## 3452                            Tomball College (Lone Star College System)
## 3453                            Tomball College (Lone Star College System)
## 3454                            Tomball College (Lone Star College System)
## 3455                            Tomball College (Lone Star College System)
## 3456                            Tomball College (Lone Star College System)
## 3457                            Tomball College (Lone Star College System)
## 3458                            Tomball College (Lone Star College System)
## 3459                            Tomball College (Lone Star College System)
## 3460                                              Training Academy 4 U LLC
## 3461                                              Training Academy 4 U LLC
## 3462                                              Training Academy 4 U LLC
## 3463                                              Training Academy 4 U LLC
## 3464                                      Trinity Valley Community College
## 3465                                      Trinity Valley Community College
## 3466                                      Trinity Valley Community College
## 3467                                      Trinity Valley Community College
## 3468                                      Trinity Valley Community College
## 3469                                      Trinity Valley Community College
## 3470                                      Trinity Valley Community College
## 3471                                      Trinity Valley Community College
## 3472                                      Trinity Valley Community College
## 3473                                      Trinity Valley Community College
## 3474                                      Trinity Valley Community College
## 3475                                      Trinity Valley Community College
## 3476                                      Trinity Valley Community College
## 3477                                      Trinity Valley Community College
## 3478                                      Trinity Valley Community College
## 3479                                      Trinity Valley Community College
## 3480                                      Trinity Valley Community College
## 3481                                      Trinity Valley Community College
## 3482                                      Trinity Valley Community College
## 3483                                      Trinity Valley Community College
## 3484                                      Trinity Valley Community College
## 3485                                      Trinity Valley Community College
## 3486                                      Trinity Valley Community College
## 3487                                      Trinity Valley Community College
## 3488                                      Trinity Valley Community College
## 3489                                      Trinity Valley Community College
## 3490                                      Trinity Valley Community College
## 3491                                      Trinity Valley Community College
## 3492                                      Trinity Valley Community College
## 3493                                      Trinity Valley Community College
## 3494                                      Trinity Valley Community College
## 3495                                      Trinity Valley Community College
## 3496                                      Trinity Valley Community College
## 3497                                      Trinity Valley Community College
## 3498                                      Trinity Valley Community College
## 3499                                      Trinity Valley Community College
## 3500                                      Trinity Valley Community College
## 3501                                      Trinity Valley Community College
## 3502                                      Trinity Valley Community College
## 3503                                      Trinity Valley Community College
## 3504                                      Trinity Valley Community College
## 3505                                      Trinity Valley Community College
## 3506                                      Trinity Valley Community College
## 3507                                      Trinity Valley Community College
## 3508                                      Trinity Valley Community College
## 3509                                      Trinity Valley Community College
## 3510                                      Trinity Valley Community College
## 3511                                      Trinity Valley Community College
## 3512                                      Trinity Valley Community College
## 3513                                      Trinity Valley Community College
## 3514                                      Trinity Valley Community College
## 3515                                      Trinity Valley Community College
## 3516                                      Trinity Valley Community College
## 3517                                      Trinity Valley Community College
## 3518                                      Trinity Valley Community College
## 3519                                      Trinity Valley Community College
## 3520                                      Trinity Valley Community College
## 3521                                      Trinity Valley Community College
## 3522                                      Trinity Valley Community College
## 3523                                      Trinity Valley Community College
## 3524                                      Trinity Valley Community College
## 3525                                      Trinity Valley Community College
## 3526                                      Trinity Valley Community College
## 3527                                      Trinity Valley Community College
## 3528                                      Trinity Valley Community College
## 3529                                      Trinity Valley Community College
## 3530                                      Trinity Valley Community College
## 3531                                      Trinity Valley Community College
## 3532                                      Trinity Valley Community College
## 3533                                      Trinity Valley Community College
## 3534                                      Trinity Valley Community College
## 3535                                      Trinity Valley Community College
## 3536                                      Trinity Valley Community College
## 3537                                      Trinity Valley Community College
## 3538                                      Trinity Valley Community College
## 3539                                      Trinity Valley Community College
## 3540                                      Trinity Valley Community College
## 3541                                      Trinity Valley Community College
## 3542                                      Trinity Valley Community College
## 3543                                      Trinity Valley Community College
## 3544                                      Trinity Valley Community College
## 3545                                      Trinity Valley Community College
## 3546                                      Trinity Valley Community College
## 3547                                      Trinity Valley Community College
## 3548                                      Trinity Valley Community College
## 3549                                      Trinity Valley Community College
## 3550                                      Trinity Valley Community College
## 3551                                      Trinity Valley Community College
## 3552                                      Trinity Valley Community College
## 3553                                      Trinity Valley Community College
## 3554                                      Trinity Valley Community College
## 3555                                      Trinity Valley Community College
## 3556                                      Trinity Valley Community College
## 3557                                      Trinity Valley Community College
## 3558                                      Trinity Valley Community College
## 3559                                      Trinity Valley Community College
## 3560                                      Trinity Valley Community College
## 3561                                      Trinity Valley Community College
## 3562                                      Trinity Valley Community College
## 3563                                      Trinity Valley Community College
## 3564                                      Trinity Valley Community College
## 3565                                      Trinity Valley Community College
## 3566                                      Trinity Valley Community College
## 3567                                      Trinity Valley Community College
## 3568                                      Trinity Valley Community College
## 3569                                      Trinity Valley Community College
## 3570                                      Trinity Valley Community College
## 3571                                      Trinity Valley Community College
## 3572                                      Trinity Valley Community College
## 3573                                      Trinity Valley Community College
## 3574                                      Trinity Valley Community College
## 3575                                              Tulsa Welding School Inc
## 3576                                              Tulsa Welding School Inc
## 3577                                              Tulsa Welding School Inc
## 3578                                              Tulsa Welding School Inc
## 3579                    Tyler County Hospital School of Vocational Nursing
## 3580                                                  Tyler Junior College
## 3581                                                  Tyler Junior College
## 3582                                                  Tyler Junior College
## 3583                                                  Tyler Junior College
## 3584                                                  Tyler Junior College
## 3585                                                  Tyler Junior College
## 3586                                                  Tyler Junior College
## 3587                                                  Tyler Junior College
## 3588                                                  Tyler Junior College
## 3589                                                  Tyler Junior College
## 3590                                                  Tyler Junior College
## 3591                                                  Tyler Junior College
## 3592                                                  Tyler Junior College
## 3593                                                  Tyler Junior College
## 3594                                                  Tyler Junior College
## 3595                                                  Tyler Junior College
## 3596                                                  Tyler Junior College
## 3597                                                  Tyler Junior College
## 3598                                                  Tyler Junior College
## 3599                                                  Tyler Junior College
## 3600                                                  Tyler Junior College
## 3601                                                  Tyler Junior College
## 3602                                                  Tyler Junior College
## 3603                                                  Tyler Junior College
## 3604                                                  Tyler Junior College
## 3605                                                  Tyler Junior College
## 3606                                                  Tyler Junior College
## 3607                                                  Tyler Junior College
## 3608                                                  Tyler Junior College
## 3609                                                  Tyler Junior College
## 3610                                                  Tyler Junior College
## 3611                                                  Tyler Junior College
## 3612                                                  Tyler Junior College
## 3613                                                  Tyler Junior College
## 3614                                                  Tyler Junior College
## 3615                                                  Tyler Junior College
## 3616                                                  Tyler Junior College
## 3617                                                  Tyler Junior College
## 3618                                                  Tyler Junior College
## 3619                                                  Tyler Junior College
## 3620                                                  Tyler Junior College
## 3621                                                  Tyler Junior College
## 3622                                                  Tyler Junior College
## 3623                                                  Tyler Junior College
## 3624                                                  Tyler Junior College
## 3625                                                  Tyler Junior College
## 3626                                                  Tyler Junior College
## 3627                                                  Tyler Junior College
## 3628                                                  Tyler Junior College
## 3629                                                  Tyler Junior College
## 3630                                                  Tyler Junior College
## 3631                                                  Tyler Junior College
## 3632                                                  Tyler Junior College
## 3633                                                 University of Houston
## 3634                                                 University of Houston
## 3635                                                 University of Houston
## 3636                                                 University of Houston
## 3637                                                 University of Houston
## 3638                            University of St  Thomas School of Nursing
## 3639                            University of St  Thomas School of Nursing
## 3640     University of Texas at Arlington Division of Continuing Education
## 3641     University of Texas at Arlington Division of Continuing Education
## 3642     University of Texas at Arlington Division of Continuing Education
## 3643     University of Texas at Arlington Division of Continuing Education
## 3644     University of Texas at Arlington Division of Continuing Education
## 3645     University of Texas at Arlington Division of Continuing Education
## 3646     University of Texas at Arlington Division of Continuing Education
## 3647     University of Texas at Arlington Division of Continuing Education
## 3648     University of Texas at Arlington Division of Continuing Education
## 3649     University of Texas at Arlington Division of Continuing Education
## 3650     University of Texas at Arlington Division of Continuing Education
## 3651     University of Texas at Arlington Division of Continuing Education
## 3652     University of Texas at Arlington Division of Continuing Education
## 3653     University of Texas at Arlington Division of Continuing Education
## 3654       University of Texas at Austin Center for Professional Education
## 3655                                        University of Texas at El Paso
## 3656                                        University of Texas at El Paso
## 3657                                        University of Texas at El Paso
## 3658                                        University of Texas at El Paso
## 3659                                        University of Texas at El Paso
## 3660                                        University of Texas at El Paso
## 3661                                        University of Texas at El Paso
## 3662                                        University of Texas at El Paso
## 3663                                        University of Texas at El Paso
## 3664                                        University of Texas at El Paso
## 3665                                        University of Texas at El Paso
## 3666                                        University of Texas at El Paso
## 3667                                        University of Texas at El Paso
## 3668                                        University of Texas at El Paso
## 3669                                        University of Texas at El Paso
## 3670                                        University of Texas at El Paso
## 3671                                        University of Texas at El Paso
## 3672                                        University of Texas at El Paso
## 3673                                        University of Texas at El Paso
## 3674                                        University of Texas at El Paso
## 3675                                        University of Texas at El Paso
## 3676                                        University of Texas at El Paso
## 3677                                        University of Texas at El Paso
## 3678                                        University of Texas at El Paso
## 3679                                        University of Texas at El Paso
## 3680                                        University of Texas at El Paso
## 3681                                        University of Texas at El Paso
## 3682                                        University of Texas at El Paso
## 3683                                        University of Texas at El Paso
## 3684                                        University of Texas at El Paso
## 3685                                        University of Texas at El Paso
## 3686                                        University of Texas at El Paso
## 3687                                        University of Texas at El Paso
## 3688                                        University of Texas at El Paso
## 3689                                        University of Texas at El Paso
## 3690                                        University of Texas at El Paso
## 3691                                        University of Texas at El Paso
## 3692                                        University of Texas at El Paso
## 3693                                        University of Texas at El Paso
## 3694                                        University of Texas at El Paso
## 3695                                        University of Texas at El Paso
## 3696                                        University of Texas at El Paso
## 3697                                        University of Texas at El Paso
## 3698                                        University of Texas at El Paso
## 3699                                        University of Texas at El Paso
## 3700                                        University of Texas at El Paso
## 3701                                        University of Texas at El Paso
## 3702                                        University of Texas at El Paso
## 3703                                        University of Texas at El Paso
## 3704                                        University of Texas at El Paso
## 3705                                        University of Texas at El Paso
## 3706                                        University of Texas at El Paso
## 3707                                        University of Texas at El Paso
## 3708                                        University of Texas at El Paso
## 3709                                        University of Texas at El Paso
## 3710                                        University of Texas at El Paso
## 3711                                        University of Texas at El Paso
## 3712                                        University of Texas at El Paso
## 3713                                        University of Texas at El Paso
## 3714                                        University of Texas at El Paso
## 3715                                        University of Texas at El Paso
## 3716                                        University of Texas at El Paso
## 3717                                        University of Texas at El Paso
## 3718                                        University of Texas at El Paso
## 3719                                        University of Texas at El Paso
## 3720                                        University of Texas at El Paso
## 3721                                        University of Texas at El Paso
## 3722                                        University of Texas at El Paso
## 3723                                    University of Texas Medical Branch
## 3724    University of Texas Rio Grande Valley Continuing Education Program
## 3725    University of Texas Rio Grande Valley Continuing Education Program
## 3726    University of Texas Rio Grande Valley Continuing Education Program
## 3727    University of Texas Rio Grande Valley Continuing Education Program
## 3728    University of Texas Rio Grande Valley Continuing Education Program
## 3729    University of Texas Rio Grande Valley Continuing Education Program
## 3730    University of Texas Rio Grande Valley Continuing Education Program
## 3731    University of Texas Rio Grande Valley Continuing Education Program
## 3732    University of Texas Rio Grande Valley Continuing Education Program
## 3733    University of Texas Rio Grande Valley Continuing Education Program
## 3734    University of Texas Rio Grande Valley Continuing Education Program
## 3735                                      University of the Incarnate Word
## 3736                                      University of the Incarnate Word
## 3737                                      University of the Incarnate Word
## 3738                                      University of the Incarnate Word
## 3739                                      University of the Incarnate Word
## 3740                                      University of the Incarnate Word
## 3741                                      University of the Incarnate Word
## 3742                                      University of the Incarnate Word
## 3743                                      University of the Incarnate Word
## 3744                                      University of the Incarnate Word
## 3745                            University Park (Lone Star College System)
## 3746                            University Park (Lone Star College System)
## 3747                            University Park (Lone Star College System)
## 3748                            University Park (Lone Star College System)
## 3749                            University Park (Lone Star College System)
## 3750                            University Park (Lone Star College System)
## 3751                            University Park (Lone Star College System)
## 3752                            University Park (Lone Star College System)
## 3753                            University Park (Lone Star College System)
## 3754                            University Park (Lone Star College System)
## 3755                            University Park (Lone Star College System)
## 3756                            University Park (Lone Star College System)
## 3757                            University Park (Lone Star College System)
## 3758                            University Park (Lone Star College System)
## 3759                            University Park (Lone Star College System)
## 3760                            University Park (Lone Star College System)
## 3761                            University Park (Lone Star College System)
## 3762                            University Park (Lone Star College System)
## 3763                            University Park (Lone Star College System)
## 3764                            University Park (Lone Star College System)
## 3765                                                 Urban Training Center
## 3766                                                 Urban Training Center
## 3767            Valley Baptist Medical Center School of Vocational Nursing
## 3768                                               Valley Grande Institute
## 3769                                               Valley Grande Institute
## 3770                                               Valley Grande Institute
## 3771                                               Valley Grande Institute
## 3772                                               Valley Grande Institute
## 3773                                              Valley Technical Academy
## 3774                                                        Vernon College
## 3775                                                        Vernon College
## 3776                                                        Vernon College
## 3777                                                        Vernon College
## 3778                                                        Vernon College
## 3779                                                        Vernon College
## 3780                                                        Vernon College
## 3781                                                        Vernon College
## 3782                                                        Vernon College
## 3783                                                        Vernon College
## 3784                                                        Vernon College
## 3785                                                        Vernon College
## 3786                                                        Vernon College
## 3787                                                        Vernon College
## 3788                                                        Vernon College
## 3789                                                        Vernon College
## 3790                                                        Vernon College
## 3791                                                        Vernon College
## 3792                                                        Vernon College
## 3793                                                        Vernon College
## 3794                                                        Vernon College
## 3795                                                        Vernon College
## 3796                                                        Vernon College
## 3797                                                        Vernon College
## 3798                                                        Vernon College
## 3799                                                        Vernon College
## 3800                                                        Vernon College
## 3801                                                      Victoria College
## 3802                                                      Victoria College
## 3803                                                      Victoria College
## 3804                                                      Victoria College
## 3805                                                      Victoria College
## 3806                                                      Victoria College
## 3807                                                      Victoria College
## 3808                                                      Victoria College
## 3809                                                      Victoria College
## 3810                                                      Victoria College
## 3811                                                      Victoria College
## 3812                                                      Victoria College
## 3813                                                      Victoria College
## 3814                                                      Victoria College
## 3815                                                      Victoria College
## 3816                                                      Victoria College
## 3817                                                      Victoria College
## 3818                                                      Victoria College
## 3819                                                      Victoria College
## 3820                                                      Victoria College
## 3821                                                      Victoria College
## 3822                                                      Victoria College
## 3823                                                      Victoria College
## 3824                                                      Victoria College
## 3825                                           Vision Truck Driving School
## 3826                                           Vision Truck Driving School
## 3827                                           Vision Truck Driving School
## 3828                                           Vision Truck Driving School
## 3829                                           Vision Truck Driving School
## 3830                                           Vision Truck Driving School
## 3831                                           Vision Truck Driving School
## 3832                                                   Weatherford College
## 3833                                                   Weatherford College
## 3834                                                   Weatherford College
## 3835                                                   Weatherford College
## 3836                                                   Weatherford College
## 3837                                                   Weatherford College
## 3838                                                   Weatherford College
## 3839                                                   Weatherford College
## 3840                                                   Weatherford College
## 3841                                                   Weatherford College
## 3842                                                   Weatherford College
## 3843                                                   Weatherford College
## 3844                                                   Weatherford College
## 3845                                                   Weatherford College
## 3846                                                   Weatherford College
## 3847                                                   Weatherford College
## 3848                                                   Weatherford College
## 3849                                                   Weatherford College
## 3850                                                   Weatherford College
## 3851                                                   Weatherford College
## 3852                                                   Weatherford College
## 3853                                                   Weatherford College
## 3854                                                   Weatherford College
## 3855                                                   Weatherford College
## 3856                                                   Weatherford College
## 3857                                                   Weatherford College
## 3858                                                   Weatherford College
## 3859                                                   Weatherford College
## 3860                                                   Weatherford College
## 3861                                                   Weatherford College
## 3862                                                   Weatherford College
## 3863                                                   Weatherford College
## 3864                                                   Weatherford College
## 3865                                             Western Technical College
## 3866                                             Western Technical College
## 3867                                             Western Technical College
## 3868                                             Western Technical College
## 3869                                             Western Technical College
## 3870                                             Western Technical College
## 3871                                             Western Technical College
## 3872                                             Western Technical College
## 3873                                             Western Technical College
## 3874                                             Western Technical College
## 3875                                             Western Technical College
## 3876                                             Western Technical College
## 3877                                             Western Technical College
## 3878                                             Western Technical College
## 3879                                             Western Technical College
## 3880                                             Western Technical College
## 3881                                                 Western Texas College
## 3882                                                 Western Texas College
## 3883                                         Wharton County Junior College
## 3884                                         Wharton County Junior College
## 3885                                         Wharton County Junior College
## 3886                                         Wharton County Junior College
## 3887                                         Wharton County Junior College
## 3888                                         Wharton County Junior College
## 3889                                         Wharton County Junior College
## 3890                                         Wharton County Junior College
## 3891                                         Wharton County Junior College
## 3892                                         Wharton County Junior College
## 3893                                         Wharton County Junior College
## 3894                                         Wharton County Junior College
## 3895                                         Wharton County Junior College
## 3896                                         Wharton County Junior College
## 3897                                         Wharton County Junior College
## 3898                                         Wharton County Junior College
## 3899                                         Wharton County Junior College
## 3900                                         Wharton County Junior College
## 3901                                         Wharton County Junior College
## 3902                                         Wharton County Junior College
## 3903                                         Wharton County Junior College
## 3904                                         Wharton County Junior College
## 3905                                         Yates Health Career Institute
## 3906                                         On Track Truck Driving School
## 3907                                    Houston Community College District
## 3908                                    Houston Community College District
## 3909                                    Houston Community College District
## 3910                                    Houston Community College District
## 3911                                    Houston Community College District
## 3912                                    Houston Community College District
## 3913                                    Houston Community College District
## 3914                                    Houston Community College District
## 3915                                    Houston Community College District
## 3916                                    Houston Community College District
## 3917                                    Houston Community College District
## 3918                                    Houston Community College District
## 3919                                    Houston Community College District
## 3920                                    Houston Community College District
## 3921                                    Houston Community College District
## 3922                                    Houston Community College District
## 3923                                    Houston Community College District
## 3924                                    Houston Community College District
## 3925                                    Houston Community College District
## 3926                                    Houston Community College District
## 3927                                    Houston Community College District
## 3928                                    Houston Community College District
## 3929                                    Houston Community College District
## 3930                                    Houston Community College District
## 3931                                    Houston Community College District
## 3932                                    Houston Community College District
## 3933                                    Houston Community College District
## 3934                                    Houston Community College District
## 3935                                    Houston Community College District
## 3936                                    Houston Community College District
## 3937                                    Houston Community College District
## 3938                                    Houston Community College District
## 3939                                    Houston Community College District
## 3940                                    Houston Community College District
## 3941                                    Houston Community College District
## 3942                                    Houston Community College District
## 3943                                    Houston Community College District
## 3944                                    Houston Community College District
## 3945                                    Houston Community College District
## 3946                                    Houston Community College District
## 3947                                    Houston Community College District
## 3948                                    Houston Community College District
## 3949                                    Houston Community College District
## 3950                                    Houston Community College District
## 3951                                    Houston Community College District
## 3952                                    Houston Community College District
## 3953                                    Houston Community College District
## 3954                                    Houston Community College District
## 3955                                    Houston Community College District
## 3956                                    Houston Community College District
## 3957                                    Houston Community College District
## 3958                                    Houston Community College District
## 3959                                    Houston Community College District
## 3960                                    Houston Community College District
## 3961                                    Houston Community College District
## 3962                                    Houston Community College District
## 3963                                    Houston Community College District
## 3964                                    Houston Community College District
## 3965                                    Houston Community College District
## 3966                                    Houston Community College District
## 3967                                    Houston Community College District
## 3968                                    Houston Community College District
## 3969                                    Houston Community College District
## 3970                                    Houston Community College District
## 3971                                    Houston Community College District
## 3972                                    Houston Community College District
## 3973                                    Houston Community College District
## 3974                                    Houston Community College District
## 3975                                    Houston Community College District
## 3976                                    Houston Community College District
## 3977                                    Houston Community College District
## 3978                                    Houston Community College District
## 3979                                    Houston Community College District
## 3980                                    Houston Community College District
## 3981                                    Houston Community College District
## 3982                                    Houston Community College District
## 3983                                    Houston Community College District
## 3984                                    Houston Community College District
## 3985                                    Houston Community College District
## 3986                                    Houston Community College District
## 3987                                    Houston Community College District
## 3988                                    Houston Community College District
## 3989                                    Houston Community College District
## 3990                                    Houston Community College District
## 3991                                    Houston Community College District
## 3992                                    Houston Community College District
## 3993                                    Houston Community College District
## 3994                                    Houston Community College District
## 3995                                    Houston Community College District
## 3996                                    Houston Community College District
## 3997                                    Houston Community College District
## 3998                                    Houston Community College District
## 3999                                    Houston Community College District
## 4000                                    Houston Community College District
## 4001                                    Houston Community College District
## 4002                                    Houston Community College District
## 4003                                    Houston Community College District
## 4004                                    Houston Community College District
## 4005                                    Houston Community College District
## 4006                                    Houston Community College District
## 4007                                    Houston Community College District
## 4008                                    Houston Community College District
## 4009                                    Houston Community College District
## 4010                                    Houston Community College District
## 4011                                    Houston Community College District
## 4012                                    Houston Community College District
## 4013                                    Houston Community College District
## 4014                                    Houston Community College District
## 4015                                    Houston Community College District
## 4016                                    Houston Community College District
## 4017                                    Houston Community College District
## 4018                                    Houston Community College District
## 4019                                    Houston Community College District
## 4020                                    Houston Community College District
## 4021                                    Houston Community College District
## 4022                                    Houston Community College District
## 4023                                    Houston Community College District
## 4024                                    Houston Community College District
## 4025                                    Houston Community College District
## 4026                                    Houston Community College District
## 4027                                    Houston Community College District
## 4028                                    Houston Community College District
## 4029                                    Houston Community College District
## 4030                                    Houston Community College District
## 4031                                    Houston Community College District
## 4032                                                     NewApprenticeship
## 4033                                                     NewApprenticeship
## 4034                                                     NewApprenticeship
## 4035                                                     NewApprenticeship
## 4036                                                     NewApprenticeship
## 4037                                                     NewApprenticeship
## 4038                                                     NewApprenticeship
## 4039                                                     NewApprenticeship
## 4040                                                     NewApprenticeship
## 4041                                                     NewApprenticeship
## 4042                                                      Jarvis Moore Inc
## 4043                               Mentoring & Restoring Families Services
## 4044                               Mentoring & Restoring Families Services
## 4045       Austin Carpenters & Millwrights Training Center Local 1266 JATC
## 4046             International Academy of Emergency Medical Technology LLC
## 4047             International Academy of Emergency Medical Technology LLC
## 4048             International Academy of Emergency Medical Technology LLC
## 4049             International Academy of Emergency Medical Technology LLC
## 4050             International Academy of Emergency Medical Technology LLC
## 4051             International Academy of Emergency Medical Technology LLC
## 4052             International Academy of Emergency Medical Technology LLC
## 4053                                       San Antonio Carpenters Local 14
## 4054                                Construction Education Foundation Inc.
## 4055                                Construction Education Foundation Inc.
## 4056                                Construction Education Foundation Inc.
## 4057                                Construction Education Foundation Inc.
## 4058                                Construction Education Foundation Inc.
## 4059                                Construction Education Foundation Inc.
## 4060                                                 Camp Fire First Texas
## 4061                               Texas Premier Technology Institute Inc.
## 4062                               Texas Premier Technology Institute Inc.
## 4063                               Texas Premier Technology Institute Inc.
## 4064                               Texas Premier Technology Institute Inc.
## 4065                               Texas Premier Technology Institute Inc.
## 4066                               Texas Premier Technology Institute Inc.
## 4067                               Texas Premier Technology Institute Inc.
## 4068                                               Houston Electrical JATC
## 4069                                  Adaptive Construction Solutions Inc.
## 4070                                  Adaptive Construction Solutions Inc.
## 4071                                  Adaptive Construction Solutions Inc.
## 4072                                  Adaptive Construction Solutions Inc.
## 4073                                  Adaptive Construction Solutions Inc.
## 4074                                  Adaptive Construction Solutions Inc.
## 4075                                  Adaptive Construction Solutions Inc.
## 4076                                  Adaptive Construction Solutions Inc.
## 4077                                  Adaptive Construction Solutions Inc.
## 4078                                  Adaptive Construction Solutions Inc.
## 4079                                  Adaptive Construction Solutions Inc.
## 4080                                  Adaptive Construction Solutions Inc.
## 4081                                  Adaptive Construction Solutions Inc.
## 4082                                  Adaptive Construction Solutions Inc.
## 4083                                  Adaptive Construction Solutions Inc.
## 4084                                  Adaptive Construction Solutions Inc.
## 4085                                  Adaptive Construction Solutions Inc.
## 4086                                  Adaptive Construction Solutions Inc.
## 4087                                  Adaptive Construction Solutions Inc.
## 4088                                  Adaptive Construction Solutions Inc.
## 4089                                  Adaptive Construction Solutions Inc.
## 4090                                  Adaptive Construction Solutions Inc.
## 4091                                  Adaptive Construction Solutions Inc.
## 4092                                  Adaptive Construction Solutions Inc.
## 4093                                  Adaptive Construction Solutions Inc.
## 4094                                  Adaptive Construction Solutions Inc.
## 4095                                  Adaptive Construction Solutions Inc.
## 4096                                  Adaptive Construction Solutions Inc.
## 4097                                  Adaptive Construction Solutions Inc.
## 4098                                  Adaptive Construction Solutions Inc.
## 4099                                  Adaptive Construction Solutions Inc.
## 4100                                  Adaptive Construction Solutions Inc.
## 4101                                              Northwest Lineman Center
## 4102                                           Jarvis Christian University
## 4103                                           Jarvis Christian University
## 4104                                           Jarvis Christian University
## 4105                                           Jarvis Christian University
## 4106                                           Jarvis Christian University
## 4107                                           Jarvis Christian University
## 4108                                           Jarvis Christian University
## 4109                                           Jarvis Christian University
## 4110                                           Jarvis Christian University
## 4111                                           Jarvis Christian University
## 4112                                           Jarvis Christian University
## 4113                                           Jarvis Christian University
## 4114                                                         Texas College
## 4115                                                         Texas College
## 4116                                                         Texas College
## 4117                              Rio Grande Valley Laredo Electrical JATC
## 4118                              Rio Grande Valley Laredo Electrical JATC
## 4119                                Ce Global Health Education Network Inc
## 4120                                Ce Global Health Education Network Inc
## 4121                                Ce Global Health Education Network Inc
## 4122                                Ce Global Health Education Network Inc
## 4123                                Ce Global Health Education Network Inc
## 4124                                Ce Global Health Education Network Inc
## 4125                                Ce Global Health Education Network Inc
## 4126                                Ce Global Health Education Network Inc
## 4127                                   Goodwill Career & Technical Academy
## 4128                                   Goodwill Career & Technical Academy
## 4129                                   Goodwill Career & Technical Academy
## 4130                                   Goodwill Career & Technical Academy
## 4131                                   Goodwill Career & Technical Academy
## 4132                                   Goodwill Career & Technical Academy
## 4133                                   Goodwill Career & Technical Academy
## 4134                                   Goodwill Career & Technical Academy
## 4135                                   Goodwill Career & Technical Academy
## 4136                                   Goodwill Career & Technical Academy
## 4137                                   Goodwill Career & Technical Academy
## 4138                                             Menard Manor Nursing Home
## 4139                   South Texas Vocational Technical Institute  Weslaco
## 4140                  Houston Area Plumbing Joint Apprenticeship Committee
## 4141                  Houston Area Plumbing Joint Apprenticeship Committee
## 4142                  Houston Area Plumbing Joint Apprenticeship Committee
## 4143                  Houston Area Plumbing Joint Apprenticeship Committee
## 4144                                             Digital Workforce Academy
## 4145                                                   160 Driving Academy
## 4146                                                   160 Driving Academy
## 4147                                                   160 Driving Academy
## 4148                                                   160 Driving Academy
## 4149                                                   160 Driving Academy
## 4150                                                   160 Driving Academy
## 4151                                                   160 Driving Academy
## 4152                                                   160 Driving Academy
## 4153                                                   160 Driving Academy
## 4154                                                   160 Driving Academy
## 4155           Houston Gulf Coast Building and Construction Trades Council
## 4156           Houston Gulf Coast Building and Construction Trades Council
## 4157           Houston Gulf Coast Building and Construction Trades Council
## 4158           Houston Gulf Coast Building and Construction Trades Council
## 4159           Houston Gulf Coast Building and Construction Trades Council
## 4160           Houston Gulf Coast Building and Construction Trades Council
## 4161           Houston Gulf Coast Building and Construction Trades Council
## 4162           Houston Gulf Coast Building and Construction Trades Council
## 4163           Houston Gulf Coast Building and Construction Trades Council
## 4164           Houston Gulf Coast Building and Construction Trades Council
## 4165                       TX Gulf Coast Electrical Apprenticeship Program
## 4166                                             Compass Military Services
## 4167                                             Compass Military Services
## 4168                                  South Texas College - Apprenticeship
## 4169                                                       Rex Programming
## 4170                                                   Skillpoint Alliance
## 4171                                                   Skillpoint Alliance
## 4172                                                   Skillpoint Alliance
## 4173                                                   Skillpoint Alliance
## 4174                                                   Skillpoint Alliance
## 4175       South Texas Vocational Technical Institute - Brownsville (STVT)
## 4176       South Texas Vocational Technical Institute - Brownsville (STVT)
## 4177       South Texas Vocational Technical Institute - Brownsville (STVT)
## 4178       South Texas Vocational Technical Institute - Brownsville (STVT)
## 4179       South Texas Vocational Technical Institute - Brownsville (STVT)
## 4180                                    Dallas Independent School District
## 4181                                    Dallas Independent School District
## 4182                                    Dallas Independent School District
## 4183                                    Dallas Independent School District
## 4184                                    Dallas Independent School District
## 4185                                    Dallas Independent School District
## 4186                                    Dallas Independent School District
## 4187                                    Dallas Independent School District
## 4188                                    Dallas Independent School District
## 4189                                    Dallas Independent School District
## 4190                                    Dallas Independent School District
## 4191                                    Dallas Independent School District
## 4192                                                                MasTec
## 4193                                                                MasTec
## 4194                                           Inter-Tech Technical School
## 4195                                           Inter-Tech Technical School
## 4196                                       Journey Medical Training Center
## 4197                                       Journey Medical Training Center
## 4198                                            Perfect Technician Academy
## 4199                                Lone Star Construction Trades Training
## 4200                                Lone Star Construction Trades Training
## 4201                                Lone Star Construction Trades Training
## 4202                                     Elite Quality Nurse Aide Training
## 4203                South Texas Vocational Technical Institute San Antonio
## 4204                South Texas Vocational Technical Institute San Antonio
## 4205                South Texas Vocational Technical Institute San Antonio
## 4206                South Texas Vocational Technical Institute San Antonio
## 4207                South Texas Vocational Technical Institute San Antonio
## 4208                         Houstons Training and Education Center (HTEC)
## 4209                         Houstons Training and Education Center (HTEC)
## 4210                         Houstons Training and Education Center (HTEC)
## 4211                         Houstons Training and Education Center (HTEC)
## 4212                         Houstons Training and Education Center (HTEC)
## 4213                                             Crane Wise Certifications
## 4214                                             Crane Wise Certifications
## 4215                                             Crane Wise Certifications
## 4216                                             Crane Wise Certifications
## 4217                                             Crane Wise Certifications
## 4218                                             Crane Wise Certifications
## 4219                                             Crane Wise Certifications
## 4220                                             Crane Wise Certifications
## 4221                                             Crane Wise Certifications
## 4222                                             Crane Wise Certifications
## 4223                                             Crane Wise Certifications
## 4224                                                   Dynamic Advancement
## 4225                                    Advanced Medical Assistant Program
## 4226                                           APICS 150 N Tex Chapter Inc
## 4227                                           APICS 150 N Tex Chapter Inc
## 4228                                           APICS 150 N Tex Chapter Inc
## 4229                                           APICS 150 N Tex Chapter Inc
## 4230                                  RBOC Inc. (ReBuilding Our Community)
## 4231                                  RBOC Inc. (ReBuilding Our Community)
## 4232                                  RBOC Inc. (ReBuilding Our Community)
## 4233                                  RBOC Inc. (ReBuilding Our Community)
## 4234                                  RBOC Inc. (ReBuilding Our Community)
## 4235                                  RBOC Inc. (ReBuilding Our Community)
## 4236                                  RBOC Inc. (ReBuilding Our Community)
## 4237                                  RBOC Inc. (ReBuilding Our Community)
## 4238                                  RBOC Inc. (ReBuilding Our Community)
## 4239                                    Roadmaster Drivers School - Dallas
## 4240                                                       The Hope Center
## 4241                                                       The Hope Center
## 4242                                                       The Hope Center
## 4243                                                       The Hope Center
## 4244                                                       The Hope Center
## 4245                                                       The Hope Center
## 4246                                                       The Hope Center
## 4247                                                       The Hope Center
## 4248                                                       The Hope Center
## 4249                                                       The Hope Center
## 4250                                                       The Hope Center
## 4251                                                  RDA Training Academy
## 4252                                           Premier Technical Institute
## 4253                                           Premier Technical Institute
## 4254                                           Premier Technical Institute
## 4255                                           Premier Technical Institute
## 4256                                                   Bah Career Training
## 4257                                                   Bah Career Training
## 4258                                                   Bah Career Training
## 4259                                                   Bah Career Training
## 4260                                                   Bah Career Training
## 4261                                                   Bah Career Training
## 4262                    College of Nursing and Advanced Health Professions
## 4263                    College of Nursing and Advanced Health Professions
## 4264                    College of Nursing and Advanced Health Professions
## 4265                                   Griffin's Industrial Welding School
## 4266                                           South Texas Electrical JATC
## 4267                                           South Texas Electrical JATC
## 4268                                                      South University
## 4269                                                   edOpp Solutions LLC
## 4270                                                   edOpp Solutions LLC
## 4271                                                   edOpp Solutions LLC
## 4272                                                   edOpp Solutions LLC
## 4273                                                   edOpp Solutions LLC
## 4274                                                   edOpp Solutions LLC
## 4275                                                   edOpp Solutions LLC
## 4276                                                   edOpp Solutions LLC
## 4277                                                   edOpp Solutions LLC
## 4278                                                   edOpp Solutions LLC
## 4279                                                   edOpp Solutions LLC
## 4280                                                   edOpp Solutions LLC
## 4281                                                   edOpp Solutions LLC
## 4282                                                   edOpp Solutions LLC
## 4283                                                   edOpp Solutions LLC
## 4284                                                   edOpp Solutions LLC
## 4285                                                   edOpp Solutions LLC
## 4286                                                   edOpp Solutions LLC
## 4287                                                   edOpp Solutions LLC
## 4288                                                   edOpp Solutions LLC
## 4289                                                   edOpp Solutions LLC
## 4290                                                   edOpp Solutions LLC
## 4291                                                   edOpp Solutions LLC
## 4292                                                   edOpp Solutions LLC
## 4293                                                   edOpp Solutions LLC
## 4294                                                   edOpp Solutions LLC
## 4295                                                   edOpp Solutions LLC
## 4296                                                   edOpp Solutions LLC
## 4297                                                   edOpp Solutions LLC
## 4298                                                   edOpp Solutions LLC
## 4299                                                   edOpp Solutions LLC
## 4300                                                   edOpp Solutions LLC
## 4301                                                   edOpp Solutions LLC
## 4302                                                   edOpp Solutions LLC
## 4303                                                   edOpp Solutions LLC
## 4304                                                   edOpp Solutions LLC
## 4305                                                   edOpp Solutions LLC
## 4306                                                   edOpp Solutions LLC
## 4307                                                   edOpp Solutions LLC
## 4308                                                   edOpp Solutions LLC
## 4309                                                   edOpp Solutions LLC
## 4310                                                   edOpp Solutions LLC
## 4311                                                   edOpp Solutions LLC
## 4312                                                   edOpp Solutions LLC
## 4313                                                   edOpp Solutions LLC
## 4314                                                   edOpp Solutions LLC
## 4315                                                   edOpp Solutions LLC
## 4316                                                   edOpp Solutions LLC
## 4317                                                   edOpp Solutions LLC
## 4318                                                   edOpp Solutions LLC
## 4319                                      Top Gun Truck Driving School LLC
## 4320                                 Central Texas Allied Health Institute
## 4321                                 Central Texas Allied Health Institute
## 4322                                 Central Texas Allied Health Institute
## 4323                                 Central Texas Allied Health Institute
## 4324                                 Central Texas Allied Health Institute
## 4325                                 Central Texas Allied Health Institute
## 4326                                 Central Texas Allied Health Institute
## 4327                                 Central Texas Allied Health Institute
## 4328                                 Central Texas Allied Health Institute
## 4329                                 Central Texas Allied Health Institute
## 4330                                 Central Texas Allied Health Institute
## 4331                                 Central Texas Allied Health Institute
## 4332                                 Central Texas Allied Health Institute
## 4333                                 Central Texas Allied Health Institute
## 4334                                                 Texas Tech University
## 4335                                                 Texas Tech University
## 4336                                                 Texas Tech University
## 4337                                                 Texas Tech University
## 4338                                                 Texas Tech University
## 4339                                                 Texas Tech University
## 4340                                                 Texas Tech University
## 4341                                                 Texas Tech University
## 4342                                                 Texas Tech University
## 4343                                                 Texas Tech University
## 4344                                                 Texas Tech University
## 4345                                                 Texas Tech University
## 4346                                                 Texas Tech University
## 4347                                                 Texas Tech University
## 4348                                                 Texas Tech University
## 4349                                                 Texas Tech University
## 4350                                                 Texas Tech University
## 4351                                                 Texas Tech University
## 4352                                                 Texas Tech University
## 4353                                                 Texas Tech University
## 4354                                                 Texas Tech University
## 4355                                                 Texas Tech University
## 4356                                                 Texas Tech University
## 4357                                                 Texas Tech University
## 4358                                                 Texas Tech University
## 4359                                                 Texas Tech University
## 4360                                                 Texas Tech University
## 4361                                                 Texas Tech University
## 4362                                                 Texas Tech University
## 4363                                                 Texas Tech University
## 4364                                                 Texas Tech University
## 4365                                                 Texas Tech University
## 4366                                                 Texas Tech University
## 4367                                                 Texas Tech University
## 4368                                                 Texas Tech University
## 4369                                                 Texas Tech University
## 4370                                                 Texas Tech University
## 4371                                                 Texas Tech University
## 4372                                                 Texas Tech University
## 4373                                                 Texas Tech University
## 4374                                                 Texas Tech University
## 4375                                                 Texas Tech University
## 4376                                                 Texas Tech University
## 4377                                                 Texas Tech University
## 4378                                                 Texas Tech University
## 4379                                                 Texas Tech University
## 4380                                                 Texas Tech University
## 4381                                                 Texas Tech University
## 4382                                                 Texas Tech University
## 4383                                                 Texas Tech University
## 4384                                                 Texas Tech University
## 4385                                                 Texas Tech University
## 4386                                                 Texas Tech University
## 4387                                                 Texas Tech University
## 4388                                                 Texas Tech University
## 4389                                                 Texas Tech University
## 4390                                                 Texas Tech University
## 4391                                                 Texas Tech University
## 4392                                                 Texas Tech University
## 4393                                                 Texas Tech University
## 4394                                                 Texas Tech University
## 4395                                                 Texas Tech University
## 4396                                                 Texas Tech University
## 4397                                                 Texas Tech University
## 4398                                                 Texas Tech University
## 4399                                                 Texas Tech University
## 4400                                                 Texas Tech University
## 4401                                                 Texas Tech University
## 4402                                                 Texas Tech University
## 4403                                                 Texas Tech University
## 4404                                                 Texas Tech University
## 4405                                                 Texas Tech University
## 4406                                                 Texas Tech University
## 4407                                                 Texas Tech University
## 4408                                                 Texas Tech University
## 4409                                                 Texas Tech University
## 4410                                                 Texas Tech University
## 4411                                                 Texas Tech University
## 4412                                                 Texas Tech University
## 4413                                                 Texas Tech University
## 4414                                                 Texas Tech University
## 4415                                                 Texas Tech University
## 4416                                                 Texas Tech University
## 4417                                                 Texas Tech University
## 4418                                                 Texas Tech University
## 4419                                                 Texas Tech University
## 4420                                                 Texas Tech University
## 4421                                                 Texas Tech University
## 4422                                                 Texas Tech University
## 4423                                                 Texas Tech University
## 4424                                                 Texas Tech University
## 4425                                                 Texas Tech University
## 4426                                                 Texas Tech University
## 4427                                                 Texas Tech University
## 4428                                                 Texas Tech University
## 4429                                                 Texas Tech University
## 4430                                                 Texas Tech University
## 4431                                                 Texas Tech University
## 4432                                                 Texas Tech University
## 4433                                                 Texas Tech University
## 4434                                                 Texas Tech University
## 4435                                                 Texas Tech University
## 4436                                                 Texas Tech University
## 4437                                                 Texas Tech University
## 4438                                                 Texas Tech University
## 4439                                                 Texas Tech University
## 4440                                                 Texas Tech University
## 4441                                                 Texas Tech University
## 4442                                                 Texas Tech University
## 4443                                                 Texas Tech University
## 4444                                                 Texas Tech University
## 4445                                                 Texas Tech University
## 4446                                        Diamond Rigging and Crane Inc.
## 4447                                        Diamond Rigging and Crane Inc.
## 4448                                        Diamond Rigging and Crane Inc.
## 4449                                        Diamond Rigging and Crane Inc.
## 4450                                        Diamond Rigging and Crane Inc.
## 4451                                        Diamond Rigging and Crane Inc.
## 4452                                        Diamond Rigging and Crane Inc.
## 4453                                        Diamond Rigging and Crane Inc.
## 4454                                        Diamond Rigging and Crane Inc.
## 4455                                        Diamond Rigging and Crane Inc.
## 4456                                        Diamond Rigging and Crane Inc.
## 4457                                        Diamond Rigging and Crane Inc.
## 4458                                        Diamond Rigging and Crane Inc.
## 4459                                        Diamond Rigging and Crane Inc.
## 4460                                        Diamond Rigging and Crane Inc.
## 4461                                           Lockheed Martin Corporation
## 4462                                           Lockheed Martin Corporation
## 4463                                           Lockheed Martin Corporation
## 4464                                           Lockheed Martin Corporation
## 4465                                           Lockheed Martin Corporation
## 4466                                           Lockheed Martin Corporation
## 4467                                           Lockheed Martin Corporation
## 4468                                           Lockheed Martin Corporation
## 4469                                           Lockheed Martin Corporation
## 4470                                           Lockheed Martin Corporation
## 4471                                           Lockheed Martin Corporation
## 4472                                           Lockheed Martin Corporation
## 4473                                           Lockheed Martin Corporation
## 4474                                           Lockheed Martin Corporation
## 4475                                           Lockheed Martin Corporation
## 4476                                           Lockheed Martin Corporation
## 4477                                           Lockheed Martin Corporation
## 4478                                           Lockheed Martin Corporation
## 4479                                           Lockheed Martin Corporation
## 4480                                           Lockheed Martin Corporation
## 4481                                           Lockheed Martin Corporation
## 4482                                           Lockheed Martin Corporation
## 4483                                           Lockheed Martin Corporation
## 4484                                           Lockheed Martin Corporation
## 4485                                           Lockheed Martin Corporation
## 4486                                           Lockheed Martin Corporation
## 4487                                           Lockheed Martin Corporation
## 4488                                           Lockheed Martin Corporation
## 4489                                           Lockheed Martin Corporation
## 4490                                           Lockheed Martin Corporation
## 4491                                           Lockheed Martin Corporation
## 4492                                           Lockheed Martin Corporation
## 4493                                           Lockheed Martin Corporation
## 4494                                           Lockheed Martin Corporation
## 4495                                           Lockheed Martin Corporation
## 4496                                           Lockheed Martin Corporation
## 4497                                           Lockheed Martin Corporation
## 4498                                           Lockheed Martin Corporation
## 4499                                           Lockheed Martin Corporation
## 4500                                           Lockheed Martin Corporation
## 4501                                           Lockheed Martin Corporation
## 4502                                           Lockheed Martin Corporation
## 4503                                           Lockheed Martin Corporation
## 4504                                           Lockheed Martin Corporation
## 4505                                           Lockheed Martin Corporation
## 4506                                           Lockheed Martin Corporation
## 4507                                           Lockheed Martin Corporation
## 4508                                           Lockheed Martin Corporation
## 4509                                           Lockheed Martin Corporation
## 4510                                           Lockheed Martin Corporation
## 4511                                           Lockheed Martin Corporation
## 4512                                           Lockheed Martin Corporation
## 4513                                           Lockheed Martin Corporation
## 4514                                           Lockheed Martin Corporation
## 4515                                           Lockheed Martin Corporation
## 4516                                           Lockheed Martin Corporation
## 4517                                           Lockheed Martin Corporation
## 4518                                           Lockheed Martin Corporation
## 4519                                           Lockheed Martin Corporation
## 4520                                           Lockheed Martin Corporation
## 4521                                           Lockheed Martin Corporation
## 4522                                           Lockheed Martin Corporation
## 4523                                           Lockheed Martin Corporation
## 4524                                           Lockheed Martin Corporation
## 4525                                           Lockheed Martin Corporation
## 4526                                           Lockheed Martin Corporation
## 4527                                           Lockheed Martin Corporation
## 4528                                           Lockheed Martin Corporation
## 4529                                           Lockheed Martin Corporation
## 4530                                           Lockheed Martin Corporation
## 4531                                           Lockheed Martin Corporation
## 4532                                           Lockheed Martin Corporation
## 4533                                           Lockheed Martin Corporation
## 4534                                           Lockheed Martin Corporation
## 4535                                           Lockheed Martin Corporation
## 4536                                           Lockheed Martin Corporation
## 4537                                           Lockheed Martin Corporation
## 4538                                           Lockheed Martin Corporation
## 4539                                           Lockheed Martin Corporation
## 4540                                           Lockheed Martin Corporation
## 4541                                           Lockheed Martin Corporation
## 4542                                      Massage Institute of North Texas
## 4543                                      Massage Institute of North Texas
## 4544                                              Transcend STEM Education
## 4545                                              Transcend STEM Education
## 4546                                              Transcend STEM Education
## 4547                                              Transcend STEM Education
## 4548                                              Transcend STEM Education
## 4549                                              Transcend STEM Education
## 4550                                              Transcend STEM Education
## 4551                                              Transcend STEM Education
## 4552                                              Transcend STEM Education
## 4553                                              Transcend STEM Education
## 4554                                              Transcend STEM Education
## 4555                                              Transcend STEM Education
## 4556                                              Transcend STEM Education
## 4557                                              Transcend STEM Education
## 4558                                              Transcend STEM Education
## 4559                                              Transcend STEM Education
## 4560                                              Transcend STEM Education
## 4561                                              Transcend STEM Education
## 4562                                              Transcend STEM Education
## 4563                                              Transcend STEM Education
## 4564                                              Transcend STEM Education
## 4565                                              Transcend STEM Education
## 4566                                              Transcend STEM Education
## 4567                                              Transcend STEM Education
## 4568                                              Transcend STEM Education
## 4569                                              Transcend STEM Education
## 4570                                              Transcend STEM Education
## 4571                                              Transcend STEM Education
## 4572                                              Transcend STEM Education
## 4573                                              Transcend STEM Education
## 4574                                              Transcend STEM Education
## 4575                                              Transcend STEM Education
## 4576                                              Transcend STEM Education
## 4577                                              Transcend STEM Education
## 4578                                              Transcend STEM Education
## 4579                                              Transcend STEM Education
## 4580                                              Transcend STEM Education
## 4581                                              Transcend STEM Education
## 4582                                              Transcend STEM Education
## 4583                                              Transcend STEM Education
## 4584                                              Transcend STEM Education
## 4585                                              Transcend STEM Education
## 4586                                              Transcend STEM Education
## 4587                                              Transcend STEM Education
## 4588                                              Transcend STEM Education
## 4589                                              Transcend STEM Education
## 4590                                              Transcend STEM Education
## 4591                                              Transcend STEM Education
## 4592                                              Transcend STEM Education
## 4593                                              Transcend STEM Education
## 4594                                              Transcend STEM Education
## 4595                                              Transcend STEM Education
## 4596                                              Transcend STEM Education
## 4597                                              Transcend STEM Education
## 4598                                              Transcend STEM Education
## 4599                                              Transcend STEM Education
## 4600                                              Transcend STEM Education
## 4601                                              Transcend STEM Education
## 4602                                                            QS Academy
## 4603                                                            QS Academy
## 4604                                                            QS Academy
## 4605                                                            QS Academy
## 4606                                                            QS Academy
## 4607                                                            QS Academy
## 4608                                                            QS Academy
## 4609                                                            QS Academy
## 4610                                                            QS Academy
## 4611                                                            QS Academy
## 4612                                                            QS Academy
## 4613                                                            QS Academy
## 4614                                                            QS Academy
## 4615                                                            QS Academy
## 4616                                                            QS Academy
## 4617                                                            QS Academy
## 4618                                                            QS Academy
## 4619                                                            QS Academy
## 4620                                                            QS Academy
## 4621                                                            QS Academy
## 4622                                                            QS Academy
## 4623                    Texas State Building & Construction Trades Council
## 4624                                            Texas Healthtech Institute
## 4625                                            Texas Healthtech Institute
## 4626                                            Texas Healthtech Institute
## 4627                                            Texas Healthtech Institute
## 4628                                            Texas Healthtech Institute
## 4629                                            Texas Healthtech Institute
## 4630                                          Integrity Health & Education
## 4631                                          Integrity Health & Education
## 4632                                          Integrity Health & Education
## 4633                                            JATC Pipefitters local 211
## 4634                                            JATC Pipefitters local 211
## 4635                                                        Safal Partners
## 4636                                                      Bright Offerings
## 4637                                                      Bright Offerings
## 4638                                       University of Texas San Antonio
## 4639                                       University of Texas San Antonio
## 4640                                       University of Texas San Antonio
## 4641                                       University of Texas San Antonio
## 4642                                       University of Texas San Antonio
## 4643                                       University of Texas San Antonio
## 4644                                       University of Texas San Antonio
## 4645                                       University of Texas San Antonio
## 4646                                       University of Texas San Antonio
## 4647                                       University of Texas San Antonio
## 4648                                       University of Texas San Antonio
## 4649                                       University of Texas San Antonio
## 4650                                       University of Texas San Antonio
## 4651                                       University of Texas San Antonio
## 4652                                       University of Texas San Antonio
## 4653                                       University of Texas San Antonio
## 4654                                       University of Texas San Antonio
## 4655                                       University of Texas San Antonio
## 4656                                       University of Texas San Antonio
## 4657                                       University of Texas San Antonio
## 4658                                       University of Texas San Antonio
## 4659                                       University of Texas San Antonio
## 4660                                       University of Texas San Antonio
## 4661                                       University of Texas San Antonio
## 4662                                       University of Texas San Antonio
## 4663                                       University of Texas San Antonio
## 4664                                       University of Texas San Antonio
## 4665                                       University of Texas San Antonio
## 4666                                       University of Texas San Antonio
## 4667                                       University of Texas San Antonio
## 4668                                       University of Texas San Antonio
## 4669                                       University of Texas San Antonio
## 4670                                       University of Texas San Antonio
## 4671                                       University of Texas San Antonio
## 4672                                       University of Texas San Antonio
## 4673                                       University of Texas San Antonio
## 4674                                       University of Texas San Antonio
## 4675                                       University of Texas San Antonio
## 4676                                       University of Texas San Antonio
## 4677                                       University of Texas San Antonio
## 4678                                       University of Texas San Antonio
## 4679                                       University of Texas San Antonio
## 4680                                       University of Texas San Antonio
## 4681                                       University of Texas San Antonio
## 4682                                       University of Texas San Antonio
## 4683                                       University of Texas San Antonio
## 4684                                       University of Texas San Antonio
## 4685                                       University of Texas San Antonio
## 4686                                       University of Texas San Antonio
## 4687                                       University of Texas San Antonio
## 4688                                       University of Texas San Antonio
## 4689                                       University of Texas San Antonio
## 4690                                       University of Texas San Antonio
## 4691                                       University of Texas San Antonio
## 4692                                       University of Texas San Antonio
## 4693                                       University of Texas San Antonio
## 4694                                       University of Texas San Antonio
## 4695                                       University of Texas San Antonio
## 4696                                       University of Texas San Antonio
## 4697                                                      Launch Point CDC
## 4698                                                      Launch Point CDC
## 4699                       Teamwork Network Inc dba Career Training School
## 4700                       Teamwork Network Inc dba Career Training School
## 4701                       Teamwork Network Inc dba Career Training School
## 4702                                                The Houston Launch Pad
## 4703                                                The Houston Launch Pad
## 4704                                                The Houston Launch Pad
## 4705                                                The Houston Launch Pad
## 4706                                                The Houston Launch Pad
## 4707                   On-Target Supplies & Logistics Ltd. dba ReadyToWork
## 4708                                 Astudillo Elite Truck Driver Training
## 4709                                   SAGE TRUCK DRIVING SCHOOL TEXAS LLC
## 4710                                       ACCD Northeast Lakeview College
## 4711                                       ACCD Northeast Lakeview College
## 4712                                       ACCD Northeast Lakeview College
## 4713                                       ACCD Northeast Lakeview College
## 4714                                       ACCD Northeast Lakeview College
## 4715                                       ACCD Northeast Lakeview College
## 4716                                       ACCD Northeast Lakeview College
## 4717                                       ACCD Northeast Lakeview College
## 4718                                       ACCD Northeast Lakeview College
## 4719                                       ACCD Northeast Lakeview College
## 4720                                       ACCD Northeast Lakeview College
## 4721                                       ACCD Northeast Lakeview College
## 4722                                       ACCD Northeast Lakeview College
## 4723                                       ACCD Northeast Lakeview College
## 4724                                       ACCD Northeast Lakeview College
## 4725                                       ACCD Northeast Lakeview College
## 4726                                       ACCD Northeast Lakeview College
## 4727                                       ACCD Northeast Lakeview College
## 4728                                       ACCD Northeast Lakeview College
## 4729                                       ACCD Northeast Lakeview College
## 4730                                       ACCD Northeast Lakeview College
## 4731                                                         UT Austin CPE
## 4732                                                         UT Austin CPE
## 4733                                                         UT Austin CPE
## 4734                                                         UT Austin CPE
## 4735                                                         UT Austin CPE
## 4736                                                         UT Austin CPE
## 4737                                                         UT Austin CPE
## 4738                             CenTex Independent Electrcial Contractors
## 4739                            College of Biomedical Equipment Technology
## 4740                            College of Biomedical Equipment Technology
## 4741                            College of Biomedical Equipment Technology
## 4742                            College of Biomedical Equipment Technology
## 4743                            College of Biomedical Equipment Technology
## 4744                            College of Biomedical Equipment Technology
## 4745                            College of Biomedical Equipment Technology
## 4746                            College of Biomedical Equipment Technology
## 4747                            College of Biomedical Equipment Technology
## 4748                            College of Biomedical Equipment Technology
## 4749                            College of Biomedical Equipment Technology
## 4750                            College of Biomedical Equipment Technology
## 4751                            College of Biomedical Equipment Technology
## 4752                            College of Biomedical Equipment Technology
## 4753                            College of Biomedical Equipment Technology
## 4754                            College of Biomedical Equipment Technology
## 4755                            College of Biomedical Equipment Technology
## 4756                            College of Biomedical Equipment Technology
## 4757                            College of Biomedical Equipment Technology
## 4758                            College of Biomedical Equipment Technology
## 4759                            College of Biomedical Equipment Technology
## 4760                                             West Texas A&M University
## 4761                                             West Texas A&M University
## 4762                                             West Texas A&M University
## 4763                                             West Texas A&M University
## 4764                                             West Texas A&M University
## 4765                                             West Texas A&M University
## 4766                                             West Texas A&M University
## 4767                                             West Texas A&M University
## 4768                                             West Texas A&M University
## 4769                                             West Texas A&M University
## 4770                                             West Texas A&M University
## 4771                                             West Texas A&M University
## 4772                                             West Texas A&M University
## 4773                                             West Texas A&M University
## 4774                                             West Texas A&M University
## 4775                                             West Texas A&M University
## 4776                                             West Texas A&M University
## 4777                                             West Texas A&M University
## 4778                                             West Texas A&M University
## 4779                                    Lone Star Digital Business Academy
## 4780                                                Texas State University
## 4781                                                Texas State University
## 4782                                                Texas State University
## 4783                                                Texas State University
## 4784                                                Texas State University
## 4785                                                Texas State University
## 4786                                                Texas State University
## 4787                                                Texas State University
## 4788                                                Texas State University
## 4789                                                Texas State University
## 4790                                                Texas State University
## 4791                                                Texas State University
## 4792                                                Texas State University
## 4793                                                Texas State University
## 4794                                                Texas State University
## 4795                                                Texas State University
## 4796                                                Texas State University
## 4797                                                Texas State University
## 4798                                                Texas State University
## 4799                                                Texas State University
## 4800                                                Texas State University
## 4801                                                Texas State University
## 4802                                                Texas State University
## 4803                                                Texas State University
## 4804                                                Texas State University
## 4805                                                Texas State University
## 4806                                                Texas State University
## 4807                                                Texas State University
## 4808                                                Texas State University
## 4809                                                Texas State University
## 4810                                                Texas State University
## 4811                                      CyberTex Institute of Technology
## 4812                                      CyberTex Institute of Technology
## 4813                                      CyberTex Institute of Technology
## 4814                                      CyberTex Institute of Technology
## 4815                                      CyberTex Institute of Technology
## 4816                                      CyberTex Institute of Technology
## 4817                                      CyberTex Institute of Technology
## 4818                                      CyberTex Institute of Technology
## 4819                                            Commencement Career Center
## 4820                                                   Inspire Project LLC
## 4821                           Emergency Medical Tranining Services (EMTS)
## 4822                           Emergency Medical Tranining Services (EMTS)
## 4823                                                   MediaTech Institute
## 4824                                                   MediaTech Institute
## 4825                                                  Trainings Direct LLC
## 4826                                                  Trainings Direct LLC
## 4827                                                  Trainings Direct LLC
## 4828                                                  Trainings Direct LLC
## 4829                                                  Trainings Direct LLC
## 4830                                                  Trainings Direct LLC
## 4831                                                  Trainings Direct LLC
## 4832                                         Facility Solutions Group Inc.
## 4833                                                  Jacksonville College
## 4834           South Texas Vocational Technical Institute - Corpus Christi
## 4835           South Texas Vocational Technical Institute - Corpus Christi
## 4836           South Texas Vocational Technical Institute - Corpus Christi
## 4837           South Texas Vocational Technical Institute - Corpus Christi
## 4838           South Texas Vocational Technical Institute - Corpus Christi
## 4839           South Texas Vocational Technical Institute - Corpus Christi
## 4840                                                  Builders Academy Inc
## 4841                                                  Builders Academy Inc
## 4842                                                  Builders Academy Inc
## 4843                                                  Builders Academy Inc
## 4844                                                  Builders Academy Inc
## 4845                                                  Builders Academy Inc
## 4846                                                  Builders Academy Inc
## 4847                                                  Builders Academy Inc
## 4848                                                  Builders Academy Inc
## 4849                                                       I.C.C.S Academy
## 4850                                                       I.C.C.S Academy
## 4851                                                       I.C.C.S Academy
## 4852                                                       I.C.C.S Academy
## 4853                                                       I.C.C.S Academy
## 4854                                                       I.C.C.S Academy
## 4855                                                       I.C.C.S Academy
## 4856                                                       I.C.C.S Academy
## 4857                                Houston North Lone Star College System
## 4858                                Houston North Lone Star College System
## 4859                                Houston North Lone Star College System
## 4860                                Houston North Lone Star College System
## 4861                                Houston North Lone Star College System
## 4862                                Houston North Lone Star College System
## 4863                                Houston North Lone Star College System
## 4864                                Houston North Lone Star College System
## 4865                                Houston North Lone Star College System
## 4866                                           Waco Area Electricians JATC
## 4867                                     MyComputerCareer at Arlington LLC
## 4868                                     MyComputerCareer at Arlington LLC
## 4869                                  Translation & Interpretation Network
## 4870                                  Translation & Interpretation Network
## 4871                                         Changing Lanes CDL School LLC
## 4872                                              Gateway Technical School
## 4873                                              Gateway Technical School
## 4874                                              Gateway Technical School
## 4875                                              Gateway Technical School
## 4876                                              Gateway Technical School
## 4877                                              Gateway Technical School
## 4878                                              Gateway Technical School
## 4879                                              Gateway Technical School
## 4880                                              Gateway Technical School
## 4881                                              Gateway Technical School
## 4882                                              Gateway Technical School
## 4883                                              Gateway Technical School
## 4884                                              Gateway Technical School
## 4885                                              Gateway Technical School
## 4886                            IUOE Local 450 Apprenticeship and Training
## 4887                         Purpose Education - Purpose Medical Institute
## 4888                         Purpose Education - Purpose Medical Institute
## 4889                         Purpose Education - Purpose Medical Institute
## 4890                         Purpose Education - Purpose Medical Institute
## 4891                         Purpose Education - Purpose Medical Institute
## 4892                         Purpose Education - Purpose Medical Institute
## 4893                         Purpose Education - Purpose Medical Institute
## 4894                         Purpose Education - Purpose Medical Institute
## 4895                         Purpose Education - Purpose Medical Institute
## 4896                         Purpose Education - Purpose Medical Institute
## 4897                         Purpose Education - Purpose Medical Institute
## 4898                         Purpose Education - Purpose Medical Institute
## 4899                                     The Culinary School of Fort Worth
## 4900                                                EMBARK Learning Center
## 4901                                                EMBARK Learning Center
## 4902                                                EMBARK Learning Center
## 4903                                                EMBARK Learning Center
## 4904                                                 Bash Career Institute
## 4905                                                 Bash Career Institute
## 4906                                                 Bash Career Institute
## 4907              Region 10 Education Service Center CERTification Program
## 4908                                         MILESTONE TECHNICAL INSTITUTE
## 4909                                         MILESTONE TECHNICAL INSTITUTE
## 4910                                         MILESTONE TECHNICAL INSTITUTE
## 4911                                         MILESTONE TECHNICAL INSTITUTE
## 4912                                         MILESTONE TECHNICAL INSTITUTE
## 4913                                         MILESTONE TECHNICAL INSTITUTE
## 4914                                         MILESTONE TECHNICAL INSTITUTE
## 4915                                         NewApprenticeship - Bootcamps
## 4916                                         NewApprenticeship - Bootcamps
## 4917                                         NewApprenticeship - Bootcamps
## 4918                                         NewApprenticeship - Bootcamps
## 4919                                         NewApprenticeship - Bootcamps
## 4920                                         NewApprenticeship - Bootcamps
## 4921                                         NewApprenticeship - Bootcamps
## 4922                                    Texas A&M International University
## 4923                                    Texas A&M International University
## 4924                                    Texas A&M International University
## 4925                                    Texas A&M International University
## 4926                                    Texas A&M International University
## 4927                                    Texas A&M International University
## 4928                                    Texas A&M International University
## 4929                                       Launch Point CDC Apprenticeship
## 4930                                       Launch Point CDC Apprenticeship
## 4931                                       Launch Point CDC Apprenticeship
## 4932                                       Launch Point CDC Apprenticeship
## 4933                                       Launch Point CDC Apprenticeship
## 4934                                       Launch Point CDC Apprenticeship
## 4935                                       Launch Point CDC Apprenticeship
## 4936                                       Launch Point CDC Apprenticeship
## 4937                                       Launch Point CDC Apprenticeship
## 4938                                       Launch Point CDC Apprenticeship
## 4939                                       Launch Point CDC Apprenticeship
## 4940                                East End Driving and Placement Service
## 4941      North Texas Automobile Dealers Registered Apprenticeship Program
## 4942                                               J and R Training Center
## 4943                                               J and R Training Center
## 4944                                               J and R Training Center
## 4945                                               J and R Training Center
## 4946                                               J and R Training Center
## 4947                                               J and R Training Center
## 4948                                               J and R Training Center
## 4949                                               J and R Training Center
## 4950                                               United Training Academy
## 4951                                               United Training Academy
## 4952                                               United Training Academy
## 4953                                               United Training Academy
## 4954                                               United Training Academy
## 4955                                               United Training Academy
## 4956                                               United Training Academy
## 4957                                               United Training Academy
## 4958                                               United Training Academy
## 4959                                               United Training Academy
## 4960                                               United Training Academy
## 4961                                               United Training Academy
## 4962                                               United Training Academy
## 4963                                               United Training Academy
## 4964                                               United Training Academy
## 4965                                               United Training Academy
## 4966                                               United Training Academy
## 4967                                               United Training Academy
## 4968                                               United Training Academy
## 4969                                               United Training Academy
## 4970                                               United Training Academy
## 4971                                               United Training Academy
## 4972                                               United Training Academy
## 4973                                               United Training Academy
## 4974                                               United Training Academy
## 4975                                               United Training Academy
## 4976                                               United Training Academy
## 4977                                               United Training Academy
## 4978                                               United Training Academy
## 4979                                               United Training Academy
## 4980                                               United Training Academy
## 4981                                               United Training Academy
## 4982                                               United Training Academy
## 4983                                               United Training Academy
## 4984                                               United Training Academy
## 4985                                               United Training Academy
## 4986                                               United Training Academy
## 4987                                               United Training Academy
## 4988                                               United Training Academy
## 4989                                               United Training Academy
## 4990                                               United Training Academy
## 4991                                               United Training Academy
## 4992                                               United Training Academy
## 4993                                               United Training Academy
## 4994                                               United Training Academy
## 4995                                               United Training Academy
## 4996                                               United Training Academy
## 4997                                               United Training Academy
## 4998                                               United Training Academy
## 4999                                               United Training Academy
## 5000                                               United Training Academy
## 5001                                               United Training Academy
## 5002                                               United Training Academy
## 5003                                               United Training Academy
## 5004                                               United Training Academy
## 5005                                               United Training Academy
## 5006                                               United Training Academy
## 5007                                               United Training Academy
## 5008                                               United Training Academy
## 5009                                               United Training Academy
## 5010                                               United Training Academy
## 5011                                               United Training Academy
## 5012                                               United Training Academy
## 5013                                               United Training Academy
## 5014                                               United Training Academy
## 5015                                               United Training Academy
## 5016                                               United Training Academy
## 5017                                               United Training Academy
## 5018                                               United Training Academy
## 5019                                               United Training Academy
## 5020                                    Greatwood Dental Assisting Program
## 5021                                                  MD4U Training Center
## 5022                                                  MD4U Training Center
## 5023                                                  MD4U Training Center
## 5024                                                  MD4U Training Center
## 5025                                                  MD4U Training Center
## 5026                                                  MD4U Training Center
## 5027                                                  MD4U Training Center
## 5028                                                  MD4U Training Center
## 5029                                                  MD4U Training Center
## 5030                                                  MD4U Training Center
## 5031                                                  MD4U Training Center
## 5032                                                  MD4U Training Center
## 5033                                             Precision Welding Academy
## 5034                                             Precision Welding Academy
## 5035                                             Precision Welding Academy
## 5036                                             Precision Welding Academy
## 5037                                             Precision Welding Academy
## 5038                                             Precision Welding Academy
## 5039                                             Precision Welding Academy
## 5040                                             Precision Welding Academy
## 5041                                                SheConnects Ministries
## 5042                                  Trinity Bay Vocational Istitute Inc.
## 5043                                  Trinity Bay Vocational Istitute Inc.
## 5044                                     100 Black Men of San Antonio Inc.
## 5045                              Northeast Training Center - M.J Training
## 5046  RIO GRANDE VALLEY CHAPTER OF INDEPENDENT ELECTRICAL CONTRACTORS INC.
## 5047                                                        REHAB WARRIORS
## 5048                                                      Eye Tech Academy
## 5049                                  Williams Career School of Excellence
## 5050                                  Williams Career School of Excellence
## 5051                                                        TRIO Education
## 5052                                                 Super Welders Academy
## 5053                      Baylor Scott & White Medical Center - Round Rock
## 5054                                           South Texas Initiatives LLC
## 5055                                           South Texas Initiatives LLC
## 5056                                University of Houston - Honors College
## 5057                                Houston Academy for Career Development
## 5058                                        Absolute Allied Health Academy
## 5059                                        Absolute Allied Health Academy
## 5060                                        Absolute Allied Health Academy
## 5061                                        Absolute Allied Health Academy
## 5062                                        Absolute Allied Health Academy
## 5063                                        Absolute Allied Health Academy
## 5064                                        Absolute Allied Health Academy
## 5065                                        Absolute Allied Health Academy
## 5066                                        Absolute Allied Health Academy
## 5067                                             RELIANT IT CAREER SCHOOLS
## 5068                                             RELIANT IT CAREER SCHOOLS
## 5069                                             RELIANT IT CAREER SCHOOLS
## 5070                                                 San Antonio Food Bank
## 5071                                                 San Antonio Food Bank
## 5072                100 Black Men of San Antonio Inc. (Pre Apprenticeship)
## 5073                100 Black Men of San Antonio Inc. (Pre Apprenticeship)
## 5074                100 Black Men of San Antonio Inc. (Pre Apprenticeship)
## 5075                                                 Southwest EMS Academy
## 5076                                           EDS Tech Training Sites LLC
## 5077                  South Texas Building and Construction Trades Council
## 5078                                                              ForgeNow
## 5079                                                              ForgeNow
## 5080                                                              ForgeNow
## 5081                                                                NPower
## 5082                                       Luminary Dental Asisting School
## 5083                                       Texas A&M University - Commerce
## 5084                                       Texas A&M University - Commerce
## 5085                                       Texas A&M University - Commerce
## 5086                                       Texas A&M University - Commerce
## 5087                                       Texas A&M University - Commerce
## 5088                                       Texas A&M University - Commerce
## 5089                                       Texas A&M University - Commerce
## 5090                                       Texas A&M University - Commerce
## 5091                                       Texas A&M University - Commerce
## 5092                                       Texas A&M University - Commerce
## 5093                                       Texas A&M University - Commerce
## 5094                                       Texas A&M University - Commerce
## 5095                                       Texas A&M University - Commerce
## 5096                                       Texas A&M University - Commerce
## 5097                                                   The Kenza Institute
## 5098                                                   The Kenza Institute
## 5099                                                   The Kenza Institute
## 5100                                                   The Kenza Institute
## 5101                                                   The Kenza Institute
## 5102                                            Airstreams Renewables Inc.
## 5103                                              Blue Diamond Welding LLC
## 5104                                              Blue Diamond Welding LLC
## 5105                                              Blue Diamond Welding LLC
## 5106                                              Blue Diamond Welding LLC
## 5107                                              Blue Diamond Welding LLC
## 5108                                              Blue Diamond Welding LLC
## 5109                                             Super Welders Academy LLC
## 5110                                             Super Welders Academy LLC
## 5111                                             Super Welders Academy LLC
## 5112                                             Super Welders Academy LLC
## 5113                                                              Apprenti
## 5114                                                              Apprenti
## 5115                                                              Apprenti
## 5116                                      Vocational Technical Academy Inc
## 5117                                      Vocational Technical Academy Inc
## 5118                                              Necoles Learning Academy
## 5119                                              Necoles Learning Academy
## 5120                                              Necoles Learning Academy
## 5121                                              Necoles Learning Academy
## 5122                                              Necoles Learning Academy
## 5123                                              Necoles Learning Academy
## 5124                                              Necoles Learning Academy
## 5125                                              Necoles Learning Academy
## 5126                                              Necoles Learning Academy
## 5127                                              Necoles Learning Academy
## 5128                                              Necoles Learning Academy
## 5129                                              Necoles Learning Academy
## 5130                                              Necoles Learning Academy
## 5131                                              Necoles Learning Academy
## 5132                                              Necoles Learning Academy
## 5133                                              Necoles Learning Academy
## 5134                                              Necoles Learning Academy
## 5135                                              Necoles Learning Academy
## 5136                                              Necoles Learning Academy
## 5137                                              Necoles Learning Academy
## 5138                                              Necoles Learning Academy
## 5139                                              Necoles Learning Academy
## 5140                                              Necoles Learning Academy
## 5141                                              Necoles Learning Academy
## 5142                                              Necoles Learning Academy
## 5143                                              Necoles Learning Academy
## 5144                                              Necoles Learning Academy
## 5145                                              Necoles Learning Academy
## 5146                                              Necoles Learning Academy
## 5147                                              Necoles Learning Academy
## 5148                                              Necoles Learning Academy
## 5149                                              Necoles Learning Academy
## 5150                                              Necoles Learning Academy
## 5151                                              Necoles Learning Academy
## 5152                                              Necoles Learning Academy
## 5153                                              Necoles Learning Academy
## 5154                                              Necoles Learning Academy
## 5155                                              Necoles Learning Academy
## 5156                                              Necoles Learning Academy
## 5157                                              Necoles Learning Academy
## 5158                                              Necoles Learning Academy
## 5159                                              Necoles Learning Academy
## 5160                                              Necoles Learning Academy
## 5161                                              Necoles Learning Academy
## 5162                                              Necoles Learning Academy
## 5163                                              Necoles Learning Academy
## 5164                                              Necoles Learning Academy
## 5165                                              Necoles Learning Academy
## 5166                                              Necoles Learning Academy
## 5167                                              Necoles Learning Academy
## 5168                                              Necoles Learning Academy
## 5169                                              Necoles Learning Academy
## 5170                                              Necoles Learning Academy
## 5171                                              Necoles Learning Academy
## 5172                                              Necoles Learning Academy
## 5173                                              Necoles Learning Academy
## 5174                                              Necoles Learning Academy
## 5175                                              Necoles Learning Academy
## 5176                                              Necoles Learning Academy
## 5177                                              Necoles Learning Academy
## 5178                Austin Urban Technology Movement (AUTM)_apprenticeship
## 5179                                                    Interplay Learning
## 5180                                                    Interplay Learning
## 5181                                                    Interplay Learning
## 5182                                                    Interplay Learning
## 5183                              Legacy Institute for Financial Education
## 5184                              Legacy Institute for Financial Education
## 5185                              Legacy Institute for Financial Education
## 5186                                             ABC Central Texas Chapter
## 5187                                             ABC Central Texas Chapter
## 5188                                             ABC Central Texas Chapter
## 5189                                             ABC Central Texas Chapter
## 5190                                        AimHigh Education Technologies
## 5191           Houston Area Plumbing Joint Apprenticeship Committee HAPJAC
## 5192           Houston Area Plumbing Joint Apprenticeship Committee HAPJAC
## 5193           Houston Area Plumbing Joint Apprenticeship Committee HAPJAC
## 5194                                   Grace CDL Truck Driving School Inc.
## 5195                                                 Dallas Career Academy
## 5196                                                 Dallas Career Academy
## 5197                                                 Dallas Career Academy
## 5198                                                 Dallas Career Academy
## 5199                                                 Dallas Career Academy
## 5200                                                 Dallas Career Academy
## 5201                                                 Dallas Career Academy
## 5202                                                 Dallas Career Academy
## 5203                                                 Dallas Career Academy
## 5204                                                 Dallas Career Academy
## 5205                                                 Dallas Career Academy
## 5206                                                 Dallas Career Academy
## 5207                                                 Dallas Career Academy
## 5208                                                 Dallas Career Academy
## 5209                                                 Dallas Career Academy
## 5210                                                 Dallas Career Academy
## 5211                                                 Dallas Career Academy
## 5212                                         Lincoln College of Technology
## 5213                                      Caring Heart Training Center LLC
## 5214                   South Texas Vocational Technical Institute  McAllen
## 5215                   South Texas Vocational Technical Institute  McAllen
## 5216                   South Texas Vocational Technical Institute  McAllen
## 5217                                              Gulf Coast Trades Center
## 5218                                        Pro Se Legal Studies Institute
## 5219                                                  Codeup Cloud Academy
## 5220                                                  Codeup Cloud Academy
## 5221             M Weeks Welding Laboratory Testing and Welding School Inc
## 5222             M Weeks Welding Laboratory Testing and Welding School Inc
## 5223             M Weeks Welding Laboratory Testing and Welding School Inc
## 5224             M Weeks Welding Laboratory Testing and Welding School Inc
## 5225             M Weeks Welding Laboratory Testing and Welding School Inc
## 5226             M Weeks Welding Laboratory Testing and Welding School Inc
## 5227             M Weeks Welding Laboratory Testing and Welding School Inc
## 5228             M Weeks Welding Laboratory Testing and Welding School Inc
## 5229             M Weeks Welding Laboratory Testing and Welding School Inc
## 5230             M Weeks Welding Laboratory Testing and Welding School Inc
## 5231                               Cogent Infotech Corp. Cogent University
## 5232                                             Operation Phantom Support
## 5233                                   Wireless Infrastructure Association
## 5234                                         lanch.me powered by pepelwerk
## 5235                                         lanch.me powered by pepelwerk
## 5236                                         lanch.me powered by pepelwerk
## 5237                                         lanch.me powered by pepelwerk
## 5238                                         lanch.me powered by pepelwerk
## 5239                                         lanch.me powered by pepelwerk
## 5240                                         lanch.me powered by pepelwerk
## 5241                                         lanch.me powered by pepelwerk
## 5242                                                 Sunset Logistics Inc.
## 5243                                               Global Career Institute
## 5244                                               Global Career Institute
## 5245                                               Global Career Institute
## 5246                                               Global Career Institute
## 5247                                                     Republic Services
## 5248                                              SafeRide Driving Academy
## 5249                                               Texas Injection Molding
## 5250                                              National Trade Institute
## 5251                                              National Trade Institute
## 5252                                              National Trade Institute
## 5253                                              National Trade Institute
## 5254                                              National Trade Institute
## 5255                                              National Trade Institute
## 5256                                              National Trade Institute
## 5257                                              National Trade Institute
## 5258                                              National Trade Institute
## 5259                                              National Trade Institute
## 5260                                              National Trade Institute
## 5261                                              National Trade Institute
## 5262                                              National Trade Institute
## 5263                                              National Trade Institute
## 5264                                              National Trade Institute
## 5265                                              National Trade Institute
## 5266                                              National Trade Institute
## 5267                                              National Trade Institute
## 5268                                              National Trade Institute
## 5269                                              National Trade Institute
## 5270                                              National Trade Institute
## 5271                                        All is Well HealthCare Academy
## 5272                                        All is Well HealthCare Academy
## 5273                                        All is Well HealthCare Academy
## 5274                                        All is Well HealthCare Academy
## 5275     South Texas Associated General Contractors Apprenticeship Program
## 5276                                                               CAVALRY
## 5277                                                   Spirit Technologies
## 5278                                                   Spirit Technologies
## 5279                                                   Spirit Technologies
## 5280                                                   Spirit Technologies
## 5281                               UA Dallas LU 100 Plumbers & Pipefitters
## 5282                                                  My Connect Community
## 5283                                               Hi-Tech Welding Academy
## 5284                                               Hi-Tech Welding Academy
## 5285                                               Hi-Tech Welding Academy
## 5286                                               Hi-Tech Welding Academy
## 5287                                              BLESSED HANDS PHLEBOTOMY
## 5288                                              BLESSED HANDS PHLEBOTOMY
## 5289                                                       El Paso J.A.TC.
## 5290                                        A-Plus CDL Training Center LLC
## 5291                                        A-Plus CDL Training Center LLC
## 5292                                               Texas CDL Institute LLC
## 5293                                               Texas CDL Institute LLC
## 5294                                                KINDLE TRUCKING SCHOOL
## 5295                                                KINDLE TRUCKING SCHOOL
## 5296                                               Supreme Welding Academy
## 5297                                               Supreme Welding Academy
## 5298                                               Supreme Welding Academy
## 5299                                               Supreme Welding Academy
## 5300                                               Supreme Welding Academy
## 5301                                               Supreme Welding Academy
## 5302                                               Supreme Welding Academy
## 5303                                               Supreme Welding Academy
## 5304                                               Supreme Welding Academy
## 5305                                                        Oxford Academy
## 5306                                                        Oxford Academy
## 5307                                                        Oxford Academy
## 5308                                                        Oxford Academy
## 5309                                                        Oxford Academy
## 5310                                                 Sendero CDL Solutions
## 5311                                                 U.S. Aviation Academy
## 5312                                      Training Center of Central Texas
## 5313                                      Training Center of Central Texas
## 5314                                      Training Center of Central Texas
## 5315                                      Training Center of Central Texas
## 5316                                      Training Center of Central Texas
## 5317                                      Training Center of Central Texas
## 5318                                      Training Center of Central Texas
## 5319                                      Training Center of Central Texas
## 5320                                         e-Health Training Center Inc.
## 5321                                                     Tech Talent South
## 5322                                                     Tech Talent South
## 5323                                            Academy of World Education
## 5324                                            Academy of World Education
## 5325                               Choezen Careers and Healthcare Training
## 5326                                               Evolution Of Her Beauty
## 5327                                               Evolution Of Her Beauty
## 5328                                               Evolution Of Her Beauty
## 5329                                               Evolution Of Her Beauty
## 5330                                               Evolution Of Her Beauty
## 5331                                               Evolution Of Her Beauty
## 5332                              Phoenix Bodi and Beauty Institute (PBBI)
## 5333                              Phoenix Bodi and Beauty Institute (PBBI)
## 5334                              Phoenix Bodi and Beauty Institute (PBBI)
## 5335                              Phoenix Bodi and Beauty Institute (PBBI)
## 5336                              Phoenix Bodi and Beauty Institute (PBBI)
## 5337                              Phoenix Bodi and Beauty Institute (PBBI)
## 5338                              Phoenix Bodi and Beauty Institute (PBBI)
## 5339                              Phoenix Bodi and Beauty Institute (PBBI)
## 5340                              Phoenix Bodi and Beauty Institute (PBBI)
## 5341                              Phoenix Bodi and Beauty Institute (PBBI)
## 5342                              Phoenix Bodi and Beauty Institute (PBBI)
## 5343                              Phoenix Bodi and Beauty Institute (PBBI)
## 5344                              Phoenix Bodi and Beauty Institute (PBBI)
## 5345                                          VIJAY COMPUTER ACADEMY (VCA)
## 5346                                          VIJAY COMPUTER ACADEMY (VCA)
## 5347                                          VIJAY COMPUTER ACADEMY (VCA)
## 5348                                          VIJAY COMPUTER ACADEMY (VCA)
## 5349                                                             WorkTexas
## 5350                                                             WorkTexas
## 5351                                                             WorkTexas
## 5352                                                             WorkTexas
## 5353                                                             WorkTexas
## 5354                                                             WorkTexas
## 5355                                                          Nana Academy
## 5356                                                          Nana Academy
## 5357                                                          Nana Academy
## 5358                                           FGL Construction Group LLC.
## 5359                                        Career Academy of Training LLC
## 5360                                        Career Academy of Training LLC
## 5361                                     Galen College of Nursing - Austin
## 5362                                     Galen College of Nursing - Austin
## 5363                                     Galen College of Nursing - Austin
## 5364                                          Moody Early Childhood Center
## 5365                                      Austin Urban Technology Movement
## 5366                                      Austin Urban Technology Movement
## 5367                                      Austin Urban Technology Movement
## 5368                                      Austin Urban Technology Movement
## 5369                                      Austin Urban Technology Movement
## 5370                                      Austin Urban Technology Movement
## 5371                                      Austin Urban Technology Movement
## 5372                                      Austin Urban Technology Movement
## 5373                                      Austin Urban Technology Movement
## 5374                                      Austin Urban Technology Movement
## 5375                                      Austin Urban Technology Movement
## 5376                                      Austin Urban Technology Movement
## 5377                                      Austin Urban Technology Movement
## 5378                                               Career Discover Academy
## 5379                                               Career Discover Academy
## 5380                                               Career Discover Academy
## 5381                                               Career Discover Academy
## 5382                       IEC US Holdings Inc. dba Florida Career College
## 5383                       IEC US Holdings Inc. dba Florida Career College
## 5384                            School of Business and Technology - SBTech
## 5385                            School of Business and Technology - SBTech
## 5386                            School of Business and Technology - SBTech
## 5387                            School of Business and Technology - SBTech
## 5388                            School of Business and Technology - SBTech
## 5389                            School of Business and Technology - SBTech
## 5390                                                B & M Career Institute
## 5391                                                B & M Career Institute
## 5392                                                B & M Career Institute
## 5393                                                B & M Career Institute
## 5394                                                B & M Career Institute
## 5395                                                  Coding Clarified LLC
## 5396                                                         Driving Force
## 5397                                              Level Up Training Center
## 5398                                              Level Up Training Center
## 5399                                              Level Up Training Center
## 5400                                              Level Up Training Center
## 5401                                              Level Up Training Center
## 5402                                              Level Up Training Center
## 5403                                              Level Up Training Center
## 5404                                                   New Horizons Dallas
## 5405                                                   New Horizons Dallas
## 5406                                                   New Horizons Dallas
## 5407                                                   New Horizons Dallas
## 5408                                                   New Horizons Dallas
## 5409                                                   New Horizons Dallas
## 5410                                                   New Horizons Dallas
## 5411                                                   New Horizons Dallas
## 5412                                                   New Horizons Dallas
## 5413                                                   New Horizons Dallas
## 5414                                                   New Horizons Dallas
## 5415                                                   New Horizons Dallas
## 5416                                                   New Horizons Dallas
## 5417                                                   New Horizons Dallas
## 5418                                                   New Horizons Dallas
## 5419                                                   New Horizons Dallas
## 5420                                                   New Horizons Dallas
## 5421                                                   New Horizons Dallas
## 5422                                                   New Horizons Dallas
## 5423                                                   New Horizons Dallas
## 5424                                                   New Horizons Dallas
## 5425                                                   New Horizons Dallas
## 5426                                                   New Horizons Dallas
## 5427                                                   New Horizons Dallas
## 5428                                                   New Horizons Dallas
## 5429                                                   New Horizons Dallas
## 5430                                                   New Horizons Dallas
## 5431                                                   New Horizons Dallas
## 5432                                                   New Horizons Dallas
## 5433                                                   New Horizons Dallas
## 5434                                                   New Horizons Dallas
## 5435                                                   New Horizons Dallas
## 5436                                                   New Horizons Dallas
## 5437                                                   New Horizons Dallas
## 5438                                                   New Horizons Dallas
## 5439                                                   New Horizons Dallas
## 5440                                 Dental Genius Assistant Academy & CPR
## 5441                                                  JJG Development LLC.
## 5442                                              K & B Training Institute
## 5443                                              K & B Training Institute
## 5444                                              K & B Training Institute
## 5445                  National Flooring Contractors Appretniceship Program
## 5446                                         Texas Rural Water Association
## 5447                                              Red Knight Solutions LLC
## 5448                                                       United Training
## 5449                                                       United Training
## 5450                                                       United Training
## 5451                                                       United Training
## 5452                                                       United Training
## 5453                                                       United Training
## 5454                                                       United Training
## 5455                                       Texas A&M University-Kingsville
## 5456                                       Texas A&M University-Kingsville
## 5457                                       Texas A&M University-Kingsville
## 5458                                       Texas A&M University-Kingsville
## 5459                                       Texas A&M University-Kingsville
## 5460                                       Texas A&M University-Kingsville
## 5461                                       Texas A&M University-Kingsville
## 5462                                                DATS Rio Grande Valley
## 5463                                                 Genesys Works Houston
## 5464                   SER - Jobs for Progress of the Texas Gulf Coast INC
## 5465                                 Mainliners Welding Academy (La Porte)
## 5466                                 Mainliners Welding Academy (La Porte)
## 5467                                 Mainliners Welding Academy (La Porte)
## 5468                                 Mainliners Welding Academy (La Porte)
## 5469                                 Mainliners Welding Academy (La Porte)
## 5470                                 Mainliners Welding Academy (La Porte)
## 5471                                 Mainliners Welding Academy (La Porte)
## 5472                                 Mainliners Welding Academy (La Porte)
## 5473                                 Mainliners Welding Academy (La Porte)
## 5474                                 Mainliners Welding Academy (La Porte)
## 5475                                 Mainliners Welding Academy (La Porte)
## 5476                                 Mainliners Welding Academy (La Porte)
## 5477                                 Mainliners Welding Academy (La Porte)
## 5478                                          AAUL Tech and Career Academy
## 5479                                          AAUL Tech and Career Academy
## 5480                                          AAUL Tech and Career Academy
## 5481                                          AAUL Tech and Career Academy
## 5482                                          AAUL Tech and Career Academy
## 5483                                          AAUL Tech and Career Academy
## 5484                                          AAUL Tech and Career Academy
## 5485                                          AAUL Tech and Career Academy
## 5486                                          AAUL Tech and Career Academy
## 5487                                                 Laguna Crane Services
## 5488                                                 Laguna Crane Services
## 5489                                     Region 2 Education Service Center
## 5490                                     Region 2 Education Service Center
## 5491                                     Region 2 Education Service Center
## 5492                                     Region 2 Education Service Center
## 5493                                     Region 2 Education Service Center
## 5494                                     Region 2 Education Service Center
## 5495                                     Region 2 Education Service Center
## 5496                                     Region 2 Education Service Center
## 5497                                     Region 2 Education Service Center
## 5498                                     Region 2 Education Service Center
## 5499                                     Region 2 Education Service Center
## 5500                                     Region 2 Education Service Center
## 5501                                     Region 2 Education Service Center
## 5502                                     Region 2 Education Service Center
## 5503                                     Region 2 Education Service Center
## 5504                                     Region 2 Education Service Center
## 5505                                     Region 2 Education Service Center
## 5506                                     Region 2 Education Service Center
## 5507                                     Region 2 Education Service Center
## 5508                                  OceanPointe Dental Assisting Academy
## 5509                                       Virtuous CDL Training Institute
## 5510                                                 Propel Career Academy
## 5511                                                 Propel Career Academy
## 5512                                                 Propel Career Academy
## 5513                                     Dental Assisting School of Texas.
## 5514          The University of Texas at Dallas Teacher Development Center
## 5515          The University of Texas at Dallas Teacher Development Center
## 5516                             Dignity Professional Training Centers Inc
## 5517                             Dignity Professional Training Centers Inc
## 5518                             Uncharted Territory Solutions Preparation
## 5519                             Uncharted Territory Solutions Preparation
## 5520                             Uncharted Territory Solutions Preparation
## 5521                             Uncharted Territory Solutions Preparation
## 5522                             Uncharted Territory Solutions Preparation
## 5523                             Uncharted Territory Solutions Preparation
## 5524                             Uncharted Territory Solutions Preparation
## 5525                             Uncharted Territory Solutions Preparation
## 5526                             Uncharted Territory Solutions Preparation
## 5527                             Uncharted Territory Solutions Preparation
## 5528                             Uncharted Territory Solutions Preparation
## 5529                             Uncharted Territory Solutions Preparation
## 5530                             Uncharted Territory Solutions Preparation
## 5531                             Uncharted Territory Solutions Preparation
## 5532                             Uncharted Territory Solutions Preparation
## 5533                             Uncharted Territory Solutions Preparation
## 5534                                           Evolution of Her Beauty-FEI
## 5535                                           Evolution of Her Beauty-FEI
## 5536                                           Evolution of Her Beauty-FEI
## 5537                                           Evolution of Her Beauty-FEI
## 5538                                           Evolution of Her Beauty-FEI
## 5539                                     Aviation Institute of Maintenance
## 5540                                     Aviation Institute of Maintenance
## 5541                                     Aviation Institute of Maintenance
## 5542                                                    Fast Track CDL LLC
## 5543                                                Progress Institute Inc
## 5544                  From Ordinary to Extrordinary Apprenticeship Program
## 5545                  From Ordinary to Extrordinary Apprenticeship Program
## 5546                                 DJH Express National Training Academy
## 5547                                       Xcellerated Nurse Aide Training
## 5548                                         The Hook-up Barber University
## 5549                                        HEALING HANDS MASSAGE INSTITUE
## 5550                                                       Milan Institute
## 5551                                                       Milan Institute
## 5552                                           Royalty Welding Academy LLC
## 5553                                           Royalty Welding Academy LLC
## 5554                                         East Texas Baptist University
## 5555                                         East Texas Baptist University
## 5556                                         East Texas Baptist University
## 5557                                         East Texas Baptist University
## 5558                                         East Texas Baptist University
## 5559                                         East Texas Baptist University
## 5560                                         East Texas Baptist University
## 5561                                         East Texas Baptist University
## 5562                                     Texas A&M University- San Antonio
## 5563                                     Texas A&M University- San Antonio
## 5564                                     Texas A&M University- San Antonio
## 5565                                     Texas A&M University- San Antonio
## 5566                                     Texas A&M University- San Antonio
## 5567                                     Texas A&M University- San Antonio
## 5568                                     Texas A&M University- San Antonio
## 5569                                     Texas A&M University- San Antonio
## 5570                                     Texas A&M University- San Antonio
## 5571                                     Texas A&M University- San Antonio
## 5572                                     Texas A&M University- San Antonio
## 5573                                     Texas A&M University- San Antonio
## 5574                                     Texas A&M University- San Antonio
## 5575                                     Texas A&M University- San Antonio
## 5576                                     Texas A&M University- San Antonio
## 5577                                     Texas A&M University- San Antonio
## 5578                                     Texas A&M University- San Antonio
## 5579                                     Texas A&M University- San Antonio
## 5580                                     Texas A&M University- San Antonio
## 5581                                     Texas A&M University- San Antonio
## 5582                                     Texas A&M University- San Antonio
## 5583                                     Texas A&M University- San Antonio
## 5584                                     Texas A&M University- San Antonio
## 5585                                     Texas A&M University- San Antonio
## 5586                                     Texas A&M University- San Antonio
## 5587                                     Texas A&M University- San Antonio
## 5588                                     Texas A&M University- San Antonio
## 5589                                     Texas A&M University- San Antonio
## 5590                                     Texas A&M University- San Antonio
## 5591                                     Texas A&M University- San Antonio
## 5592                                     Texas A&M University- San Antonio
## 5593                                     Texas A&M University- San Antonio
## 5594                                     Texas A&M University- San Antonio
## 5595                                     Texas A&M University- San Antonio
## 5596                                     Texas A&M University- San Antonio
## 5597                                     Texas A&M University- San Antonio
## 5598                                     Texas A&M University- San Antonio
## 5599                                     Texas A&M University- San Antonio
## 5600                                     Texas A&M University- San Antonio
## 5601                                     Texas A&M University- San Antonio
## 5602                                     Texas A&M University- San Antonio
## 5603                                     Texas A&M University- San Antonio
## 5604                                     Texas A&M University- San Antonio
## 5605                                     Texas A&M University- San Antonio
## 5606                                     No Limit Truck Driving School Inc
## 5607                                         Innovative Workforce Projects
## 5608                                         Innovative Workforce Projects
## 5609                                         Innovative Workforce Projects
## 5610                                                   Mc Murry University
## 5611                                                   Mc Murry University
## 5612                                       Lone Star Truck Driving Academy
## 5613                                        MyComputerCareer at Dallas LLC
## 5614                                        MyComputerCareer at Dallas LLC
## 5615                                        MyComputerCareer at Dallas LLC
## 5616                                        MyComputerCareer at Dallas LLC
## 5617                                        MyComputerCareer at Dallas LLC
## 5618                                        MyComputerCareer at Dallas LLC
## 5619                                        MyComputerCareer at Dallas LLC
## 5620                                        MyComputerCareer at Dallas LLC
## 5621                                        MyComputerCareer at Dallas LLC
## 5622                                        MyComputerCareer at Dallas LLC
## 5623                                        MyComputerCareer at Dallas LLC
## 5624                                        MyComputerCareer at Dallas LLC
## 5625                                        MyComputerCareer at Dallas LLC
## 5626                                        MyComputerCareer at Dallas LLC
## 5627                                        MyComputerCareer at Dallas LLC
## 5628                                        MyComputerCareer at Dallas LLC
## 5629                                        MyComputerCareer at Dallas LLC
## 5630                                        MyComputerCareer at Dallas LLC
## 5631                                        MyComputerCareer at Dallas LLC
## 5632                                        MyComputerCareer at Dallas LLC
## 5633                                        MyComputerCareer at Dallas LLC
## 5634                                        MyComputerCareer at Dallas LLC
## 5635                                        MyComputerCareer at Dallas LLC
## 5636                                        MyComputerCareer at Dallas LLC
## 5637                                        MyComputerCareer at Dallas LLC
## 5638                                        MyComputerCareer at Dallas LLC
## 5639                                        MyComputerCareer at Dallas LLC
## 5640                                 The Ding King Training Institute inc.
## 5641                                 The Ding King Training Institute inc.
## 5642                                 The Ding King Training Institute inc.
## 5643                                 The Ding King Training Institute inc.
## 5644                                 The Ding King Training Institute inc.
## 5645                                 The Ding King Training Institute inc.
## 5646                                       Trinity Healthcare Services LLC
## 5647                               Real Life Vocational Training Institute
## 5648                     Construction and Maintenance Education Foundation
## 5649                     Construction and Maintenance Education Foundation
## 5650                     Construction and Maintenance Education Foundation
## 5651                     Construction and Maintenance Education Foundation
## 5652                     Construction and Maintenance Education Foundation
## 5653                     Construction and Maintenance Education Foundation
## 5654                     Construction and Maintenance Education Foundation
## 5655                     Construction and Maintenance Education Foundation
## 5656                                       411MAG Ministries CDL Help Info
## 5657                                                The Fulcrum Group Inc.
## 5658                                                            BT Foundry
## 5659                                                            BT Foundry
## 5660                                                            BT Foundry
## 5661                                                            BT Foundry
## 5662                                                            BT Foundry
## 5663                                                            BT Foundry
## 5664                                             Cutz Above Barber College
## 5665                              Language Acquisition Research Foundation
## 5666                              Language Acquisition Research Foundation
## 5667                              Language Acquisition Research Foundation
## 5668                    The University of Texas Teacher Development Center
## 5669                    The University of Texas Teacher Development Center
## 5670                                         UT Teacher Development Center
## 5671                                         UT Teacher Development Center
## 5672                       INSPIRE TEXAS--Educator Preparation by Region 4
## 5673                                             companion training center
## 5674                                             companion training center
## 5675                                              Capstone Career Institue
## 5676                                              Capstone Career Institue
## 5677                                              Paris Dental Academy LLC
## 5678                                           primaMED Training Institute
## 5679              Tech Zone HVAC-R Air Conditioning & Refrigeration School
## 5680                                            Property Adjusting Academy
## 5681                                             Lovett's Trucking Academy
## 5682                                                    Careers of America
## 5683                                                    Careers of America
## 5684                                                    Careers of America
## 5685                                                    Careers of America
## 5686                                                    Careers of America
## 5687                                                    Careers of America
## 5688                                                    Careers of America
## 5689                                                    Careers of America
## 5690                                                    Careers of America
## 5691                                                    Careers of America
## 5692                                                    Careers of America
## 5693                                                    Careers of America
## 5694                                                    Careers of America
## 5695                                                    Careers of America
## 5696                                                    Careers of America
## 5697                                                    Careers of America
## 5698                                                    Careers of America
## 5699                                     Massage Academy for Everybody LLC
## 5700                                    Texas A&M University-Central Texas
## 5701                                        Integrity Health and Education
## 5702                                            Texas School of Phlebotomy
## 5703                                            Texas School of Phlebotomy
## 5704                                            Texas School of Phlebotomy
## 5705                                      Advanced Dental Assistant School
## 5706                                             North American University
## 5707                                             North American University
## 5708                                             North American University
## 5709                                             North American University
## 5710                                             North American University
## 5711                                             North American University
## 5712                                           Refined Inspection Services
## 5713                                           Refined Inspection Services
## 5714                                           Refined Inspection Services
## 5715                                           Refined Inspection Services
## 5716                                           Refined Inspection Services
## 5717                                           Refined Inspection Services
## 5718                                           Refined Inspection Services
## 5719                                           Refined Inspection Services
## 5720                                           Refined Inspection Services
## 5721                                           Refined Inspection Services
## 5722                                           Refined Inspection Services
## 5723                                           Refined Inspection Services
## 5724                                           Refined Inspection Services
## 5725                                           Refined Inspection Services
## 5726                                           Refined Inspection Services
## 5727                                           Refined Inspection Services
## 5728                                                   Persevere Education
## 5729                                    ComputerMinds.Com (Apprenticeship)
## 5730                                    ComputerMinds.Com (Apprenticeship)
## 5731                                    ComputerMinds.Com (Apprenticeship)
## 5732                                      Beauty of All Races' Academy LLC
## 5733                                   Gift of Love Nonprofit Organization
## 5734                                   Gift of Love Nonprofit Organization
## 5735                                       DCDS Dental Assistin School LLC
## 5736                                        LSA Document & Notary Training
## 5737                                                        A+ CDL Academy
## 5738                                                    Tech Elevator Inc.
## 5739                                      Los Hermanos Learning Center LLC
## 5740                                      Los Hermanos Learning Center LLC
## 5741                                      Los Hermanos Learning Center LLC
## 5742                                      Los Hermanos Learning Center LLC
## 5743                                              Upscale CDL Training LLC
## 5744                                              Academy of Allied Health
## 5745                                              Academy of Allied Health
## 5746                                              Academy of Allied Health
## 5747                                              Academy of Allied Health
## 5748                          ACE Education Consortium with Dallas College
## 5749                          ACE Education Consortium with Dallas College
## 5750                          ACE Education Consortium with Dallas College
## 5751                          ACE Education Consortium with Dallas College
## 5752                          ACE Education Consortium with Dallas College
## 5753                          ACE Education Consortium with Dallas College
## 5754                          ACE Education Consortium with Dallas College
## 5755                          Mental Health Resource of Texas dba Via Hope
## 5756                          Mental Health Resource of Texas dba Via Hope
## 5757                          Mental Health Resource of Texas dba Via Hope
## 5758                                           Beaumont Electrical J.A.T.C
## 5759                                   IDTC Career Center (Apprenticeship)
## 5760                                   IDTC Career Center (Apprenticeship)
## 5761                                   IDTC Career Center (Apprenticeship)
## 5762                                   IDTC Career Center (Apprenticeship)
## 5763                                   IDTC Career Center (Apprenticeship)
## 5764                                   IDTC Career Center (Apprenticeship)
## 5765                                   IDTC Career Center (Apprenticeship)
## 5766                                                       Make the Change
## 5767                Showoff the Ultimate SS Llc dba E and D Driving School
## 5768                                        Mid Coast Construction Academy
## 5769                                        Mid Coast Construction Academy
## 5770                                        Mid Coast Construction Academy
## 5771                                 Northeast Training Center MJ Training
## 5772                                 Northeast Training Center MJ Training
## 5773                                 Northeast Training Center MJ Training
## 5774                                 Northeast Training Center MJ Training
## 5775                                 Northeast Training Center MJ Training
## 5776                                 Northeast Training Center MJ Training
## 5777                                 Northeast Training Center MJ Training
## 5778                                 Northeast Training Center MJ Training
## 5779                                 Northeast Training Center MJ Training
## 5780                                 Northeast Training Center MJ Training
## 5781                                 Northeast Training Center MJ Training
## 5782                                 Northeast Training Center MJ Training
## 5783                                 Northeast Training Center MJ Training
## 5784                                 Northeast Training Center MJ Training
## 5785                                 Northeast Training Center MJ Training
## 5786                                 Northeast Training Center MJ Training
## 5787                                 Northeast Training Center MJ Training
## 5788                                 Northeast Training Center MJ Training
## 5789                                 Northeast Training Center MJ Training
## 5790                                 Northeast Training Center MJ Training
## 5791                                 Northeast Training Center MJ Training
## 5792                                 Northeast Training Center MJ Training
## 5793                                 Northeast Training Center MJ Training
## 5794                                 Northeast Training Center MJ Training
## 5795                                 Northeast Training Center MJ Training
## 5796                                 Northeast Training Center MJ Training
## 5797                                 Northeast Training Center MJ Training
## 5798                                 Northeast Training Center MJ Training
## 5799                                 Northeast Training Center MJ Training
## 5800                                     Cultural Technical institute LLC.
## 5801                                     Cultural Technical institute LLC.
## 5802                                     Cultural Technical institute LLC.
## 5803                                     Cultural Technical institute LLC.
## 5804                                     Cultural Technical institute LLC.
## 5805                                     Cultural Technical institute LLC.
## 5806                                     Cultural Technical institute LLC.
## 5807                                     Cultural Technical institute LLC.
## 5808                                            Apache Industrial Services
## 5809                                            Apache Industrial Services
## 5810                                            Apache Industrial Services
## 5811                                            Apache Industrial Services
## 5812                                            Apache Industrial Services
## 5813                                            Apache Industrial Services
## 5814                           CDL Emerald Logistics Training Services LLC
## 5815                           CDL Emerald Logistics Training Services LLC
## 5816                           CDL Emerald Logistics Training Services LLC
## 5817                           CDL Emerald Logistics Training Services LLC
## 5818                           CDL Emerald Logistics Training Services LLC
## 5819                                                      Lamar University
## 5820                                                           Culturingua
## 5821                                        Aha Interpreting Solutions LLC
## 5822                                            One World Recovery Network
## 5823                                            One World Recovery Network
## 5824                                            One World Recovery Network
## 5825                                            One World Recovery Network
## 5826                                            One World Recovery Network
## 5827                                            One World Recovery Network
## 5828                                            One World Recovery Network
## 5829                                            One World Recovery Network
## 5830                                            One World Recovery Network
## 5831                                            UHG Apprenticeship Program
## 5832                                         Healthcare Training Institute
## 5833                                         Healthcare Training Institute
## 5834                   Alpha Works Technologies LLC dba Bitwise Industries
## 5835                   Alpha Works Technologies LLC dba Bitwise Industries
## 5836                   Alpha Works Technologies LLC dba Bitwise Industries
## 5837                                                        Apprentice Now
## 5838                                                        Apprentice Now
## 5839                                                        Apprentice Now
## 5840                                                        Apprentice Now
## 5841                                                        Apprentice Now
## 5842                                                        Apprentice Now
## 5843                                                        Apprentice Now
## 5844                                                        Apprentice Now
## 5845                                       Austin Dental Assisting Academy
## 5846                                                            Bombardier
## 5847                                                 Total Cyber Solutions
## 5848                               Help Keep Me Out The Streets Inc HKMOTS
## 5849                               Help Keep Me Out The Streets Inc HKMOTS
## 5850                               Help Keep Me Out The Streets Inc HKMOTS
## 5851 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5852 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5853 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5854 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5855 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5856 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5857 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5858 Knowledge Quest Education Solutions dba Learning Alliance Corporation
## 5859                                      International Culinary Institute
## 5860                                      International Culinary Institute
## 5861                                          HOUSTON PLUMBING AND GAS LLC
## 5862                                           Optimum Skilla Training LLC
## 5863                                                 Pegasus Media Project
## 5864                                                 Pegasus Media Project
## 5865                          Fort Worth Pipe Trades Training Center Trust
## 5866                Independent Electrical Contractors IEC El Paso Chapter
## 5867                                                    Saleen Performance
## 5868                                                    Lomont Molding LLC
## 5869                                                     TASUS Corporation
## 5870                                                     TASUS Corporation
## 5871                                          Empowering the Masssess INC.
## 5872                                          Empowering the Masssess INC.
## 5873                                                        WPConnects LLC
## 5874                                                      TPKR Scientifics
## 5875                                                      TPKR Scientifics
## 5876                                                      TPKR Scientifics
## 5877                                 Texas Academy of Dental Assisting LLC
## 5878                                                    Essential Trucking
## 5879                                        InternatonalCulinary Institute
## 5880                                        InternatonalCulinary Institute
## 5881                            TSCER LLC dba National Technical Institute
## 5882                            TSCER LLC dba National Technical Institute
## 5883                            TSCER LLC dba National Technical Institute
## 5884                            TSCER LLC dba National Technical Institute
## 5885                            TSCER LLC dba National Technical Institute
## 5886                            TSCER LLC dba National Technical Institute
## 5887                                                 Northrop Rice USA Inc
## 5888                                               Coding Clarified TX LLC
## 5889                                                       CDL Rapido Inc.
## 5890                                         Skillpoint Alliance - Midland
## 5891                                         Skillpoint Alliance - Midland
## 5892                                         Skillpoint Alliance - Midland
## 5893                                         Skillpoint Alliance - Midland
## 5894                                          Skillpoint Alliance - Odessa
## 5895                                          Skillpoint Alliance - Odessa
## 5896                                          Skillpoint Alliance - Odessa
## 5897                                          Skillpoint Alliance - Odessa
## 5898                                   American Aeospace Technical Academy
## 5899                                                                  <NA>
##                                                                                                                                                                                                           Program.Name
## 1                                                                                                                                                                               Bilingual Electrical Assistant Program
## 2                                                                                                                                                                                         Bookkeeping/Accounting Clerk
## 3                                                                                                                                                                                  Computer Support Technician Program
## 4                                                                                                                                                                                   Plumbing as a Metal Trades Program
## 5                                                                                                                                                                                                        Truck Driving
## 6                                                                                                                                                                        Truck Driver's Heavy equipment Operator Combo
## 7                                                                                                                                                                           Certificate Information Security Assurance
## 8                                                                                                                                                                                       Computer Forensics Certificate
## 9                                                                                                                                                         Cisco Certified Network Associate (CCNA) Level 1 Certificate
## 10                                                                                                                                                        Cisco Certified Network Associate (CCNA) Level 1 Certificate
## 11                                                                                                                                                                          Information Assurance & Cyber Security AAS
## 12                                                                                                                                                                          Information Assurance & Cyber Security AAS
## 13                                                                                                                                                                                           Network Administrator AAS
## 14                                                                                                                                                                                           Network Administrator AAS
## 15                                                                                                                                                                                    Network Cloud & Architecture AAS
## 16                                                                                                                                                                                    Network Cloud & Architecture AAS
## 17                                                                                                                                                                                           Network Administrator AAS
## 18                                                                                                                                                                                             Computer Programmer AAS
## 19                                                                                                                                                                                          General Office Certificate
## 20                                                                                                                                                                                Administrative Assistant Certificate
## 21                                                                                                                                                                           Logistics and Supply Chain Management AAS
## 22                                                                                                                                                                                        Logistics Management Level 1
## 23                                                                                                                                                                                   Transportation Management Level 1
## 24                                                                                                                                                                                        Warehouse Management Level 1
## 25                                                                                                                                                                                            CCNA Level 1 Certificate
## 26                                                                                                                                                                     Cosmetology Nail Technician Level 1 Certificate
## 27                                                                                                                                                                     Cyber and Digital Forensics Level 1 Certificate
## 28                                                                                                                                                                                Cyber Defense and Operations  A.A.S.
## 29                                                                                                                                                                        Cyber Defense Operations Level 2 Certificate
## 30                                                                                                                                                                                       Network Administrator  A.A.S.
## 31                                                                                                                                                      Industrial Technology  A.A.S. - Instrumentation Specialization
## 32                                                                                                                                                        Industrial Technology  A.A.S. - Manufacturing Specialization
## 33                                                                                                                                           Business Management & Operations - Entrepreneurship Specialization A.A.S.
## 34                                                                                                                                             Business Management & Operations - Entrepreneurship Level 1 Certificate
## 35                                                                                                                                                 Business Management & Operations - Management Specialization A.A.S.
## 36                                                                                                                                   Business Management & Operations - Global Business Management Level 1 Certificate
## 37                                                                                                                                                  Business Management & Operations - Marketing Specialization A.A.S.
## 38                                                                                                                                                    Business Management & Operations - Marketing Level 1 Certificate
## 39                                                                                                                                                             Basic Nursey & Landscape Operations Level 1 Certificate
## 40                                                                                                                                                                        Floral Design Technician Level 1 Certificate
## 41                                                                                                                                                                            Small/Organic Farmer Level 1 Certificate
## 42                                                                                                                                                                         Turfgrass and Golf Course Management A.A.S.
## 43                                                                                                                                                              Turfgrass & Golf Course Management Level 1 Certificate
## 44                                                                                                                                                                   Turf and Landscape Irrigation Level 1 Certificate
## 45                                                                                                                                               Business Management & Operations - Administration Level 1 Certificate
## 46                                                                                                                                                                                      Leadership Level 1 Certificate
## 47                                                                                                                                                                         Entry Level Supervision Level 2 Certificate
## 48                                                                                                                                                                                    Health Care Administrator A.A.S.
## 49                                                                                                                                                                           Landscape and Horticulture Science A.A.S.
## 50                                                                                                                                                              Landscape and Horticulture Science Level 1 Certificate
## 51                                                                                                                                                     Computer and Networking Support  Specialist Level 1 Certificate
## 52                                                                                                                                                     Computer and Networking Support  Specialist Level 2 Certificate
## 53                                                                                                                                                                   Computer and Networking Support Specialist A.A.S.
## 54                                                                                                                                                     Computer and Networking Support  Specialist Level 1 Certificate
## 55                                                                                                                                                     Computer and Networking Support  Specialist Level 2 Certificate
## 56                                                                                                                                                                   Computer and Networking Support Specialist A.A.S.
## 57                                                                                                                                                     Computer and Networking Support  Specialist Level 1 Certificate
## 58                                                                                                                                                     Computer and Networking Support  Specialist Level 2 Certificate
## 59                                                                                                                                                                   Computer and Networking Support Specialist A.A.S.
## 60                                                                                                                                                                                         Network Administrator A.A.S
## 61                                                                                                                                                                                            Nursing: Career Mobility
## 62                                                                                                                                                                                             Nursing: Generic A.A.S.
## 63                                                                                                                                                                                     Administrative Assistant A.A.S.
## 64                                                                                                                                                                           Accounting Technician Level I Certificate
## 65                                                                                                                                                                                        Accounting Technology A.A.S.
## 66                                                                                                                                                                      Information Assurance and Cybersecurity A.A.S.
## 67                                                                                                                                                                      Information Assurance and Cybersecurity A.A.S.
## 68                                                                                                                                                                      Information Assurance and Cybersecurity A.A.S.
## 69                                                                                                                                                                      Information Assurance and Cybersecurity A.A.S.
## 70                                                                                                                                                                                          Network Administrator  AAS
## 71                                                                                                                                                                                          Network Administrator  AAS
## 72                                                                                                                                                                                          Network Administrator  AAS
## 73                                                                                                                                                                                    Computer Support Specialist  AAS
## 74                                                                                                                                                                                    Computer Support Specialist  AAS
## 75                                                                                                                                                                                    Computer Support Specialist  AAS
## 76                                                                                                                                                                                     Secure Software Development AAS
## 77                                                                                                                                                                                     Secure Software Development AAS
## 78                                                                                                                                                                                     Secure Software Development AAS
## 79                                                                                                                                                                                  Professional Truck Driver Training
## 80                                                                                                                                                                              Information Security and Assurance AAS
## 81                                                                                                                                                              Administrative Office Assistant Technology Certificate
## 82                                                                                                                                                                           Histologic Technician Level 2 Certificate
## 83                                                                                                                                                                                            Administrative Assistant
## 84                                                                                                                                                                                Administrative Assistant-Medical AAS
## 85                                                                                                                                                                                     Network Administrator Associate
## 86                                                                                                                                                                              Vocational Nursing Level 2 Certificate
## 87                                                                                                                                                                                           Accounting Technician AAS
## 88                                                                                                                                                                                      Desktop Support Specialist AAS
## 89                                                                                                                                                                                            Medical Office Assistant
## 90                                                                                                                                                                              Vocational Nursing Level 2 Certificate
## 91                                                                                                                                                                                  Structural/Pipe Layout Certificate
## 92                                                                                                                                                                                        Plumber's Helper Certificate
## 93                                                                                                                                                                          Diesel Heavy Equipment Level 1 Certificate
## 94                                                                                                                                                                                               Electrical Trades AAS
## 95                                                                                                                                                                                       Electrical Trades Certificate
## 96                                                                                                                                                                                         Plumbing Trades Certificate
## 97                                                                                                                                                                                Refrigeration Technology Certificate
## 98                                                                                                                                                                           Manual/Semi-Inert Gas Welding Certificate
## 99                                                                                                                                                                                        Refrigeration Technology AAS
## 100                                                                                                                                                                             Air Conditioning & Heating Certificate
## 101                                                                                                                                                                           Air Conditioning and Heating Certificate
## 102                                                                                                                                                                                                        Welding AAS
## 103                                                                                                                                                                                         Automotive Technology  AAS
## 104                                                                                                                                                                                     Bookkeeping Specialist  A.A.S.
## 105                                                                                                                                                                         Business Management and Technology  A.A.S.
## 106                                                                                                                                                                                              Culinary Arts  A.A.S.
## 107                                                                                                                                                                                        Hospitality Management  AAS
## 108                                                                                                                                                            Information Technology Cybersecurity Specialist  A.A.S.
## 109                                                                                                                                                               Information Technology Network Administrator  A.A.S.
## 110                                                                                                                                                                                  Office Systems Technology  A.A.S.
## 111                                                                                                                                                                                       Restaurant Management  A.A.S
## 112                                                                                                                                                                                   Web and Mobile Developer  A.A.S.
## 113                                                                                                                                                                                           Truck Driver Development
## 114                                                                                                                               Educator Preparation Program (Dual Certification in Special Edu. EC 12 with ESL 4 8)
## 115                                                                                                                                             Educator Preparation Program Family and Consumer Sciences -Grades 6-12
## 116                                                                                                                                                                        Educator Preparation Program (Science 7 12)
## 117                                                                                                                                             Educator Preparation Program (Special Education EC 12 or Supplemental)
## 118                                                                                                                                                                   Educator Preparation Program (Core Subjects 4 8)
## 119                                                                                                                                                                 Educator Preparation Program (Health Science 6 12)
## 120                                                                                                                                                                     Educator Preparation Program (Mathematics 4 8)
## 121                                                                                                                                                                    Educator Preparation Program (Mathematics 7 12)
## 122                                                                                                                                                                  Educator Preparation Program (Core Subjects EC 6)
## 123                                                                                                                              Educator Preparation Program (Dual Certification  Special Edu. EC12 w. Bilingual EC6)
## 124                                                                                                                              Educator Preparation Program (Dual Certification in Bilingual Edu. EC 6 with ESL 4 8)
## 125                                                                                                                                                                         Educator Preparation Program (Science 4 8)
## 126                                                                                                                                                                                                Welding Certificate
## 127                                                                                                                                                                                  Welder Training   Adv ARC Welding
## 128                                                                                                                                                                                    Medical Assistant Certification
## 129                                                                                                                                                                        Welder Training   Adv TIG Stainless Welding
## 130                                                                                                                                                                            Certified Nursing Assistant Certificate
## 131                                                                                                                                                                                            Introduction to Welding
## 132                                                                                                                                                                                  Welder Training   Adv MIG Welding
## 133                                                                                                                                                                         Welder Training   Adv TIG Aluminum Welding
## 134                                                                                                                                                                                         Network Support Specialist
## 135                                                                                                                                                     Welder Certification   FCAW 1G 2G 3G & 4G groove 1&quot  plate
## 136                                                                                                                                                                                     Welder Training   Pipe Welding
## 137                                                                                                                                                                               Welder Training   Structural Welding
## 138                                                                                                                                                                            Certified Nursing Assistant Certificate
## 139                                                                                                                                                                            Certified Nursing Assistant Certificate
## 140                                                                                                                                                                                    Medical Assistant Certification
## 141                                                                                                                                                                           Office Administration Assistant Training
## 142                                                                                                                                                                                                Pharmacy Technician
## 143                                                                                                                                                                                               Medical Front Office
## 144                                                                                                                                                                Welder Certification   SMAW 3G & 4G 1/8&quot  combo
## 145                                                                                                                                                                Welder Certification   FCAW 3G & 4G 1/8&quot  combo
## 146                                                                                                                                 Welder Certification   FCAW 1G 2G 3G & 4G groove 3/8&quot  plate 1/4&quot  backing
## 147                                                                                                                                                                  Welder Certification   FCAW 3G & 4G 1&quot  combo
## 148                                                                                                                          Welder Certification  SMAW 1G 2G 3G & 4G 1/8&quot  groove 1&quot  plate 1/4&quot  backing
## 149                                                                                                                                                                                                DC AC Motor Control
## 150                                                                                                                                                                                        Electricity DC Fundamentals
## 151                                                                                                                                  Introduction to Programmable Logic Controller - was Introduction to Allen Bradley
## 152                                                                                                                                                                                                               OSHA
## 153                                                                                                                                                                                      Security/System Administrator
## 154                                                                                                                                                                         Team Assembler Certification 4 Maintenance
## 155                                                                                                                                                                                         Tech Mathematics Blueprint
## 156                                                                                                                                                                                 CDL Professional Truck Driver (CE)
## 157                                                                                                                                                                                           Heavy Equipment Operator
## 158                                                                                                                                                                                                   Mechanical Drive
## 159                                                                                                                                                                                             National Electric Code
## 160                                                                                                                                                                            Team Assembler Certification 1   Safety
## 161                                                                                                                                                                           Team Assembler Certification 2   Quality
## 162                                                                                                                                                                            Certified Nursing Assistant Certificate
## 163                                                                                                                                                                                 Integrated Systems Troubleshooting
## 164                                                                                                                                                                                         Network Support Specialist
## 165                                                                                                                                                                       Team Assembler Certification 3 Manufacturing
## 166                                                                                                                                                                                           Electromechanical Device
## 167                                                                                                                                                                                               IT/Technical Support
## 168                                                                                                                                                                                                     Team Assembler
## 169                                                                                                                                                                            Certified Nursing Assistant Certificate
## 170                                                                                                                                                                                                               OSHA
## 171                                                                                                                                                                                         Tech Mathematics Blueprint
## 172                                                                                                                                                                                        Electricity DC Fundamentals
## 173                                                                                                                                                                                                DC AC Motor Control
## 174                                                                                                                                                                                                   Mechanical Drive
## 175                                                                                                                                                                                           Electromechanical Device
## 176                                                                                                                                                                      Introduction to Programmable Logic Controller
## 177                                                                                                                                                                                 Integrated Systems Troubleshooting
## 178                                                                                                                                                                                        Electricity AC Fundamentals
## 179                                                                                                                                                                                                        Fluid Power
## 180                                                                                                                                                                                        Electricity AC Fundamentals
## 181                                                                                                                                                                                                        Fluid Power
## 182                                                                                                                                   Introduction to Programmable Logic Controller -was Introduction to Allen Bradley
## 183                                                                                                                                                                             Educator Preparation Program Art EC-12
## 184                                                                                                                                                                 Educator Preparation Program Core Subjects 4-8/ESL
## 185                                                                                                                             Educator Preparation Program Core Subjects 4-8/Special Education Supplemental or EC-12
## 186                                                                                                                                                                Educator Preparation Program Core Subjects EC-6/ESL
## 187                                                                                                                            Educator Preparation Program Core Subjects EC-6/Special Education Supplemental or EC-12
## 188                                                                                                                                         Educator Preparation Program English Language Arts and Reading -Grades 4-8
## 189                                                                                                                                        Educator Preparation Program English Language Arts and Reading -Grades 7-12
## 190                                                                                                                          Educator Preparation Program English Language Arts and Reading/Social Studies -Grades 4-8
## 191                                                                                                                                                       Educator Preparation Program Mathematics/Science -Grades 4-8
## 192                                                                                                                                                            Educator Preparation Program Social Studies -Grades 4-8
## 193                                                                                                                                           Educator Preparation Program Trade and Industrial Education -Grades 6-12
## 194                                                                                                                                                                                 CDL Professional Truck Driver (CE)
## 195                                                                                                                                                                                 CDL Professional Truck Driver (CE)
## 196                                                                                                                                                                                    Medical Assistant Certification
## 197                                                                                                                                                                                      Truck Driver Training Program
## 198                                                                                                                                                                                        Combination Welding Program
## 199                                                                                                                                                                                                         Accounting
## 200                                                                                                                                                                              MEDICAL BILLING and CODING TECHNICIAN
## 201                                                                                                                                                                                                         ACCOUNTING
## 202                                                                                                                                                                                                  MEDICAL ASSISTANT
## 203                                                                                                                                                                                    MEDICAL ADMINISTATIVE ASSISTANT
## 204                                                                                                                                                                         Computer and Information System Management
## 205                                                                                                                                                                            Computer Network Engineer Administrator
## 206                                                                                                                                                                             MEDICAL ADMINISTATIVE ASSISTANT ONLINE
## 207                                                                                                                                                                      MEDICAL BILLING and CODING TECHNICIAN -ONLINE
## 208                                                                                                                                                                                                   NURSING ASSITANT
## 209                                                                                                                                                                         Computer and Information System Management
## 210                                                                                                                                                                                    MEDICAL ADMINISTATIVE ASSISTANT
## 211                                                                                                                                                                                                         ACCOUNTING
## 212                                                                                                                                                                              MEDICAL BILLING and CODING TECHNICIAN
## 213                                                                                                                                                                                                  MEDICAL ASSISTANT
## 214                                                                                                                                                                            Computer Network Engineer Administrator
## 215                                                                                                                                                                         Computer and Information System Management
## 216                                                                                                                                                                                    MEDICAL ADMINISTATIVE ASSISTANT
## 217                                                                                                                                                                             MEDICAL ADMINISTATIVE ASSISTANT ONLINE
## 218                                                                                                                                                                                                  MEDICAL ASSISTANT
## 219                                                                                                                                                                            Computer Network Engineer Administrator
## 220                                                                                                                                                                              MEDICAL BILLING and CODING TECHNICIAN
## 221                                                                                                                                                                      MEDICAL BILLING and CODING TECHNICIAN -ONLINE
## 222                                                                                                                                                                                                    MEDICATION AIDE
## 223                                                                                                                                                                                           CLASS-A CDL TRUCK DRIVER
## 224                                                                                                                                                                                           CLASS-A CDL TRUCK DRIVER
## 225                                                                                                                                                                                           MEDICAL ASSISTANT ONLINE
## 226                                                                                                                                                                     Computer Network Engineer Administrator Online
## 227                                                                                                                                                                                                  ACCOUNTING ONLINE
## 228                                                                                                                                                                                     Associate Degree Nursing (ADN)
## 229                                                                                                                             Associate of Applied Science (AAS) Computer Information Technology Computer Networking
## 230                                                                                                                                                                                    Respiratory Care Degree Program
## 231                                                                                                                                                                                     Vocational Nursing Certificate
## 232                                                                                                                                                                                               Paralegal AAS Degree
## 233                                                                                                                                                                                      Pipe Fitting 160 Hour Program
## 234                                                                                                                                                                                         Pipe Fitting NCCER Level 2
## 235                                                                                                                                                                                         Pipe Fitting NCCER Level 3
## 236                                                                                                                                                                                          Process Technology Degree
## 237                                                                                                                                                                                   Commercial Truck Driving Program
## 238                                                                                                                                                                               Welding Technology Certificate CERT1
## 239                                                                                                                                                                               Welding Technology Certificate CERT2
## 240                                                                                                                                                                                          Welding Technology A.A.S.
## 241                                                                                                                                                                                                      CNC Machinist
## 242                                                                                                                                               Industrial Technology AAS Heating Air Conditioning and Refrigeration
## 243                                                                                                                                                    Industrial Technology Technician Certificate Wind Energy Option
## 244                                                                                                                                                        Industrial Technology Helper Certificate Wind Energy Option
## 245                                                                                                                                                                                          Automotive Technology AAS
## 246                                                                                                                                                              Automotive Technology Advanced Automotive Certificate
## 247                                                                                                                     Industrial Technology Technician Certificate Heating Air Conditioning and Refrigeration Option
## 248                                                                                                                                                                                Kritser Diesel Advanced Certificate
## 249                                                                                                                                                                            Welding Technology Advanced Certificate
## 250                                                                                                                                                                                              Truck Driving Academy
## 251                                                                                                                                                                                   Welding Fundamentals Certificate
## 252                                                                                                                                                        Aviation Maintenance Technology Aerospace Manufacturing AAS
## 253                                                                                                                                                                      Fire Protection Basic Firefighter Certificate
## 254                                                                                                                                                                                              Medical Assisting AAS
## 255                                                                                                                                                                            Certified Nursing Assistant Certificate
## 256                                                                                                                                                                                              Truck Driving Academy
## 257                                                                                                                                         Industrial Technology Technician Certificate Instrument/Electronics Option
## 258                                                                                                                                                        Industrial Technology Helper Certificate Wind Energy Option
## 259                                                                                                                                                               Industrial Technology AAS Instrument and Electronics
## 260                                                                                                                                                    Industrial Technology Technician Certificate Wind Energy Option
## 261                                                                                                                                                                            Industrial Technology AAS   Wind Energy
## 262                                                                                                                                                                                              Truck Driving Academy
## 263                                                                                                                                                                                   Welding Fundamentals Certificate
## 264                                                                                                                                                                            Welding Technology Advanced Certificate
## 265                                                                                                                                                                            Certified Nursing Assistant Certificate
## 266                                                                                                                                                                                Aviation Maintenance Technology AAS
## 267                                                                                                                                                      Aviation Maintenance Technology Airframe Mechanic Certificate
## 268                                                                                                                                                    Aviation Maintenance Technology Powerplant Mechanic Certificate
## 269                                                                                                                                                Aviation Maintenance Technology Aerospace Manufacturing Certificate
## 270                                                                                                                                                                                   Computer Information Systems AAS
## 271                                                                                                                                                                         CIS   Web Developer Specialist Certificate
## 272                                                                                                                                                                                 Management Business Management AAS
## 273                                                                                                                                                                                  Medical Laboratory Technology AAS
## 274                                                                                                                                                                                            Business Technology AAS
## 275                                                                                                                                                                       Business Technology Professional Certificate
## 276                                                                                                                                                                            Business Technology Systems Certificate
## 277                                                                                                                                                                             Computer Networking/Cyber Security AAS
## 278                                                                                                                                         Industrial Technology Technician Certificate Instrument/Electronics Option
## 279                                                                                                                                                                       Criminal Justice Law Enforcement Certificate
## 280                                                                                                                                                                             Nursing Vocational Nursing Certificate
## 281                                                                                                                                                                                                   Respiratory Care
## 282                                                                                                                                                                                                Criminal Justice AS
## 283                                                                                                                                                                                                    Radiography AAS
## 284                                                                                                                                                                               Nursing Associate Degree Nursing AAS
## 285                                                                                                                                                                            Certified Nursing Assistant Certificate
## 286                                                                                                                                                                                   Physical Therapist Assistant AAS
## 287                                                                                                                                                                                              Radiation Therapy AAS
## 288                                                                                                                                                                                   Logistics Training Truck Driving
## 289                                                                                                                                                                                   Logistics Training Truck Driving
## 290                                                                                                                                                                                   Logistics Training Truck Driving
## 291                                                                                                                                                                                            Welding Technology  AAS
## 292                                                                                                                                                                                            Welding Technology  AAS
## 293                                                                                                                                                                                                         Phlebotomy
## 294                                                                                                                                                                                           Surgical Technology  AAS
## 295                                                                                                                                                                                          Machining Technology  AAS
## 296                                                                                                                                                                        Industrial Technology AAS Electromechanical
## 297                                                                                                                                                               Industrial Technology AAS Instrument and Electronics
## 298                                                                                                                                                  Industrial Technology Helper Certificate Electromechanical Option
## 299                                                                                                                                                                                 Machining Fundamentals Certificate
## 300                                                                                                                         Industrial Technology Helper Certificate Heating Air Conditioning and Refrigeration Option
## 301                                                                                                                                     Industrial Technology Helper Certificate Insrumentation and Electronics Option
## 302                                                                                                                                             Industrial Technology Technician Certificate  Electromechanical Option
## 303                                                                                                                                                                                           Mental Health Technician
## 304                                                                                                                                                          Automotive Diesel/Technology Basic Automotive Certificate
## 305                                                                                                                                                          Automotive Technology Intermediate Automotive Certificate
## 306                                                                                                                                                                            Kritser Diesel Intermediate Certificate
## 307                                                                                                                                                                                                 Kritser Diesel AAS
## 308                                                                                                                                                                      Fire Protection Basic Firefighter Certificate
## 309                                                                                                                                                               Fire Protection Intermediate Firefighter Certificate
## 310                                                                                                                                                                   Fire Protection Advanced Firefighter Certificate
## 311                                                                                                                                                                                                  Forklift Operator
## 312                                                                                                                                                                          Introduction to Safety and Health/OSHA 10
## 313                                                                                                                                                                                         Management Development AAS
## 314                                                                                                                                                           Management Development Certificate of Completion Level 1
## 315                                                                                                                                                                                                 Vocational Nursing
## 316                                                                                                                                                                          Automotive Technology Level 1 Certificate
## 317                                                                                                                                                                                  Basic Peace Officer Certification
## 318                                                                                                                                                                                       Certified Nurse Aide Program
## 319                                                                                                                                                                                   Child and Family Development AAS
## 320                                                                                                                                                    Child and Family Development Administrative Level 1 Certificate
## 321                                                                                                                                                                   Child and Family Development Level 1 Certificate
## 322                                                                                                                                                                                   Commercial Truck Driver Training
## 323                                                                                                                                                                                               Criminal Justice AAS
## 324                                                                                                                                                                                  Criminal Justice Core Certificate
## 325                                                                                                                                                                              Diesel Technology Level 1 Certificate
## 326                                                                                                                                                    Electromechanical Technology  Electrician Specialty Certificate
## 327                                                                                                                                                  Electromechanical Technology  Electrical Technician Specialty AAS
## 328                                                                                                                                                             Electromechanical Technology Fluid Power Specialty AAS
## 329                                                                                                                                              Manufacturing Skill Standards Council Certified Production Technician
## 330                                                                                                                                                                                           Nursing Associate Degree
## 331                                                                                                                                                           Paralegal (Legal Assistant) Associate in Applied Science
## 332                                                                                                                                                                                                 Vocational Nursing
## 333                                                                                                                                                                                             Welding Technology AAS
## 334                                                                                                                                                              Welding Technology Level 1 Certificate   Intermediate
## 335                                                                                                                                                                      Welding Technology Level 1 Certificate  Basic
## 336                                                                                                                                                                  Welding Technology Level 2 Certificate   Advanced
## 337                                                                                                                                                                                           Heavy Equipment Operator
## 338                                                                                                                                                                            LVN to RN Transition   Associate Degree
## 339                                                                                                                                                                                        Machine Tool Technology AAS
## 340                                                                                                                            Machine Tool Technology Computer Numerical Control Machine Operator Level 1 Certificate
## 341                                                                                                                                                       Machine Tool Technology Machine Operator Level 1 Certificate
## 342                                                                                                                                                                 Electronics Technology   Networking Speciality AAS
## 343                                                                                                                                 Electromechanical Technology HVAC Commercial & Refrigeration Specialty Certificate
## 344                                                                                                                                                Electromechanical Technology HVAC Residential Specialty Certificate
## 345                                                                                                                                                           Electromechanical Technology Process Control Certificate
## 346                                                                                                                                            Electronics Technology   Basic Networking Specialty Level 1 Certificate
## 347                                                                                                                                                  Electronics Technology   Computer Maintenance Level 1 Certificate
## 348                                                                                                                                                 Electronics Technology   Networking Specialist Level 1 Certificate
## 349                                                                                                                                                                                       Certified Nurse Aide Program
## 350                                                                                                                                                                                                  Medical Assistant
## 351                                                                                                                                                                                       Certified Nurse Aide Program
## 352                                                                                                                                                                                              Radiologic Technology
## 353                                                                                                                                                                                  Diagnostic Medical Sonography AAS
## 354                                                                                                                                                                                            Respiratory Therapy AAS
## 355                                                                                                                                                                                                  EMS Paramedic AAS
## 356                                                                                                                                                                                            Surgical Technology AAS
## 357                                                                                                                                                                                            Pharmacy Technology AAS
## 358                                                                                                                                                                                                  Forklift Operator
## 359                                                                                                                                                                          Introduction to Safety and Health/OSHA 10
## 360                                                                                                                                                                                           Heavy Equipment Operator
## 361                                                                                                                                              Manufacturing Skill Standards Council Certified Production Technician
## 362                                                                                                                                                                                  Basic Peace Officer Certification
## 363                                                                                                                                                                                   Commercial Truck Driver Training
## 364                                                                                                                                                                                       Certified Nurse Aide Program
## 365                                                                                                                                                                          Introduction to Safety and Health/OSHA 10
## 366                                                                                                                                                                                 Drafting and Design Technology AAS
## 367                                                                                                                                                                 Drafting and Design Technology Level 1 Certificate
## 368                                                                                                                                                                                              Diesel Technology AAS
## 369                                                                                                                                                                                                  Medical Assistant
## 370                                                                                                                                                                                                  Medical Assistant
## 371                                                                                                                                                                                                  Forklift Operator
## 372                                                                                                                                                                                           Heavy Equipment Operator
## 373                                                                                                                                                                                       Certified Nurse Aide Program
## 374                                                                                                                                                                        Diesel Technology Basic Level 1 Certificate
## 375                                                                                                                                                 Electronics Technology   Electronics Assembler Level 1 Certificate
## 376                                                                                                                                                                                       Business and Supervision AAS
## 377                                                                                                                                                                       Business and Supervision Level 1 Certificate
## 378                                                                                                                                                                                                Bachelor of Nursing
## 379                                                                                                                                                                                          280 Hour Specific Process
## 380                                                                                                                                                                                                   400 Hour Welding
## 381                                                                                                                                                                                          900 Hour Advanced Welding
## 382                                                                                                                                                                                   Administrative Assistant Program
## 383                                                                                                                                                               Heating Ventilation Air Conditioning & Refrigeration
## 384                                                                                                                                                                                          Paralegal/Legal Assistant
## 385                                                                                                                                                                                          Medical Office Specialist
## 386                                                                                                                                                                                          Nursing Assistant Program
## 387                                                                                                                                                                                                  Medical Assistant
## 388                                                                                                                                                                                                 Vocational Nursing
## 389                                                                                                                                                                    Fundamentals of Computer and Network Technician
## 390                                                                                                                                                                                         Network Support Specialist
## 391                                                                                                                                                                                              PC Support Specialist
## 392                                                                                                                                                                    Fundamentals of Computer Information Specialist
## 393                                                                                                                                                                                      Health Information Specialist
## 394                                                                                                                                                                                       Office Accounting Specialist
## 395                                                                                                                                                                                               Office Administrator
## 396                                                                                                                                                                                    Computer and Network Technician
## 397                                                                                                                                                                                    Computer Information Specialist
## 398                                                                                                                                                                                                Pharmacy Technician
## 399                                                                                                                                                                                         Medical Records Specialist
## 400                                                                                                                                                                                           Medical Coding & Billing
## 401                                                                                                                                                                                         Professional Truck Driving
## 402                                                                                                                                                                                      Professional Truck Driver 100
## 403                                                                                                                                                                                      Professional Truck Driver 100
## 404                                                                                                                                                                         Professional Truck Driver 100 - (Weekends)
## 405                                                                                                                                                                             Advanced Electrical Technician Program
## 406                                                                                                                                                                          Entry Level Electrical Technician Program
## 407                                                                                                                                                                                                  Medical Assistant
## 408                                                                                                                               Residential and Commercial Heating and Air Conditioning and Commercial Refrigeration
## 409                                                                                                                           Residential and Commercial Heating and Air Conditioning and Commercial Refrigeration EPA
## 410                                                                                                                                                               Residential Heating Ventilation and Air Conditioning
## 411                                                                                                                                                           Residential Heating Ventilation and Air Conditioning EPA
## 412                                                                                                                                                                                Health Information Technology   AAS
## 413                                                                                                                                            Re Entry Nursing Update (Continuing Education Nursing Refresher Course)
## 414                                                                                                                                                                                 Advanced EMT Level I   Certificate
## 415                                                                                                                                                                                    Nursing Traditional Track   AAS
## 416                                                                                                                                                                  Vascular Technology   Enhanced Skills Certificate
## 417                                                                                                                                                                                     Accounting Clerk   Certificate
## 418                                                                                                                                                                    Accounting Specialist Occupational Skills Award
## 419                                                                                                                                                                                        Accounting Technician   AAS
## 420                                                                                                                                                                             Administrative Assistant   Certificate
## 421                                                                                                                                                                 Magnetic Resonance Imaging Radiology   Certificate
## 422                                                                                                                                                                                Medical Laboratory Technology   AAS
## 423                                                                                                                                                                                       Nursing Mobility Track   AAS
## 424                                                                                                                                                                                          Surgical Technology   AAS
## 425                                                                                                                                                                                  Surgical Technology   Certificate
## 426                                                                                                                                                                                   Utility Lineworker   Certificate
## 427                                                                                                                                                                                                     Dental Hygiene
## 428                                                                                                                                                                               Diagnostic Cardiovascular Sonography
## 429                                                                                                                                                                                      Diagnostic Medical Sonography
## 430                                                                                                                                                                           Pharmacy Technician Level 1  Certificate
## 431                                                                                                                                                                                       Physical Therapist Assistant
## 432                                                                                                                                                                                                          Radiology
## 433                                                                                                                                                                                     Vocational Nursing Certificate
## 434                                                                                                                                                                                             Truck Driving Training
## 435                                                                                                                                                                                    Certified Production Technician
## 436                                                                                                                                                              INEW 2073 VNwarevSphere Install Configure Manage V6.x
## 437                                                                                                                                                                                     Phlebotomy Technician Training
## 438                                                                                                                                                                                         Applied Project Management
## 439                                                                                                                                                                                             CPMT 1077 LPIC 1 Linux
## 440                                                                                                                                                                                        ITCC 9002 Cisco CCNA Series
## 441                                                                                                                                                                                                          Security+
## 442                                                                                                                                                    Security Certification Preparation for CISSP CASP SSCO and More
## 443                                                                                                                                                                                    Web Software Developer Bootcamp
## 444                                                                                                                                                              MCSA: SQL Server   Querying Microsoft SQL Server 2012
## 445                                                                                                                                                                                                    CEDental Assist
## 446                                                                                                                                                                                                 CEDental Assistant
## 447                                                                                                                                                                                               Certified Nurse Aide
## 448                                                                                                                                                                                                  Medical Assisting
## 449                                                                                                                                                                              Medical Billing and Coding Specialist
## 450                                                                                                                                                                                             Medical Office Support
## 451                                                                                                                                                                                                       HVAC Level 1
## 452                                                                                                                                                                        INEW 1079 AWS Solutions Architect Associate
## 453                                                                                                                                                                                    Certified Production Technician
## 454                                                                                                                                                                                                               HVAC
## 455                                                                                                                                                                                                               HVAC
## 456                                                                                                                                                                                             Truck Driving Training
## 457                                                                                                                                                                             Computer Programming C++   Certificate
## 458                                                                                                                                                                      Computer Programming Java Track   Certificate
## 459                                                                                                                                                    Local Area Network Systems Network Administration   Certificate
## 460                                                                                                                                                            Computer Programming Web Programing Specialization  AAS
## 461                                                                                                                                                           Information Technology Applications Specialization   AAS
## 462                                                                                                                                                     Information Technology User and Computer Support   Certificate
## 463                                                                                                                                              Information Technology User and Computer Support Specialization   AAS
## 464                                                                                                                                                            Local Area Network Systems Network Administration   AAS
## 465                                                                                                                                                             Computer Information Technology Database   Certificate
## 466                                                                                                                                                                Computer Programming   Software Testing Certificate
## 467                                                                                                                                                         Computer Programming   Software Testing Specialization AAS
## 468                                                                                                                                                                                               Intermediate Welding
## 469                                                                                                                                                                                            Introduction to Welding
## 470                                                                                                                                                Heating Air Conditioning and Refrigeration Technology   Certificate
## 471                                                                                                                                                                                        Automotive Technology   AAS
## 472                                                                                                                                                                                           Basic Automotive Level 1
## 473                                                                                                                                                        Heating Air Conditioning and Refrigeration Technology   AAS
## 474                                                                                                                                                                                           Administrative Assistant
## 475                                                                                                                                                                               Basic Automotive Level 1 Certificate
## 476                                                                                                                                                                                      Accounting/Bookkeeping Series
## 477                                                                                                                                                                                                               HVAC
## 478                                                                                                                                                                                                   Plumbing Level 1
## 479                                                                                                                                                                                            Introduction to Welding
## 480                                                                                                                                                                                            Introduction to Welding
## 481                                                                                                                                                                                                               HVAC
## 482                                                                                                                                                                                         Applied Project Management
## 483                                                                                                                                                                                      Accounting Bookkeeping Series
## 484                                                                                                                                                                                                               HVAC
## 485                                                                                                                                                                                         Applied Project Management
## 486                                                                                                                                                                                      Accounting Bookkeeping Series
## 487                                                                                                                                                                                  Alternative Teacher Certification
## 488                                                                                                                                                                                                               HVAC
## 489                                                                                                                                                                                                         Lineworker
## 490                                                                                                                                                                                                               HVAC
## 491                                                                                                                                                                                Introduction & Intermediate Welding
## 492                                                                                                                                                                                Introduction & Intermediate Welding
## 493                                                                                                                                                                                                               HVAC
## 494                                                                                                                                                                                                               HVAC
## 495                                                                                                                                                                                Introduction & Intermediate Welding
## 496                                                                                                                                                                                                   Intro to Welding
## 497                                                                                                                                                                                                           Plumbing
## 498                                                                                                                                                                                            Basic Electrical Wiring
## 499                                                                                                                                                                                            Basic Electrical Wiring
## 500                                                                                                                                                                                            Basic Electrical Wiring
## 501                                                                                                                                                                                               Certified Nurse Aide
## 502                                                                                                                                                                                           A+ Practical Application
## 503                                                                                                                                                                                               Certified Nurse Aide
## 504                                                                                                                                                                                                          Network +
## 505                                                                                                                                                                                     Phlebotomy Technician Training
## 506                                                                                                                                                                                            Patient Care Technician
## 507                                                                                                                                                                                                CE Dental Assistant
## 508                                                                                                                                                                                               Certified Nurse Aide
## 509                                                                                                                                                                                                  Medical Assisting
## 510                                                                                                                                                                                      Sterile Processing Technician
## 511                                                                                                                                                                                                LVN Nurse Refresher
## 512                                                                                                                                                                                Medical Billing & Coding Specialist
## 513                                                                                                                                                                                                          Network +
## 514                                                                                                                                                                                             Teachers Certification
## 515                                                                                                                                                                                                      A+ Essentials
## 516                                                                                                                                                                                             Medical Office Support
## 517                                                                                                                                                                                                       A+ Practical
## 518                                                                                                                                                                                      Accounting/Bookkeeping Series
## 519                                                                                                                                                                                           Administrative Assistant
## 520                                                                                                                                                                                                         CISCO CCNA
## 521                                                                                                                                                                                           Administrative Assistant
## 522                                                                                                                                                                                                  Medical Assisting
## 523                                                                                                                                                                                Introduction & Intermediate Welding
## 524                                                                                                                                                                                                           Plumbing
## 525                                                                                                                                                                                Introduction & Intermediate Welding
## 526                                                                                                                                                                                                           Plumbing
## 527                                                                                                                                                                                                           Plumbing
## 528                                                                                                                                                                                Introduction & Intermediate Welding
## 529                                                                                                                                                                                                               HVAC
## 530                                                                                                                                                                                Introduction & Intermediate Welding
## 531                                                                                                                                                                                                           Plumbing
## 532                                                                                                                                                                                Introduction & Intermediate Welding
## 533                                                                                                                                                                                                               HVAC
## 534                                                                                                                                                                                                           Plumbing
## 535                                                                                                                                                                                Introduction & Intermediate Welding
## 536                                                                                                                                                                                                           Plumbing
## 537                                                                                                                                                                                                               HVAC
## 538                                                                                                                                                                                                           Plumbing
## 539                                                                                                                                                                                                           Plumbing
## 540                                                                                                                                                                                Introduction & Intermediate Welding
## 541                                                                                                                                                                                                               HVAC
## 542                                                                                                                                                                                                      A+ Essentials
## 543                                                                                                                                                                                           Cybersecurity Essentials
## 544                                                                                                                                                                                           Administrative Assistant
## 545                                                                                                                                                                                   Introduction to Managing Project
## 546                                                                                                                                                                                      Accounting/Bookkeeping Series
## 547                                                                                                                                                                                                      A+ Essentials
## 548                                                                                                                                                                                           A+ Practical Application
## 549                                                                                                                                                                                           Cybersecurity Essentials
## 550                                                                                                                                                                                   Introduction to Managing Project
## 551                                                                                                                                                                                           Administrative Assistant
## 552                                                                                                                                                                                                 PMP/CAPM Exam Prep
## 553                                                                                                                                                                                           Cybersecurity Essentials
## 554                                                                                                                                                                                      Accounting/Bookkeeping Series
## 555                                                                                                                                                                                                 PMP/CAPM Exam Prep
## 556                                                                                                                                                                                    Web Software Developer Bootcamp
## 557                                                                                                                                                                           Automotive Service Technician & Mechanic
## 558                                                                                                                                                                                      Certified Nurse Aide Training
## 559                                                                                                                                                                                                 Vocational Nursing
## 560                                                                                                                                                                                   Nondestructive Testing Program A
## 561                                                                                                                                                                                   Nondestructive Testing Program B
## 562                                                                                                                                                                     Professional Commercial Truck Driver - Class A
## 563                                                                                                                                                                                               Machining Technology
## 564                                                                                                                                                                                                 Welding Technology
## 565                                                                                                                                                                                     Vocational Nursing Certificate
## 566                                                                                                                                                                                        Welding Certificate Level 2
## 567                                                                                                                                                                                             Welding Technology AAS
## 568                                                                                                                                                                           Information Technology Administrator AAS
## 569                                                                                                                                                                                              LVN Transition Option
## 570                                                                                                                                                                                                Pharmacy Technician
## 571                                                                                                                                                                                         Pharmacy Technician Online
## 572                                                                                                                                                                                     Vocational Nursing Certificate
## 573                                                                                                                                                                                                 Welding Technology
## 574                                                                                                                                                                       Biotechnology Laboratory Sciences AAS Degree
## 575                                                                                                                                                                                  Health Information Technology AAS
## 576                                                                                                                                                                                          Medical Office AAS Degree
## 577                                                                                                                                                                                             Facilities Maintenance
## 578                                                                                                                                                                              Basic Peace Officer Academy   Level 1
## 579                                                                                                                                                                                                           Plumbing
## 580                                                                                                                                                                                Basic Welding Certificate   Level 1
## 581                                                                                                                                                                            Physical Therapist Assistant AAS Degree
## 582                                                                                                                                                                                              Accounting AAS Degree
## 583                                                                                                                                                                         Business Administration and Management AAS
## 584                                                                                                                                                                          Accounting Technology Certificate Level 2
## 585                                                                                                                                                                                      Small Business Management AAS
## 586                                                                                                                                                                      Small Business Management Certificate Level 2
## 587                                                                                                                                                                    Medical Office Specialist Certificate   Level 2
## 588                                                                                                                                                                      Office Administration Professional AAS Degree
## 589                                                                                                                                                                         Hospitality Management Certificate Level 1
## 590                                                                                                                                                                            Software Specialist Certificate Level 2
## 591                                                                                                                                                               Office Administration Specialist Certificate Level 2
## 592                                                                                                                                                                                           Associate Degree Nursing
## 593                                                                                                                                                                            Physical Therapist Assistant AAS Degree
## 594                                                                                                                                                                                     Vocational Nursing Certificate
## 595                                                                                                                                                                                              LVN Transition Option
## 596                                                                                                                                                                                             Facilities Maintenance
## 597                                                                                                                                                                                        Welding Certificate Level 2
## 598                                                                                                                                                                                             Welding Technology AAS
## 599                                                                                                                                                                                          Professional Truck Driver
## 600                                                                                                                                                                                           HVAC Technician Training
## 601                                                                                                                                                                            Welding Technology Advanced Certificate
## 602                                                                                                                                             Heating Air Conditioning and Refrigeration Technology Associate Degree
## 603                                                                                                                                                                                Process Technology Associate Degree
## 604                                                                                                                                                                                        Licensed Vocational Nursing
## 605                                                                                                                                                                               Welding Technology Basic Certificate
## 606                                                                                                                                                                   Instrumentation and Electrical (I&E) Certificate
## 607                                                                                                                    Heating Air Conditioning and Refrigeration Technology Advanced Certificate Commercial Specialty
## 608                                                                                                                   Heating Air Conditioning and Refrigeration Technology Advanced Certificate Residential Specialty
## 609                                                                                                                                                                               Registered Nursing (RN) - AAS Degree
## 610                                                                                                                                                                                       Basic Electrical Certificate
## 611                                                                                                                                                                                      Basic Pipefitting Certificate
## 612                                                                                                                                            Heating Air Conditioning and Refrigeration Technology Basic Certificate
## 613                                                                                                                                                                        Industrial Electrician Advanced Certificate
## 614                                                                                                                                                                               Registered Nursing (LVN to RN Track)
## 615                                                                                                                                                         Instrumentation Technology Associate of Applied Technology
## 616                                                                                                                                                                 Welding Technology Associate of Applied Technology
## 617                                                                                                                                                              Millwright Technology Associate of Applied Technology
## 618                                                                                                                                                                                       Diesel Truck Driver Training
## 619                                                                                                                                                                                         Medical Billing and Coding
## 620                                                                                                                                                                                            Construction Technology
## 621                                                                                                                                                                                Introduction to Construction Trades
## 622                                                                                                                                                                                                  Medical Assistant
## 623                                                                                                                                                                                            Patient Care Technician
## 624                                                                                                                                                                                                Electrician Level I
## 625                                                                                                                                                                                 NCT - Non-Certification Technician
## 626                                                                                                                                                                                           A+ Certification Traning
## 627                                                                                                                                                                                       Advance Welding Professional
## 628                                                                                                                                                              Air Conditioning Heating and Refrigeration Technician
## 629                                                                                                                                                                                         Cisco Networking Associate
## 630                                                                                                                                                                                              Network Administrator
## 631                                                                                                                                                                                         Clinical Medical Assistant
## 632                                                                                                                                                                                Computer Network Support Specialist
## 633                                                                                                                                                                                        Computer Support Specialist
## 634                                                                                                                                                                                                    Nurse Assistant
## 635                                                                                                                                                                                            Patient Care Technician
## 636                                                                                                                                                                                              Phlebotomy Technician
## 637                                                                                                                                                                                            Business and Accounting
## 638                                                                                                                                                                                Computer and Network Administration
## 639                                                                                                                                                                                Medical Billing & Coding Specialist
## 640                                                                                                                                                             Medical Assisting With Nutrition And Weight Management
## 641                                                                                                                                                                                   Pharmacy Tech And Lab Procedures
## 642                                                                                                                                                                                Computer and Network Administration
## 643                                                                                                                                                                                Medical Billing & Coding Specialist
## 644                                                                                                                                                             Medical Assisting with Nutrition and Weight Management
## 645                                                                                                                                                                                     Pharmacy Tech & Lab Procedures
## 646                                                                                                                                                                    Cloud Technology Administration (Tracks IIIIII)
## 647                                                                                                                                                                  Computer & Network Administration (Tracks IIIIII)
## 648                                                                                                                                                                    Cloud Technology Administration (Tracks IIIIII)
## 649                                                                                                                                                                                            Paralegal (Certificate)
## 650                                                                                                                                                                                        Customer Service Management
## 651                                                                                                                                                                 Medical Secretary/Medical Administrative Assistant
## 652                                                                                                                                                                                                  Office Specialist
## 653                                                                                                                                                                                                Pharmacy Technician
## 654                                                                                                                                                                                       Quality Assurance Technicain
## 655                                                                                                                                                                                 Business Administration Technology
## 656                                                                                                                                                                                                       Truck Driver
## 657                                                                                                                                                                                                Welding Fabrication
## 658                                                                                                                                                                        AC and Refrigeration Basic Training Program
## 659                                                                                                                                                                                      Medical Laboratory Technician
## 660                                                                                                                                                                                           Nursing Associate Degree
## 661                                                                                                                                                                                                 Vocational Nursing
## 662                                                                                                                                                                                                 Welding Technology
## 663                                                                                                                                                                                       Emergency Medical Technician
## 664                                                                                                                                                                                       Emergency Medical Technology
## 665                                                                                                                                                                                                      EMT-Paramedic
## 666                                                                                                                                                                                        Basic Automotive Technician
## 667                                                                                                                                                                                       Automotive System Specialist
## 668                                                                                                                                                                                              Automotive Technician
## 669                                                                                                                                                                                      Automotive Mechanic-Tecnician
## 670                                                                                                                                                                                         Clinical Medical Assistant
## 671                                                                                                                                                                                                Pharmacy Technician
## 672                                                                                                                                                                                         Medical Coding and Billing
## 673                                                                                                                                                                                            Community Health Worker
## 674                                                                                                                                                                                               Basic Police officer
## 675                                                                                                                                                                                                     EKG Technician
## 676                                                                                                                                                                                               Certified Bookkeeper
## 677                                                                                                                                                                  Combined Medical Assistant and Phlebotomy Program
## 678                                                                                                                                                                                         PharmacyTechnician Program
## 679                                                                                                                                                                                              Automotive AAS Degree
## 680                                                                                                                                                                     Automotive Technology   Automotive Performance
## 681                                                                                                                                                                               Automotive Technology   Driveability
## 682                                                                                                                                                                          Automotive Technology Level 2 Certificate
## 683                                                                                                                                                                                          Industrial Technology AAS
## 684                                                                                                                                                                          Industrial Technology Level 2 Certificate
## 685                                                                                                                                           Industrial Technology Refrigeration/Air Conditioning Level 1 Certificate
## 686                                                                                                                                                                                                 Vocational Nursing
## 687                                                                                                                                                                        Industrial Technology   Level 1 Certificate
## 688                                                                                                                                                                                                            Welding
## 689                                                                                                                                                                                              Truck Driver Training
## 690                                                                                                                                                                            Associate of Applied Science in Nursing
## 691                                                                                                                                                                                              Truck Driver Training
## 692                                                                                                                                                                                        Nurse Aide Training Program
## 693                                                                                                                                                                                                         Phlebotomy
## 694                                                                                                                                                                                        Pharmacy Technician Level 1
## 695                                                                                                                                                                                          Respiratory Care /Therapy
## 696                                                                                                                                                                                                Surgical Technology
## 697                                                                                                                                                                       Associate Degree in Nursing   Bridge Program
## 698                                                                                                                                                                              CDL Certification Program   Childress
## 699                                                                                                                                                                                            Introduction to Nursing
## 700                                                                                                                                                                                               Certified Nurse Aide
## 701                                                                                                                                                                                                 Vocational Nursing
## 702                                                                                                                                                                                                      Basic Welding
## 703                                                                                                                                                                              CDL Certification Program   Clarendon
## 704                                                                                                                                                                                         General Welding Specialist
## 705                                                                                                                                                                                            Pipe Welding Specialist
## 706                                                                                                                                                                                                      Basic Welding
## 707                                                                                                                                                                                  CDL Certification Program   Pampa
## 708                                                                                                                                                                                         General Welding Specialist
## 709                                                                                                                                                                                            Introduction to Nursing
## 710                                                                                                                                                                                               Certified Nurse Aide
## 711                                                                                                                                                                                            Pipe Welding Specialist
## 712                                                                                                                                                                                                 Vocational Nursing
## 713                                                                                                                                                                       Associate Degree in Nursing   Bridge Program
## 714                                                                                                                                                                            Industrial Maintenance-Basic Electrical
## 715                                                                                                                                                              Industrial Maintenance-Electrical Controls Technician
## 716                                                                                                                                   Industrial Maintenance-Electromechancial Technician Associate in Applied Science
## 717                                                                                                                                                                                                   Advanced Welding
## 718                                                                                                                                                                                                   Advanced Welding
## 719                                                                                                                                                                            Industrial Maintenance-Basic Mechanical
## 720                                                                                                                                             Industrial Maintenance-Electromechanical Instrumentation & Maintenance
## 721                                                                                                                                                                             Industrial Maintenance-HVAC Technician
## 722                                                                                                                                 Industrial Maintenance-Electrical Controls Technician Associate in Applied Science
## 723                                                                                                                                                Industrial Maintenance-HVAC Technician Associate in Applied Science
## 724                                                                                                                                                                                    Phlebotomy Continuing Education
## 725                                                                                                                                                                             Introduction to Industrial Maintenance
## 726                                                                                                                                                                                    Phlebotomy Continuing Education
## 727                                                                                                                                                                                 CDL Certification Program Shamrock
## 728                                                                                                                                                                                         General Welding Specialist
## 729                                                                                                                                                                                            Introduction to Nursing
## 730                                                                                                                                                                                               Certified Nurse Aide
## 731                                                                                                                                                                                            Pipe Welding Specialist
## 732                                                                                                                                                                                                   Advanced Welding
## 733                                                                                                                                                                                                 Vocational Nursing
## 734                                                                                                                                                                       Associate Degree in Nursing   Bridge Program
## 735                                                                                                                                                                                                      Basic Welding
## 736                                                                                                                                                                                    Phlebotomy Continuing Education
## 737                                                                                                                                                                           OSHA Compliant Forklift Training Program
## 738                                                                                                                                                                                           Welding Training Program
## 739                                                                                                                                                                                     CNC Machining Training Program
## 740                                                                                                                                                                Manufacturing & Aerospace Assembly Training Program
## 741                                                                                                                                                                        Bookkeeping and QuickBooks Training Program
## 742                                                                                                                                                                                                               HVAC
## 743                                                                                                                                                                 AWS Certified DevOps Engineer Professional Seminar
## 744                                                                                                                                                              AWS Certified Solutions Architect   Associate Seminar
## 745                                                                                                                                                           AWS Certified Solutions Architect   Professional Seminar
## 746                                                                                                                                                              AWS Certified SysOps Administrator  Associate Seminar
## 747                                                                                                                                                                            AWS Cloud Security Seminar Professional
## 748                                                                                                                                                                                     Linux Systems Administration 1
## 749                                                                                                                                     Machine Learning Deep Learning and Artificial Intelligence (AI) on AWS seminar
## 750                                                                                                                                                       Virtualization and Openstack Certified Administrator Seminar
## 751                                                                                                                                                                         Kubernetes Certified Administrator Seminar
## 752                                                                                                                                                   BlockChain Cryto currencies. Bitcoin and Ethereum on AWS Seminar
## 753                                                                                                                                                               Certified Cloud Security Professional (CCSP) Seminar
## 754                                                                                                                                                                                       Cloud Computing Architecture
## 755                                                                                                                                                                           Docker Certified Associate (DCA) Seminar
## 756                                                                                                                                                                    Docker Containers and Kubernetes Administration
## 757                                                                                                                                                             Google Certified Professional  Cloud Architect Seminar
## 758                                                                                                                                                                            Internet of Things (IoT) on AWS Seminar
## 759                                                                                                                                                                                               Azure Cloud Engineer
## 760                                                                                                                                                                                              Google Cloud engineer
## 761                                                                                                                                                                                              Cloud DevOps Engineer
## 762                                                                                                                                                                                        Cloud Developer With python
## 763                                                                                                                                                                                                 AWS Cloud Engineer
## 764                                                                                                                                                         Business Technology Adminstrative Assistant  A.A.S. Degree
## 765                                                                                                                                                                               Professional Nursing (LVN to RN) AAS
## 766                                                                                                                                                                                              LVN RN Bridge Program
## 767                                                                                                                                                                                                 Vocational Nursing
## 768                                                                                                                                                                                                         Accounting
## 769                                                                                                                                                                              Automotive Technology   A.A.S. Degree
## 770                                                                                                                                                                                      Automotive Technology Level 1
## 771                                                                                                                                                                                                 Vocational Nursing
## 772                                                                                                                                                                                            Welding   A.A.S. Degree
## 773                                                                                                                                                                      Welding   Associate of Applied Science Degree
## 774                                                                                                                                                                                                    Law Enforcement
## 775                                                                                                                                                                                         Oil and Gas Technology AAS
## 776                                                                                                                                                                     Computer Information Technology   A.A.S Degree
## 777                                                                                                                                                                                      Child and Educational Studies
## 778                                                                                                                                                                                    Computer Information Technology
## 779                                                                                                                                     Business Technology Administrative Assistant Medical Office Specialization AAS
## 780                                                                                                                                                                                                 Vocational Nursing
## 781                                                                                                                                                                                    Accounting Level II Certificate
## 782                                                                                                                                                                                    Automotive Technology   Level 2
## 783                                                                                                                                                                                      Automotive Technology Level 1
## 784                                                                                                                                     Business Technology Administrative Assistant Medical Office Specialization AAS
## 785                                                                                                                                                         Business Technology Adminstrative Assistant  A.A.S. Degree
## 786                                                                                                                                                                                                 Vocational Nursing
## 787                                                                                                                                                                                                Evening LVN Program
## 788                                                                                                                                                                                             Traditional RN Program
## 789                                                                                                                                                                               Professional Nursing (LVN to RN) AAS
## 790                                                                                                                                                                                       Welding Level II Certificate
## 791                                                                                                                                                                                                Welding AAS  Degree
## 792                                                                                                                                                                                        Welding Level I Certificate
## 793                                                                                                                                                                                      Transportation Training - CDL
## 794                                                                                                                                                                                    Accounting Level II Certificate
## 795                                                                                                                                                                                    Automotive Technology   Level 2
## 796                                                                                                                                                         Business Technology Adminstrative Assistant  A.A.S. Degree
## 797                                                                                                                                                                                               LVNRN Bridge Program
## 798                                                                                                                                                                                       Welding Level II Certificate
## 799                                                                                                                                                                                             Traditional RN Program
## 800                                                                                                                                                   Business Technology Administrative Assistant Level 1 Certificate
## 801                                                                                                                                                                                     Accounting Level 2 Certificate
## 802                                                                                                                                                                   Business Technology Administrative Assistant AAS
## 803                                                                                                                                                                Computer Information Technology Level 1 Certificate
## 804                                                                                                                                                                                                     Accounting AAS
## 805                                                                                                                                                                     Fundamentals of Accounting Level 1 Certificate
## 806                                                                                                                                                        Fundamentals of Patient Care Technician Level 1 Certificate
## 807                                                                                                                                                                                 Medical Coding Level 1 Certificate
## 808                                                                                                                                                    Fundamentals of Certified Nursing Assistant Level 1 Certificate
## 809                                                                                                                                                                                Computer Information Technology AAS
## 810                                                                                                                                                                                            Business Management AAS
## 811                                                                                                                                                                Computer Information Technology Level 2 Certificate
## 812                                                                                                                                                                                  Health Information Management AAS
## 813                                                                                                                                                   Business Technology Administrative Assistant Level 2 Certificate
## 814                                                                                                                                                                             Business Management Level 1 Cerificate
## 815                                                                                                                                                                                            Business Management AAS
## 816                                                                                                                                                                Computer Information Technology Level 1 Certificate
## 817                                                                                                                                                                             Business Management Level 1 Cerificate
## 818                                                                                                                                                   Business Technology Administrative Assistant Level 2 Certificate
## 819                                                                                                                                                                                  Health Information Management AAS
## 820                                                                                                                                                                                 Medical Coding Level 1 Certificate
## 821                                                                                                                                                   Business Technology Administrative Assistant Level 1 Certificate
## 822                                                                                                                                                                                                     Accounting AAS
## 823                                                                                                                                                                     Fundamentals of Accounting Level 1 Certificate
## 824                                                                                                                                                                                Computer Information Technology AAS
## 825                                                                                                                                                                Computer Information Technology Level 2 Certificate
## 826                                                                                                                                                                                            Business Management AAS
## 827                                                                                                                                                                                               Forensic Science AAS
## 828                                                                                                                                                                                 Medical Coding Level 1 Certificate
## 829                                                                                                                                                                             Business Management Level 1 Cerificate
## 830                                                                                                                                                                                           Forensic Science Level 2
## 831                                                                                                                                                                                           Forensic Science Level 1
## 832                                                                                                                                                                                                        Welding AAS
## 833                                                                                                                                                                                        Welding Level 1 Certificate
## 834                                                                                                                                                                     Fundamentals of Accounting Level 1 Certificate
## 835                                                                                                                                                                                                     Accounting AAS
## 836                                                                                                                                                   Business Technology Administrative Assistant Level 1 Certificate
## 837                                                                                                                                                                                Computer Information Technology AAS
## 838                                                                                                                                                                Computer Information Technology Level 2 Certificate
## 839                                                                                                                                                                Fundamentals of Law Enforcement Level 1 Certificate
## 840                                                                                                                                                                                         Medical Records Coding AAS
## 841                                                                                                                                                    Fundamentals of Certified Nursing Assistant Level 1 Certificate
## 842                                                                                                                                                   Business Technology Administrative Assistant Level 2 Certificate
## 843                                                                                                                                                                                                Law Enforcement AAS
## 844                                                                                                                                                        Fundamentals of Patient Care Technician Level 1 Certificate
## 845                                                                                                                                                                           Correctional Science Level 1 Certificate
## 846                                                                                                                                                                     Fundamentals of Accounting Level 1 Certificate
## 847                                                                                                                                                   Business Technology Administrative Assistant Level 2 Certificate
## 848                                                                                                                                                                                                 Dental Hygiene AAS
## 849                                                                                                                                                                           Correctional Science Level 1 Certificate
## 850                                                                                                                                                                         Oil and Gas Technology Level 1 Certificate
## 851                                                                                                                                                                                        Welding Level 1 Certificate
## 852                                                                                                                                                                Fundamentals of Law Enforcement Level 1 Certificate
## 853                                                                                                                                                                             Business Management Level 1 Cerificate
## 854                                                                                                                                                                Computer Information Technology Level 2 Certificate
## 855                                                                                                                                                                   Business Technology Administrative Assistant AAS
## 856                                                                                                                                                                       Child Care Provider Aide Level I Certificate
## 857                                                                                                                                                                                           Forensic Science Level 1
## 858                                                                                                                                                                                     Accounting Level 2 Certificate
## 859                                                                                                                                                                         Oil and Gas Technology Level 2 Certificate
## 860                                                                                                                                                         Child Care Teacher/Manager Certificate Level 2 Certificate
## 861                                                                                                                                                                                           Forensic Science Level 2
## 862                                                                                                                                                                                  Health Information Management AAS
## 863                                                                                                                                                        Fundamentals of Patient Care Technician Level 1 Certificate
## 864                                                                                                                                                                             Professional Nursing (Traditional) AAS
## 865                                                                                                                                                                               Professional Nursing (LVN to RN) AAS
## 866                                                                                                                                                                                               Forensic Science AAS
## 867                                                                                                                                                                                 Medical Coding Level 1 Certificate
## 868                                                                                                                                                    Fundamentals of Certified Nursing Assistant Level 1 Certificate
## 869                                                                                                                                                                                     Automotive Level 2 Certificate
## 870                                                                                                                                                   Business Technology Administrative Assistant Level 1 Certificate
## 871                                                                                                                                                                                            Business Management AAS
## 872                                                                                                                                                  Professional Bookkeeping with QuickBooks 2018 (Software Included)
## 873                                                                                                                                                                                          Chemical Plant Operations
## 874                                                                                                                                                                                                 Billing and Coding
## 875                                                                                                                                                                                            Residential Elecrtician
## 876                                                                                                                                                                                          Medication Administration
## 877                                                                                                                                                                                          Medication Administration
## 878                                                                                                                                                                                          Medication Administration
## 879                                                                                                                    Certified Administrative Professional with Microsoft Office Specialist 2016 (Vouchers Included)
## 880                                                                                                                    Certified Administrative Professional with Microsoft Office Specialist 2019 (Vouchers Included)
## 881                                                                                                                        Certified Administrative Professional with Microsoft Office Master 2019 (Vouchers Included)
## 882                                                                                                                                                                                               Certified Bookkeeper
## 883                                                                                                                        Certified Administrative Professional with Microsoft Office Master 2016 (Vouchers Included)
## 884                                                                                                                                                                             Executive Assistant (Voucher Included)
## 885                                                                                                                                                  Professional Bookkeeping with QuickBooks 2019 (Software Included)
## 886                                                                                                             Professional Bookkeeping with QuickBooks 2018 with Payroll Practice and Management (Software Included)
## 887                                                                                                             Professional Bookkeeping with QuickBooks 2019 with Payroll Practice and Management (Software Included)
## 888                                                                                                                                                                      Medical Billing and Coding (Voucher Included)
## 889                                                                                                                                         Certified Medical Administrative Assistant with Medical Billing and Coding
## 890                                                                                                                                                     Certified Clinical Medical Assistant (CCMA) (Voucher Included)
## 891                                                                                           Certified Clinical Medical Assistant (CCMA) + Certified Electronic Health Records Specialist (CEHRS) (Vouchers Included)
## 892                                                                                                                                                                             Pharmacy Technician (Voucher Included)
## 893                                                                                                                                               Certified Medical Administrative Assistant (CMAA) (Voucher Included)
## 894                                                                           Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology (Vouchers Included)
## 895                                                                                                                                                                 Certified Physical Therapy Aide (Voucher Included)
## 896                                                                                                                                                                                              Electrical Technician
## 897                                                                                                                                                                         Patient Care Technician (Voucher Included)
## 898                                                                                                                                                                                            CompTIA IT Fundamentals
## 899                                                                                                                                                              CompTIA A+ Certification Training (Vouchers Included)
## 900                                                                                                                                                                                SSCP Systems Certified Practitioner
## 901                                                                                                                                                                                                      CNC Machinist
## 902                                                                                                                                                                CompTIA A+ with ITIL Foundation (Vouchers Included)
## 903                                                                                                                                          CompTIA Certification Training: A+ Network+ Security+ (Vouchers Included)
## 904                                                                                                                                                        CompTIA Certification Training: ITF+ A+ (Vouchers Included)
## 905                                                                                                                                     CompTIA Certification Training: ITF+ A+ Network+ Security+ (Vouchers Included)
## 906                                                                                                                                                        CompTIA Security+ Certification Training (Voucher Included)
## 907                                                                                                                                                        CompTIA Network+ Certification Training (Vouchers Included)
## 908                                                                                                                                           CompTIA Network+ and Security+ Certification Training (Voucher Included)
## 909                                                                                                                                                   Certified Information Security Manager (CISM) (Voucher Included)
## 910                                                                                                                                                        Certified Information Systems Security Professional (CISSP)
## 911                                                                                                                                                   CompTIA Advanced Security Practitioner (CASP) (Voucher Included)
## 912                                                                                                                                                                  Information Security Training (Vouchers Included)
## 913                                                                                                                                                                              HVAC/ R Technician (Voucher Included)
## 914                                                                                                                                                             Lean Six Sigma Black Belt with 1-on-1 Project Coaching
## 915                                                                                                                                                                           Lean Six Sigma Green Belt and Black Belt
## 916                                                                                                                                                                          Lean Six Sigma Yellow Belt and Green Belt
## 917                                                                                                                                                                                   Medical Administrative Assistant
## 918                                                                                                                                                                                          Lean Six Sigma Black Belt
## 919                                                                                                                                                                                                         Phlebotomy
## 920                                                                                                                                                                                                         Phlebotomy
## 921                                                                                                                                                                                       Emergency Medical Technician
## 922                                                                                                                                                                                          Medication Administration
## 923                                                                                                                                                                                                         Phlebotomy
## 924                                                                                                                                                                                            Foundations of Plumbing
## 925                                                                                                                                                                                                 Process Technician
## 926                                                                                                                                                                               Child Development Associate Training
## 927                                                                                                                                                                                                   Manual Machinist
## 928                                                                                                                                                                                             Engineering Technician
## 929                                                                                                                                                                                Court Interpreter (Spanish/English)
## 930                                                                                                                                                                                                Certified Paralegal
## 931                                                                                                                                                             Certified Electronic Health Records Specialist (CEHRS)
## 932                                                                                                                                             Certified Electronic Health Records Specialists  + Medical Terminology
## 933                                                                                                                                                                            Records Management Certificate (Online)
## 934                                                                                               Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology
## 935                                                                                                                                                                                 Certified Medical Transcriptionist
## 936                                                                                                                                                                           CompTIA Security+ Certification Training
## 937                                                                                                                                                                                             Maintenance Technician
## 938                                                                                                                                             Information Security Master Certification Training (Vouchers Included)
## 939                                                                                                                                                                                           Clinical Dental Assitant
## 940                                                                                                                                                                 Certified Health Unit Coordinator Voucher Included
## 941                                                                                                                                                                   Medical Office Manager (CPPM)(Vouchers Included)
## 942                                                                                                                                                                                                  Quality Inspector
## 943                                                                                                                           Professional Bookkeeping Certification Training with QuickBooks 2019 (Software Included)
## 944                                                                                       Professional Bookkeeping Certification Training with QuickBooks 2019 and Payroll Practice and Management (Software Included)
## 945                                                                                                                                                                                  CompTIA A+ Certification Training
## 946                                                                                                                                                             CompTIA A+ Certification Training with ITIL Foundation
## 947                                                                                                                                                            CompTIA Certification Training  A+  Network+  Security+
## 948                                                                                                                                                                        Help Desk Analyst Tier 1 Support Specialist
## 949                                                                                                                                                                             Accounts Payable Manager Certification
## 950                                                                                                                                                                     Certified Bookkeeper with Microsoft Excel 2019
## 951                                                                                                                                                                                Chartered Tax Professional (Online)
## 952                                                                                                                                                                Microsoft Office Master 2019 Certification Training
## 953                                                                                                                                                                                            Professional Translator
## 954                                                                                                                                                      Microsoft Office Specialist 2019 (MOS) Certification Training
## 955                                                                                                                                                    Certified Information Systems Auditor (CISA) (Voucher Included)
## 956                                                                                                                                                    SSCP Systems Security Certified Practitioner (Voucher Included)
## 957                                                                                                                                                                        Certified Ethical Hacker (Voucher Included)
## 958                                                                                                                                                                                                    Java Programmer
## 959                                                                                                                                                                                         Web Applications Developer
## 960                                                                                                                                                                                              Composites Technician
## 961                                                                                                                                                                              Medical Interpreter (Spanish/English)
## 962                                                                                                                                                               Cisco CCNA Certification Training (Voucher Included)
## 963                                                                                                                                                                        Microsoft Excel 2019 Certification Training
## 964                                                                                                                                                                  Graphic Design with Photoshop (Software Included)
## 965                                                                                                                                                                                            Web Design Professional
## 966                                                                                                                                                                                          Federal Court Interpreter
## 967                                                                                                                                                                                           Legal Secretary (Online)
## 968                                                                                                                                                                                    Administrative Dental Assistant
## 969                                                                                                                                                                                      Full Stack Software Developer
## 970                                                                                                                                                                                                       EMT Beeville
## 971                                                                                                                                                                                       Adobe Certified Professional
## 972                                                                                                                                                                                   Certified AWS Cloud Practitioner
## 973                                                                                                                                                                              CompTIA Cloud+ Certification Training
## 974                                                                                                                                                                    Professional Bookkeeping with QuickBooks Online
## 975                                                                                                                                                    Microsoft Office Specialist (MOS) Expert Certification Training
## 976                                                                                                                               Professional Bookkeeping with QuickBooks Online with Payroll Practice and Management
## 977                                                                                                                                                                      Adobe Certified Professional in Visual Design
## 978                                                                                                                                                                       Adobe Certified Professional in Video Design
## 979                                                                                                                                                               Certified AWS Cloud Practitioner Developer Associate
## 980                                                                                                                                                 Microsoft Office Specialist (MOS) Associate Certification Training
## 981                                                                                                                                                                                                Management Training
## 982                                                                                                                                                                         Adobe Certified Professional in Web Design
## 983                                                                                                                                                                                    Certified Phlebotomy Technician
## 984                                                                                                                                                                                            Foundations of Plumbing
## 985                                                                                                                                                                                          Certified Quality Auditor
## 986                                                                                                                                                                                Commercial Driver's License Class A
## 987                                                                                                                                                                                Commercial Driver's License Class B
## 988                                                                                                                                                                                Commercial Driver's License Class A
## 989                                                                                                                                                                                Commercial Driver's License Class B
## 990                                                                                                                                                                                           Industrial Mechanics AAS
## 991                                                                                                                                                                                  Cybersecurity Level I Certificate
## 992                                                                                                                                                                                           Industrial Mechanics AAS
## 993                                                                                                                                                                                Commercial Driver's License Class A
## 994                                                                                                                                                                                Commercial Driver's License Class B
## 995                                                                                                                                                                                  Cybersecurity Level I Certificate
## 996                                                                                                                                                                                Commercial Driver's License Class B
## 997                                                                                                                                                                                Commercial Driver's License Class A
## 998                                                                                                                                                                                  Full-Stack Web Development - Java
## 999                                                                                                                                                                                                       Data Science
## 1000                                                                                                                                                                                 Full-Stack Web Development - Java
## 1001                                                                                                                                                                                 Full-Stack Web Development - Java
## 1002                                                                                                                                                                                                      Data Science
## 1003                                                                                                                                                                                           Data Analytics Bootcamp
## 1004                                                                                                                                                                                                    Data Science I
## 1005                                                                                                                                                                                                   Data Science II
## 1006                                                                                                                                                                                   Data Visualization with Tableau
## 1007                                                                                                                                                                                  Data Visualization with Power BI
## 1008                                                                                                                                                                                  Data Visulaization with QlikView
## 1009                                                                                                                                                                                          Data Warehouse Architect
## 1010                                                                                                                                                                                                 Instrumentation I
## 1011                                                                                                                                                                                                Instrumentation II
## 1012                                                                                                                                                                                         CNC Machinist Certificate
## 1013                                                                                                                                                               Mechanical Maintenance Technician Basic Certificate
## 1014                                                                                                                                                                                            Networking Certificate
## 1015                                                                                                                                                                        Welding Multiple Process Structural Welder
## 1016                                                                                                                                                                                Advanced Level Welding Certificate
## 1017                                                                                                                                                             Mechanical Maintenance Technician Advance Certificate
## 1018                                                                                                                                                                                                       Welding AAS
## 1019                                                                                                                                                                                                  Manual Machinist
## 1020                                                                                                                                                      Mechanical Maintenance Technician   Intermediate Certificate
## 1021                                                                                                                                                                                          Registered Nurse Program
## 1022                                                                                                                                                                                          Vocational Nurse Program
## 1023                                                                                                                                                                  Heating/Ventilation/Air Conditioning Certificate
## 1024                                                                                                                                                                                          Industrial Pipefitting I
## 1025                                                                                                                                                                                    Entry Level Welder Certificate
## 1026                                                                                                                                                                                              LVN to RN Transition
## 1027                                                                                                                                                                                            Process Technology AAS
## 1028                                                                                                                                                                        Construction Management Certificate Series
## 1029                                                                                                                                                                                        Professional Truck Driving
## 1030                                                                                                                                                                                   Paralegal/Legal Assistant   AAS
## 1031                                                                                                                                                                                       Supply Chain Management AAS
## 1032                                                                                                                                                                           Information Systems Cybersecurity   AAS
## 1033                                                                                                                                                           Computer Networking Integrated Technologies Track   AAS
## 1034                                                                                                                                                                 HVAC (Heating Ventilation Air Conditioning) - AAS
## 1035                                                                                                                                                  HVAC Residential Servicing Certification   Level One Certificate
## 1036                                                                                                                                                                                       Automotive Technology - AAS
## 1037                                                                                                                                                                     Automotive Technology - Level Two Certificate
## 1038                                                                                                                                                                                     Construction Management - AAS
## 1039                                                                                                                                                                                                       Welding AAS
## 1040                                                                                                                                                               Entry Welding Certification - Level One Certificate
## 1041                                                                                                                                                                        Construction Technology - Electrical - AAS
## 1042                                                                                                                                                                          Construction Technology - Plumbing - AAS
## 1043                                                                                                                                                                           Electronic Engineering Technology   AAS
## 1044                                                                                                                                                                           Certificate Level 1 - Medical Assisting
## 1045                                                                                                                                                                               TRUCK DRIVER TRAINING PROGRAM (CDL)
## 1046                                                                                                                                                                                    Network Administration Seminar
## 1047                                                                                                                                                                              CompTIA Network+ Training (Extended)
## 1048                                                                                                                                                                           Computer Systems Administrator Training
## 1049                                                                                                                                                                          Cyber Security Incident Handler Training
## 1050                                                                                                                                                                                 Cyber Security Support Technician
## 1051                                                                                                                                                                               Cybersecurity Professional Training
## 1052                                                                                                                                                                                   Database Administrator Training
## 1053                                                                                                                                                                               Desktop Support Technician Training
## 1054                                                                                                                                                                                    IT Project Management Training
## 1055                                                                                                                                                                           ITIL Foundations Certification Training
## 1056                                                                                                                                                                              Cloud Administrator Training (Basic)
## 1057                                                                                                                                                                           COBIT Foundation Certification Training
## 1058                                                                                                                                                                                               CompTIA A+ Training
## 1059                                                                                                                                                          Basic Microsoft Office Specialist Certification Training
## 1060                                                                                                                                                        Cisco Certified Network Associate (CCNA) Extended Training
## 1061                                                                                                                                                                             Lean Six Sigma Certification Training
## 1062                                                                                                                                                                                                    Linux Training
## 1063                                                                                                                                                                                  Microsoft Administrator Training
## 1064                                                                                                                                                                                     Microsoft Windows 10 Training
## 1065                                                                                                                                                                                Network Support Technician   Entry
## 1066                                                                                                                                                                               Network Support Technician Training
## 1067                                                                                                                                                                                       Project Management Training
## 1068                                                                                                                                                                                  Supply Chain Management Training
## 1069                                                                                                                                                       Advanced Microsoft Office Specialist Certification Training
## 1070                                                                                                                                                                            Advanced Network Professional Training
## 1071                                                                                                                                                                                        Project Management Program
## 1072                                                                                                                                                                         Information Technology Project Management
## 1073                                                                                                                                                                               Database & Business Analyst Program
## 1074                                                                                                                                                                               Cybersecurity Administrator Program
## 1075                                                                                                                                                                                     Network Administrator Program
## 1076                                                                                                                                                                                  Cybersecurity Specialist Program
## 1077                                                                                                                                                                       Logistics & Supply Chain Management Program
## 1078                                                                                                                                                                                              Agile Scrum Training
## 1079                                                                                                                                                                               Computer Hacking Forensics Training
## 1080                                                                                                                                                                         Information Systems Security Professional
## 1081                                                                                                                                                                          Computer User Support Specialist Level I
## 1082                                                                                                                                                                                          IT Fundamentals Training
## 1083                                                                                                                                                                        Business Administration Assistant Training
## 1084                                                                                                                                                                                 CISCO Support Technician Training
## 1085                                                                                                                                                                            CompTIA Advanced Security Practitioner
## 1086                                                                                                                                                                                   Construction Management Program
## 1087                                                                                                                                                                                             Data Analyst Training
## 1088                                                                                                                                                                        Information Security Risk Analyst Training
## 1089                                                                                                                                                                                         Business Manager Training
## 1090                                                                                                                                                                                   CISCO DevNet Associate Training
## 1091                                                                                                                                                                         Computer User Support Specialist Level II
## 1092                                                                                                                                                                                    CompTIA Security plus Training
## 1093                                                                                                                                                                                      CompTIA Server plus Training
## 1094                                                                                                                                                                                           CISCO Security Training
## 1095                                                                                                                                                                                                 Medical Assistant
## 1096                                                                                                                                                                                               Surgical Technology
## 1097                                                                                                                                                                                        Dental Assisting Assistant
## 1098                                                                                                                                                                                               Surgical Technology
## 1099                                                                                                                                                                                            Vocational Nursing Day
## 1100                                                                                                                                                                                Vocational Nursing Program Evening
## 1101                                                                                                                                                                                                  Dental Assistant
## 1102                                                                                                                                                                                                 Medical Assistant
## 1103                                                                                                                                                                                     Medical Office Administration
## 1104                                                                                                                                                                                                 Medical Assistant
## 1105                                                                                                                                                                                     Medical Office Administration
## 1106                                                                                                                                                                                                  Dental Assistant
## 1107                                                                                                                                                                                               Surgical Technology
## 1108                                                                                                                                                                                                  Vocational Nurse
## 1109                                                                                                                                                                                         Cardiovascular Sonography
## 1110                                                                                                                                                                                      Physical Therapist Assistant
## 1111                                                                                                                                                                                              Phlebotomy Technican
## 1112                                                                                                                                                                                                    EKG Technician
## 1113                                                                                                                                                                                     Sterile Processing Technician
## 1114                                                                                                                                                                                               Respiratory Therapy
## 1115                                                                                                                                                                                     Diagnostic Medical Sonography
## 1116                                                                                                                                                                                    TTDR 500 Tractor Trailer Basic
## 1117                                                                                                                                                                                  Registered Nurse Diploma Program
## 1118                                                                                                                                                                                    Covenant School of Radiography
## 1119                                                                                                                                                                                                   Core Curriculum
## 1120                                                                                                                                                                                           Instrumentation Program
## 1121                                                                                                                                                                                               Pipefitting Program
## 1122                                                                                                                                                                                                   Welding Program
## 1123                                                                                                                              Associated Builders & Contractors Texas Coastal Bend Plumbing Apprenticeship Program
## 1124                                                                                                                                                                                           Mobile Crane Operations
## 1125                                                                                                                                                                      Field Service Technician Certificate Level I
## 1126                                                                                                                                                                             Shielded Metal Arc (SMAW) Certificate
## 1127                                                                                                                                                                                            Welding Technology AAS
## 1128                                                                                                                                                                          Gas Metal Arc Welding Certificate (GMAW)
## 1129                                                                                                                                      Machining - Computer Numeric Control OperatorProgrammer Level II Certificate
## 1130                                                                                                                                                                                          Machining Technology AAS
## 1131                                                                                                                                                                Machining Technology Machinist Level I Certificate
## 1132                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 1133                                                                                                                                                                   First Line Logistics Leader Level I Certificate
## 1134                                                                                                                                                                             Industrial Electronics Technology AAS
## 1135                                                                                                                                                                           Lean Six Sigma Green Belt Certification
## 1136                                                                                                                                                                                          Logistics Management AAS
## 1137                                                                                                                                                                                    Vocational Nursing Certificate
## 1138                                                                                                                                        Machining -Computer Numeric Control OperatorProgrammer Level I Certificate
## 1139                                                                                                                                                                                 Medical Radiologic Technology AAS
## 1140                                                                                                                                                                                    Nursing AAS (Block Curriculum)
## 1141                                                                                                                                                                   Project Management Certificate Exam Preparation
## 1142                                                                                                                                                                     Network and Computer System Administrator AAS
## 1143                                                                                                                                                                   Project Management Certificate Exam Preparation
## 1144                                                                                                                                                                  CISCO Network Administrator Level II Certificate
## 1145                                                                                                                                                                      Computer Networking Specialization AAS CISCO
## 1146                                                                                                                                                                                          Cybersecurity AAS Degree
## 1147                                                                                                                                                                           Lean Six Sigma Green Belt Certification
## 1148                                                                                                                                                         Network & Computer System Administrator Basic Certificate
## 1149                                                                                                                                                                                     Petroleum Data Technology AAS
## 1150                                                                                                                                                                           Solid Works (non-credit) Upgrade Skills
## 1151                                                                                                                                                                                 Diagnostic Medical Sonography AAS
## 1152                                                                                                                                                                 Engineering Technology - Architectural Design AAS
## 1153                                                                                                                                                                     Engineering Technology -Mechanical Design AAS
## 1154                                                                                                                                                                                                    Accounting_AAS
## 1155                                                                                                                                                       CISCO Network Administrator (CCNA) Certificate (non credit)
## 1156                                                                                                                                                                                 Cisco Network Analyst Certificate
## 1157                                                                                                                                                                  Computer Networking Specialization AAS MICROSOFT
## 1158                                                                                                                                             Network & Computer System Administrator Advanced Level II Certificate
## 1159                                                                                                                                                                                              Echocardiography AAS
## 1160                                                                                                                                                                           SAP Enterprise Systems Business Analyst
## 1161                                                                                                                                                                                                 Welding - Level 2
## 1162                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 1163                                                                                                                                                                                     AWS Academy Cloud Foundations
## 1164                                                                                                                                                                                    AWS Academy Cloud Architecting
## 1165                                                                                                                                                                              Medical Coder Certificate Fast Tract
## 1166                                                                                                                                                                                          Cybersecurity BAT Degree
## 1167                                                                                                                                                                                       Pharmacy Technician Program
## 1168                                                                                                                                                                                           Patient Care Technician
## 1169                                                                                                                                                                                                 Medical Assistant
## 1170                                                                                                                                                                                             Phlebotomy Technician
## 1171                                                                                                                                                                                                   Medication Aide
## 1172                                                                                                                                                                                               Nurse Aide Training
## 1173                                                                                                                                                                                      Accounting/Office Specialist
## 1174                                                                                                                                                                                    Construction Laborer   Masonry
## 1175                                                                                                                                                                                          Cloud Support Practioner
## 1176                                                                                                                                                                                          Manufacturing Technician
## 1177                                                                                                                                                                                              Welding Fundamentals
## 1178                                                                                                                                                                                              Surveying Technician
## 1179                                                                                                                                                                             NCCER Heavy Equpment Operator Level 1
## 1180                                                                                                                                                                                         NCCER Core Construction I
## 1181                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1182                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1183                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1184                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1185                                                                                                                                                                                    Electrocardiography Technician
## 1186                                                                                                                                                                                     Certified Nurses Aid (C.N.A.)
## 1187                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1188                                                                                                                                                                                     Virtual Care (Telehealth PCT)
## 1189                                                                                                                                                                                    Electrocardiography Technician
## 1190                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1191                                                                                                                                                                                    Electrocardiography Technician
## 1192                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1193                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1194                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1195                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1196                                                                                                                                                                                     Certified Nurses Aid (C.N.A.)
## 1197                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1198                                                                                                                                                                                    Phlebotomy Technician Option 1
## 1199                                                                                                                                                                                    Phlebotomy Technician Option 2
## 1200                                                                                                                                                                                    Electrocardiography Technician
## 1201                                                                                                                                                                                     Certified Nurses Aid (C.N.A.)
## 1202                                                                                                                                                                             Electrical Engineering Technology AAS
## 1203                                                                                                                                                                                   Electronics Level I Certificate
## 1204                                                                                                                                                                       Mechatronics Technology Level I Certificate
## 1205                                                                                                                                                                                 Electro Mechanical Technology AAS
## 1206                                                                                                                                                             Logistics Distribution Technician Level I Certificate
## 1207                                                                                                                                                                         Logistics and Supply Chain Management AAS
## 1208                                                                                                                                                                            Robotics and Industrial Automation AAS
## 1209                                                                                                                                                                             Electrical Engineering Technology AAS
## 1210                                                                                                                                                                                   Electronics Level I Certificate
## 1211                                                                                                                                                                         Industrial Automation Level I Certificate
## 1212                                                                                                                                                                                CE Mechatronics Fast Track Program
## 1213                                                                                                                                                                                   CE Logistics Fast Track Program
## 1214                                                                                                                                                                              Forklift Operator Certification CESA
## 1215                                                                                                                                                                                               Pharmacy Technician
## 1216                                                                                                                                                                                                      Virtual Care
## 1217                                                                                                                                                                              Forklift Operator Certification CESA
## 1218                                                                                                                                                                      Mechatronics - Industrial Electricity I CESA
## 1219                                                                                                                                                                                 Mechatronics - Fluid Power I CESA
## 1220                                                                                                                                                                      Mechatronics - Motor and Motor Controls CESA
## 1221                                                                                                                                                                                  Mechatronics - PLC/Robotics CESA
## 1222                                                                                                                                                                       Mechatronics - Mechanical Components I CESA
## 1223                                                                                                                                                                              Forklift Operator Certification CESA
## 1224                                                                                                                                                                       Industrial Automation CE Fast Track Program
## 1225                                                                                                                                                                                Certified Logistics Associate CESA
## 1226                                                                                                                                                                               Certified Logistics Technician CESA
## 1227                                                                                                                                                                             HVAC Residential Tech III Certificate
## 1228                                                                                                                                                                                                     CADD Operator
## 1229                                                                                                                                                                                   Software Application Specialist
## 1230                                                                                                                                                                                                              CADD
## 1231                                                                                                                                                                                            CADD Advanced Operator
## 1232                                                                                                                                                                                              Residential HVAC AAS
## 1233                                                                                                                                                                               HVAC Residential Tech I Certificate
## 1234                                                                                                                                                                                      Accounting Clerk Certificate
## 1235                                                                                                                                                                            Paralegal Associate in Applied Science
## 1236                                                                                                                                                                                   Software Application Specialist
## 1237                                                                                                                                                                                        Carpentry Combined Program
## 1238                                                                                                                                                                             NCCER Heavy Equpment Operator Level 1
## 1239                                                                                                                                                                                         NCCER Core Construction I
## 1240                                                                                                                                                                                               Pharmacy Technician
## 1241                                                                                                                                                                                                        CompTIA N+
## 1242                                                                                                                                                Associate of Arts Degree with a Field of Study in Criminal Justice
## 1243                                                                                                                                                                           Management Associate of Applied Science
## 1244                                                                                                                                                                                      Pipefitting Combined Program
## 1245                                                                                                                                                    Associate of Applied Science Degree in Business Administration
## 1246                                                                                                                                                                                        Business Office Specialist
## 1247                                                                                                                                                                                         Certificate of Management
## 1248                                                                                                                                                                                                    Accounting AAS
## 1249                                                                                                                                                                                  Accounting Assistant Certificate
## 1250                                                                                                                                                                                                      Mechatronics
## 1251                                                                                                                                                                                                Sterile Processing
## 1252                                                                                                                                                    Construction Management Pipefitting NCCER Fast Track Level III
## 1253                                                                                                                                                                                                        CompTIA A+
## 1254                                                                                                                                                     Construction Management Pipefitting NCCER Fast Track Level II
## 1255                                                                                                                                                     Associate of Science Degree with a Field of Study in Business
## 1256                                                                                                                                                                  Business Administration Human Resource Assistant
## 1257                                                                                                                                                                          Supervisor Certificate C1 Mgmt Supvsr 12
## 1258                                                                                                                                                                                           Patient Care Technician
## 1259                                                                                                                                                                       Cisco Certified Networking Associate (CCNA)
## 1260                                                                                                                                                                                  Computer Numerical Control (CNC)
## 1261                                                                                                                                                        Construction Technology Carpentry NCCER Fast Track Level I
## 1262                                                                                                                                                      Construction Management Pipefitting NCCER Fast Track Level I
## 1263                                                                                                                                                       Construction Technology Carpentry NCCER Fast Track Level II
## 1264                                                                                                                                                                             Administrative Specialist Certificate
## 1265                                                                                                                                                                                     Retail Management Certificate
## 1266                                                                                                                                                                       Software Application Specialist Certificate
## 1267                                                                                                                                            Associate of Applied Science Degree Executive Asst Executive Secretary
## 1268                                                                                                                                                                                               Basic Peace Officer
## 1269                                                                                                                                                                 Automotive Technology/Diesel and Heavy Equipement
## 1270                                                                                                                                                                                                 Engine Technology
## 1271                                                                                                                                                                                             Automotive Technology
## 1272                                                                                                                                                                                                Welding Technology
## 1273                                                                                                                                                                                                         Masonry I
## 1274                                                                                                                                                                                                        Masonry II
## 1275                                                                                                                                                                              Customer Service Certificate (Youth)
## 1276                                                                                                                                                                                             SHRM exam prep course
## 1277                                                                                                                                                                           Accounting Associates degree (ACNT.AAS)
## 1278                                                                                                                                                                     Accounting Technician Certificate (ACTT.CER1)
## 1279                                                                                                                                                                            Advertising/Public Relations (ADPR.AA)
## 1280                                                                                                                                               Air Conditioning Applied Technology Certificate Level 1 (ACAT.CER1)
## 1281                                                                                                                                                                                Architectural Technology(ARCT.AAS)
## 1282                                                                                                                                                                           Auto Body Applied Technology (AUBO.AAS)
## 1283                                                                                                                                                                                      Biotechnology AAS (BIOT.AAS)
## 1284                                                                                                                                                                             Biotechnology Certificate (BITC.CER2)
## 1285                                                                                                                                                                          Business Administration Degree (BUAD.AA)
## 1286                                                                                                                                                      Environmental/Petrochemical Lab Tech Certificate (EPCL.ECER)
## 1287                                                                                                                                                                                      Computer Information Systems
## 1288                                                                                                                                                            NTS-Network Admin and Info Security Systems (NAIS.AAS)
## 1289                                                                                                                                                                           Networking Technology CISCO (NETC.CER1)
## 1290                                                                                                                                                                                  Electrical Engineering (ELEN.AS)
## 1291                                                                                                                                    ENVIRONMENTAL/PETROCHEMICAL LAB TECHNOLOGY ENVIRONMENTAL TECHNICIAN (EPLT.AAS)
## 1292                                                                                                                                                                                                  Real Estate (CE)
## 1293                                                                                                                                                                             Registered Nurse Education (REGN.AAS)
## 1294                                                                                                                                                                        LVN/Paramedic to RN Transition  (LVNP.AAS)
## 1295                                                                                                                                                                                           Substitute Teacher (CE)
## 1296                                                                                                                                                                              Vocational Nursing (LVN) (LVNG.CER2)
## 1297                                                                                                                                                          Welding Applied Tech-Advanced Welding Lvl II (WADC.CER2)
## 1298                                                                                                                                                                                  Radiologic Technology (RADT.AAS)
## 1299                                                                                                                                                                                         OSHA 10 Construction (CE)
## 1300                                                                                                                                                                                 OSHA 15 Disaster Site Worker (CE)
## 1301                                                                                                                                                                                      Paralegal Studies (PLGL.AAS)
## 1302                                                                                                                                                                 Physical Therapist Assistant AAS Degree (PTA.AAS)
## 1303                                                                                                                                                                                      Process Technology (PRT.AAS)
## 1304                                                                                                                                                                        PROCESS TECHNOLOGY CERTIFICATE (PRTC.CER1)
## 1305                                                                                                                                                                                             Office Assistant (CE)
## 1306                                                                                                                                                                               Basic Firefighter Option (FSFO.AAS)
## 1307                                                                                                                                                                                 Management Development (MGMS.AAS)
## 1308                                                                                                                                                                          Medical Laboratory Technology (MEDL.AAS)
## 1309                                                                                                                                                                                             Medical Secretary AAS
## 1310                                                                                                                                                Medication Administration for the Nurse Aide/Home Health Aide (CE)
## 1311                                                                                                                                                                                                   NCCER Core (CE)
## 1312                                                                                                                                                                     Occupational Safety and Health AAS (OSHT.AAS)
## 1313                                                                                                                                                                      Health Information Technology AAS (HITT.AAS)
## 1314                                                                                                                                                                     HIT Coding Specialist Certificate (HITC.CER2)
## 1315                                                                                                                                           Process Tech-Industrial Instrumentation Certificate Level 2 (PRIN.CER2)
## 1316                                                                                                                                                            Diesel Applied Technology Associates Degree (DISL.AAS)
## 1317                                                                                                                                                                 Diesel Applied Technology Certificate (DIST.CER2)
## 1318                                                                                                                                                   Diesel Applied Technology Certificate Diesel Systems Specialist
## 1319                                                                                                                                                                                      Emergency Medical Technician
## 1320                                                                                                                                                                    Emergency Medical Technician Degree (EMTP.AAS)
## 1321                                                                                                                                                                                     Health Informatics (HINF.OSA)
## 1322                                                                                                                                                     Process Tech-Industrial Instrumentation Installer (PRII.CER1)
## 1323                                                                                                                                                     Industrial Machining Applied Technology Associates (MCHS.AAS)
## 1324                                                                                                                                                                                    Job Shop Machining (JSMC.CER1)
## 1325                                                                                                                                                                     Industrial Machining Applied Tech (IMAT.CER2)
## 1326                                                                                                                                                                            Intermediate Peace Officer (IPOF.CER1)
## 1327                                                                                                                                                 Welding Applied Tech-Intermediate Welding Certificate (WINC.CER1)
## 1328                                                                                                                                                                                         CNC Machining (CNCM.CER1)
## 1329                                                                                                                                                                               Non Destructive Testing (NDTC.CER2)
## 1330                                                                                                                                                 Air Conditioning Applied Technology Associate's Degree (AIRC.AAS)
## 1331                                                                                                                                                                Process Tech-Industrial Instrumentation (INST.AAS)
## 1332                                                                                                                                                                           Auto Body Refinishing Repair Specialist
## 1333                                                                                                                                                                 Auto Body Structural Collision Repair (AUCR.CER2)
## 1334                                                                                                                                                                          Automotive Applied Technology (AUTO.AAS)
## 1335                                                                                                                                                                 Automotive: Suspension Driveline Brake Specialist
## 1336                                                                                                                                    Aviation Maintenance Airframe Applied Technology: Associates Degree (AVAF.AAS)
## 1337                                                                                                                                                  Aviation Maintenance Airframe Applied Technology: OSA (AVMS.OSA)
## 1338                                                                                                                                               Air Conditioning Applied Technology Certificate Level 1 (AIRT.CER2)
## 1339                                                                                                                                              Building Maintenance Applied Technology: Associate Degree (BLDM.AAS)
## 1340                                                                                                                                          Building Maintenance Applied Technology: Certificate Level 2 (BMAT.CER2)
## 1341                                                                                                                                                      Building Maintenance Applied Technology: Certificate Level I
## 1342                                                                                                                                                                                        Criminal Justice (CRIJ.AA)
## 1343                                                                                                                                                                            Basic Firefighter Level II (FIFT.CER2)
## 1344                                                                                                                                                                                         Dental Hygiene (DENH.AAS)
## 1345                                                                                                                                                                                   Basic Peace Officer (BAPO.CER1)
## 1346                                                                                                                                                             Welding Applied Tech-Intermediate Welding (WINC.CER1)
## 1347                                                                                                                                      Aviation Maintenance Power Plant Applied Technology: Certificate (AVPC.CER2)
## 1348                                                                                                                                                             Avionics Electronics Technology Associates (AETS.AAS)
## 1349                                                                                                                                                                                  Transportation Training Services
## 1350                                                                                                                                                       Transportation Training Services C.D.L. Class B Bus Program
## 1351                                                                                                                                                          Welding Applied Technology   Associate Degree (WELD.AAS)
## 1352                                                                                                                                  Aviation Maintenance Power Plant Applied Technology: Associate Degree (AVPT.AAS)
## 1353                                                                                                                                                               TECHNICAL DRAFTING and DESIGN TECHNOLOGY (TDDT.AAS)
## 1354                                                                                                                                                                                         Nurse Education (ERGN.AA)
## 1355                                                                                                                                                                              WIRE WELDING CERTIFICATE (WWLD.CER1)
## 1356                                                                                                                                                                                          Architectural Technology
## 1357                                                                                                                                                                                  Vocational Nursing   Certificate
## 1358                                                                                                                                                                          Vocational Nurse Education Certificate 2
## 1359                                                                                                                                                                                        Registered Nurse Education
## 1360                                                                                                                                                         Registered Nurse Education LVN/Paramedic to RN Transition
## 1361                                                                                                                                                                                                      Fire Science
## 1362                                                                                                                                                                                      Auto Body Applied Technology
## 1363                                                                                                                                                                                     Coding Specialist Certificate
## 1364                                                                                                                                                                      Heavy Equipment Crane Operator Short Term CE
## 1365                                                                                                                                                                                                Registered Nursing
## 1366                                                                                                                                                                                    Industrial Scaffolding Program
## 1367                                                                                                                                                                                               Electrocardiography
## 1368                                                                                                                                                                                Medication Aide for Permit Renewal
## 1369                                                                                                                                                                                                Billing and Coding
## 1370                                                                                                                                                                                            Pipeline/Petrochemical
## 1371                                                                                                                                                                                     Records and Filing Management
## 1372                                                                                                                                                                                                 Medical Secretary
## 1373                                                                                                                                                                                                   Legal Secretary
## 1374                                                                                                                                                                  Real Estate Salesperson (CE)- FAST TRACK PROGRAM
## 1375                                                                                                                                                                                     Mechanical Insulation Level I
## 1376                                                                                                                                                                                                        Nurse Aide
## 1377                                                                                                                                                                                                        Phlebotomy
## 1378                                                                                                                                                                                     Cabinetry Construction Skills
## 1379                                                                                                                                                                                          Administrative Assistant
## 1380                                                                                                                                                                                   Housewiring Construction Skills
## 1381                                                                                                                                                                         Beginning Woodworking Construction Skills
## 1382                                                                                                                                                                                                  Dental Assisting
## 1383                                                                                                                                                                                       Drilling Fluids Engineering
## 1384                                                                                                                                                                                          Dental Assisting Program
## 1385                                                                                                                                                                                             NCCER Level 1/OSHA 10
## 1386                                                                                                                                                                                             NCCER Level 1/OSHA 10
## 1387                                                                                                                                                                                             NCCER Level 1/OSHA 10
## 1388                                                                                                                                                                                             NCCER Level 1/OSHA 10
## 1389                                                                                                                                                                                      Cybersecurity Core Technical
## 1390                                                                                                                                                                     Cybersecurity Professional Penetration Tester
## 1391                                                                                                                                                                                            Data Science Immersive
## 1392                                                                                                                                                                                              Software Development
## 1393                                                                                                                                                                             CDL Training: Class A Tractor Trailer
## 1394                                                                                                                                                      Heating Ventilation Air Conditioning and Basic Refrigeration
## 1395                                                                                                                                                                                   PC & Network Support Technology
## 1396                                                                                                                                                                     Teacher Preparation and Certification Program
## 1397                                                                                                                                                                                        Vocational Nursing Program
## 1398                                                                                                                                                                                      Diesel Mechanics Certificate
## 1399                                                                                                                               Bilingual Computer/General Office Skills/Pre Vocational Basic Skills/GED/Externship
## 1400                                                                                                                                                        Bilingual Electrical Maintenance and Repair/GED/Externship
## 1401                                                                                                                                                                                                 Office Specialist
## 1402                                                                                                                                                      Office Specialist/Pre Vocational Basic Skills/GED/Externship
## 1403                                                                                                                                                                        Automotive Technology   1 Year Certificate
## 1404                                                                                                                                                                                             Electrical Technology
## 1405                                                                                                                                                                        Automotive Technology   2 Year Certificate
## 1406                                                                                                                                                                                         Automotive Technology AAS
## 1407                                                                                                                                                                               Computerized Accounting Certificate
## 1408                                                                                                                                                                                          Electrical Journeyman CE
## 1409                                                                                                                                   Heating Ventilation and Air Conditioning Residential Technician Cetificate HVAC
## 1410                                                                                                                                                        Industrial Mechanics and Maintenance Technology Technician
## 1411                                                                                                                                                                        Industrial Mechanic Technician Certificate
## 1412                                                                                                                                                             Network Security Technician Certificate of Completion
## 1413                                                                                                                                                                                      Machining Technology Program
## 1414                                                                                                                                                                               Robotics and Automation Certificate
## 1415                                                                                                                                             Criminal Justice Criminal Justice Option Law Enforcement AAS TAA Only
## 1416                                                                                                                                                                         Welding Technology Non Credit Certificate
## 1417                                                                                                                                                         Heating Ventilation and Air Conditioning Certificate HVAC
## 1418                                                                                                                                                                                                  Dental Assisting
## 1419                                                                                                                                                                                              Dental Assisting AAS
## 1420                                                                                                                                                                                                Dental Hygiene AAS
## 1421                                                                                                                                                                                        Emergency Medical Services
## 1422                                                                                                                                                                                          Pharmacy Technician 1 yr
## 1423                                                                                                                                                                                  Pharmacy Technology AAS TAA Only
## 1424                                                                                                                                                                            Emergency Medical Services 1 year Cert
## 1425                                                                                                                                                                                             Electrical Technology
## 1426                                                                                                                                                                                                   Social Work AAS
## 1427                                                                                                                                                                                                LVN Summer Program
## 1428                                                                                                                                                                                      Diesel Mechanics Certificate
## 1429                                                                                                                                                                  Culinary Arts Pastry Arts Certificate (TAA Only)
## 1430                                                                                                                                                                                   Respiratory Care Technology AAS
## 1431                                                                                                                                                                            Diesel Mechanics Assistant Certificate
## 1432                                                                                                                                                                                       Machining Technology Credit
## 1433                                                                                                                                                                          Culinary Arts AAS Pastry Arts (TAA Only)
## 1434                                                                                                                                                                                      Culinary Arts AAS (TAA Only)
## 1435                                                                                                                                                                         Basic Peace Officer Non-Credit (TAA only)
## 1436                                                                                                                                                                                                Dental Hygiene AAS
## 1437                                                                                                                                                                   Computer Aided Design Mechanical Specialization
## 1438                                                                                                                                                                                              Diesel Mechanics AAS
## 1439                                                                                                                                                                                  Physical Therapist Assistant AAS
## 1440                                                                                                                                                             Renewable Energy Technology Certificate of Completion
## 1441                                                                                                                                                                             Photovoltaic PV Installer Certificate
## 1442                                                                                                                                                                                         Computer Aided Design AAS
## 1443                                                                                                                                                                 Computer Aided Design Construction Specialization
## 1444                                                                                                                                                                             Culinary Arts Certificate  (TAA Only)
## 1445                                                                                                                                                              Culinary Arts Restaurant Mngt Certificate (TAA Only)
## 1446                                                                                                                                                                                   Licensed Vocational Nurse (LVN)
## 1447                                                                                                                                                                                                 Nursing Assistant
## 1448                                                                                                                                                                           Renewable Energy Technology Systems AAS
## 1449                                                                                                                                                                      Culinary Arts AAS Restaurant Mgnt (TAA Only)
## 1450                                                                                                                                                                                     Medical Assisting Program AAS
## 1451                                                                                                                                               Business Mgmt Office Administration AAS  Major Code 18033  TAA ONLY
## 1452                                                                                                                                                                              Court Reporting AAS Major Code 17442
## 1453                                                                                                                                                                                      Drafting and Design Tech AAS
## 1454                                                                                                                                             Information Technology Systems Networking Option AAS with Remedials 5
## 1455                                                                                                                                                                                    Paralegal AAS Major Code 17022
## 1456                                                                                                                                                               Electrical Engineering AA Major code 70101 TAA ONLY
## 1457                                                                                                                                                       Biological Sciences PreMed Option Major code 65601 TAA ONLY
## 1458                                                                                                                                                                                    Computer General Office Skills
## 1459                                                                                                                                                                                          Computer Programming AAS
## 1460                                                                                                                                                                     Computer Science AA Major Code 42901 TAA ONLY
## 1461                                                                                                                                                                             Business AA Major code 42801 TAA ONLY
## 1462                                                                                                                                                 Business Management  Small Business AAS Major Code 17412 TAA ONLY
## 1463                                                                                                                                                                                     Medical Imaging Tech AAS MITR
## 1464                                                                                                                                                                                                       Nursing AAS
## 1465                                                                                                                                                                                    Computer Support Technician A+
## 1466                                                                                                                                                                                             Auto Collision Repair
## 1467                                                                                                                                                  Criminal Justice Homeland Security with Remedials 5 AAS TAA only
## 1468                                                                                                                                                Fire Technology Basic Firefighter Certificate of Completion Credit
## 1469                                                                                                                                                                                     Health Information Management
## 1470                                                                                                                                                                 Heating Ventilation and Air Conditioning HVAC AAS
## 1471                                                                                                                                                                                     Licensed Vocational Nurse LVN
## 1472                                                                                                                                                                             Medical Assisting Technology MDCA AAS
## 1473                                                                                                                                                      Advertising Graphic and Design AAS Major Code 17392 TAA ONLY
## 1474                                                                                                                                   Child Development Teaching Assistant Certificate of Completion Major code 15103
## 1475                                                                                                                                             Criminal Justice Homeland Security Certificate of Completion TAA only
## 1476                                                                                                                                                           Fire Technology  Basic Firefighter AAS with Remedials 5
## 1477                                                                                                                                                                                     Diagnostic Medical Sonography
## 1478                                                                                                                                                                Digital Video Production Major Code 17642 TAA ONLY
## 1479                                                                                                                                                                              Emergency Medical Services 1 yr Cert
## 1480                                                                                                                                                                                                    Accounting AAS
## 1481                                                                                                                                                                                     Certified Logistics Technican
## 1482                                                                                                                                                                             Child Development Teaching Option AAS
## 1483                                                                                                                                                                     Criminal Justice AA Major code 42921 TAA ONLY
## 1484                                                                                                                                            Criminal Justice-Criminal Justice Option Law Enforcement AAS  TAA only
## 1485                                                                                                                                                                                        Pediatric Dental Assistant
## 1486                                                                                                                                                                                                        NURSE AIDE
## 1487                                                                                                                                                                                                 Medical Assistant
## 1488                                                                                                                                                                                                 Medical Assistant
## 1489                                                                                                                                                                               Structural and Pipe Welding Program
## 1490                                                                                                                                                                                  Clinical Hemodialysis Technology
## 1491                                                                                                                                                                                               Pharmacy Technology
## 1492                                                                                                                                                                           Nurse Aide Certificate Training Program
## 1493                                                                                                                                                                     Project Management and Agile Scrum IT Program
## 1494                                                                                                                                                                                   Customer Service Representative
## 1495                                                                                                                                                            Heating Ventilation Air Conditioning and Refrigeration
## 1496                                                                                                                                                            Heating Ventilation Air Conditioning and Refrigeration
## 1497                                                                                                                                                                                             Certified Nursing Aid
## 1498                                                                                                                                                                          Welding Technology Certificate   General
## 1499                                                                                                                                                                                             Electrical Technology
## 1500                                                                                                                                                                                      LVN RN Bridge Program (RNEC)
## 1501                                                                                                                                                                                                        Phlebotomy
## 1502                                                                                                                                                                          Instrumentation and Electrical (I&E) AAS
## 1503                                                                                                                                                                            Pump and Engine Technology Certificate
## 1504                                                                                                                                                                            Instrumentation Technology Certificate
## 1505                                                                                                                                                                                    Process Technology Certificate
## 1506                                                                                                                                                                                             Certified Nursing Aid
## 1507                                                                                                                                                                                             Electrical Technology
## 1508                                                                                                                                                                                                        Phlebotomy
## 1509                                                                                                                                                                                      LVN RN Bridge Program (RNEC)
## 1510                                                                                                                                                                             Instrumentation Technology Certficate
## 1511                                                                                                                                                                                                        Phlebotomy
## 1512                                                                                                                                                                                             Electrical Technology
## 1513                                                                                                                                                                                             Certified Nursing Aid
## 1514                                                                                                                                                                                      LVN RN Bridge Program (RNEC)
## 1515                                                                                                                                                                             Instrumentation Technology Certficate
## 1516                                                                                                                                                                          Welding Technology Certificate   General
## 1517                                                                                                                                                                                      LVN RN Bridge Program (RNEC)
## 1518                                                                                                                                                                                      LVN RN Bridge Program (RNEC)
## 1519                                                                                                                                                   Truck and Bus Driver/Commercial Vehicle Operator and Instructor
## 1520                                                                                                                                                   Truck and Bus Driver/Commercial Vehicle Operator and Instructor
## 1521                                                                                                                                                   Truck and Bus Driver/Commercial Vehicle Operator and Instructor
## 1522                                                                                                                                                                                  Diesel Mechanic Technology Basic
## 1523                                                                                                                                                                         Diesel Mechanic Technology Transportation
## 1524                                                                                                                                                                 Diesel Mechanic Technology and Equipment Advanced
## 1525                                                                                                                                                                       Vocational Nursing Program 4-quarter Option
## 1526                                                                                                                                                  Associate Degree in Nursing Program LPN/LVN to ADN Bridge Option
## 1527                                                                                                                                                       Baccalaureate Degree in Nursing Program Prelicensure Option
## 1528                                                                                                                                                           Welding Technology Level Two Advanced Level Certificate
## 1529                                                                                                                                                               Electrical & Electronics  Level One  Advanced Level
## 1530                                                                                                                                                      Electrical & Electronics  Level One Certificate  Entry Level
## 1531                                                                                                                  Heating Ventilation Air Conditioning and Refrigeration (HVAC) Level One Certificate  Entry Level
## 1532                                                                                                                            Heating Ventilation Air Conditioning and Refrigeration (HVAC) Level Two Advanced Level
## 1533                                                                                                                            Heating Ventilation Air Conditioning and Refrigeration (HVAC) Level One Advanced Level
## 1534                                                                                                                                                                   Welding Technology Level One Certificate  Entry
## 1535                                                                                                                                                                  Welding Technology  Associate of Applied Science
## 1536                                                                                                                                                           Welding Technology Level One Advanced Level Certificate
## 1537                                                                                                                                           Electrical & Electronics Technology Associate of Applied Science Degree
## 1538                                                                                                                                    Heating Ventilation Air Conditioning and Refrigeration (HVAC) Associate Degree
## 1539                                                                                                                                                                     Electrical & Electronics  Level Two  Advanced
## 1540                                                                                                                                                                    Computer Networking System Level 1Intermediate
## 1541                                                                                                                                                                        Computer Networking System Level 2 Advance
## 1542                                                                                                                                                                     Computer Networking System Systems AAS Degree
## 1543                                                                                                                                                                                          Associate Degree Nursing
## 1544                                                                                                                                                                           Computer Networking System Level 1 Baic
## 1545                                                                                                                                                                                         Licensed Vocational Nurse
## 1546                                                                                                                                                                LVN to Transition Associate Degree Nursing Program
## 1547                                                                                                                                                                                                     Radiology AAS
## 1548                                                                                                                                                                          Instrumentation Technology Level 1 Basic
## 1549                                                                                                                                                                        Instrumentation Technology Level 1 Advance
## 1550                                                                                                                                                                        Instrumentation Technology Level 2 Advance
## 1551                                                                                                                                                                                    Instrumentation Technology AAS
## 1552                                                                                                                                                                                           Pipefitting  NCCER Core
## 1553                                                                                                                                                                                        Pipefitting  NCCER Level 1
## 1554                                                                                                                                                                                        Pipefitting  NCCER Level 2
## 1555                                                                                                                                                                                        Health Care Management AAS
## 1556                                                                                                                                                                                       Computer Support Technician
## 1557                                                                                                                                                                                    Certified Logistics Technician
## 1558                                                                                                                                                                                              Certified Nurse Aide
## 1559                                                                                                                                             CompTIA Certification Training A+ Network+ Security+ Voucher Included
## 1560                                                                                                                                                         CompTIA Security+ Certification Training Voucher Included
## 1561                                                                                                                                                                CompTIA A+ Certification Training Voucher Included
## 1562                                                                                                                                                                  CompTIA A+ with ITIL Foundation Voucher Included
## 1563                                                                                                                                                          CompTIA Network+ Certification Training Voucher Included
## 1564                                                                                                                                                                          CompTIA IT Fundamentals Voucher Included
## 1565                                                                                                                                                                   Information Security Training  Voucher Included
## 1566                                                                                              Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology
## 1567                                                                                                                                                                    Certified Electronic Health Records Specialist
## 1568                                                                                                                                              Certified Electronic Health Records Specialist + Medical Terminology
## 1569                                                                                                                                              CompTIA Certification Training: Network+ Security+ Vouchers Included
## 1570                                                                                                                      Certified Medical Administrative Assistant with Medical Billing and Coding Vouchers Included
## 1571                                                                                                                                                  Certified Medical Administrative Assistant CMAA Voucher Included
## 1572                                                                                                                                                      CompTIA Advanced Security Practitioner CASP Voucher Included
## 1573                                                                                                                                                      Certified Information Security Manager CISM Voucher Included
## 1574                                                                                                                                                       Certified Information Systems Auditor CISA Voucher Included
## 1575                                                                                                                                         Certified Information Systems Security Professional CISSP Voucher Incuded
## 1576                                                                                                                                                                                     Full Stack Software Developer
## 1577                                                                                                                                        CompTIA Certification Training: ITF+ A+ Network Security Vouchers Included
## 1578                                                                                                                                                                                     Diagnostic Medical Sonography
## 1579                                                                                                                                                                                           Surgical Technology AAS
## 1580                                                                                                                                                                                             Barbering/Cosmetology
## 1581                                                                                                                                                                                                 Medical Assistant
## 1582                                                                                                                                                                                               Pharmacy Technician
## 1583                                                                                                                                                                                             Certified Nurses Aide
## 1584                                                                                                                                                                                       Commercial Driver's License
## 1585                                                                                                                                                                                          Associate Degree Nursing
## 1586                                                                                                                                                                                Associate Degree Nursing LVN to RN
## 1587                                                                                                                                                                                    Basic Manufacturing Technician
## 1588                                                                                                                                                              Heating Air Conditioning and Refigeration Technology
## 1589                                                                                                                           Heating Air Conditioning and Refrigeration Technology Technician Apprentice Certificate
## 1590                                                                                                                                                                                           Patient Care Technician
## 1591                                                                                                                                                                                                Welding Technology
## 1592                                                                                                                                                                                  Applications Software Specialist
## 1593                                                                                                                                                                                      Dental Assisting Certificate
## 1594                                                                                                                                                                                Office and Computer Technology AAS
## 1595                                                                                                                                                                                            Accounting Certificate
## 1596                                                                                                                                                                                          Administrative Assistant
## 1597                                                                                                                                                                     Advanced Manufacturing Technician Certificate
## 1598                                                                                                                                                                                     Business - General Management
## 1599                                                                                                                                                                                        Clinical Medical Assistant
## 1600                                                                                                                                                                                              Dental Assisting AAS
## 1601                                                                                                                                                                                 Industrial Maintenance Technician
## 1602                                                                                                                                                                                 Advanced Manufacturing Technology
## 1603                                                                                                                                                                                  Medical Administrative Assistant
## 1604                                                                                                                                                                                                 Structural Welder
## 1605                                                                                                                                                                                                    Accounting AAS
## 1606                                                                                                                                                                                       Business and Management AAS
## 1607                                                                                                                                                             Heating Air Conditioning and Refrigeration Technician
## 1608                                                                                                                                                                                                Combination Welder
## 1609                                                                                                                                                                                 Residential Electrical Technology
## 1610                                                                                                                                                        Electrical Technology: Associate of Applied Science Degree
## 1611                                                                                                                                                                                  Commercial Electrical Technology
## 1612                                                                                                                                                                                                Vocational Nursing
## 1613                                                                                                                                                                          Programmable Logic Controller Technician
## 1614                                                                                                                                                                             RN to Bachelors of Science in Nursing
## 1615                                                                                                                                                                                              Certified Nurse Aide
## 1616                                                                                                                                                                                             Child Development AAS
## 1617                                                                                                                                                                              Child Development Administrator Cert
## 1618                                                                                                                                                                                     Child Development Certificate
## 1619                                                                                                                                                                       Child Development-Occupational Skills Award
## 1620                                                                                                                                                    Child Development Associate Training-Occupational Skills Award
## 1621                                                                                                                                                                                  Professional Truck Driving (CDL)
## 1622                                                                                                                                                                                    Bachelor Science Cybersecurity
## 1623                                                                                                                                                                                    Bachelor of Science in Nursing
## 1624                                                                                                                                                                  Bachelor of Science in Nursing Completion Degree
## 1625                                                                                                                                                               Associate of Applied Science Information Technology
## 1626                                                                                                                                            Associate of Applied Science Airframe/Powerplant Technologies Combined
## 1627                                                                                                                                                                        Bachelor of Science in Information Systems
## 1628                                                                                                                                                                                       Pharmacy Technician Program
## 1629                                                                                                                                                                                     Phlebotomy Technician Program
## 1630                                                                                                                                                                                               Pharmacy Technician
## 1631                                                                                                                                                                                                 Medical Assistant
## 1632                                                                                                                                                                                          Associate Degree Nursing
## 1633                                                                                                                                       Automotive Technology   Advanced Automotive Repair Tech Cert. of Technology
## 1634                                                                                                                                                                 Automotive Technology  Basic Automotive Repair CC
## 1635                                                                                                                                                                                        Emergency Medical Services
## 1636                                                                                                                                                                    Vocational Nursing   Certificate of Completion
## 1637                                                                                                                                                                 Computer Science   Programming Specialization AAS
## 1638                                                                                                                                                                                Medical Office Assistant Support I
## 1639                                                                                                                                                                            Vocational Nursing Cert. of Completion
## 1640                                                                                                                                                            Welding Special Arc Welding Skills Cert. of Completion
## 1641                                                                                                                                                                  Essential Automotive Brakes  Suspension Steering
## 1642                                                                                                                                                    Essential Automotive Electrical And Electronic Troubleshooting
## 1643                                                                                                                                                   Essential Automotive Air Condition & Heating with Engine Repair
## 1644                                                                                                                                                                 Essential Automotive Transmission Repair/Overhaul
## 1645                                                                                                                                                               Essential Automotive Engine Performance and Repairs
## 1646                                                                                                                                                   HBI PACT (Pre Apprenticeship Certificate Training) (Fort Bliss)
## 1647                                                                                                                                                                                       Business Administration AAS
## 1648                                                                                                                                                                                      Business Certificate Level I
## 1649                                                                                                                                                                    Business Office Automation Certificate Level I
## 1650                                                                                                                                                        Business Specialization in Management Certificate Level II
## 1651                                                                                                                                                             Information Technology Network Support Specialist AAS
## 1652                                                                                                                                                                           Medical Assistant   Certificate Level I
## 1653                                                                                                                                                                                                        Nurse Aide
## 1654                                                                                                                                                             Business Administrative Services Certificate Level II
## 1655                                                                                                                                                          Computer Network Support Specialist Certificate Level II
## 1656                                                                                                                                                                                     Business Support Services AAS
## 1657                                                                                                                                                                                    Nursing   Accelerated ADN (RN)
## 1658                                                                                                                                                             Computer and Information Sciences Certificate Level I
## 1659                                                                                                                             Computer and Information Sciences General Information Management Certificate Level II
## 1660                                                                                                                                                                             Nursing Associate Degree Nursing (RN)
## 1661                                                                                                                                                                               Nursing Licensed Vocational Nursing
## 1662                                                                                                                                                                                             Truck Driver Training
## 1663                                                                                                                                                                                      Business Certificate Level I
## 1664                                                                                                                                                                         Business Specialization in Management AAS
## 1665                                                                                                                                                                                                 Medical Assistant
## 1666                                                                                                                                                                                                   Medication Aide
## 1667                                                                                                                                                                                              MIG Aluminum Welding
## 1668                                                                                                                                                                                                        Phlebotomy
## 1669                                                                                                                                                                                                      Pipe Welding
## 1670                                                                                                                                                                                Professional Truck Driver Training
## 1671                                                                                                                                                                                       Business Administration AAS
## 1672                                                                                                                                                   HVAC/R (Heating Ventilation Air Conditioning and Refrigeration)
## 1673                                                                                                                                                                                                     Pharmacy Tech
## 1674                                                                                                                                                                                 Auto Maintenance and Light Repair
## 1675                                                                                                                                                        Business Specialization in Management Certificate Level II
## 1676                                                                                                                                                                                    Nursing   Accelerated ADN (RN)
## 1677                                                                                                                                                                                         Radiologic Technology AAS
## 1678                                                                                                                                                                             Nursing   Licensed Vocational Nursing
## 1679                                                                                                                                                                             Nursing Associate Degree Nursing (RN)
## 1680                                                                                                                                                                                              SMAW (Stick) Welding
## 1681                                                                                                                                                                                Surgical/Operating Room Technician
## 1682                                                                                                                                                                                                       TIG Welding
## 1683                                                                                                                                                     Business Specialization in Management Information Systems AAS
## 1684                                                                                                                                                                                              Certified Nurse Aide
## 1685                                                                                                                                                                                                     AAT Education
## 1686                                                                                                                                                                                                        Phlebotomy
## 1687                                                                                                                                                                                 Microsoft Office Specialist- Word
## 1688                                                                                                                                                                                Microsoft Office Specialist- Excel
## 1689                                                                                                                                                    Computer and Information Sciences Security Certificate Level I
## 1690                                                                                                                                                      Computer Software and Media Applications Certificate Level I
## 1691                                                                                                                                       Information Technology Computer User Support Specialist Certificate Level I
## 1692                                                                                                                                                                                     Craftsman Certificate Level I
## 1693                                                                                                                                               Information Technology Computer Network Support User Specialist AAS
## 1694                                                                                                                                               Information Technology Computer Software and Media Applications AAS
## 1695                                                                                                                                              Information Technology Computer and Information Systems Security AAS
## 1696                                                                                                                                              Information Technology Computer and Information Sciences General AAS
## 1697                                                                                                                                                     Computer and Information Sciences General Certificate Level I
## 1698                                                                                                                                                                                             Welding Certificate 1
## 1699                                                                                                                                                                                  Green Construction Certificate 1
## 1700                                                                                                                                                                                       Electrical Training Program
## 1701                                                                                                                                                                             Applied Telecommunication Maintenance
## 1702                                                                                                                                                                                  Certified Maintenance Technician
## 1703                                                                                                                   HVAC R Heating Ventilation Air Conditioning and Refrigeration Engineering Technology Technician
## 1704                                                                                                                                                                                      Plumbing Certificate Level I
## 1705                                                                                                                                                                                                  Dental Assistant
## 1706                                                                                                                                                                                                 Medical Assistant
## 1707                                                                                                                                                                                          Medical Coding & Billing
## 1708                                                                                                                                                                                             Phlebotomy Technician
## 1709                                                                                                                                                                                               Pharmacy Technician
## 1710                                                                                                                                                                                        Network Support Technician
## 1711                                                                                                                                                                                          Medical Office Assistant
## 1712                                                                                                                                                                                     Electrocardiograph Technician
## 1713                                                                                                                                                                                           Patient Care Technician
## 1714                                                                                                                                                                                          Commercial Truck Driving
## 1715                                                                                                                                                                                     Health Information Technology
## 1716                                                                                                                                                                                        Medical Billing and Coding
## 1717                                                                                                                                                                                               Pharmacy Technician
## 1718                                                                                                                                                                         Medical Assistant w/Phlebotomy Technician
## 1719                                                                                                                                                                                                Electrical Level 2
## 1720                                                                                                                                                                                                      HVAC Level 1
## 1721                                                                                                                                                                                                      HVAC Level 2
## 1722                                                                                                                                                                                  Office and Computer Fundamentals
## 1723                                                                                                                                                                                                  Plumbing Level 2
## 1724                                                                                                                                                                                                 Train the Trainer
## 1725                                                                                                                                                                           Property and Casualty Insurance Program
## 1726                                                                                                                                                                                 Information Technology Foundation
## 1727                                                                                                                                                                                    Integrated Construction Skills
## 1728                                                                                                                                                                                       Warehouse Logistics Program
## 1729                                                                                                                                                               Hardware and Software Essentials - A+ Certification
## 1730                                                                                                                                                                      Networking Essentials  - Net + Certification
## 1731                                                                                                                                                            Network Security Essentials - Security + Certification
## 1732                                                                                                                                                                                             Flux Core Arc Welding
## 1733                                                                                                                                                                                          Gas Tungsten Arc Welding
## 1734                                                                                                                                                                                                      Pipe Welding
## 1735                                                                                                                                                                           Shielded Metal Arc Welding (SMAW Plate)
## 1736                                                                                                                                                                                             Gas Metal Arc Welding
## 1737                                                                                                                                                                                             Flux Core Arc Welding
## 1738                                                                                                                                                                                             Gas Metal Arc Welding
## 1739                                                                                                                                                                                          Gas Tungsten Arc Welding
## 1740                                                                                                                                                                                                      Pipe Welding
## 1741                                                                                                                                                                           Shielded Metal Arc Welding (SMAW Plate)
## 1742                                                                                                                                                                                                 Combination Plate
## 1743                                                                                                                                                                                                 IT System Analyst
## 1744                                                                                                                                                                                             Network Administrator
## 1745                                                                                                                                                                                       System Administrator (MCSE)
## 1746                                                                                                                                                                                              Server Administrator
## 1747                                                                                                                                                                         Cisco Network Engineer - Training Seminar
## 1748                                                                                                                                                                      Cisco Network Engineer II - Training Seminar
## 1749                                                                                                                                                                                CLOUD SYSTEM ADMINISTRATOR seminar
## 1750                                                                                                                                                                                                   Insurance Agent
## 1751                                                                                                                                                                                        Accounting Clerk (On Line)
## 1752                                                                                                                                                                                    Accounting Specialist (Online)
## 1753                                                                                                                                                                                 Administrative Assistant (Online)
## 1754                                                                                                                                                                      Executive Administrative Assistant (On Line)
## 1755                                                                                                                                                                       Healthcare Information Technician (On Line)
## 1756                                                                                                                                                                                         Legal Assistant (On Line)
## 1757                                                                                                                                                                               Medical Record Technician (On Line)
## 1758                                                                                                                                                                                       Office Management (On Line)
## 1759                                                                                                                                                                             Customer Service Specialist (On Line)
## 1760                                                                                                                                                                                Cisco Network Associates (On Line)
## 1761                                                                                                                                                                                         Cisco Design Professional
## 1762                                                                                                                                                                                       Microsoft Office Specialist
## 1763                                                                                                                                                                                        Cisco Network Professional
## 1764                                                                                                                                                                                        Criminal Justice Associate
## 1765                                                                                                                                                                   Medical Billing and Coding Specialist (On-Line)
## 1766                                                                                                                                                                                     Microsoft Solutions Associate
## 1767                                                                                                                                                                                        Microsoft Solutions Expert
## 1768                                                                                                                                                                                              Medical Data Analyst
## 1769                                                                                                                                                                                                Payroll Accounting
## 1770                                                                                                                                                                                          Tax Accounting (On-Line)
## 1771                                                                                                                                                                                          Medical Office Assistant
## 1772                                                                                                                                                                                            Medical Office Manager
## 1773                                                                                                                                                                                      Real Estate Office Assistant
## 1774                                                                                                                                                                                         Sales Associate (On-Line)
## 1775                                                                                                                                                                        Accounting Specialist Certificate (Online)
## 1776                                                                                                                                                                             Legal Assistant Certificate (On Line)
## 1777                                                                                                                                                                     Administrative Assistant Certificate (Online)
## 1778                                                                                                                                                                    Cisco Network Associates Certificate (On Line)
## 1779                                                                                                                                                                    Medical Office Assistant Certificate (On Line)
## 1780                                                                                                                                                                   Medical Record Technician Certificate (On Line)
## 1781                                                                                                                                                                            Accounting Clerk Certificate (On Line)
## 1782                                                                                                                                                                                     Pharmacy Technician (On-Line)
## 1783                                                                                                                                                                           Office Management Certificate (On Line)
## 1784                                                                                                                                                                 Customer Service Specialist Certificate (On Line)
## 1785                                                                                                                                                                      Bookkeeping Specialist Certificate (On Line)
## 1786                                                                                                                                                          Executive Administrative Assistant Certificate (On Line)
## 1787                                                                                                                                                                          CompTIA Specialist Certificate (On Line)
## 1788                                                                                                                                                           Healthcare Information Technician Certificate (On Line)
## 1789                                                                                                                                                                      Industrial Electrical Technology Certificate
## 1790                                                                                                                                                                                                Diesel Certificate
## 1791                                                                                                                                                                                             Diesel Technology AAS
## 1792                                                                                                                                      Heating VentilationAir Conditioning and Refrigeration Technology Certificate
## 1793                                                                                                                                                                             Industrial Maintenance Technology AAS
## 1794                                                                                                                                                                     Industrial Maintenance Technology Certificate
## 1795                                                                                                                                                         Heating VentilationAir Conditioning and Refrigeration AAS
## 1796                                                                                                                                                                                      Advanced Welding Certificate
## 1797                                                                                                                                                                                                      Fire Academy
## 1798                                                                                                                                                                                            Process Technology AAS
## 1799                                                                                                                                                                        Process Technology Petroleum Specialty AAS
## 1800                                                                                                                                                                                                Radiologic Science
## 1801                                                                                                                                                                                                       Welding AAS
## 1802                                                                                                                                                                                          Associate Degree Nursing
## 1803                                                                                                                                                                                         Automotive Technology AAS
## 1804                                                                                                                                                                                 Automotive Technology Certificate
## 1805                                                                                                                                                                        Kilgore College Commercial Driving Academy
## 1806                                                                                                                                                                                     Legal Assisting/Paralegal AAS
## 1807                                                                                                                                                                                         Medication Administration
## 1808                                                                                                                                                                        Occupational Safety and Health Certificate
## 1809                                                                                                                                                                                                    Accounting AAS
## 1810                                                                                                                                                                                            Accounting Certificate
## 1811                                                                                                                                                                                          Corrosion Technology AAS
## 1812                                                                                                                                                                     Occupational Safety and Health Technology AAS
## 1813                                                                                                                                                                                                        Phlebotomy
## 1814                                                                                                                                                                                      Physical Therapist Assistant
## 1815                                                                                                                                                                             Electric Power Technology Certificate
## 1816                                                                                                                                                                            Nursing AAS (Integrated Curriculum) RN
## 1817                                                                                                                                                                                            Process Technology AAS
## 1818                                                                                                                                                                  Computer Networking Specialization AAS MICROSOFT
## 1819                                                                                                                                                                                    Instrumentation Technology AAS
## 1820                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 1821                                                                                                                                Alternative Teacher Certification (Math Science BilingualESL or Special Education)
## 1822                                                                                                                                                                                                    Accounting AAS
## 1823                                                                                                                                                                      Computer Networking Specialization AAS CISCO
## 1824                                                                                                                                                       Network and Computer System Administrator Basic Certificate
## 1825                                                                                                                                                                  CISCO Network Administrator Level II Certificate
## 1826                                                                                                                                                                                 CISCO Network Analyst Certificate
## 1827                                                                                                                                             Network & Computer System Administrator Advanced Level II Certificate
## 1828                                                                                                                                                                     Network and Computer System Administrator AAS
## 1829                                                                                                                                                  Transition to Professional Nursing for Articulating Students AAS
## 1830                                                                                                                                                                                    Vocational Nursing Certificate
## 1831                                                                                                                                                       CISCO Network Administrator (CCNA) Certificate (Non credit)
## 1832                                                                                                                                                                   Instrumentation Technology Level II Certificate
## 1833                                                                                                                                                                                    Respiratory Care Therapist AAS
## 1834                                                                                                                                                                                             Dental Hygienists AAS
## 1835                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 1836                                                                                                                                                                              Medical Coder Certificate Fast Tract
## 1837                                                                                                                                                                      CCNA (Cisco Certified Network Administrator)
## 1838                                                                                                                                                                                      Network Administrator (MCSE)
## 1839                                                                                                                                                                                                      SAP Training
## 1840                                                                                                                                                                                           CDL Restriction Removal
## 1841                                                                                                                                                                              Industrial Mechanics Technology  AAS
## 1842                                                                                                                                                                                        Instrumentation Technology
## 1843                                                                                                                                                                                                    Police Academy
## 1844                                                                                                                                                                     Professional Driving Academy Refresher Course
## 1845                                                                                                                                                                         Welding Program  Workforce Training Dept.
## 1846                                                                                                                                                                                           Welding Technology  AAS
## 1847                                                                                                                                                                                   Welding Technology  Certificate
## 1848                                                                                                                                                                                  Process Operating Technology AAS
## 1849                                                                                                                                                                                           Medication Aide Program
## 1850                                                                                                                                                                                        Clinical Medical Assistant
## 1851                                                                                                                                                                                             Phlebotomy Technician
## 1852                                                                                                                                                                                                  Dental Assistant
## 1853                                                                                                                                                                              Introduction to Welding Fundamentals
## 1854                                                                                                                                                                                        Shielded Metal Arc Welding
## 1855                                                                                                                                                                              Pharmacy Technician Exam Review Prep
## 1856                                                                                                                                                                                                       Class A CDL
## 1857                                                                                                                                                                                                   HH  Class B CDL
## 1858                                                                                                                                                                               Class A CDL (Automatic Restriction)
## 1859                                                                                                                                                                                      Class A CDL (No Restriction)
## 1860                                                                                                                                                                                              CDL Refresher Course
## 1861                                                                                                                                                                                            CDL Advanced Refresher
## 1862                                                                                                                                                                                        Clinical Medical Assistant
## 1863                                                                                                                                                                                       Emergency Medical Responder
## 1864                                                                                                                                                                                      Emergency Medical Technician
## 1865                                                                                                                                                                                       Emergency Medical Responder
## 1866                                                                                                                                                                                      Emergency Medical Technician
## 1867                                                                                                                                                                                                       Class B CDL
## 1868                                                                                                                                                                            Instrumentation Technology Certificate
## 1869                                                                                                                                                                                    Mobile Crane Operator Training
## 1870                                                                                                                                                                Associate of Applied Science Industrial Technology
## 1871                                                                                                                                                                            Vocational Nursing Program Certificate
## 1872                                                                                                                                                                                      Upward Mobility Nursing R.N.
## 1873                                                                                                                                                                        Class A Commercial Driver's License Course
## 1874                                                                                                                                                                        Class A Commercial Driver's License Course
## 1875                                                                                                                                                                          Class B Commercial Truck Driving Program
## 1876                                                                                                                                                                                                    Material Mover
## 1877                                                                                                                                                                                                  Dental Assistant
## 1878                                                                                                                                                                            Welding Technology Certificate Program
## 1879                                                                                                                                                                             Welding Technology Workforce Training
## 1880                                                                                                                                                                                               Pharmacy Technician
## 1881                                                                                                                                                                                      Advanced Pharmacy Technician
## 1882                                                                                                                                                                                           Court Reporting Program
## 1883                                                                                                                                                                                             Phlebotomy Technician
## 1884                                                                                                                                                                                     Ordinary Seaman Certificate I
## 1885                                                                                                                                                                                    Ordinary Seaman Certificate II
## 1886                                                                                                                                                                                   Ordinary Seaman Certificate III
## 1887                                                                                                                                              Class B Commercial Truck Driving Program with School Bus Endorsement
## 1888                                                                                                                                                                        Class A Commercial Driver's License Course
## 1889                                                                                                                                                                                        Instrumentation Technology
## 1890                                                                                                                                                                                                Process Technology
## 1891                                                                                                                                                                                      Upward Mobility Nursing R.N.
## 1892                                                                                                                                                                              Certified Clinical Medical Assistant
## 1893                                                                                                                                                                          Intermediate Welding Certificate Program
## 1894                                                                                                                                                                                                       Scaffolding
## 1895                                                                                                                                                                                              Construction laborer
## 1896                                                                                                                                                                                                         Carpentry
## 1897                                                                                                                                                                                           Phlebotomy Technologist
## 1898                                                                                                                                                                                        Class B Commercial Driving
## 1899                                                                                                                                                                                                   Full-Time CDL B
## 1900                                                                                                                                                                                   Certified Phlegotomy Technician
## 1901                                                                                                                                                                                                   Part-Time CDL B
## 1902                                                                                                                                                                                           NCCER Carpentry Level 1
## 1903                                                                                                                                                                                                   Full-Time CDL A
## 1904                                                                                                                                                                                                    NCCER Scaffold
## 1905                                                                                                                                                                                         NCCER Const. Laborer L. 1
## 1906                                                                                                                                                                              Medical Office Assistant Certificate
## 1907                                                                                                                                                                                        Medical Coding Certificate
## 1908                                                                                                                                                      Associate of Applied Scince in Medical Office Administration
## 1909                                                                                                                                                            Heating Air Conditioning and Refrigeration Certificate
## 1910                                                                                                                                        Associate of Applied Science in Heating Air Conditioning and Refrigeration
## 1911                                                                                                                                                         Associate of Applied Science in Medical Coding Specialist
## 1912                                                                                                                                                            Class A Commercial Driver's License Course with Hazmat
## 1913                                                                                                                                                                            Class B Commercial Driving with Hazmat
## 1914                                                                                                                                              Class A Commercial Driver's License Course with Hazmat Jasper Campus
## 1915                                                                                                                                                                                               Class B w Schoolbus
## 1916                                                                                                                                                                                 Class B w Schoolbus Jasper Campus
## 1917                                                                                                                                                                                                Vocational Nursing
## 1918                                                                                                                                                              Commercial Refrigeration Heating and Air Conditionin
## 1919                                                                                                                                                                                         Diploma Medical Assistant
## 1920                                                                                                                                                                                             Electrical Technician
## 1921                                                                                                                                                                         Lab Assistant EKG Technician/Phlebotomist
## 1922                                                                                                                                                                             Medical Biller/Coder/Office Assistant
## 1923                                                                                                                                                                                                Vocational Nursing
## 1924                                                                                                                                                                         Cloud Computing & Cybersecurity Associate
## 1925                                                                                                                                                                                 Cisco Network Engineer (Wireless)
## 1926                                                                                                                                                                             Senior Business Data Analyst Training
## 1927                                                                                                                                                                         Cisco Network Engineer (Service Provider)
## 1928                                                                                                                                                                                  Cisco Internet Expert (Security)
## 1929                                                                                                                                                                          Cisco Internet Expert (Service Provider)
## 1930                                                                                                                                                                                  Cisco Internet Expert (Wireless)
## 1931                                                                                                                                                                            Cisco Network Engineer (Collaboration)
## 1932                                                                                                                                                                              Cisco Network Engineer (Data Center)
## 1933                                                                                                                                                        Cisco Network Engineer (Enterprise Infrastructure) Program
## 1934                                                                                                                                                                                 Cisco Network Engineer (Security)
## 1935                                                                                                                                                                                          Big Data Expert Training
## 1936                                                                                                                                                                             Cisco Internet Expert (Collaboration)
## 1937                                                                                                                                                                               Cisco Internet Expert (Data Center)
## 1938                                                                                                                                                         Cisco Internet Expert (Enterprise Infrastructure) Program
## 1939                                                                                                                                                        Cisco Network Engineer (Enterprise Infrastructure) Program
## 1940                                                                                                                                                                                 Cisco Network Engineer (Security)
## 1941                                                                                                                                                                                          Big Data Expert Training
## 1942                                                                                                                                                                             Cisco Internet Expert (Collaboration)
## 1943                                                                                                                                                                               Cisco Internet Expert (Data Center)
## 1944                                                                                                                                                         Cisco Internet Expert (Enterprise Infrastructure) Program
## 1945                                                                                                                                                                                  Cisco Internet Expert (Security)
## 1946                                                                                                                                                                          Cisco Internet Expert (Service Provider)
## 1947                                                                                                                                                                                  Cisco Internet Expert (Wireless)
## 1948                                                                                                                                                                            Cisco Network Engineer (Collaboration)
## 1949                                                                                                                                                                              Cisco Network Engineer (Data Center)
## 1950                                                                                                                                                                         Cisco Network Engineer (Service Provider)
## 1951                                                                                                                                                                                 Cisco Network Engineer (Wireless)
## 1952                                                                                                                                                                             Senior Business Data Analyst Training
## 1953                                                                                                                                                                                            Applied Accounting AAS
## 1954                                                                                                                                                                           Applied Accounting One Year Certificate
## 1955                                                                                                                                                    Commercial Air Conditioning & Refrigeration 1 year certificate
## 1956                                                                                                                                                                                                  Dental Assistant
## 1957                                                                                                                                                                         Diesel Heavy Truck Technician Certificate
## 1958                                                                                                                                                     Heavy Truck Undercarriage Specialization One Year Certificate
## 1959                                                                                                                                                             CET with Specialization in Computer Technology A.A.S.
## 1960                                                                                                                                                                              Medical Assistant Coding Certificate
## 1961                                                                                                                                                                                                       Nursing AAS
## 1962                                                                                                                                                                        Nursing Assistant One Semester Certificate
## 1963                                                                                                                                                                                               Pharmacy Technician
## 1964                                                                                                                                                                                         Professional Truck Driver
## 1965                                                                                                                                                                            Medical Assistant Clinical Certificate
## 1966                                                                                                                                                                         Vocational Nursing   One year Certificate
## 1967                                                                                                                                                                        Logistics and Distribution Management  AAS
## 1968                                                                                                                                                        Logistics and Distribution Management One Year Certificate
## 1969                                                                                                                                                                                   Management One Year Certificate
## 1970                                                                                                                                                                                             Medical Assistant AAS
## 1971                                                                                                                                                                               Medical Assistant Basic Certificate
## 1972                                                                                                                            Journeyman Electrician Assistant Certificate Residential/Commercial 1 year certificate
## 1973                                                                                                                                                                                                              CCNA
## 1974                                                                                                                                                                                  Computer User Support Specialist
## 1975                                                                                                                                                                                         Cyber Security Specialist
## 1976                                                                                                                                                                                IT Project Management Professional
## 1977                                                                                                                                                                                        Network Support Specialist
## 1978                                                                                                                                                                                                              CCNA
## 1979                                                                                                                                                                                  Computer User Support Specialist
## 1980                                                                                                                                                                                         Cyber Security Specialist
## 1981                                                                                                                                                                                Information Security Analyst (ISA)
## 1982                                                                                                                                                                                IT Project Management Professional
## 1983                                                                                                                                                                                        Network Support Specialist
## 1984                                                                                                                                                                                      Technical Support Specialist
## 1985                                                                                                                                                                                      Technical Support Specialist
## 1986                                                                                                                                                                                Information Security Analyst (ISA)
## 1987                                                                                                                                                                                        AWS re/Start Cloud Support
## 1988                                                                                                                                                                                        AWS re/Start Cloud Support
## 1989                                                                                                                                                           AAS Computer and Network Maintenance Technology   CNET2
## 1990                                                                                                                                                                            Certificate in Paralegal Studies   PA1
## 1991                                                                                                                                                                       Certificate in Pipefitting Technology   PF1
## 1992                                                                                                                                                                           Certificate in Vocational Nursing   VN1
## 1993                                                                                                                                                                Certificate in Welding Inspection Technology   WI1
## 1994                                                                                                                                                                           Certificate in Welding Technology   WE1
## 1995                                                                                                                                                                                           HH   Electrical Level 1
## 1996                                                                                                                                                                                          HH   Project Supervision
## 1997                                                                                                                                                                   Certificate in Instrumentation Technology   IR1
## 1998                                                                                                                                                                                  AAS Pipefitting Technology   PF2
## 1999                                                                                                                                                                                      AAS Process Technology   PT2
## 2000                                                                                                                                                                                      AAS Welding Technology   WE2
## 2001                                                                                                                                                                  Certificate in Analytical Instrumentation   ATI1
## 2002                                                                                                                                                                        Certificate in Electrical Technology   IE1
## 2003                                                                                                                                                               Certificate in Industrial Systems   Machinist   MC1
## 2004                                                                                                                                                              Certificate in Industrial Systems   Millwright   MW1
## 2005                                                                                                                                                                                   AAS Electrical Technology   IE2
## 2006                                                                                                                                                                           AAS Industrial Systems Technician   IS2
## 2007                                                                                                                                                                              AAS Instrumentation Technology   IR2
## 2008                                                                                                                                                                                                 AAS Nursing   AD2
## 2009                                                                                                                                                                              AAS Nursing   Transitional Entry TN2
## 2010                                                                                                                                                                                       AAS Paralegal Studies   PA2
## 2011                                                                                                                                                                                                              CORE
## 2012                                                                                                                                                                  AAS Analytical Instrumentation Technology   ATI2
## 2013                                                                                                                                                                       AAS Computer and Graphics Technology   CGT2
## 2014                                                                                                                                                                                       Basic Truck Driver Training
## 2015                                                                                                                                                                                         Basic Truck Drivers Heavy
## 2016                                                                                                                                                         Refrigeration/Heating/Air Conditioning (BASIC) in English
## 2017                                                                                                                                                                                         EPA Certification Seminar
## 2018                                                                                                                                                         Refrigeration/Heating/Air Conditioning (BASIC) in Spanish
## 2019                                                                                                                                                                                                 Advanced Pipeline
## 2020                                                                                                                                                                                           Combination Pipe Welder
## 2021                                                                                                                                                                                       Combination Pipeline Welder
## 2022                                                                                                                                   Introduction to Gas Tungsten Arc Welding (GTAW) / Tungsten Inert Gas (TIG) Pipe
## 2023                                                                                                                                  Introduction to Gas Tungsten Arc Welding (GTAW) / Tungsten Inert Gas (TIG) Plate
## 2024                                                                                                                                                                                          Introduction to Pipeline
## 2025                                                                                                                                                                   Introduction to Shielded Metal Arc Welding Pipe
## 2026                                                                                                                                                                  Introduction to Shielded Metal Arc Welding Plate
## 2027                                                                                                                                                                                           Introduction to Welding
## 2028                                                                                                                                                                                           Stainless Steel Seminar
## 2029                                                                                                                                                                                     Industrial Electrical Program
## 2030                                                                                                                                                                                              Specialty Alloy Pipe
## 2031                                                                                                                                                              Gas Metal Arc Welding / Flux Cored Arc Welding Plate
## 2032                                                                                                                                                               Gas Metal Arc Welding / Flux Cored Arc Welding Pipe
## 2033                                                                                                                                                                                                 Combo Pipe Welder
## 2034                                                                                                                                                                                                       Pipefitting
## 2035                                                                                                                                                                                            Stick and Pipe Welding
## 2036                                                                                                                                                                                                 Welder Specialist
## 2037                                                                                                                                                                                         Certificate in Accounting
## 2038                                                                                                                                                                              Criminal Justice Law Enforcement AAS
## 2039                                                                                                                                                                                  Management/Marketing Certificate
## 2040                                                                                                                                                                                       Respiratory Care Technology
## 2041                                                                                                                                                                           Certificate of Administrative Assistant
## 2042                                                                                                                                                                                         Certified Medication Aide
## 2043                                                                                                                                                                                        Fire Protection Technology
## 2044                                                                                                                                                                                                  General Business
## 2045                                                                                                                                                                               Medical and Clinical Lab Technician
## 2046                                                                                                                                                                                                 Medical Assistant
## 2047                                                                                                                                                                                             Teacher Certification
## 2048                                                                                                                                                                                                Vocational Nursing
## 2049                                                                                                                                                                                                       Agriculture
## 2050                                                                                                                                                                                          Associate Degree Nursing
## 2051                                                                                                                                                                                  Criminal Justice Corrections AAS
## 2052                                                                                                                                                                  Criminal Justice Corrections Level I Certificate
## 2053                                                                                                                                                                   Health Information Technology Coding Specialist
## 2054                                                                                                                                                                                   Management/Business Certificate
## 2055                                                                                                                                                                              Medical Office Assistant Certificate
## 2056                                                                                                                                                                                             Radiologic Technology
## 2057                                                                                                                                                                                          Administrative Assistant
## 2058                                                                                                                                                                                       Computer Support Specialist
## 2059                                                                                                                                                                                 Health Information Technology AAS
## 2060                                                                                                                                                                                          Medical Office Assistant
## 2061                                                                                                                                                                                 Certified Patient Care Technician
## 2062                                                                                                                                                                                              Certified Nurses Aid
## 2063                                                                                                                                                                     Early Education Apprenticeship Heart of Texas
## 2064                                                                                                                                                                                                  Dental Assistant
## 2065                                                                                                                                                                                                 Medical Assisting
## 2066                                                                                                                                                                                                 Medical Assistant
## 2067                                                                                                                                                                                                 Medical Secretary
## 2068                                                                                                                                                                                          Medical Assisting Online
## 2069                                                                                                                                                                                                  HVACR Technician
## 2070                                                                                                                                                                                 Industrial Maintenance Technician
## 2071                                                                                                                                                                                       Advanced Welding Technology
## 2072                                                                                                                                                                  Certified Nurse Aide Midland College Main Campus
## 2073                                                                                                                                                                      Administrative Assistant Level I Certificate
## 2074                                                                                                                                                               Computer Network Security and Administration A.A.S.
## 2075                                                                                                                                                                    Network Support Technician Level I Certificate
## 2076                                                                                                                                                                                                    Nursing A.A.S.
## 2077                                                                                                                                                                             Teacher Education Multiple Levels AAT
## 2078                                                                                                                                               Vocational Nursing Level II Certificate Midland College Main Campus
## 2079                                                                                                                                                                               Welder Advanced Level I Certificate
## 2080                                                                                                                                                             HVAC Technician Entry Certificate Level I Certificate
## 2081                                                                                                                                                                                           Business Management AAS
## 2082                                                                                                                                                                                     Office Systems Technology AAS
## 2083                                                                                                                                                                   Petroleum Energy Technician Level I Certificate
## 2084                                                                                                                                                                             Energy Technician Level I Certificate
## 2085                                                                                                                                                                                          Energy Technology A.A.S.
## 2086                                                                                                                                                                           Basic Truck Driver Training CDL Program
## 2087                                                                                                                                                                 Air Conditioning Heating and Refrigeration A.A.S.
## 2088                                                                                                                                                    Air Conditioning Heating and Refrigeration Level I Certificate
## 2089                                                                                                                                                                             Assistant Manager Level I Certificate
## 2090                                                                                                                                                                Automotive Technician Advanced Level I Certificate
## 2091                                                                                                                                                                   Automotive Technician Entry Level I Certificate
## 2092                                                                                                                                                                            Welder Entry Level Level I Certificate
## 2093                                                                                                                                                                           Welder Intermediate Level I Certificate
## 2094                                                                                                                                                                                         Welding Technology A.A.S.
## 2095                                                                                                                                                                          Administrative Clerk Level I Certificate
## 2096                                                                                                                                                        Automotive Collision Repair Technician Level I Certificate
## 2097                                                                                                                                                                                      Automotive Technology A.A.S.
## 2098                                                                                                                                                                                   Pharmacy Technician Certificate
## 2099                                                                                                                                                                                                        Phlebotomy
## 2100                                                                                                                                                                    Diesel Technician Advanced Level I Certificate
## 2101                                                                                                                                                                                             Diesel Technology AAS
## 2102                                                                                                                                                                             Diesel Technician Level I Certificate
## 2103                                                                                                                                                                                 Certified Nurse Aide Ft. Stockton
## 2104                                                                                                                                                              Vocational Nursing Level II Certificate Ft. Stockton
## 2105                                                                                                                                                                                 Health Information Management AAS
## 2106                                                                                                                                                                            Computer-Aided Drafting and Design AAS
## 2107                                                                                                                                  Computer Aided Drafting Technician - Entry Level Certificate Level I Certificate
## 2108                                                                                                                                     Computer Aided Drafting Technician - Advanced Certificate Level I Certificate
## 2109                                                                                                                                                                       Firefighter Certificate Level I Certificate
## 2110                                                                                                                                                                                    Emergency Medical Services AAS
## 2111                                                                                                                                                                                       Fire Science Technology AAS
## 2112                                                                                                                                                                         Paramedic Certificate Level I Certificate
## 2113                                                                                                                                               Computer Systems Support Technician Certificate Level I Certificate
## 2114                                                                                                                                                                            Computer Programming and Analytics AAS
## 2115                                                                                                                                                                           Teacher Education Early Childhood 3 AAT
## 2116                                                                                                                                                 Cisco Certified Network Associate Certificate Level I Certificate
## 2117                                                                                                                                   Computer Aided Drafting Technician  Entry Level Certificate Level I Certificate
## 2118                                                                                                                                                               Licensed Vocational Nurse to Nursing Registered AAS
## 2119                                                                                                                                                            Programming Technician Certificate Level I Certificate
## 2120                                                                                                                                                                            Computer Aided Drafting and Design AAS
## 2121                                                                                                                                                         Medical Coding Specialist Certificate Level I Certificate
## 2122                                                                                                                                                                  Criminal Justice Certificate Level I Certificate
## 2123                                                                                                                                                                                               Law Enforcement AAS
## 2124                                                                                                                                                      Organizational Management Bachelor of Applied Technology BAS
## 2125                                                                                                                                       Computer Information Technology Foundations Certificate Level I Certificate
## 2126                                                                                                                                       Computer Aided Drafting Technician Advanced Certificate Level I Certificate
## 2127                                                                                                                                                           Health Data Coordinator Certificate Level I Certificate
## 2128                                                                                                                                                                                              Respiratory Care AAS
## 2129                                                                                                                                                         Early Childhood Education Bachelor of Applied Science BAS
## 2130                                                                                                                                                               Database Technician Certificate Level I Certificate
## 2131                                                                                                                                                                                         Radiologic Technology AAS
## 2132                                                                                                                                                                                     Undergraduate Nursing Program
## 2133                                                                                                                                                                                                    Dental Hygiene
## 2134                                                                                                                                                                   Mobile Crane Operations Fixed/Swing Cab Level I
## 2135                                                                                                                                                           Miller Crane Works Level I Rigger / Signal Person Class
## 2136                                                                                                                                                                   Mobile Crane Operations Fixed/Swing Cab Level I
## 2137                                                                                                                                                                  Mobile Crane Operations Fixed/Swing Cab Level II
## 2138                                                                                                                                                                                    Tower Crane Operations Level I
## 2139                                                                                                                                                                                   Tower Crane Operations Level II
## 2140                                                                                                                                                                    Rigger and Signal Person Certification Level I
## 2141                                                                                                                                                                           Mobile Crane Operations Lattice Level I
## 2142                                                                                                                                                                          Mobile Crane Operations Lattice Level II
## 2143                                                                                                                                                                                          Machining Technology AAS
## 2144                                                                                                                                                                Machining Technology Machinist Level I Certificate
## 2145                                                                                                                                                                   Project Management Certificate Exam Preperation
## 2146                                                                                                                                                                          Gas Metal Arc Welding Certificate (GMAW)
## 2147                                                                                                                                                                                      Machining Master Certificate
## 2148                                                                                                                                      Machining - Computer Numeric Control OperatorProgrammer Level II Certificate
## 2149                                                                                                                                        Machining -Computer Numeric Control OperatorProgrammer Level I Certificate
## 2150                                                                                                                                                                     Welder (SMAW & GMAW) Certificate (non credit)
## 2151                                                                                                                                                                             Welding Technology Specialization AAS
## 2152                                                                                                                                                                           Lean Six Sigma Green Belt Certification
## 2153                                                                                                                                                                             Shielded Metal Arc (SMAW) Certificate
## 2154                                                                                                                                                                                 Medical Radiologic Technology AAS
## 2155                                                                                                                                                                            Nursing AAS (Integrated Curriculum) RN
## 2156                                                                                                                                                                   Project Management Certificate Exam Preperation
## 2157                                                                                                                                                                                                    Accounting AAS
## 2158                                                                                                                                                  Transition to Professional Nursing for Articulating Students AAS
## 2159                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 2160                                                                                                                                                                           Lean Six Sigma Green Belt Certification
## 2161                                                                                                                                                                                    Vocational Nursing Certificate
## 2162                                                                                                                                                                           Land Surveying & Mapping Technology AAS
## 2163                                                                                                                                                                                 Land Surveyor Certificate Level I
## 2164                                                                                                                                                                           Emergency Medical Training Basics (EMT)
## 2165                                                                                                                                                                                                 Welding - Level 2
## 2166                                                                                                                                                                                            Welding Technology AAS
## 2167                                                                                                                                                                                     AWS Welder Skills Certificate
## 2168                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 2169                                                                                                                                                                             Nursing Bachelor of Science RN to BSN
## 2170                                                                                                                                                                                        Heavy Equipment Operator I
## 2171                                                                                                                                                                                       Heavy Equipment Operator II
## 2172                                                                                                                                                                                         Mobile Crane Operations I
## 2173                                                                                                                                                                                        Professional Truck Driving
## 2174                                                                                                                                                                                                     PTD/HEO Combo
## 2175                                                                                                                                                                                      Medical Front Office Program
## 2176                                                                                                                                                                                                     Truck Driving
## 2177                                                                                                                                                                                           Computerized Accounting
## 2178                                                                                                                                                                 Advanced CDL Driver Training for the Entrepreneur
## 2179                                                                                                                                                                                               Combination Welding
## 2180                                                                                                                                                                        Computer Numerical Control (CNC) Machinist
## 2181                                                                                                                                                                                          Administrative Assistant
## 2182                                                                                                                                                                                                       Gunsmithing
## 2183                                                                                                                                                                                                  CDL Prep Program
## 2184                                                                                                                                                                                        Business Office Specialist
## 2185                                                                                                                                                                                              Class B CDL Training
## 2186                                                                                                                                                                                                  CDL Prep Program
## 2187                                                                                                                                                                                               IT ProBasic Program
## 2188                                                                                                                                                                Information Technology Security and Administration
## 2189                                                                                                                                                                    Bachelor of Science in Construction Management
## 2190                                                                                                                                                                                  Associate of Science in Business
## 2191                                                                                                                                                                            Bachelor of Arts in Digital Journalism
## 2192                                                                                                                                                                                       Bachelor of Arts in History
## 2193                                                                                                                                                            Bachelor of Arts in Integrated Marketing Communication
## 2194                                                                                                                                                                      Bachelor of Arts in Strategic Communications
## 2195                                                                                                                                                                                 Bachelor of Public Administration
## 2196                                                                                                                                                                                 Bachelor of Science Cybersecurity
## 2197                                                                                                                                                                BACHELOR OF SCIENCE IN CLINICAL LABORATORY SCIENCE
## 2198                                                                                                                                                                                BACHELOR OF SCIENCE IN MATHEMATICS
## 2199                                                                                                                                                                    Certificate in Criminal Justice Administration
## 2200                                                                                                                                                               Bachelor or Science Criminal Justice Administration
## 2201                                                                                                                                                                        Homeland Security and Emergency Management
## 2202                                                                                                                                                                                           Master of Public Health
## 2203                                                                                                                                                                       Master of Science Organizational Leadership
## 2204                                                                                                                                                                     Bachelor of Science Organizational Leadership
## 2205                                                                                                                                                                                      RN to BSN Completion Program
## 2206                                                                                                                                                                                                    AAS Accounting
## 2207                                                                                                                                                                                                    AAS ADN Bridge
## 2208                                                                                                                                                                                          Associate Degree Nursing
## 2209                                                                                                                                                                                          Vocational Nursing (LVN)
## 2210                                                                                                                                                                                          Vocational Nursing (LVN)
## 2211                                                                                                                                                                                                    AAS Accounting
## 2212                                                                                                                                                                                    Vocational Nursing Certificate
## 2213                                                                                                                                                                                Advanced Expanded Dental Assisting
## 2214                                                                                                                                                                                                  Dental Assisting
## 2215                                                                                                                                                                                coronal polishing training seminar
## 2216                                                                                                                                                                              Dental Front office training seminar
## 2217                                                                                                                                                                 Nitrous Oxide Monitorin Certification N20 prepara
## 2218                                                                                                                                                                            Orthodontics Specific training seminar
## 2219                                                                                                                                                                             Pedodontics Specific training seminar
## 2220                                                                                                                                                                       Pit and Fissure Sealant preparation seminar
## 2221                                                                                                                                                                                             Dental Assisting Plus
## 2222                                                                                                                                                                    Dental Maintenance and repair Training Seminar
## 2223                                                                                                                                                                            Oral Surgery Specific Training Seminar
## 2224                                                                                                                                                                                             Dental Assisting Plus
## 2225                                                                                                                                                                    Dental Maintenance and repair Training Seminar
## 2226                                                                                                                                                                            Oral Surgery Specific Training Seminar
## 2227                                                                                                                                                                                Advanced Expanded Dental Assisting
## 2228                                                                                                                                                                                                  Dental Assisting
## 2229                                                                                                                                                                                Coronal Polishing training seminar
## 2230                                                                                                                                                                              Dental Front office training seminar
## 2231                                                                                                                                                                 Nitrous Oxide Monitorin Certification N20 prepara
## 2232                                                                                                                                                                            Orthodontics Specific training seminar
## 2233                                                                                                                                                                             Pedodontics Specific Training Seminar
## 2234                                                                                                                                                                       Pit and Fissure Sealant Preparation Seminar
## 2235                                                                                                                                                                                         Comprehensive NDT Package
## 2236                                                                                                                                                                                     Radiology Inspector Program A
## 2237                                                                                                                                                       Computer Network Technician   Cisco Internet Series Program
## 2238                                                                                                                                         Executive Administrative Assistant and Technical Documentation Specialist
## 2239                                                                                                                                                                              ONLINE PRE PARALEGAL STUDIES PROGRAM
## 2240                                                                                                                                              ASSOCIATE BUSINESS MANAGER FOR ONLINE STUDENTS AND SIX SIGMA STUDIES
## 2241                                                                                                                                                        Project Management Professional (PMP) Track Online Seminar
## 2242                                                                                                                                                                                                 Medical Assistant
## 2243                                                                                                                                                                                                        Nurse Aide
## 2244                                                                                                                                                                                           Patient Care Technician
## 2245                                                                                                                                                                                                      Phlebotomist
## 2246                                                                                                                                                                                                Nurse Aide-Spanish
## 2247                                                                                                                                                                                       Medical Assistant Certified
## 2248                                                                                                                                                                                               Business Management
## 2249                                                                                                                                                                                   Business Management Certificate
## 2250                                                                                                                                                                           Licensed Vocational Nursing Certificate
## 2251                                                                                                                                                                           Computer Information Systems Technology
## 2252                                                                                                                                                                                Computer Networking Technology AAS
## 2253                                                                                                                                                        Heating Air Conditioning Ventilation and Refrigeration AAS
## 2254                                                                                                                                                                                       Industrial Mechatronics AAS
## 2255                                                                                                                                                                           Licensed Vocational Nursing Certificate
## 2256                                                                                                                                                                                                    LVN ADN Bridge
## 2257                                                                                                                                                                                             Truck Driving Academy
## 2258                                                                                                                                                                                            Welding Technology AAS
## 2259                                                                                                                                                                          Welding Technology Level One Certificate
## 2260                                                                                                                                                                                          Associate Degree Nursing
## 2261                                                                                                                                                                        Machining Technology Level One Certificate
## 2262                                                                                                                                                                                          Machining Technology AAS
## 2263                                                                                                                                                                                        HVAC Level One Certificate
## 2264                                                                                                                                                                           Licensed Vocational Nursing Certificate
## 2265                                                                                                                                                                                 Accounting Technician Certificate
## 2266                                                                                                                                                                                                    Accounting AAS
## 2267                                                                                                                                                                                        Clinical Medical Assistant
## 2268                                                                                                                                                                                              Certified Nurse Aide
## 2269                                                                                                                                                                                     Certified Pharmacy Technician
## 2270                                                                                                                                                                                              Criminal Justice AAS
## 2271                                                                                                                                                                                                 CyberSecurity AAS
## 2272                                                                                                                                                                                           Database Management AAS
## 2273                                                                                                                                                                                        Engineering Technology AAS
## 2274                                                                                                                                                                                Gaming Application Programming AAS
## 2275                                                                                                                                                                                         Cisco Systems Certificate
## 2276                                                                                                                                                                                           Cisco Basic Certificate
## 2277                                                                                                                                                                       Computer Information Technology Certificate
## 2278                                                                                                                                                                                      Criminal Justice Certificate
## 2279                                                                                                                                                                              Computer Network Systems Certificate
## 2280                                                                                                                                                                                         CyberSecurity Certificate
## 2281                                                                                                                                                                                   Database Management Certificate
## 2282                                                                                                                                                                                       Web Development Certificate
## 2283                                                                                                                                                                                Engineering Technology Certificate
## 2284                                                                                                                                                          Heating Ventilation & Air Conditioning Basic Certificate
## 2285                                                                                                                                                                            Basic Machining Technology Certificate
## 2286                                                                                                                                                                              Accounting Occupational Skills Award
## 2287                                                                                                                                                                      Computer Help Desk Occupational Skills Award
## 2288                                                                                                                                                                                         Welding Basic Certificate
## 2289                                                                                                                                                                              HVAC/R Technician (Voucher Included)
## 2290                                                                                                                                                                                   Business Management Certificate
## 2291                                                                                                                                                                                             Child Development AAS
## 2292                                                                                                                                                                          Level I Certificate in Child Development
## 2293                                                                                                                                                                                 Cybersecurity Level 2 Certificate
## 2294                                                                                                                                                                                Plumbing Basic Level I Certificate
## 2295                                                                                                                                                                                             Electrical Technician
## 2296                                                                                                                                                                                 Industrial Automation Certificate
## 2297                                                                                                                                                                                Plumbing Basic Level I Certificate
## 2298                                                                                                                                                                                             Electrical Technician
## 2299                                                                                                                                                                                 Industrial Automation Certificate
## 2300                                                                                                                                                                  CISCO Network Administrator Level II Certificate
## 2301                                                                                                                                                                                         Electrical Technology AAS
## 2302                                                                                                                                                                                  Industrial Diesel Technology AAS
## 2303                                                                                                                                             Network & Computer System Administrator Advanced Level II Certificate
## 2304                                                                                                                                                                                 Cisco Network Analyst Certificate
## 2305                                                                                                                                                                      Computer Networking Specialization AAS CISCO
## 2306                                                                                                                                                                         Electrical Technology Level I Certificate
## 2307                                                                                                                                                                        Electrical Technology Level II Certificate
## 2308                                                                                                                                                         Network & Computer System Administrator Basic Certificate
## 2309                                                                                                                                                                     Network and Computer System Administrator AAS
## 2310                                                                                                                                             Heating Ventilation & Air Conditioning Occupational Entry Certificate
## 2311                                                                                                                                                                        Layout and Fabrication Welding Certificate
## 2312                                                                                                                                      Machining - Computer Numeric Control OperatorProgrammer Level II Certificate
## 2313                                                                                                                                                                         Welding Technology Inspection Certificate
## 2314                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 2315                                                                                                                                                       CISCO Network Administrator (CCNA) Certificate (non credit)
## 2316                                                                                                                                                                              Electrical NCCER Level I Certificate
## 2317                                                                                                                                                                             Electrical NCCER Level II Certificate
## 2318                                                                                                                                                  Transition to Professional Nursing for Articulating Students AAS
## 2319                                                                                                                                                                                 Welding Inspection Technology AAS
## 2320                                                                                                                                                                      Field Service Technician Certificate Level I
## 2321                                                                                                                                                                   First Line Logistics Leader Level I Certificate
## 2322                                                                                                                          Heating Ventilation Air Conditioning and Refrigeration Residential Servicing Certificate
## 2323                                                                                                                                             Heating Ventilation Air Conditioning and Refrigeration Technology AAS
## 2324                                                                                                                                                                                          Machining Technology AAS
## 2325                                                                                                                                                                Machining Technology Machinist Level I Certificate
## 2326                                                                                                                                                                                             Paralegal Studies AAS
## 2327                                                                                                                                                                  Paralegal Studies Advanced Technical Certificate
## 2328                                                                                                                                                                                                    Accounting AAS
## 2329                                                                                                                                                                  Computer Networking Specialization AAS MICROSOFT
## 2330                                                                                                                                                             Electrical Technology Occupational Skills Certificate
## 2331                                                                                                                             Heating Ventilation Air Conditioning & Refrigeration Commercial Servicing Certificate
## 2332                                                                                                                                        Machining -Computer Numeric Control OperatorProgrammer Level I Certificate
## 2333                                                                                                                                                                            Nursing AAS (Integrated Curriculum) RN
## 2334                                                                                                                                                                 Engineering Technology - Architectural Design AAS
## 2335                                                                                                                                                                           Solid Works (non-credit) Upgrade Skills
## 2336                                                                                                                                                                     Engineering Technology -Mechanical Design AAS
## 2337                                                                                                                                                                                 Health Information Technology AAS
## 2338                                                                                                                                                                      Commercial Driver's License (CDL) non-credit
## 2339                                                                                                                                                                                         Carpentry I NCCER Level 1
## 2340                                                                                                                                                                                            Plumbing NCCER Level 1
## 2341                                                                                                                                                                          Gas Metal Arc Welding Certificate (GMAW)
## 2342                                                                                                                                                                             Shielded Metal Arc (SMAW) Certificate
## 2343                                                                                                                                                                                            Welding Technology AAS
## 2344                                                                                                                                                                                          Logistics Management AAS
## 2345                                                                                                                                                                                           Law Enforcement Academy
## 2346                                                                                                                                                                                                 Welding - Level 2
## 2347                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 2348                                                                                                                                                               Energy Manufacturing & Trades Management BAS Degree
## 2349                                                                                                                                                                                        Medical Billing and Coding
## 2350                                                                                                                                                                                         Comp Tia A+ Certification
## 2351                                                                                                                                                                                                          Forklift
## 2352                                                                                                                                                                                Professional Truck Driver Training
## 2353                                                                                                                                                                                     Medical Front Office Assisant
## 2354                                                                                                                                                                                    Microsoft Office Suite Seminar
## 2355                                                                                                                                                                                       Child Development Associate
## 2356                                                                                                                                                                           Accounting Fundementals with Quickbooks
## 2357                                                                                                                                                    Medical Administrative Secretary with Electronic Health Record
## 2358                                                                                                                                                                                Electrical Occupations Certificate
## 2359                                                                                                                                                              Industrial Technology Electro Mechanical Certificate
## 2360                                                                                                                                                                          Industrial Technology Technician Level I
## 2361                                                                                                                                                                                           Patient Care Technology
## 2362                                                                                                                                                                                          Associate Degree Nursing
## 2363                                                                                                                                                                                    Automotive Mod Shop AAS Degree
## 2364                                                                                                                                                                         Automotive Service Technician Certificate
## 2365                                                                                                                                                                                 Medical Laboratory Technician AAS
## 2366                                                                                                                                                                                                Vocational Nursing
## 2367                                                                                                                                                                              Welding Mechanical (Pipe) Technician
## 2368                                                                                                                                                                            Welding Structural (Plate) Certificate
## 2369                                                                                                                                                                                      Professional Driving Academy
## 2370                                                                                                                                                                                                         EMT Basic
## 2371                                                                                                                                                                                                     EMT Paramedic
## 2372                                                                                                                                                                                    Emergency Medical Services AAS
## 2373                                                                                                                                                                                Transition to Professional Nursing
## 2374                                                                                                                                                                                           Ultimate Diver Training
## 2375                                                                                                                                                                        Nondestructive Testing/Inspection Training
## 2376                                                                                                                                                                                       Licensed Vocational Nursing
## 2377                                                                                                                                                                                 Bookkeeping - Level 1 Certificate
## 2378                                                                                                                                                                            Associate in Applied Science   Nursing
## 2379                                                                                                                                                                                         Automotive Technology AAS
## 2380                                                                                                                                                                         Automotive  Automotive Technician Level I
## 2381                                                                                                                                                                              Advanced Welder-Level II Certificate
## 2382                                                                                                                                                                 Computer & Network Technology Level I Certificate
## 2383                                                                                                                                                                                                       Welding AAS
## 2384                                                                                                                                                             Occupational Safety and Environmental Technology  AAS
## 2385                                                                                                                                                               Office Administration Assistant-Level I Certificate
## 2386                                                                                                                                                               Office Administration-Office Assistant Emphasis AAS
## 2387                                                                                                                                                                        Office Systems   Office Assistant Level ll
## 2388                                                                                                                                                                    Office Administration-Bookkeeping Emphasis AAS
## 2389                                                                                                                                                                   Office Administration with Medical Emphasis AAS
## 2390                                                                                                                                                       Medical Office Administration Assistant-Level I Certificate
## 2391                                                                                                                                                                             Diesel Technician-Level I Certificate
## 2392                                                                                                                                                                    Instrumentation and Electronics Technology AAS
## 2393                                                                                                                                                                      Advanced I&E Technician-Level II Certificate
## 2394                                                                                                                                                                                I&E Technician-Level I Certificate
## 2395                                                                                                                                                                                                           Lineman
## 2396                                                                                                                                                                         General Industry-OSET Level I Certificate
## 2397                                                                                                                                                                                                        Phlebotomy
## 2398                                                                                                                                                                          Precision Manufacturing Technology   AAS
## 2399                                                                                                                                                                  Entry Level Machine Operator-Level I Certificate
## 2400                                                                                                                                                                                Professional Truck Driver Training
## 2401                                                                                                                                                                                             Radiologic Technology
## 2402                                                                                                                                                                       Teaching   Early Childhood   6th Grade   AA
## 2403                                                                                                                                                                   Advanced Diesel Technician-Level II Certificate
## 2404                                                                                                                                                                Business Leadership   Small Business Managment AAS
## 2405                                                                                                                                                                                           Business Leadership AAS
## 2406                                                                                                                                                                                            Certified Nursing Aide
## 2407                                                                                                                                                                                        Clinical Medical Assisting
## 2408                                                                                                                                                                               Computer and Network Technology AAS
## 2409                                                                                                                                                                                           Diesel Technology   AAS
## 2410                                                                                                                                                                      Business Leadership   Small Business Level I
## 2411                                                                                                                                                                                  Automotive Specialist   Level II
## 2412                                                                                                                                                                                      Business Administration   AA
## 2413                                                                                                                                                                          Business Leadership   Leadership Level I
## 2414                                                                                                  Leadership & Management - Occupational Health and Safety Management - Bachelor of Applied Arts & Sciences (BAAS)
## 2415                                                                                                                                                                   Level 1 Certificate-Criminal Justice Leadership
## 2416                                                                                                                                                                                              Criminal Justice AAS
## 2417                                                                                                                                                                              Level 1 Certificate-Criminal Justice
## 2418                                                                                                                                                                     Level 1 Certificate-Crime Scene Investigation
## 2419                                                                                                                                                                   Odessa College Law Enforcement Training Academy
## 2420                                                                                                                                                                                   Criminal Justice Leadership AAS
## 2421                                                                                                                                                                                      Physical Therapist Assistant
## 2422                                                                                                                                                                               Level 1 Certificate-Law Enforcement
## 2423                                                                                                                                                                                    Robotics-Level I Certification
## 2424                                                                                                                               Heating  Ventilation  Air Conditioning - HVACR/Controls Building Automation Systems
## 2425                                                                                                                                                                                General Welder-Level I Certificate
## 2426                                                                                                                                                              Computer and Network Technology-Level II Certificate
## 2427                                                                                                                                                                             Construction-OSET Level I Certificate
## 2428                                                                                                                           Leadership & Management - Entrepreneurship - Bachelor of Applied Arts & Sciences (BAAS)
## 2429                                                                                                                                                        Heating  Ventilation  Air Conditioning - HVAC/R Technician
## 2430                                                                                                                                                                       Heating  Ventilation  Air Conditioning - RI
## 2431                                                                                                                                                                      Heating  Ventilation  Air Conditioning - RII
## 2432                                                                                                                                                           Automation - Bachelor of Applied Arts & Sciences (BAAS)
## 2433                                                                                                                                              Heating  Ventilation  Air Conditioning - HVAC/R Certified Technician
## 2434                                                                                                                                                                                               Pharmacy Technician
## 2435                                                                                                                                                                                      Medical Laboratory Assistant
## 2436                                                                                                                                                                                           Patient Care Technician
## 2437                                                                                                                                                                                           Machining Certification
## 2438                                                                                                                                                                                                      CIC Bootcamp
## 2439                                                                                                                                                                                                      COC Bootcamp
## 2440                                                                                                                                                                                            Risk Adjustment Coding
## 2441                                                                                                                                                                                    Risk Adjustment Mentee Program
## 2442                                                                                                                                                                                                  Physician Coding
## 2443                                                                                                                                                                     Coding Practicum IV (Pre Season Training CCC)
## 2444                                                                                                                                                                                                      CPC Bootcamp
## 2445                                                                                                                                                                                                      CRC Bootcamp
## 2446                                                                                                                                                                                        Hospital Outpatient Coding
## 2447                                                                                                                                                                                                  Inpatient Coding
## 2448                                                                                                                                                                                          Inpatient Mentee Program
## 2449                                                                                                                                                                                         Outpatient Mentee Program
## 2450                                                                                                                                                                      Coding Practicum I (Pre Season Training HRA)
## 2451                                                                                                                                                                     Coding Practicum II (Pre Season Training HCC)
## 2452                                                                                                                                                             Coding Practicum III (Pre Season Training Practicode)
## 2453                                                                                                                                                                                                     CPMA Bootcamp
## 2454                                                                                                                                                                                              Certified Nurse Aide
## 2455                                                                                                                                                                                          Administrative Assistant
## 2456                                                                                                                                                                                          Associate Degree Nursing
## 2457                                                                                                                                                                                         Welding Basic Certificate
## 2458                                                                                                                                                                                              Certified Nurse Aide
## 2459                                                                                                                                                                               Computer Information Technology AAS
## 2460                                                                                                                                                                                Digital Media Design & Development
## 2461                                                                                                                                                                                                  General Business
## 2462                                                                                                                                                                                 Health Information Technology AAS
## 2463                                                                                                                                                                                  Welding Intermediate Certificate
## 2464                                                                                                                                                                                         Licensed Vocational Nurse
## 2465                                                                                                                                                                            Clinical/Medical Laboratory Technician
## 2466                                                                                                                                                                                         Medical Coding Technician
## 2467                                                                                                                                                                                   Microcomputer Software Operator
## 2468                                                                                                                                                                                  Microcomputer Support Specialist
## 2469                                                                                                                                                                                      Vocational Nurse Certificate
## 2470                                                                                                                                                                                                    General Office
## 2471                                                                                                                                                                                          Office Proffessional AAS
## 2472                                                                                                                                                                               Personal Computer Technical Support
## 2473                                                                                                                                                                                               Pharmacy Technician
## 2474                                                                                                                                                                                    Occupational Therapy Assistant
## 2475                                                                                                                                                                                              Certified Nurse Aide
## 2476                                                                                                                                                                                  Welding Intermediate Certificate
## 2477                                                                                                                                                                                        Professional Truck Driving
## 2478                                                                                                                                                                                                 Medical Assistant
## 2479                                                                                                                                                                                           Patient Care Technology
## 2480                                                                                                                                                                                                        Phlebotomy
## 2481                                                                                                                                                                          A.A.S. in Air Conditioning/Refrigeration
## 2482                                                                                                                                                                                 Computer Network Tech Certificate
## 2483                                                                                                                                                              Computer Support Tech   A+ Certification Certificate
## 2484                                                                                                                                                                                                  Dental Assistant
## 2485                                                                                                                                                                                           Electrician certificate
## 2486                                                                                                                                                                                               Enhanced Nurse Aide
## 2487                                                                                                                                                                                      Radiology Technology Program
## 2488                                                                                                                                                                                                Structural Welding
## 2489                                                                                                                                                                                       Surgical Technology Program
## 2490                                                                                                                                                                                                Vocational Nursing
## 2491                                                                                                                                                                                                       Welding AAS
## 2492                                                                                                                                                                                   A.A.S. in Computer Aided Design
## 2493                                                                                                                                                                                                      Pipe Welding
## 2494                                                                                                                                                                                               Pharmacy Technician
## 2495                                                                                                                                                         Heating  Air Conditioning and Refrigeration   Certificate
## 2496                                                                                                                                A.A.S. Mechatronics   Electromechanical Instrumentation and Maintenance Technology
## 2497                                                                                                                                                                                                  Advanced Welding
## 2498                                                                                                                                                                                             LVN Transition to ADN
## 2499                                                                                                                           Mechatronics   Electromechanical Instrumentation and Maintenance Technology Certificate
## 2500                                                                                                                                                                                                        Networking
## 2501                                                                                                                                                                                       CDL Permit Exam Preparation
## 2502                                                                                                                                                                                Professional Truck Driving Part II
## 2503                                                                                                                                                                                                   Massage Therapy
## 2504                                                                                                                                                                                        Medical Billing and Coding
## 2505                                                                                                                                                                                                 Medical Assistant
## 2506                                                                                                                                                                                                 Medical Assistant
## 2507                                                                                                                                                                                        Medical Billing and Coding
## 2508                                                                                                                                                                             Network Support Course (A+/Network +)
## 2509                                                                                                                                                                                                     Cybersecurity
## 2510                                                                                                                                                                                                        IT Support
## 2511                                                                                                                                                                   Masters of Science in Nursing   Nurse Education
## 2512                                                                                                                                                                            RN BSN Bachelors of Science in Nursing
## 2513                                                                                                                                                              Masters of Science in Nursing   Nurse Administration
## 2514                                                                                                                                                                                   Bachelors of Science in Nursing
## 2515                                                                                                                                                                            LVN BSN Bachelor of Science in Nursing
## 2516                                                                                                                                                         Masters of Science in Nursing   Family Nurse Practitioner
## 2517                                                                                                                                                       Building Maintenance   Air Conditioning and Heating Program
## 2518                                                                                                                                                                               Cisco Networking and Administration
## 2519                                                                                                                                                                       Electrical Installer and Service Technician
## 2520                                                                                                                                                                                             Electrical Technician
## 2521                                                                                                                                                      Nurse Refresher/Re Entry/ Remediation and Transition Program
## 2522                                                                                                                                                                                  Administrative Assistant Program
## 2523                                                                                                                                               Medical Assistant/Phlebotomy/EKG Technician Specialist Dual Program
## 2524                                                                                                                                                                                                Nurse Aide Program
## 2525                                                                                                                                                                                           Patient Care Technician
## 2526                                                                                                                                                          Business Administration - Hospitality/Events Coordinator
## 2527                                                                                                                                                                  Business Administration - Social Media Marketing
## 2528                                                                                                                                                                               Electronic Health Record Specialist
## 2529                                                                                                                                                                                        Ranger College ADN Program
## 2530                                                                                                                                                                                       Licensed Vocational Nursing
## 2531                                                                                                                                                                                       Licensed Vocational Nursing
## 2532                                                                                                                                                                                       Licensed Vocational Nursing
## 2533                                                                                                                                                                                                     EMT/Paramedic
## 2534                                                                                                                                                                                        Professional Truck Driving
## 2535                                                                                                                                                                                                     EMT/Paramedic
## 2536                                                                                                                                                                                        Professional Truck Driving
## 2537                                                                                                                                                                                                     EMT/Paramedic
## 2538                                                                                                                                                                                       Licensed Vocational Nursing
## 2539                                                                                                                                                                                                EMT/Paramedic - CE
## 2540                                                                                                                                                                                                EMT/Paramedic - CE
## 2541                                                                                                                                                                                                EMT/Paramedic - CE
## 2542                                                                                                                                                                                        Professional Truck Driving
## 2543                                                                                                                                     Certification Area: Special Education ALL LEVELS (Early Childhood   Grade 12)
## 2544                                                                                                                                                          Certification Area: Math (Grades 4 8 and/or Grades 7 12)
## 2545                                                                                                                                                       Certification Area: Science (Grades 4 8 and/or Grades 7 12)
## 2546                                                                                                                    Certification Area: Core Subjects and Bilingual (Early Childhood   Grade 6 and/or Grades 4 8))
## 2547                                                                                                                                                       Teacher Preparation and Certification Program: History 7 12
## 2548                                                                                                                                                  Teacher Preparation and Certification Program: Special Education
## 2549                                                                                                                                                Teacher Preparation and Certification Program: Social Studies 7 12
## 2550                                                                                                                                                  Teacher Preparation and Certification Program: Life Science 7 12
## 2551                                                                                                                                                    Teacher Preparation and Certification Program: Mathematics 4 8
## 2552                                                                                                                                                   Teacher Preparation and Certification Program: Mathematics 7 12
## 2553                                                                                                                                              Teacher Preparation and Certification Program: Physical Science 6 12
## 2554                                                                                                                                                       Teacher Preparation and Certification Program: Science 7 12
## 2555                                                                                                                                                  Teacher Preparation and Certification Program: Bilingual and ESL
## 2556                                                                                                                                                  Teacher Preparation and Certification Program: Core Subjects 4 8
## 2557                                                                                                                                                 Teacher Preparation and Certification Program: Core Subjects EC 6
## 2558                                                                                                                              Teacher Preparation and Certification Program: English Language Arts and Reading 4 8
## 2559                                                                                                                             Teacher Preparation and Certification Program: English Language Arts and Reading 7 12
## 2560                                                                                                                                                                                       Certified Medical Assistant
## 2561                                                                                                                                                                                 Certified Patient Care Technician
## 2562                                                                                                                                                                             Medical Billing and Coding Specialist
## 2563                                                                                                                                                                        Paralegal (Certificate) - In Class Program
## 2564                                                                                                                                                                        Paralegal (Certificate) - In Class Program
## 2565                                                                                                                                                                          Paralegal (Certificate) - Online Program
## 2566                                                                                                                                                     Rice University Alternative Teacher Certification-ELAR (7-12)
## 2567                                                                                                                                                  Rice University Alternative Teacher Certification-HISTORY (7-12)
## 2568                                                                                                                                             Rice University Alternative Teacher Certification-LIFE SCIENCE (7-12)
## 2569                                                                                                                                              Rice University Alternative Teacher Certification-MATHEMATICS (7-12)
## 2570                                                                                                                                         Rice University Alternative Teacher Certification-PHYSICAL SCIENCE (6-12)
## 2571                                                                                                                                                  Rice University Alternative Teacher Certification-SCIENCE (7-12)
## 2572                                                                                                                                           Rice University Alternative Teacher Certification-SOCIAL STUDIES (7-12)
## 2573                                                                                                                                                     Rice University Alternative Teacher Certification-ART (EC-12)
## 2574                                                                                                                          Rice University Alternative Teacher Certification-LOTE: French Latin and Spanish (EC-12)
## 2575                                                                                                                              Human Resource Management Certificate In Class Program Senior Certified Professional
## 2576                                                                                                                                     Human Resource Management Certificate In Class Program Certified Professional
## 2577                                                                                                                                Human Resource Management Certificate Online Program Senior Certified Professional
## 2578                                                                                                                                       Human Resource Management Certificate Online Program Certified Professional
## 2579                                                                                                                                                                                  Administrative Medical Assistant
## 2580                                                                                                                                                                                           Patient Care Technician
## 2581                                                                                                                                                                             Medical Billing and Coding Specialist
## 2582                                                                                                                                                                                               Pharmacy Technician
## 2583                                                                                                                                                                                                 Medical Assistant
## 2584                                                                                                                                                                                        Vocational Nursing Program
## 2585                                                                                                                                                                               Nursing-Assocate of Applied Science
## 2586                                                                                                                                                                                           Patient Care Technician
## 2587                                                                                                                                                                              Emergency Medical Technology (Basic)
## 2588                                                                                                                                                                                             Phlebotomy Technician
## 2589                                                                                                                                                                                      Physical Therapist Assistant
## 2590                                                                                                                                                                                  Commercial Truck Driver Training
## 2591                                                                                                                                                                                  Commercial Truck Driver Training
## 2592                                                                                                                                                                                  Commercial Truck Driver Training
## 2593                                                                                                                                                                                  Commercial Truck Driver Training
## 2594                                                                                                                                                                                                    Accounting AAS
## 2595                                                                                                                                                                                  Associate Degree Nursing Program
## 2596                                                                                                                                                                                         Electrical Technology AAS
## 2597                                                                                                                                                          Electrical Technology Certificate of Technology Level II
## 2598                                                                                                                                                                    Electrical Technology Occupational Certificate
## 2599                                                                                                                                                                              HH   Construction Step Up Supervisor
## 2600                                                                                                                                                                                               Instrumentation AAS
## 2601                                                                                                                                                                         Instrumentation Certificate of Technology
## 2602                                                                                                                                                                                     Medical Laboratory Technology
## 2603                                                                                                                                                                                           Medical Radiography AAS
## 2604                                                                                                                                                                                          NCCER Electrical Level 1
## 2605                                                                                                                                                                                         NCCER Pipefitting Level 1
## 2606                                                                                                                                                                                            Process Technology AAS
## 2607                                                                                                                                                                                              Respiratory Care AAS
## 2608                                                                                                                                                            Welding   Combination Welder Certificate of Technology
## 2609                                                                                                                                                                   Electrical Technology Certificate of Technology
## 2610                                                                                                                                                          Welding   Gas Shielded Welding Certificate of Technology
## 2611                                                                                                                                                              Welding   Stick Pipe Welder Occupational Certificate
## 2612                                                                                                                                                                                            Welding Technology AAS
## 2613                                                                                                                                                                                                    Accounting AAS
## 2614                                                                                                                                                                                  Associate Degree Nursing   North
## 2615                                                                                                                                                           Combination Welder (4WLD C)   Certificate of Technology
## 2616                                                                                                                                                     Commercial Air Conditioning Technology   Level II Certificate
## 2617                                                                                                                                                              Commercial Air Conditioning Technology A.A.S. Degree
## 2618                                                                                                                                                                       Electrical Technology   Level 2 Certificate
## 2619                                                                                                                                                                             Electrical Technology A. A. S. Degree
## 2620                                                                                                                                                                   Electrical Technology Certificate of Technology
## 2621                                                                                                                                                                                                     Paralegal AAS
## 2622                                                                                                                                                                                 Pipefitting/Fabricator Technician
## 2623                                                                                                                                                        Vocational Nursing Program (LVN) Certificate of Technology
## 2624                                                                                                                                                                                  Welding Technology A.A.S. Degree
## 2625                                                                                                                                               Web Page Design and Implementation Specialty (4IT WBDI) Certificate
## 2626                                                                                                                                                             Web Applications Development Specialty (3IT WBDV) AAS
## 2627                                                                                                                                                                Applications Programming Specialty (3IT APPL)  AAS
## 2628                                                                                                                                                                           Vocational Nursing Program South Campus
## 2629                                                                                                                                                           Information Technology Security Specialty (3IT ITS) AAS
## 2630                                                                                                                                                   Information Technology Security Specialty (4IT ITS) Certificate
## 2631                                                                                                                                                                                    LVNParamedic to ADN Transition
## 2632                                                                                                                                                            Residential Air Conditioning Certificate of Technology
## 2633                                                                                                                                                             Residential Air Conditioning Occupational Certificate
## 2634                                                                                                                                                                                       Air Conditioning Technology
## 2635                                                                                                                                                                   Applications Programming (4IT APPL) Certificate
## 2636                                                                                                                                                                     Surgical Technology Certificate of Technology
## 2637                                                                                                                                                                                 Diagnostic Medical Sonography AAS
## 2638                                                                                                                                                                                           Surgical Technology AAS
## 2639                                                                                                                                               Professional Truck Driving One & Two - 6WK Commercial Truck Driving
## 2640                                                                                                                                              Professional Truck Driving One & Two - 12WK Commercial Truck Driving
## 2641                                                                                                                                                                                        Intro to CNC Mill Operator
## 2642                                                                                                                                                                                        Intermediate CNC HAAS Mill
## 2643                                                                                                                                                                                                 CNC Mill Complete
## 2644                                                                                                                                                                                       Intro to CNC Lathe Operator
## 2645                                                                                                                                                                                       Intermediate CNC HAAS Lathe
## 2646                                                                                                                                                                                                CNC Lathe Complete
## 2647                                                                                                                                                                                                  Manual Machining
## 2648                                                                                                                                                                                                 Nursing Assistant
## 2649                                                                                                                                                          Office Assistant Customer Service Representative Program
## 2650                                                                                                                                                                                                  Dental Assistant
## 2651                                                                                                                                                                                    Bachelor of Science in Nursing
## 2652                                                                                                                                                                                         Licensed Vocational Nurse
## 2653                                                                                                                                                                                             Banking Certification
## 2654                                                                                                                                                                               Sterilization Technologist Training
## 2655                                                                                                                                   AAS in Electrician and Power Transmission Technology Electrician Specialization
## 2656                                                                                                                                                                                         Automotive Technology AAS
## 2657                                                                                                                                                                                              Certified Nurses Aid
## 2658                                                                                                                                                               Computer Information Systems Technician Certificate
## 2659                                                                                                                                                                                      General Business Certificate
## 2660                                                                                                                                                       Law Enforcement Technology Peace Officer Specialization AAS
## 2661                                                                                                                                                                                            Welding Technology AAS
## 2662                                                                                                                                                                 Welding Technology Advanced Processes Certificate
## 2663                                                                                                                                                                    Welding Technology Basic Processes Certificate
## 2664                                                                                                                                                                                         Office Administration AAS
## 2665                                                                                                                                                                        Office Administration Advanced Certificate
## 2666                                                                                                                                                                                          Accounting Associate AAS
## 2667                                                                                                                                                                                  Accounting Associate Certificate
## 2668                                                                                                                                                                 Automotive Technology Advanced Skills Certificate
## 2669                                                                                                                                                                    Automotive Technology Basic Skills Certificate
## 2670                                                                                                                                                  Commercial Refrigeration Air Conditioning Technician Certificate
## 2671                                                                                                                                                                                  Computer Information Systems AAS
## 2672                                                                                                                                                         Heating Air Conditioning and Refrigeration Technology AAS
## 2673                                                                                                                              Industrial Manufacturing/Emerging Technologies AAS Alternative Energy Specialization
## 2674                                                                                                                                                                       Customer Service Representative Certificate
## 2675                                                                                                                                                                                      Diesel Equipment Certificate
## 2676                                                                                                                                                                                  Advanced Electrician Certificate
## 2677                                                                                                                                                                               Basic Diesel Technology Certificate
## 2678                                                                                                                                                           Computer Information Systems Cyber Security Certificate
## 2679                                                                                                                                                                                     Diesel Service Technology AAS
## 2680                                                                                                               Industrial Manufacturing/Emerging Technologies Advanced Certificate Alternative Energy Specializati
## 2681                                                                                                                                                                  Office Administration Certificate of Proficiency
## 2682                                                                                                                                                                                      Associate Degree Nursing AAS
## 2683                                                                                                                                                                   Associate Degree Nursing Advanced Placement AAS
## 2684                                                                                                                                                                                                      Business AAS
## 2685                                                                                                                                                                                   Business Management Certificate
## 2686                                                                                                                                                               Computer Information Systems Networking Certificate
## 2687                                                                                                                                                              Computer Information Systems Programming Certificate
## 2688                                                                                                                                                                                 Diesel Transportation Certificate
## 2689                                                                                                                                                                                           Electrician Certificate
## 2690                                                                                                                      Industrial Manufacturing/Emerging Technologies Certificate Alternative Energy Specialization
## 2691                                                                                                                                                                                    Law Enforcement Police Academy
## 2692                                                                                                                                                  Residential Air Conditioning Installation Technician Certificate
## 2693                                                                                                                                                                              Vocational Nursing Program Levelland
## 2694                                                                                                                                                                                  Accounting Associate Certificate
## 2695                                                                                                                                                                                         Automotive Technology AAS
## 2696                                                                                                                                                                                              Certified Nurses Aid
## 2697                                                                                                                                                                                  Computer Information Systems AAS
## 2698                                                                                                                                                                                           Construction Technology
## 2699                                                                                                                                                                                            EKG Monitor Technician
## 2700                                                                                                                                                                    Welding Technology Basic Processes Certificate
## 2701                                                                                                                                                                                            Lubbock Coding Academy
## 2702                                                                                                                                                                                         Office Administration AAS
## 2703                                                                                                                                                                                          Accounting Associate AAS
## 2704                                                                                                                                                                                   Business Management Certificate
## 2705                                                                                                                                                               Computer Information Systems Technician Certificate
## 2706                                                                                                                               Industrial Manufacturing/Emerging Technologies Certificate Machinist Specialization
## 2707                                                                                                                                                                                    Phlebotomy Certificate Program
## 2708                                                                                                                                                                    Automotive Technology Basic Skills Certificate
## 2709                                                                                                                                                                                                      Business AAS
## 2710                                                                                                                                                               Computer Information Systems Networking Certificate
## 2711                                                                                                                                                              Computer Information Systems Programming Certificate
## 2712                                                                                                                                                                  Office Administration Certificate of Proficiency
## 2713                                                                                                                                                 Office Administration Customer Service Representative Certificate
## 2714                                                                                                                                       Industrial Manufacturing/Emerging Technologies AAS Machinist Specialization
## 2715                                                                                                                      Industrial Manufacturing/Emerging Technologies Advanced Certificate Machinist Specialization
## 2716                                                                                                                                                                 Automotive Technology Advanced Skills Certificate
## 2717                                                                                                                                                           Computer Information Systems Cyber Security Certificate
## 2718                                                                                                                                                                                      General Business Certificate
## 2719                                                                                                                                                                        Office Administration Advanced Certificate
## 2720                                                                                                                                                                    Welding Technology Basic Processes Certificate
## 2721                                                                                                                              Industrial Manufacturing/Emerging Technologies AAS Alternative Energy Specialization
## 2722                                                                                                               Industrial Manufacturing/Emerging Technologies Advanced Certificate Alternative Energy Specializati
## 2723                                                                                                                                                 Office Administration Customer Service Representative Certificate
## 2724                                                                                                                                                                       Vocational Nursing Program Plainview Center
## 2725                                                                                                                                                                                      General Business Certificate
## 2726                                                                                                                                                                  Office Administration Certificate of Proficiency
## 2727                                                                                                                      Industrial Manufacturing/Emerging Technologies Certificate Alternative Energy Specialization
## 2728                                                                                                                                                                                                      Business AAS
## 2729                                                                                                                                                                                              Certified Nurses Aid
## 2730                                                                                                                                                                                         Office Administration AAS
## 2731                                                                                                                                                                        Office Administration Advanced Certificate
## 2732                                                                                                                                                                           Vocational Nursing Program Reese Center
## 2733                                                                                                                                                                                  Advanced Electrician Certificate
## 2734                                                                                                                                                                                           Electrician Certificate
## 2735                                                                                                                                   AAS in Electrician and Power Transmission Technology Electrician Specialization
## 2736                                                                                                                                                                                              Truck Driving School
## 2737                                                                                                                              Industrial Manufacturing/Emerging Technologies AAS Alternative Energy Specialization
## 2738                                                                                                               Industrial Manufacturing/Emerging Technologies Advanced Certificate Alternative Energy Specializati
## 2739                                                                                                                      Industrial Manufacturing/Emerging Technologies Certificate Alternative Energy Specialization
## 2740                                                                                                                                                                            Clinical Medical Assistant Certificate
## 2741                                                                                                                                                                                    Phlebotomy Certificate Program
## 2742                                                                                                                                                                                    Phlebotomy Certificate Program
## 2743                                                                                                                                                                     Patient Care Technician/Assistant Certificate
## 2744                                                                                                                                                                              Physical Therapist Assistant (V) AAS
## 2745                                                                                                                                                                                        Professional Truck Driving
## 2746                                                                                                                                                                                           Diesel Technology   AAS
## 2747                                                                                                                                                                                   Diesel Technology   Certificate
## 2748                                                                                                                                                                               Health Information Technology   AAS
## 2749                                                                                                                                             Heating Ventilation Air Conditioning & Refrigeration Technology   AAS
## 2750                                                                                                                                                              Associate Degree Nursing  Paramedic to RN Track  AAS
## 2751                                                                                                                                     Associate Degree Nursing: LVN/RN Transition Option Summer/Spring Adm. (V) AAS
## 2752                                                                                                                                                                                          Associate Degree Nursing
## 2753                                                                                                                                                                                  Combination Welding  Certificate
## 2754                                                                                                                                                                                         EMT Basic (V) Certificate
## 2755                                                                                                                                                                                       Pharmacy Technology (V) AAS
## 2756                                                                                                                                                                                                           Welding
## 2757                                                                                                                             Auto Technology Specialization GM ASEP Automotive Service Educational Program (V) AAS
## 2758                                                                                                                                                                        Emergency Medical Technology (EMT) (V) AAS
## 2759                                                                                                                                     Heating Ventilation Air Conditioning & Refrigeration Technology   Certificate
## 2760                                                                                                                                                                                     Radiologic Technology (V) AAS
## 2761                                                                                                                                                                                          Respiratory Therapy  AAS
## 2762                                                                                                                                                              Vocational Nursing 3 Semester Option (V) Certificate
## 2763                                                                                                                                                        Emergency Medical Technology: Intermediate (V) Certificate
## 2764                                                                                                                                                           Emergency Medical Technology: Paramedic (V) Certificate
## 2765                                                                                                                                                                            Medical Assistant Technology Associate
## 2766                                                                                                                                                                           Medical Coding Specialist   Certificate
## 2767                                                                                                                                                  Administrative Office Careers: Office Specialist (V) Certificate
## 2768                                                                                                                                                                                               Basic Peace Officer
## 2769                                                                                                                                                          Business Administration Accounting Clerk (V) Certificate
## 2770                                                                                                                                                                             Medical Billing and Coding Specialist
## 2771                                                                                                                                                                                          Computerized Bookkeeping
## 2772                                                                                                                                                                                   Customer Service Representative
## 2773                                                                                                                                                                                            Maintain Repair Worker
## 2774                                                                                                                                                                                                     Web Developer
## 2775                                                                                                                                                                                                 Teacher Assistant
## 2776                                                                                                                                                                                      Middle School 4-8 Generalist
## 2777                                                                                                                                                                                                        Grade 8-12
## 2778                                                                                                                                                                                                 EC - 6 Generalist
## 2779                                                                                                                                                                                  Occupational Therapist Assistant
## 2780                                                                                                                                                                           Diagnostic Medical Sonography Associate
## 2781                                                                                                                                                      Diagnostic Medical Sonography Advanced Technical Certificate
## 2782                                                                                                                                                                          Bachelor of Science in Nursing Full Time
## 2783                                                                                                                                                                          Bachelor of Science in Nursing Part Time
## 2784                                                                                                                                                                                  Medical Administrative Assistant
## 2785                                                                                                                                                                                                Transit Bus Driver
## 2786                                                                                                                                                                                         Certified Nurse Assistant
## 2787                                                                                                                                                                                       Emergency Medical Responder
## 2788                                                                                                                                                                                            Patient Care Assistant
## 2789                                                                                                                                                                                            Phlebotomy Techinician
## 2790                                                                                                                                                                                                    EKG Technician
## 2791                                                                                                                                                                                                  Dental Assistant
## 2792                                                                                                                                                                                       Microsoft Office Specialist
## 2793                                                                                                                                                                                  Microsoft Office Specialist Word
## 2794                                                                                                                                                                                                       Real Estate
## 2795                                                                                                                                                                                           Community Health Worker
## 2796                                                                                                                                                                                       Child Development Associate
## 2797                                                                                                                                                                                                      Pipe Welding
## 2798                                                                                                                                                                                                     Plate Welding
## 2799                                                                                                                                                                                 Microsoft Office Specialist Excel
## 2800                                                                                                                                                                   Production Logistics and Maintenance Technician
## 2801                                                                                                                                                                                          CompTIA A+ Certification
## 2802                                                                                                                                                                             Cisco Certified Network Administrator
## 2803                                                                                                                                                                                      CompTIA Server+Certification
## 2804                                                                                                                                                                                     Maintenance and Repair Worker
## 2805                                                                                                                                                                                                 Medical Assistant
## 2806                                                                                                                                                                      Medical Office Coding and Billing Specialist
## 2807                                                                                                                                                                                       Nurse Aide/Home Health Aide
## 2808                                                                                                                                                                           Nurse Aide/Home Health Aide   BiLingual
## 2809                                                                                                                                                                                 Nurse Aide/Home Health/Rehab Tech
## 2810                                                                                                                                                                                           Patient Care Technician
## 2811                                                                                                                                                                                                 Medical Assistant
## 2812                                                                                                                                                                                           Patient Care Technician
## 2813                                                                                                                                                                                       Nurse Aide Home Health Aide
## 2814                                                                                                                                                                             Nurse Aide Home Health Aide-Bilingual
## 2815                                                                                                                                                                      Nurse Aide Home Health Aide-Rehab Technician
## 2816                                                                                                                                                                      Nurse Aide Home Health Aide-Rehab Technician
## 2817                                                                                                                                                                                                 Medical Assistant
## 2818                                                                                                                                                                                           Patient Care Technician
## 2819                                                                                                                                                                       Medical Administrative Assisting Technology
## 2820                                                                                                                                                                             CDL Training: Class A Tractor Trailer
## 2821                                                                                                                                                                                                  Business Studies
## 2822                                                                                                                                                                                               Combination Welding
## 2823                                                                                                                                                                                                  Dental Assisting
## 2824                                                                                                                                                                                   PROGRAM 111 Combination Welding
## 2825                                                                                                                                                                              PROGRAM 101 STICK WELDING STRUCTURAL
## 2826                                                                                                                                                                          PROGRAM 110 FLUX CORE WELDING STRUCTURAL
## 2827                                                                                                                                                                                    PROGRAM 102 STICK WELDING PIPE
## 2828                                                                                                                                                      PROGRAM 103 STICK WELDING DOWNHILL PIPELINE WITH SADDLE TEST
## 2829                                                                                                                                                                                  PROGRAM 104 HELIARC WELDING PIPE
## 2830                                                                                                                                                                                         PROGRAM 105 HELIARC PLATE
## 2831                                                                                                                                                                                  PROGRAM 106 COPER NICKLE WELDING
## 2832                                                                                                                                                                               PROGRAM 107 FLUX CORE WELDING  PIPE
## 2833                                                                                                                                                                     PROGRAM 108 STAINLESS STEEL WELDING STRUCTUAL
## 2834                                                                                                                                                                                           PROGRAM 109 MIG WELDING
## 2835                                                                                                                                                                                    Business Accounting Specialist
## 2836                                                                                                                                                                                       Computer Support Specialist
## 2837                                                                                                                                                                             Medical Billing and Coding Specialist
## 2838                                                                                                                                                                                         Medical Office Specialist
## 2839                                                                                                                                                                                          Administrative Assistant
## 2840                                                                                                                                                                                    Business Accounting Specialist
## 2841                                                                                                                                                                                                              HVAC
## 2842                                                                                                                                                                             Medical Billing and Coding Specialist
## 2843                                                                                                                                                                                         Medical Office Specialist
## 2844                                                                                                                                                                                          Administrative Assistant
## 2845                                                                                                                                                                                       Computer Support Specialist
## 2846                                                                                                                                                                                 Commercial Motor Vehicle Operator
## 2847                                                                                                                                                                                                              HVAC
## 2848                                                                                                                                                                            Medical Billing and  Coding Specialist
## 2849                                                                                                                                                                                               Pharmacy Technician
## 2850                                                                                                                                                                                                  Welding (Hybrid)
## 2851                                                                                                                                                                                    Business Accounting Specialist
## 2852                                                                                                                                                                                                 Medical Assistant
## 2853                                                                                                                                                                             Medical Billing and Coding Specialist
## 2854                                                                                                                                                                                         Medical Office Specialist
## 2855                                                                                                                                                                                                        Nurse Aide
## 2856                                                                                                                                                                                             Electrical Technician
## 2857                                                                                                                                                                                                           Welding
## 2858                                                                                                                                                                                                 Medical Assistant
## 2859                                                                                                                                                                                             Electrical Technician
## 2860                                                                                                                                                                                                 Medical Assistant
## 2861                                                                                                                                                                                       Computer Support Specialist
## 2862                                                                                                                                                                                                           Welding
## 2863                                                                                                                                                                             Medical Billing and Coding Specialist
## 2864                                                                                                                                                                                                        Nurse Aide
## 2865                                                                                                                                                                                               Pharmacy Technician
## 2866                                                                                                                                                                                                           Welding
## 2867                                                                                                                                                                                                              HVAC
## 2868                                                                                                                                                                                 Commerical Motor Vehicle Operator
## 2869                                                                                                                                                                                                 Medical Assistant
## 2870                                                                                                                                                                                               Pharmacy Technician
## 2871                                                                                                                                                                                                           Welding
## 2872                                                                                                                                                                                 Commercial Motor Vehicle Operator
## 2873                                                                                                                                                                                               Pharmacy Technician
## 2874                                                                                                                                                                             Medical Billing and Coding Specialist
## 2875                                                                                                                                                                                                        Nurse Aide
## 2876                                                                                                                                                                                    Business Accounting Specialist
## 2877                                                                                                                                                                                                 Medical Assistant
## 2878                                                                                                                                                                                         Medical Office Specialist
## 2879                                                                                                                                                                                                        Nurse Aide
## 2880                                                                                                                                                                                    Business Accounting Specialist
## 2881                                                                                                                                                                                           Adminstrative Assistant
## 2882                                                                                                                                                                                              Pharamacy Technician
## 2883                                                                                                                                                                                              Pharamacy Technician
## 2884                                                                                                                                                                                    Business Accounting Specialist
## 2885                                                                                                                                                                             Medical Billing and Coding Specialist
## 2886                                                                                                                                                                                         Combination Welder   Pipe
## 2887                                                                                                                                                                                                 Structural Fitter
## 2888                                                                                                                                                                                     Structural/Maintenance Welder
## 2889                                                                                                                                                                                              Welding Fundamentals
## 2890                                                                                                                                                                                          Combination Welder- Pipe
## 2891                                                                                                                                                                                     Structural Maintenance Welder
## 2892                                                                                                                                                                                              Welding Fundamentals
## 2893                                                                                                                                                                                                 Structural Fitter
## 2894                                                                                                                                                                                        Clinical/Medical Assistant
## 2895                                                                                                                                                                                         Medical Office Specialist
## 2896                                                                                                                                                                                               Pharmacy Technician
## 2897                                                                                                                                                                                Computerized Accounting Specialist
## 2898                                                                                                                                                                                Computerized Accounting Specialist
## 2899                                                                                                                                                                                             General Office Skills
## 2900                                                                                                                                                                                         Medical Office Specialist
## 2901                                                                                                                                                                                Professional Truck Driver Training
## 2902                                                                                                                                                                                        Nurse Aide for Health Care
## 2903                                                                                                                                                                                             Diesel Technology AAS
## 2904                                                                                                                                                                             Diesel Technology Level 2 Certificate
## 2905                                                                                                                                                                                        Clinical Medical Assistant
## 2906                                                                                                                                                                                             Phlebotomy Technician
## 2907                                                                                                                                                                                                Vocational Nursing
## 2908                                                                                                                                                                                                Airframe Mechanics
## 2909                                                                                                                                                                                        Clinical Medical Assistant
## 2910                                                                                                                                                                                                Vocational Nursing
## 2911                                                                                                                                                                                Emergency Medical Technician Basic
## 2912                                                                                                                                                                        Certified Medical Administrative Assistant
## 2913                                                                                                                                                                         Administrative Information Technology AAS
## 2914                                                                                                                                                                                      Powerline Technician Program
## 2915                                                                                                                                                                                                    Management AAS
## 2916                                                                                                                                                                            Welding Technology Level 1 Certificate
## 2917                                                                                                                                                                            Welding Technology Level 2 Certificate
## 2918                                                                                                                                                                                           Wildlife Management AAS
## 2919                                                                                                                                                           Aminstrative Information Technology Level 1 Certificate
## 2920                                                                                                                                                                                Emergency Medical Technician Basic
## 2921                                                                                                                                                                                            Welding Technology AAS
## 2922                                                                                                                                                             Automotive Body Repair Technology Level 1 Certificate
## 2923                                                                                                                                                                         Automotive Technology Level 2 Certificate
## 2924                                                                                                                                                                                               Basic Peace Officer
## 2925                                                                                                                                                                                              Air Conditioning AAS
## 2926                                                                                                                                                 Air Conditioning and Refrigeration Technology Level 1 Certificate
## 2927                                                                                                                                                 Air Conditioning and Refrigeration Technology Level 2 Certificate
## 2928                                                                                                                                                                                         Radiologic Technology AAS
## 2929                                                                                                                                                                              Truck Driving for Electrical Lineman
## 2930                                                                                                                                                                                                Vocational Nursing
## 2931                                                                                                                                                                                       Child Development Associate
## 2932                                                                                                                                                                                   Computer Information System AAS
## 2933                                                                                                                                                                                              Criminal Justice AAS
## 2934                                                                                                                                                                                               ADN Program/Nursing
## 2935                                                                                                                                                                                             Child Development AAS
## 2936                                                                                                                                                                                             Phlebotomy Technician
## 2937                                                                                                                                                                                           Patient Care Technician
## 2938                                                                                                                                                                                           Patient Care Technician
## 2939                                                                                                                                                                            Welding Technology Level 1 Certificate
## 2940                                                                                                                                                                                      Powerline Technician Program
## 2941                                                                                                                                                                                               ADN Program/Nursing
## 2942                                                                                                                                                                                               ADN Program/Nursing
## 2943                                                                                                                                                                                               Pharmacy Technician
## 2944                                                                                                                                                                                               Pharmacy Technician
## 2945                                                                                                                                                                                               Pharmacy Technician
## 2946                                                                                                                                                                                               Pharmacy Technician
## 2947                                                                                                                                                                                             Phlebotomy Technician
## 2948                                                                                                                                                                             Electrical Pre Apprenticeship Program
## 2949                                                                                                                                                                                   Medical Assistant/Lab Assistant
## 2950                                                                                                                                                             Associate of Applied Science in Automotive Technology
## 2951                                                                                                                                 Associate of Applied Science in Business Management and Accounting Systems Degree
## 2952                                                                                                                                                                           Associate of Applied Science in Nursing
## 2953                                                                                                                                                                                    Bachelor of Science in Nursing
## 2954                                                                                                                                                                           Project Management Professional Seminar
## 2955                                                                                                                                                                           SAP Enterprise Systems Business Analyst
## 2956                                                                                                                                                                         SAP Materials Management Business Analyst
## 2957                                                                                                                                                                       Six Sigma Green Belt Certification Training
## 2958                                                                                                                                                                        Network and Computer Systems Administrator
## 2959                                                                                                                                                                                             Truck Driver Training
## 2960                                                                                                                                                                                             Truck Driver Training
## 2961                                                                                                                                                                                                  Dental Assisting
## 2962                                                                                                                                                                                               Nurse Aide Training
## 2963                                                                                                                                                                                    Phlebotomy Technician Training
## 2964                                                                                                                                                                              Electrocardiogram Technician Program
## 2965                                                                                                                                                                                            Patient Care Technicin
## 2966                                                                                                                                                                                  Aerospace Manufacturing Training
## 2967                                                                                                                                                                                                 Call Center Agent
## 2968                                                                                                                                                                                             CNC Machine Operation
## 2969                                                                                                                                                                            Introduction to Information Technology
## 2970                                                                                                                                                                                                         Logistics
## 2971                                                                                                                                                                                               Robotics Technician
## 2972                                                                                                                                                                                                           Welding
## 2973                                                                                                                                                        Office Careers Program   Accounting Technician Certificate
## 2974                                                                                                                                                     Office Careers Program   Administrative Assistant Certificate
## 2975                                                                                                                                             Office Careers Program   Medical Administrative Assistant Certificate
## 2976                                                                                                                                                             Office Careers Program   Office Assistant Certificate
## 2977                                                                                                                                                                                       Registered Dental Assistant
## 2978                                                                                                                                             Office Careers Program   Office Assistant Human Resources Certificate
## 2979                                                                                                                                                        Office Careers Program   Accounting Technician Certificate
## 2980                                                                                                                                                             Office Careers Program   Office Assistant Certificate
## 2981                                                                                                                                                      Office Careers Program  Administrative Assistant Certificate
## 2982                                                                                                                                                                                                    Medical Coding
## 2983                                                                                                                                                                                               Pharmacy Technician
## 2984                                                                                                                                                                              Electrocardiography (EKG) Technician
## 2985                                                                                                                                                                                             Phlebotomy Technician
## 2986                                                                                                                                                                                    Basic Heavy Equipment Operator
## 2987                                                                                                                                                                                          Cybersecurity Technician
## 2988                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 2989                                                                                                                                                                          Aviation Maintenance Technology-Airframe
## 2990                                                                                                                                                                        Aviation Maintenance Technology-Powerplant
## 2991                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 2992                                                                                                                                                                                            Automotive Refinishing
## 2993                                                                                                                                                                                 Toyota General Service Technician
## 2994                                                                                                                                                                                        Electrical Line Technician
## 2995                                                                                                                                                                                     HVAC Residential Technician I
## 2996                                                                                                                                                                                             Industrial Technician
## 2997                                                                                                                                                                                           Mechatronics Technician
## 2998                                                                                                                              Heating Air Conditioning and Refrigeration Technology: Residential HVAC/R Technician
## 2999                                                                                                                                                                                           Industrial Technician I
## 3000                                                                                                                               Heating Air Conditioning and Refrigeration Technology: Commercial HVAC/R Technician
## 3001                                                                                                                                                                                                    HVAC Installer
## 3002                                                                                                                                                                                        Engine Analysis Technician
## 3003                                                                                                                                                                                             Heavy Line Technician
## 3004                                                                                                                                                Automotive Service Technology: Toyota Technician Education Network
## 3005                                                                                                                                                                                                 Diesel Technician
## 3006                                                                                                                                                                                                Electrician Helper
## 3007                                                                                                                                                                                      HVAC/R Commercial Technician
## 3008                                                                                                                                                                                       Automotive Collision Repair
## 3009                                                                                                                                                                                           Automotive Metal Repair
## 3010                                                                                                                                                                                          Industrial Technician II
## 3011                                                                                                                                                                                         Toyota Service Technician
## 3012                                                                                                                                                                                                   Line Technician
## 3013                                                                                                                                                                                    HVAC Residential Technician II
## 3014                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 3015                                                                                                                                                                                     Automotive Service Technology
## 3016                                                                                                                                                                                        General Service Technician
## 3017                                                                                                                                                                                                 Medical Assistant
## 3018                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 3019                                                                                                                                                                                     Health Information Technology
## 3020                                                                                                                                                                                      Physical Therapist Assistant
## 3021                                                                                                                                                                                             Radiologic Technology
## 3022                                                                                                                                                                                                  Respiratory Care
## 3023                                                                                                                                                                                               Surgical Technology
## 3024                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 3025                                                                                                                                                                     Computer Network and Cybersecurity Technician
## 3026                                                                                                                                                                                                AAS Dental Hygiene
## 3027                                                                                                                                                                                                       ADN Nursing
## 3028                                                                                                                                                                                              AAS Respiratory Care
## 3029                                                                                                                                                                                          LVN   Vocational Nursing
## 3030                                                                                                                                                                                           Surgical Technology AAS
## 3031                                                                                                                                                                                     Diagnostic Medical Sonography
## 3032                                                                                                                                                    Diagnostic Medical Sonography Non Invasive Vascular Technology
## 3033                                                                                                                                                                         Commercial Drivers License Training at TC
## 3034                                                                                                                                                                                        Clinical Medical Assistant
## 3035                                                                                                                                                                                               Pharmacy Technician
## 3036                                                                                                                                                                                    CMA Clinical Medical Assistant
## 3037                                                                                                                                                                                              Certified Nurse Aide
## 3038                                                                                                                            Air Conditioning/Heating and Refrigeration Technology One Year Certificate (Level One)
## 3039                                                                                                                                                                  Commerical Drivers License Truck Driver Training
## 3040                                                                                                                                                                                          Associate Degree Nursing
## 3041                                                                                                                                         Automotive Technology Service Technician One Year Certificate (Level One)
## 3042                                                                                                                                                                                            ADN Transition Program
## 3043                                                                                                                                                                          Welding One Year Certificate (Level One)
## 3044                                                                                                                                           Electronics Technology/Instrumentation Advanced Certificate (Level One)
## 3045                                                                                                                                            Electronics Technology/Instrumentation Associate of Applied Technology
## 3046                                                                                                                                              Electronics Technology/Instrumentation Basic Certificate (Level One)
## 3047                                                                                                                                                                   Office Careers One Year Certificate (Level One)
## 3048                                                                                                                                                               Pharmacy Technician Program with Clinical Extership
## 3049                                                                                                                                                            Electrical Technology One year Certificate (Level One)
## 3050                                                                                                                                                                                          Vocational Nursing (LVN)
## 3051                                                                                                                                                                                          Dental Assisting Program
## 3052                                                                                                                                                                Diesel Technology One Year Certificate (Level One)
## 3053                                                                                                                                                                        Mastering Project Management with PMP Prep
## 3054                                                                                                                                                               The Complete Project Manager with CAPM and PMP Prep
## 3055                                                                                                                                                                          Administrative Dental Assistant (Online)
## 3056                                                                                                                                                                       Certified Ethical Hacker (Voucher Included)
## 3057                                                                                                                                                                                      Management Training (online)
## 3058                                                                                                                                                                                  Oil Refinery Operations (Online)
## 3059                                                                                                                                                                                               Pharmacy Technician
## 3060                                                                                                                                                                                            Power Plant Operations
## 3061                                                                                                                                                       CompTIA Security+ Certification Training (Voucher Included)
## 3062                                                                                                                                                                          CompTIA Security+ Certification Training
## 3063                                                                                                                                                                                         Chemical Plant Operations
## 3064                                                                                                                                                           Advanced Hospital Coding and CCS Prep (Voucher Inclded)
## 3065                                                                                                                                                                                             ICD-10 Medical Coding
## 3066                                                                                                                                      Certified Electronic Health Records Specialist (CEHRS) + Medical Terminology
## 3067                                                                                                                                              Certified Medical Administrative Assistant (CMAA) (Voucher Included)
## 3068                                                                                              Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology
## 3069                                                                                                                                                 Certified Supply Chain Management + Freight Broker/Agent Training
## 3070                                                                                                                                                                                           Residential Electrician
## 3071                                                                                                                                                                      SSCP Systems Security Certified Practitioner
## 3072                                                                                                                                                                                        Web Applications Developer
## 3073                                                                                                                                                                                           Web Design Professional
## 3074                                                                                                                                                                                       Fitness Business Management
## 3075                                                                                                                                                                Certified Physical Therapy Aide (Voucher Included)
## 3076                                                                                                                                                                              HVAC/R Technician (Voucher Included)
## 3077                                                                                                                                                                    HVAC/R Certified Technician (Voucher Included)
## 3078                                                                                                                                                                                             Restaurant Management
## 3079                                                                                                                                                                                     Freight Broker/Agent Training
## 3080                                                                                                                                                                           Retail Customer Service Skills Training
## 3081                                                                                                                                                 Human Resources Professional with Payroll Practice and Management
## 3082                                                                                                                                                  CompTIA Advanced Security Practitioner (CASP) (Voucher Included)
## 3083                                                                                                                                                                     Certified Information Security Manager (CISM)
## 3084                                                                                                                                                                 Information Security Training (Vouchers Included)
## 3085                                                                                                                                                                  Medical Office Manager (CPPM) (Voucher Included)
## 3086                                                                                                                                       Entrepreneurship: Start-Up and Business Owner Management (Voucher Included)
## 3087                                                                                                                                                                      Project Management Essentials with CAPM Prep
## 3088                                                                                                                                                             CompTIA A+ Certification Training (Vouchers Included)
## 3089                                                                                                                                                               CompTIA A+ with ITIL Foundation (Vouchers Included)
## 3090                                                                                                                                                        CompTIA Network+ Certification Training (Voucher Included)
## 3091                                                                                                                                                                        CompTIA IT Fundamentals (Voucher Included)
## 3092                                                                                                                                                               Certified Six Sigma Green Belt (Exam Cost Included)
## 3093                                                                                                                                                                    Lean Six Sigma Black Belt (Exam Cost Included)
## 3094                                                                                                                                                    Lean Six Sigma Green Belt and Black Belt (Exam Costs Included)
## 3095                                                                                                                                                   Lean Six Sigma Yellow Belt and Green Belt (Exam Costs Included)
## 3096                                                                                                                                 Microsoft Office Specialist 2019 (MOS) Certification Training (Vouchers Included)
## 3097                                                                                                                                                                    Certified Bookkeeper with Microsoft Excel 2019
## 3098                                                                                                                                                             Certified Medical Transcriptionist (Voucher Included)
## 3099                                                                                                                                                                            Certified Paralegal (Voucher Included)
## 3100                                                                                                                                                                Certified Risk Adjustment Coder (Voucher Included)
## 3101                                                                                                                    Certified Medical Administrative Assistant with Medical Billing and Coding (Vouchers Included)
## 3102                                                                                                                                            Microsoft Office Master 2019 Certification Training (Voucher Included)
## 3103                                                                                                                                                                              Certified Professional Medical Coder
## 3104                                                                                                                                      The Complete Project Manager with Microsoft Project 2019 (Software Included)
## 3105                                                                                                                                                     Clinical Medical Assistant with Emergency Care Specialization
## 3106                                                                                                                                                      Clinical Medical Assistant with Endocrinology Specialization
## 3107                                                                                                                                           Clinical Medical Assistant with Immunology and Allergies Specialization
## 3108                                                                                                                                                               Clinical Medical Assistant with EENT Specialization
## 3109                                                                                                                                                         Clinical Medical Assistant with Geriatrics Specialization
## 3110                                                                                                                                                           Clinical Medical Assistant with Oncology Specialization
## 3111                                                                                                                                                                    Lean Six Sigma Green Belt (Exam Cost Included)
## 3112                                                                                                                                                          Clinical Medical Assistant with Neurology Specialization
## 3113                                                                                                                                     Clinical Medical Assistant with Gastroenterology and Nutrition Specialization
## 3114                                                                                                                                                                 Certified Clinical Medical Assistant Professional
## 3115                                                                                                                                                        Clinical Medical Assistant with Dermatology Specialization
## 3116                                                                                                                                                         Certified Clinical Medical Assistant Pediatric Specialist
## 3117                                                                                                                                    Clinical Medical Assistant with Ortopedics and Physical Therapy Specialization
## 3118                                                                                                                                                                     Medical Billing and Coding (Voucher Included)
## 3119                                                                                                                                     Medical Billing Specialist with Electronic Health Records (Vouchers Included)
## 3120                                                                                                           Professional Bookkeeping with QuickBooks Online with Payroll Practice and Management (Voucher Included)
## 3121                                                                                                                                                Professional Bookkeeping with QuickBooks Online (Voucher Included)
## 3122                                                                                                                                                                                                    Office Manager
## 3123                                                                                                                                                         Certified Phlembotomy Technician (Voucher + Lab Included)
## 3124                                                                                                                                                               Certified Phlembotomy Technician (Voucher Included)
## 3125                                                                                                                                                                      Certified Inpatient Coder (Voucher Included)
## 3126                                                                                                                                                      Certified Bookkeeper with Microsoft Excel (Voucher Included)
## 3127                                                                                                                                                                          Foundations of Plumbing (Tools Included)
## 3128                                                                                                                                                                                         Certified Legal Secretary
## 3129                                                                                                                                                                              Pharmacy Technician Training Program
## 3130                                                                                                                                                                        BookKeeping/Accounting Technician Training
## 3131                                                                                                                                                                               Computer Network Support Technician
## 3132                                                                                                                                                                                 Dental Assistant Training Program
## 3133                                                                                                                                                        Medical and Clinical LAB and Phlebotomy Technician program
## 3134                                                                                                                                                                       Medical Billing and Coding Training Program
## 3135                                                                                                                                                                                  Commercial Truck Driver Training
## 3136                                                                                                                                                                                       Welding Combination Program
## 3137                                                                                                                                                                                                Vocational Nursing
## 3138                                                                                                                                                                            COMPREHENSIVE MOBILE REPAIR TECHNICIAN
## 3139                                                                                                                                                                      Hybrid-BUSINESS ANALYST FOR IT PROFESSIONALS
## 3140                                                                                                                                                                       Hybrid-CERTIFICATE OF NETWORK ADMINISTRATOR
## 3141                                                                                                                                                                      Hybrid-BOOKKEEPING AND QUICKBOOKS ACCOUNTING
## 3142                                                                                                                                                                              Contruction Technology (certificate)
## 3143                                                                                                                                                                  Industrial Scaffold Builder Basic Access Program
## 3144                                                                                                                                                                                       Accounting Technology (AAS)
## 3145                                                                                                                                                                               Accounting Technology (certificate)
## 3146                                                                                                                                                                                             Radiologic Technology
## 3147                                                                                                                                                                            Teaching Assistant (Early Childhood 4)
## 3148                                                                                                                                                                  Air Conditioning and Refrigeration (certificate)
## 3149                                                                                                                                                                                       Peace Officer Certification
## 3150                                                                                                                                                                                                           Welding
## 3151                                                                                                                                                                                        Medical Coding and Billing
## 3152                                                                                                                                                                             Medical Office Management (associate)
## 3153                                                                                                                                                                         Teaching Assistant (General Studies 8 12)
## 3154                                                                                                                                                                                  Teaching Assistant (kinesiology)
## 3155                                                                                                                                                                                       Licensed Vocational Nursing
## 3156                                                                                                                                                                          Teaching Assistant (General Studies 4 8)
## 3157                                                                                                                                                                                      Criminal Justice (associate)
## 3158                                                                                                                                                                           Associate Degree in Nursing (associate)
## 3159                                                                                                                                                                   Residential Electrician (certificate level one)
## 3160                                                                                                                                                                 Emergency Medical Science (certificate level one)
## 3161                                                                                                                                                                 Emergency Medical Science (certificate level two)
## 3162                                                                                                                                                                                 Automotive Technology (associate)
## 3163                                                                                                                                                                          Computer Information Systems (associate)
## 3164                                                                                                                                                                Commercial and Residential Electrician (associate)
## 3165                                                                                                                                                                             Emergency Medical Science (associate)
## 3166                                                                                                                                                                     Automotive Technology (certificate level one)
## 3167                                                                                                                                                           Computer Information Technology (certificate level one)
## 3168                                                                                                                                                                   Industrial Mechanics and Maintenance Technology
## 3169                                                                                                                                                                                                          Plumbing
## 3170                                                                                                                                                                                                        Electrical
## 3171                                                                                                                                                                                                        Insulation
## 3172                                                                                                                                                                                                 Paralegal Studies
## 3173                                                                                                                                                                                                   Legal Assisting
## 3174                                                                                                                                                                                       Respiratory Care Technician
## 3175                                                                                                                                                                                     Diagnostic Medical Sonography
## 3176                                                                                                                                                                                                Commerical Roofing
## 3177                                                                                                                                                            Construction Management (Associate of Applied Science)
## 3178                                                                                                                                                                                       Introduction to Arc Welding
## 3179                                                                                                                                                                                           Patient Care Technician
## 3180                                                                                                                                                                                                            Drones
## 3181                                                                                                                                                                                                       Pipefitting
## 3182                                                                                                                                                                                                 Diesel Technician
## 3183                                                                                                                                                                                    Certified Logistics Technician
## 3184                                                                                                                                                         Introduction to Logistics & Certified Logistics Associate
## 3185                                                                                                                                                                                   Electrical Power & Controls AAS
## 3186                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3187                                                                                                                                                                                            Welding Technology AAS
## 3188                                                                                                                                                                     Emergency Medical Services- EMT Certificate I
## 3189                                                                                                                                                                  Emergency Medical Services - Advanced EMT Cert 1
## 3190                                                                                                                                                             Emergency Medical Services Paramedic - Certificate II
## 3191                                                                                                                                                                                                     Paramedic AAS
## 3192                                                                                                                                                                        Aircraft Airframe Technician Certificate 2
## 3193                                                                                                                                                                                  Aircraft Airframe Technology AAS
## 3194                                                                                                                                                                      Aircraft Powerplant Technician Certificate 2
## 3195                                                                                                                                                                                Aircraft Powerplant Technology AAS
## 3196                                                                                                                                                                                  Industrial Systems Mechanic CER1
## 3197                                                                                                                                                                  Industrial Systems-Mechanical Specialization AAS
## 3198                                                                                                                                                                                           Structural Welding CER1
## 3199                                                                                                                                                                               Basic WeldingMultiple Processes OSA
## 3200                                                                                                                                                                          Professional Truck Driving Certification
## 3201                                                                                                                                                                                  Structural Welding Certificate 1
## 3202                                                                                                                                                                                  Vocational Nursing Certificate 2
## 3203                                                                                                                                                                                    Emergency Medical Services AAS
## 3204                                                                                                                                                           Emergency Medical Technology Advanced EMT Certificate 1
## 3205                                                                                                                                                                        Emergency Medical Technology Certificate l
## 3206                                                                                                                                                                                  Structural Welding Certificate 1
## 3207                                                                                                                                                                Emergency Medical Services-Paramedic Certificate 2
## 3208                                                                                                                                                              Heating Ventilation & Air Conditioning Certificate 1
## 3209                                                                                                                                                                         Industrial Systems-Mechanic Certificate 1
## 3210                                                                                                                                                                                             Machining Certificate
## 3211                                                                                                                                                                                  Structural Welding Certificate 1
## 3212                                                                                                                                                           Heating  Ventilation  & Air Conditioning Technology AAS
## 3213                                                                                                                                                                Industrial Systems - Mechanical Specialization AAS
## 3214                                                                                                                                                                                Precision Machining Technology AAS
## 3215                                                                                                                                                                                            Welding Technology AAS
## 3216                                                                                                                                                                                                Cyber Security AAS
## 3217                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3218                                                                                                                                                                                              Basic Web Design OSA
## 3219                                                                                                                                                                                         Basic Cybersecurity - OSA
## 3220                                                                                                                                                                                                    Basic HVAC OSA
## 3221                                                                                                                                                                            Basic Computer Networking & System OSA
## 3222                                                                                                                                                        Diesel Equipment Technology Heavy Truck Specialization AAS
## 3223                                                                                                                                                             Diesel Equipment Technology-Heavy Truck Certificate 1
## 3224                                                                                                                                                                                Electrical Lineworker Certificate1
## 3225                                                                                                                                                                                           Machining Certificate 1
## 3226                                                                                                                                                                                Precision Machining Technology AAS
## 3227                                                                                                                                                                                   Electrical Power & Controls AAS
## 3228                                                                                                                                                             Heating Ventilation & Air Conditioning Technology AAS
## 3229                                                                                                                                                   Heating Ventilation & Air Conditioning Technician Certificate 1
## 3230                                                                                                                                                                                  Structural Welding Certificate l
## 3231                                                                                                                                                                                            Welding Technology AAS
## 3232                                                                                                                                                                              Electrical Lineworker Technology AAS
## 3233                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3234                                                                                                                                                                      Diesel Equipment Technology-Heavy Truck CER2
## 3235                                                                                                                                                        Diesel Equipment Technology-Off Highway Specialization AAS
## 3236                                                                                                                                            Diesel Equipment Technology -Off-Highway Equipment Specialization CER1
## 3237                                                                                                                                                       Diesel Equipment Technology-Off Highway Specialization CER2
## 3238                                                                                                                                                                Industrial Systems- Mechanical  Specialization AAS
## 3239                                                                                                                                                                                  Industrial Systems Mechanic CER1
## 3240                                                                                                                                                                                          Basic Cybersecurity- OSA
## 3241                                                                                                                                                                                               Basic Machining OSA
## 3242                                                                                                                                                                             Basic Welding- Multiple Processes OSA
## 3243                                                                                                                                                                               HVAC Residential Service Technician
## 3244                                                                                                                                                                          Professional Truck Driving Certification
## 3245                                                                                                                                                                             Biomedical Equipment Technology (AAS)
## 3246                                                                                                                                                                       Emergency Medical Services EMT Certificate1
## 3247                                                                                                                                                                                  Structural Welding Certificate 1
## 3248                                                                                                                                                                                  Aircraft Airframe Technology AAS
## 3249                                                                                                                                                                      Building Construction Craftsman Certificate1
## 3250                                                                                                                                                                              Building Construction Technology AAS
## 3251                                                                                                                                                                                Business Management Technology AAS
## 3252                                                                                                                                                                                           Surgical Technology AAS
## 3253                                                                                                                                                                                  Vocational Nursing Certificate 2
## 3254                                                                                                                                                                                            Welding Technology AAS
## 3255                                                                                                                                                                      Emergency Medical ServicesAdvanced EMT(AEMT)
## 3256                                                                                                                                                              Emergency Medical Services - Paramedic Certificate 2
## 3257                                                                                                                                                                                 Health Information Technology AAS
## 3258                                                                                                                                                                                       Mechatronics Technology AAS
## 3259                                                                                                                                                                                  NCCER Electrical Program Level 1
## 3260                                                                                                                                                                                Precision Machining Technology AAS
## 3261                                                                                                                                                                 Automotive Maintenance & Light Repair Certificate
## 3262                                                                                                                                                                               Automotive Technician Certificate 2
## 3263                                                                                                                                                                                      Automotive Technology Degree
## 3264                                                                                                                                                                                          Education & Training AAS
## 3265                                                                                                                                                                                Education & Training Certificate 2
## 3266                                                                                                                                                                               Emergency Medical Service-Paramedic
## 3267                                                                                                                                       Heating Ventilation & Air Conditioning Technology Technician  Certificate 1
## 3268                                                                                                                                                                               Heavy Duty Diesel Engine Specialist
## 3269                                                                                                                                                                                             Machining Certificate
## 3270                                                                                                                                                                          Professional Truck Driving Certification
## 3271                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3272                                                                                                                                                                            Structural Metal Fabricators & Fitters
## 3273                                                                                                                                                                                       Associate Degree in Nursing
## 3274                                                                                                                                                                      Business Management Technology Certificate 2
## 3275                                                                                                                                                             Heating Ventilation & Air Conditioning Technology AAS
## 3276                                                                                                                                                                                  Professional Bus Driver Training
## 3277                                                                                                                                                                               Computer Programming Technology AAS
## 3278                                                                                                                                                                                                Dental Hygiene AAS
## 3279                                                                                                                                                                             NCCER Maritime Welding Level 1 Course
## 3280                                                                                                                                                                        Aircraft Airframe Technician Certificate 2
## 3281                                                                                                                                                                                Aircraft Powerplant Technology AAS
## 3282                                                                                                                                                                      Aircraft Powerplant Technician Certificate 2
## 3283                                                                                                                                                            Basic Computer Networking & Systems Administration OSA
## 3284                                                                                                                                                Auto Collision & Management Technology- Refinishing Specialization
## 3285                                                                                                                                                     Auto Collision & Management Technology- Repair Specialization
## 3286                                                                                                                                                                                        Auto Collision Refinishing
## 3287                                                                                                                                                                                             Auto Collision Repair
## 3288                                                                                                                                                                                 Auto Collision Repair Certificate
## 3289                                                                                                                                                                                            Cybersecurity Bootcamp
## 3290                                                                                                                                                                                     Software Engineering Bootcamp
## 3291                                                                                                                                                                              Electrical Lineworker Technology AAS
## 3292                                                                                                                                                                                      Electrical Lineworker Cert 1
## 3293                                                                                                                                                                                     Automotive Service Technician
## 3294                                                                                                                                                     Mechatronics Fundamentals Industrial Systems Training Program
## 3295                                                                                                                                                                            Automation and Controls Technology AAS
## 3296                                                                                                                                                                               Electrical Lineworker Certificate 1
## 3297                                                                                                                                                                                Business Management Technology AAS
## 3298                                                                                                                                                                      Business Management Technology Certificate 2
## 3299                                                                                                                                                                  Computer Networking & Systems Administration AAS
## 3300                                                                                                                                                                                  Electrical Lineworker Technology
## 3301                                                                                                                                                              Industrial Systems Mechanic-Electrical Certificate 2
## 3302                                                                                                                                                                  Industrial Systems-Electrical Specialization AAS
## 3303                                                                                                                                                                                                Cyber Security AAS
## 3304                                                                                                                                                        Diesel Equipment Technology-Off-Highway Specialization AAS
## 3305                                                                                                                                                    Diesel Equipment Technology-Off-HighwayEquipment Certificate l
## 3306                                                                                                                                                                                Precision Machining Technology AAS
## 3307                                                                                                                                                                                            Process Operations AAS
## 3308                                                                                                                                                                                  Structural Welding Certificate l
## 3309                                                                                                                                                                               Computer Programming Technology AAS
## 3310                                                                                                                                                                                           Machining Certificate 1
## 3311                                                                                                                                                                            Automation and Controls Technology AAS
## 3312                                                                                                                                                        Diesel Equipment Technology-Off Highway Specialization AAS
## 3313                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3314                                                                                                                                                                                  Basic Accounting/Bookkeeping OSA
## 3315                                                                                                                                                                          Basic Industrial Systems Electrical  OSA
## 3316                                                                                                                                                                                               Basic Machining OSA
## 3317                                                                                                                                                                                           Basic Cybersecurity OSA
## 3318                                                                                                                                                                                       Commerical Driver's License
## 3319                                                                                                                                                                                 Commerical Driver's License (twc)
## 3320                                                                                                                                                                                 Electrical Power and Controls AAS
## 3321                                                                                                                                                   Heating Ventilation & Air Conditioning Technician Certificate 1
## 3322                                                                                                                                                             Heating Ventilation & Air Conditioning Technology AAS
## 3323                                                                                                                                                                 Industrial Systems  Electrical Specialization AAS
## 3324                                                                                                                                                                                 Cyber Security-Cyber Security AAS
## 3325                                                                                                                                                        Diesel Equipment Technology Heavy Truck Specialization AAS
## 3326                                                                                                                                                             Diesel Equipment Technology-Heavy Truck Certificate 1
## 3327                                                                                                                                                                Computer Networking and Systems Administration AAS
## 3328                                                                                                                                                              Industrial Systems Mechanic Electrical Certificate 2
## 3329                                                                                                                                                                                           Machining Certificate 1
## 3330                                                                                                                                                                                Precision Machining Technology AAS
## 3331                                                                                                                                                             Diesel Equipment Technology-Heavy Truck Certificate 2
## 3332                                                                                                                                                             Basic Computer Networking & System Administration OSA
## 3333                                                                                                                                                                                         Basic Cybersecurity - OSA
## 3334                                                                                                                                                                                                Electrical Systems
## 3335                                                                                                                                                                                     Electric Motor Control System
## 3336                                                                                                                                                                                  Variable Frequency Drive Systems
## 3337                                                                                                                                                                                    Electrical System Installation
## 3338                                                                                                                                                                                   Programmable Controller Systems
## 3339                                                                                                                                                                                                 Pneumatic Systems
## 3340                                                                                                                                                                                          Mechanical Power Systems
## 3341                                                                                                                                                                                       Associate Degree in Nursing
## 3342                                                                                                                                                                                  Structural Welding Certificate 1
## 3343                                                                                                                                                                                  Vocational Nursing Certificate 2
## 3344                                                                                                                                                                                        Wind Energy Technology AAS
## 3345                                                                                                                                                             Diesel Equipment Technology-Heavy Truck Certificate 1
## 3346                                                                                                                                                                               Automotive Technician Certificate 2
## 3347                                                                                                                                                                                         Automotive Technology AAS
## 3348                                                                                                                                                             Diesel Equipment Technology Heavy Truck Certificate 2
## 3349                                                                                                                                                        Diesel Equipment Technology-Heavy Truck Specialization AAS
## 3350                                                                                                                                                                              Wind Energy Technician Certificate 1
## 3351                                                                                                                                                                               Auto Collision Repair Certificate 1
## 3352                                                                                                                                                                               Auto Collision Repair Certificate 2
## 3353                                                                                                                                                               Automotive Maintenance & Light Repair Certificate 1
## 3354                                                                                                                                                                                  Aircraft Airframe Technology AAS
## 3355                                                                                                                                                                      Aircraft Powerplant Technician Certificate 2
## 3356                                                                                                                                                                                Aircraft Powerplant Technology AAS
## 3357                                                                                                                                                             Diesel Equipment Technology - Heavy Truck Certificate
## 3358                                                                                                                                                        Diesel Equipment Technology Heavy Truck Specialization AAS
## 3359                                                                                                                                                        Diesel Equipment Technology Off Highway Specialization AAS
## 3360                                                                                                                                                             Heating Ventilation & Air Conditioning Technology AAS
## 3361                                                                                                                                        Heating Ventilation & Air Conditioning Technology Technician Certificate 1
## 3362                                                                                                                                                                           Industrial Systems Mechanic Certificate
## 3363                                                                                                                                                                         Structural and Pipe Welding Certificate 2
## 3364                                                                                                                                                                                  Structural Welding Certificate 1
## 3365                                                                                                                                                                                            Welding Technology AAS
## 3366                                                                                                                                                                        Aircraft Airframe Technician Certificate 2
## 3367                                                                                                                                                                              Building Construction Technology AAS
## 3368                                                                                                                                                                                   Electrical Power & Controls AAS
## 3369                                                                                                                                                                                Precision Machining Technology AAS
## 3370                                                                                                                                           Auto Collision & Management Technology - Refinishing Specialization AAS
## 3371                                                                                                                                                                               Automotive Technician Certificate 2
## 3372                                                                                                                                                   Diesel Equipment Technology-Off-Highway Equipment Certificate 1
## 3373                                                                                                                                                                  Industrial Systems-Mechanical Specialization AAS
## 3374                                                                                                                                                 Auto Collision & Management Technology- Repair Specialization AAS
## 3375                                                                                                                                                                            Auto Collision Refinishing Certificate
## 3376                                                                                                                                                                                         Automotive Technology AAS
## 3377                                                                                                                                                                                           Aviation Technology AAS
## 3378                                                                                                                                                                     Building Construction Craftsman Certificate 1
## 3379                                                                                                                                                                               Electrical Construction Certificate
## 3380                                                                                                                                                                              Electrical Lineworker Technology AAS
## 3381                                                                                                                                                                    Electrical Lineworker Technology Certificate 1
## 3382                                                                                                                                                                                    Instrumentation Technology AAS
## 3383                                                                                                                                                                                Machining Technology Certificate 1
## 3384                                                                                                                                                                     Plumbing & Pipefitting Technology Certificate
## 3385                                                                                                                                                                               Computer Programming Technology AAS
## 3386                                                                                                                                              Diesel Equipment Technology-Off-Highway Specialization Certificate 2
## 3387                                                                                                                                                                                      Basic Industrial Systems OSA
## 3388                                                                                                                                                                                               Basic Machining OSA
## 3389                                                                                                                                                                              Basic Welding Multiple Processes OSA
## 3390                                                                                                                                                            Basic Computer Networking & Systems Administration OSA
## 3391                                                                                                                                                                                                Basic Plumbing OSA
## 3392                                                                                                                                                                                                      Mechatronics
## 3393                                                                                                                                                                                           Accelerated BSN Program
## 3394                                                                                                                                                                                           Registered Nurse to BSN
## 3395                                                                                                                                                                                                           Nursing
## 3396                                                                                                                                                                                                  Dental Assistant
## 3397                                                                                                                                                                                     Diagnostic Medical Sonography
## 3398                                                                                                                                                                                                 Medical Assistant
## 3399                                                                                                                                                                                        Medical Coding and Billing
## 3400                                                                                                                                                                                                 Medical Assistant
## 3401                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3402                                                                                                                                                                                                 Medical Assistant
## 3403                                                                                                                                                                                        Medical Coding and Billing
## 3404                                                                                                                                                                                                  Dental Assistant
## 3405                                                                                                                                                                                     Diagnostic Medical Sonography
## 3406                                                                                                                                                                                    ETP Medical Coding and Billing
## 3407                                                                                                                                                                                                  Dental Assistant
## 3408                                                                                                                                                                                                 Medical Assistant
## 3409                                                                                                                                                                                        Medical Coding and Billing
## 3410                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3411                                                                                                                                                                                                 Medical Assistant
## 3412                                                                                                                                                                                               Surgical Technology
## 3413                                                                                                                                                                                        Medical Coding and Billing
## 3414                                                                                                                                                                                                  Dental Assistant
## 3415                                                                                                                                                                                                 Medical Assistant
## 3416                                                                                                                                                                                               Pharmacy Technician
## 3417                                                                                                                                                                                        Medical Coding and Billing
## 3418                                                                                                                                                                                               Surgical Technology
## 3419                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3420                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3421                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3422                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3423                                                                                                                                                                                        Medical Coding and Billing
## 3424                                                                                                                                                                                               Surgical Technology
## 3425                                                                                                                                                                                        Medical Billing and Coding
## 3426                                                                                                                                                                                        Medical Coding and Billing
## 3427                                                                                                                                                                                                Vocational Nursing
## 3428                                                                                                                                             Limited Medical Radiologic Technologist with Medical Assisting Skills
## 3429                                                                                                                                                                                                 Medical Assistant
## 3430                                                                                                                                                                                                 Medical Assistant
## 3431                                                                                                                                                                                                 Medical Assisting
## 3432                                                                                                                                                                                                 Medical Assistant
## 3433                                                                                                                                                                                          Medical Coding & Billing
## 3434                                                                                                                                                                                                 Medical Assistant
## 3435                                                                                                                                                                                                        Nurse Aide
## 3436                                                                                                                                                             10 Week Air Conditioning & Heating Technician Program
## 3437                                                                                                                                                                              Vocational Nursing (Evening Program)
## 3438                                                                                                                                                                                  Vocational Nursing (Day Program)
## 3439                                                                                                                                                       CISCO Network Administrator (CCNA) Certificate (non credit)
## 3440                                                                                                                                                                  CISCO Network Administrator Level II Certificate
## 3441                                                                                                                                                                                         Electrical Technology AAS
## 3442                                                                                                                                                                         Electrical Technology Level I Certificate
## 3443                                                                                                                                                                     Network and Computer System Administrator AAS
## 3444                                                                                                                                                         Network & Computer System Administrator Basic Certificate
## 3445                                                                                                                                                                      Computer Networking Specialization AAS CISCO
## 3446                                                                                                                                                             Electrical Technology Occupational Skills Certificate
## 3447                                                                                                                                             Network & Computer System Administrator Advanced Level II Certificate
## 3448                                                                                                                                                                                 Cisco Network Analyst Certificate
## 3449                                                                                                                                                                        Electrical Technology Level II Certificate
## 3450                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 3451                                                                                                                                                                            Nursing AAS (Integrated Curriculum) RN
## 3452                                                                                                                                                  Transition to Professional Nursing for Articulating Students AAS
## 3453                                                                                                                                                                                    Vocational Nursing Certificate
## 3454                                                                                                                                                                                                    Accounting AAS
## 3455                                                                                                                                                                                           Surgical Technology AAS
## 3456                                                                                                                                                                                     AWS Academy Cloud Foundations
## 3457                                                                                                                                                                                    AWS Academy Cloud Architecting
## 3458                                                                                                                                                           Sterile Processing Technician Non-Practicum Certificate
## 3459                                                                                                                                                         Sterile Processing Technician Practicum Track Certificate
## 3460                                                                                                                                                                                                  Dental Assistant
## 3461                                                                                                                                                                                                   Massage Therapy
## 3462                                                                                                                                                                                                 Medical Assistant
## 3463                                                                                                                                                                                                 Medical Secretary
## 3464                                                                                                                                                                                        Emergency Medical Services
## 3465                                                                                                                                                                                           Patient Care Technology
## 3466                                                                                                                                                                                               Surgical Technology
## 3467                                                                                                                                                                                                Vocational Nursing
## 3468                                                                                                                                                                                                         Education
## 3469                                                                                                                                                                                                         Education
## 3470                                                                                                                                                                                                         Education
## 3471                                                                                                                                                                                       Paramedic to ADN Transition
## 3472                                                                                                                                                                                          Associate Degree Nursing
## 3473                                                                                                                                                                                        Clinical Medical Assistant
## 3474                                                                                                                                                                                               Pharmacy Technician
## 3475                                                                                                                                                                                               Pharmacy Technician
## 3476                                                                                                                                                                                        Clinical Medical Assistant
## 3477                                                                                                                                                                                                Accounting-A K T P
## 3478                                                                                                                                                                                                        Accounting
## 3479                                                                                                                                                                 Drafting and Design Technology/Technician General
## 3480                                                                                                                                                                           Heating Ventiliation & Air Conditioning
## 3481                                                                                                                                                                                    Robotics Technology/Technician
## 3482                                                                                                                                                          Administrative Assistant and Secretarial Science General
## 3483                                                                                                                                                            Business Administration and Management General-A K T P
## 3484                                                                                                                                                                            Medical Transcription/Transcriptionist
## 3485                                                                                                                                                         Administrative Assistant and Secretarial Science General-
## 3486                                                                                                                                                                  Business/Office Automation/Technology/Data Entry
## 3487                                                                                                                                                                      Health/Health Care Administration/Management
## 3488                                                                                                                                                                                         Welding Technology/Welder
## 3489                                                                                                                                                                          Computer and Information Sciences Genera
## 3490                                                                                                                                                                        Child Care and Support Services Management
## 3491                                                                                                                                                                            Early Childhood Education and Teaching
## 3492                                                                                                                                                                                     Child Care Provider/Assistant
## 3493                                                                                                                                                                                        Fire Science/Fire-fighting
## 3494                                                                                                                                                                          Legal Administrative Assistant/Secretary
## 3495                                                                                                                                                                    Business Administration and Management General
## 3496                                                                                                                                                                         Computer and Information Sciences General
## 3497                                                                                                                                                                                    Court Reporting/Court Reporter
## 3498                                                                                                                                                                                   Criminal Justice/Police Science
## 3499                                                                                                                                                                                                       Corrections
## 3500                                                                                                                                                                 Computer and Information Sciences General-A K T P
## 3501                                                                                                                                                                                                        Accounting
## 3502                                                                                                                                                          Administrative Assistant and Secretarial Science General
## 3503                                                                                                                                                                    Business Administration and Management General
## 3504                                                                                                                                                                         Computer and Information Sciences General
## 3505                                                                                                                                                                                   Criminal Justice/Police Science
## 3506                                                                                                                                                                        Child Care and Support Services Management
## 3507                                                                                                                                                                      Health/Health Care Administration/Management
## 3508                                                                                                                                                                            Early Childhood Education and Teaching
## 3509                                                                                                                                                                             Child Care Provider/Assistant-A K T P
## 3510                                                                                                                                                                          Legal Administrative Assistant/Secretary
## 3511                                                                                                                                                            Business Administration and Management General-A K T P
## 3512                                                                                                                                                                            Medical Transcription/Transcriptionist
## 3513                                                                                                                                                                  Business/Office Automation/Technology/Data Entry
## 3514                                                                                                                                                                                                        Accounting
## 3515                                                                                                                                                          Administrative Assistant and Secretarial Science General
## 3516                                                                                                                                                                    Business Administration and Management General
## 3517                                                                                                                                                                         Computer and Information Sciences General
## 3518                                                                                                                                                                                   Criminal Justice/Police Science
## 3519                                                                                                                                                                                                       Corrections
## 3520                                                                                                                                                                      Health/Health Care Administration/Management
## 3521                                                                                                                                                                        Child Care and Support Services Management
## 3522                                                                                                                                                                                     Child Care Provider/Assistant
## 3523                                                                                                                                                                          Legal Administrative Assistant/Secretary
## 3524                                                                                                                                                            Business Administration and Management General-A K T P
## 3525                                                                                                                                                                            Medical Transcription/Transcriptionist
## 3526                                                                                                                                                                  Business/Office Automation/Technology/Data Entry
## 3527                                                                                                                                                                 Drafting and Design Technology/Technician General
## 3528                                                                                                                                                                         Computer and Information Sciences General
## 3529                                                                                                                                                                                    Court Reporting/Court Reporter
## 3530                                                                                                                                                                                                        Phlebotomy
## 3531                                                                                                                                                             Professional Truck Driver Commercial Driver's License
## 3532                                                                                                                                                                                                    Basic Drafting
## 3533                                                                                                                                                                                     TIG Welding Technology/Welder
## 3534                                                                                                                                                                                           Automation and Controls
## 3535                                                                                                                                                                                                     MET Machining
## 3536                                                                                                                                                                                                   MET CAD/CAM/CNC
## 3537                                                                                                                                                                                       Early Childhood Development
## 3538                                                                                                                                                                                                Welding Technology
## 3539                                                                                                                                                                                   Small Business Entrepreneurship
## 3540                                                                                                                                                                                                         Education
## 3541                                                                                                                                                                            Early Childhood Education and Teaching
## 3542                                                                                                                                                                                                        Phlebotomy
## 3543                                                                                                                                                                                   Small Business Entrepreneurship
## 3544                                                                                                                                                                                    Court Reporting/Court Reporter
## 3545                                                                                                                                                                                       Early Childhood Development
## 3546                                                                                                                                                                        Driving Skills for Transporting Passengers
## 3547                                                                                                                                                                         Computer and Information Sciences General
## 3548                                                                                                                                                                        Child Care and Support Services Management
## 3549                                                                                                                                                                            Early Childhood Education and Teaching
## 3550                                                                                                                                                                                     Child Care Provider/Assistant
## 3551                                                                                                                                                                                                        Accounting
## 3552                                                                                                                                                          Administrative Assistant and Secretarial Science General
## 3553                                                                                                                                                                          Legal Administrative Assistant/Secretary
## 3554                                                                                                                                                                            Medical Transcription/Transcriptionist
## 3555                                                                                                                                                                                       Early Childhood Development
## 3556                                                                                                                                                                  Business/Office Automation/Technology/Data Entry
## 3557                                                                                                                                                                    Business Administration and Management General
## 3558                                                                                                                                                                                   Small Business Entrepreneurship
## 3559                                                                                                                                                                      Health/Health Care Administration/Management
## 3560                                                                                                                                                                                                       Corrections
## 3561                                                                                                                                                                                   Criminal Justice/Police Science
## 3562                                                                                                                                                                                     TIG Welding Technology/Welder
## 3563                                                                                                                                                                                         Welding Technology/Welder
## 3564                                                                                                                                                                                   Small Business Entrepreneurship
## 3565                                                                                                                                                                                                       Corrections
## 3566                                                                                                                                                                        Robotics Engineering Technology/Technician
## 3567                                                                                                                                                                         Fire Protection Technology / Fire Science
## 3568                                                                                                                                                                Fire Inspector and Investigator TCFP/ Fire Science
## 3569                                                                                                                                                                              Fire Rescue Operations/ Fire Science
## 3570                                                                                                                                                                                       Early Childhood Development
## 3571                                                                                                                                                                                        Fire Science/Fire-fighting
## 3572                                                                                                                                                                                   Robotics Engineering Technology
## 3573                                                                                                                                                                                    Electrical Line Worker Program
## 3574                                                                                                                                                                                    Electrical Line Worker Program
## 3575                                                                                                                                                                                               Professional Welder
## 3576                                                                                                                                                                               Welding Specialist with Pipefitting
## 3577                                                                                                                                                                                        Refrigeration Technologies
## 3578                                                                                                                                                                                   Electro-Mechanical Technologies
## 3579                                                                                                                                                                Tyler County Hospital School of Vocational Nursing
## 3580                                                                                                                                                                                         Professional Truck Driver
## 3581                                                                                                                                                            Associate Degree Nursing  Associate of Applied Science
## 3582                                                                                                                                                                Computer Aided Drafting Certificate of Proficiency
## 3583                                                                                                                                                                      Dental Assisting  Certificate of Proficiency
## 3584                                                                                                                                                                      Dental Hygiene  Associate of Applied Science
## 3585                                                                                                                                                             Desktop Support Technician Certificate of Proficiency
## 3586                                                                                                                                              Emergency Medical Service Professions   Associate of Applied Science
## 3587                                                                                                                             Emergency Medical Service Professions (Paramedic Option)   Certificate of Proficiency
## 3588                                                                                                                                                      Engineering Design Technology   Associate of Applied Science
## 3589                                                                                                                                                      Health Information Technology   Associate of Applied Science
## 3590                                                                                                                                       Health Information Technology   Medical Coding   Certificate of Proficiency
## 3591                                                                                                                                                                                                  Dental Assisting
## 3592                                                                                                                                                     Professional Tennis Management   Associate of Applied Science
## 3593                                                                                                                                                       Professional Tennis Management   Certificate of Proficiency
## 3594                                                                                                                                                              Public Administration   Associate of Applied Science
## 3595                                                                                                                                                                Public Administration   Certificate of Proficiency
## 3596                                                                                                                                                               Radiologic Technology  Associate of Applied Science
## 3597                                                                                                                                                                                 Respiratory Care Associate Degree
## 3598                                                                                                                                                 Surveying and Geomatics Technology   Associate of Applied Science
## 3599                                                                                                                                                              Process Piping Design   Associate of Applied Science
## 3600                                                                                                                                                          Healthcare Administration   Associate of Applied Science
## 3601                                                                                                                                                Human Services Community Health Worker  Certificate of Proficiency
## 3602                                                                                                                                                     Law Enforcement Investigations   Associate of Applied Science
## 3603                                                                                                                                                        Medial Laboratory Technology  Associate of Applied Science
## 3604                                                                                                                                                          Medical Office Management   Associate of Applied Science
## 3605                                                                                                                                                            Medical Office Management   Certificate of Proficiency
## 3606                                                                                                                                                                          Paralegal   Associate of Applied Science
## 3607                                                                                                                                                  Vocational Nurse Education  Certificate of Proficiency  Tyler TX
## 3608                                                                                                                                                         Wellness and Exercise Science  Certificate of Proficiency
## 3609                                                                                                                                                    Wellness and Exercise Specialist  Associate of Appied Sciences
## 3610                                                                                                                                                   Surveying and Geomatics Technology   Certificate of Proficiency
## 3611                                                                                                                                                            Associate Degree Nursing  Associate of Applied Science
## 3612                                                                                                                                                Vocational Nurse Education  Certificate of Proficiency  Lindale TX
## 3613                                                                                                                                                                                             Automotive Technology
## 3614                                                                                                                                             Automotive Technology   Engine Performance Certificate of Proficiency
## 3615                                                                                                                                                                                                CDL Written Skills
## 3616                                                                                                                  Heating Air Conditioning and Refrigeration Technology   Entry Level   Certificate of Proficiency
## 3617                                                                                                                                                                                 Industrial Maintenance Technology
## 3618                                                                                                                                                                      Pharmacy Technician with Clinical Externship
## 3619                                                                                                                                                             Power Plant Technology   Associate of Applied Science
## 3620                                                                                                                                                                 Welding Technology   Associate of Applied Science
## 3621                                                                                                                                                     Welding Technology   Entry Level   Certificate of Proficiency
## 3622                                                                                                                                                                      Certified Welder Inspector (CWI) Preparation
## 3623                                                                                                                                 Child Development/Early Childhood   Preschool Teaching Certificate of Proficiency
## 3624                                                                                                                                                                                Clinical Medical Assistant Program
## 3625                                                                                                                                                               EKG/Cardiovascular Technician Certification Program
## 3626                                                                                                                                            Electrical/Electronic Controls Technology Associate of Applied Science
## 3627                                                                                                                                              Electrical/Electronic Controls Technology Certificate of Proficiency
## 3628                                                                                                                              Heating Air Conditioning and Refrigeration Technology   Associate of Applied Science
## 3629                                                                                                                                                                                              Certified Nurse Aide
## 3630                                                                                                                                                                                    Occupational Therapy Assistant
## 3631                                                                                                                                                                              Occupational Therapy Assistant (twc)
## 3632                                                                                                                                                   Vocational Nurse Education  Certificate of Proficiency  Rusk TX
## 3633                                                                                                                                                                      Master of Science in Construction Management
## 3634                                                                                                                                                                                                 Second Degree BSN
## 3635                                                                                                                                            Bachelor of Science in Technology Leadership and Innovation Management
## 3636                                                                                                                                                   Executive Budgeting And Finance Certificate    (3 Certificates)
## 3637                                                                                                                                                              Executive Leadership Certificate    (3 Certificates)
## 3638                                                                                                                                                                             Bachelor of Science in Nursing Degree
## 3639                                                                                                                                                                 Accelerated Bachelor of Science in Nursing Degree
## 3640                                                                                                                                                       Medical Coding and Billing/Medical Administrative Assistant
## 3641                                                                                                                                                                                              Anatomy & Physiology
## 3642                                                                                                                                                                                       Certified Nursing Assistant
## 3643                                                                                                                                                                                        Clinical Medical Assistant
## 3644                                                                                                                                                                                                  Dental Assistant
## 3645                                                                                                                                                                                               Dialysis Technician
## 3646                                                                                                                                                                                                    EKG Technician
## 3647                                                                                                                                                                                             Phlebotomy Technician
## 3648                                                                                                                                                                                             Physical Therapy Aide
## 3649                                                                                                                                                                                       Registered Dental Assistant
## 3650                                                                                                                                                                                               Pharmacy Technician
## 3651                                                                                                                                                                                             Medical Transcription
## 3652                                                                                                                                                                                          Mental Health Technician
## 3653                                                                                                                                                                                           Patient Care Technician
## 3654                                                                                                                                                                                     Paralegal Certificate program
## 3655                                                                                                                                                                                  Bachelor of Science in Education
## 3656                                                                                                                                                                               English Language Arts/Reading: 7 12
## 3657                                                                                                                                                                                  Project Management Certification
## 3658                                                                                                                                                                Project Management Professional Certificate  EU/P3
## 3659                                                                                                                                                                                                 Mathematics: 7 12
## 3660                                                                                                                                                                                    Bachelor of Science in Nursing
## 3661                                                                                                                                                        Oracle SQL and PL/SQL + Python Developer + Java Programmer
## 3662                                                                                                                                                                         Alternative Teacher Certification Program
## 3663                                                                                                                                                Alternative Teacher Certification Program   Grades EC 6 Generalist
## 3664                                                                                                                                                                           4 8 English LangArts Reading SocStudies
## 3665                                                                                                                                                                                                    4 8 Generalist
## 3666                                                                                                                                                                                                  4 8 Math Science
## 3667                                                                                                                                                              Certified Internal Auditor ISO 13485 Medical Devices
## 3668                                                                                                                                                                          Certified Internal Auditor ISO 9000 2015
## 3669                                                                                                                                                                                4 8 Bilingual Education Generalist
## 3670                                                                                                                                                 Alternative Teacher Certification Program   Grades 4 8 Generalist
## 3671                                                                                                                                               Certified Credit Counselor and Certified Financial Health Counselor
## 3672                                                                                                                                                                               EC 6 Bilingual Education Generalist
## 3673                                                                                                                                                                            Manufacturing Supervisor Certification
## 3674                                                                                                                                                                                Victim Advocacy Certificate Course
## 3675                                                                                                                                               Alternative Teacher Certification Program   EC 12 Special Education
## 3676                                                                                                                                      Alternative Teacher Certification Program   Grades 4 8 Bililngual Generalist
## 3677                                                                                                                                                                                                     Spanish EC 12
## 3678                                                                                                                                                                                    Special Education   All Levels
## 3679                                                                                                                                                                                              Veterinary Assistant
## 3680                                                                                                                                                             Pharmacy Technician Training with Clinical Externship
## 3681                                                                                                                                                                                             Physical Therapy Aide
## 3682                                                                                                                                                                                      Human Resources Professional
## 3683                                                                                                                                                                    Lean Six Sigma Green Belt certification   TMAC
## 3684                                                                                                                                                                   Lean Six Sigma Yellow Belt certification   TMAC
## 3685                                                                                                                                                                                     Composite Social Studies 7 12
## 3686                                                                                                                                               CompTIA Certification Training A Network Security Vouchers Included
## 3687                                                                                                                                                                                                   4 8 Mathematics
## 3688                                                                                                                                                      Clinical Medical Assistant with Optional Clinical Externship
## 3689                                                                                                                                                                                     Freight Broker/Agent Training
## 3690                                                                                                                                                                                     BA in Criminal Justice Online
## 3691                                                                                                                                                                      Bachelor of Multidisciplinary Studies Online
## 3692                                                                                                                                                                             Bachelor of Multidisciplinary Studies
## 3693                                                                                                                                                                             Bachelor of Arts in History Education
## 3694                                                                                                                                                                             Bachelor of Arts in English Education
## 3695                                                                                                                                                                                      BS in Industrial Engineering
## 3696                                                                                                                                                       Lean Six Sigma Green Belt and Black Belt Exam Cost Included
## 3697                                                                                                                                                                                           Residential Electrician
## 3698                                                                                                                                                                      HVAC R Certified Technician Voucher Included
## 3699                                                                                                                                                                                     BS in Rehabilitation Sciences
## 3700                                                                                                                                                                      Help Desk Analyst  Tier 1 Support Specialist
## 3701                                                                                                                                                                                Bachelor of Science in Social Work
## 3702                                                                                                                                                                           Bachelor of Science in Computer Science
## 3703                                                                                                                                                                 Bachelor of Business Administration in Accounting
## 3704                                                                                                                                                                    Bachelor of Business Administration in Finance
## 3705                                                                                                                                                                 Bachelor of Business Administration in Management
## 3706                                                                                                                                                        Bachelor of Business Administration in Information Systems
## 3707                                                                                                                                                                  Bachelor of Arts in Linguistics with Translation
## 3708                                                                                                                                                                                          Clinical Dental Assitant
## 3709                                                                                                                                                                                        EKG Technician Career Prep
## 3710                                                                                                                                                                     Medical Office Manager CPPM Vouchers Included
## 3711                                                                                                                                                                                 Phlebotomy Technician Career Prep
## 3712                                                                                                                                                                     Professional Bookkeeping with QuickBooks 2019
## 3713                                                                                                                                       Senior Professional in Human Resources with Payroll Practice and Management
## 3714                                                                                                                                                                         Certified Ethical Hacker Voucher Included
## 3715                                                                                                                                                      Certified Information Security Manager CISM Voucher Included
## 3716                                                                                                                                                         Certified Information Systems Security Professional CISSP
## 3717                                                                                                                                                      CompTIA Advanced Security Practitioner CASP Voucher Included
## 3718                                                                                                                                                                         Home Health Aide Career Prep Professional
## 3719                                                                                                                                                                   Medical Billing and Coding Career Prep Complete
## 3720                                                                                                                                                                                                 Blueprint Reading
## 3721                                                                                                                                                                           Problem Solving and Root Cause Analysis
## 3722                                                                                                                                                                            5S Workplace Organization Practitioner
## 3723                                                                                                                                                                                              Bachelors of Nursing
## 3724                                                                                                                                                                                    Certificate in Web Development
## 3725                                                                                                                                                                                Clinical Medical Assistant Program
## 3726                                                                                                                                                                            Medical Billing and Coding Certificate
## 3727                                                                                                                                                                                       Pharmacy Technician Program
## 3728                                                                                                                                                                                         Dental Assistant  Program
## 3729                                                                                                                                                                                     Phlebotomy Technician Program
## 3730                                                                                                                                                                                     Paralegal Certificate Program
## 3731                                                                                                                                                                                     Certificate in Data Analytics
## 3732                                                                                                                                                                                  Certificate in Digital Marketing
## 3733                                                                                                                                                                    Executive Certificate in Operations Management
## 3734                                                                                                                                                                         Certificate in Human Resources Management
## 3735                                                                                                                                                                                       Registered Dental Assistant
## 3736                                                                                                                                                                              Certified Clinical Medical Assistant
## 3737                                                                                                                                                                    Certified Electronic Health Records Specialist
## 3738                                                                                                                                                                           Certified Billing and Coding Specialist
## 3739                                                                                                                                                                                Cardiac Rhythm Analysis Technician
## 3740                                                                                                                                                                        Certified Medical Administrative Assistant
## 3741                                                                                                                                                                                              Network Fundamentals
## 3742                                                                                                                                                                                             Security Fundamentals
## 3743                                                                                                                                                                                                   IT Fundamentals
## 3744                                                                                                                                                                                               Pharmacy Technician
## 3745                                                                                                                                                                                                    Accounting AAS
## 3746                                                                                                                                                  Advanced Technical Certificate in Professional Accountancy (CPA)
## 3747                                                                                                                                       Machining - Computer Numeric Control OperatorProgrammer Level I Certificate
## 3748                                                                                                                                                                            Petroleum Field Service Technician AAS
## 3749                                                                                                                                                                      Field Service Technician Certificate Level I
## 3750                                                                                                                                                                      IADC GatewayFloorhand Roustabout Certificate
## 3751                                                                                                                                                                                      Machining Master Certificate
## 3752                                                                                                                                                                                          Machining Technology AAS
## 3753                                                                                                                                                           Petroleum Field Service Technician Level II Certificate
## 3754                                                                                                                                                                           Lean Six Sigma Green Belt Certification
## 3755                                                                                                                                     Machining - Computer Numeric Control Operator Programmer Level II Certificate
## 3756                                                                                                                                                            Robotics-Automated Manufacturing Technology AAS Degree
## 3757                                                                                                                                        Robotics-Automated Manufacturing Technology Level 2 Certificate AAS Degree
## 3758                                                                                                                                                                            Lean Six Sigma Black Belt Certifiation
## 3759                                                                                                                                                                Machining Technology Machinist Level I Certificate
## 3760                                                                                                                                                                   Project Management Certificate Exam Preparation
## 3761                                                                                                                                                                           Solid Works (non-credit) Upgrade Skills
## 3762                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 3763                                                                                                                                                               Energy Manufacturing & Trades Management BAS Degree
## 3764                                                                                                                                                                                Mechanical Technician/Mechatronics
## 3765                                                                                                                                                                      Health Information Technician/Medical Coding
## 3766                                                                                                                                                                                                 Medical Secretary
## 3767                                                                                                                                                                                                Vocational Nursing
## 3768                                                                                                                                                                                                 Medical Assistant
## 3769                                                                                                                                                                      Medical Insurance Coder & Billing Technician
## 3770                                                                                                                                                                                                Vocational Nursing
## 3771                                                                                                                                                     Limited Medical Radiologic Technologist/Phlebotomy Technician
## 3772                                                                                                                                                                                           Patient Care Technician
## 3773                                                                                                                                                                                                   Web Development
## 3774                                                                                                                                                                   Computer and Information Sciences   Certificate
## 3775                                                                                                                                                                                                     Machining CNC
## 3776                                                                                                                                                                               Welding   Certificate of Completion
## 3777                                                                                                                                                                                                       Welding AAS
## 3778                                                                                                                                                                 Heat Ventilation and Air Conditioning Certificate
## 3779                                                                                                                                                                                Automation & Electrical Technology
## 3780                                                                                                                                                                                            Nursing (RN)   Generic
## 3781                                                                                                                                                                                     Nursing (RN)   LVN Transition
## 3782                                                                                                                                                                                                Vocational Nursing
## 3783                                                                                                                                                                             Advanced Emergency Medical Technician
## 3784                                                                                                               Associate of Arts in Teaching Leading to Initial Texas Teacher Certification 4 8 EC 12 Special Educ
## 3785                                                                                                                                                                                           Business Management AAS
## 3786                                                                                                                                                                                   Business Management Certificate
## 3787                                                                                                                                                                              Certified Nurse Aide/Nurse Assistant
## 3788                                                                                                                                                                           Computer and Information Sciences   AAS
## 3789                                                                                                                                                                      Criminal Justice Basic Peace Officer Academy
## 3790                                                                                                                                                                              Culinary Arts/Hospitality Management
## 3791                                                                                                                                                                                                  Dental Assisting
## 3792                                                                                                                                                                                 Health Information Management AAS
## 3793                                                                                                                                                                      Health Information Management Medical Coding
## 3794                                                                                                                                                                            Automation & Electrical Technology AAS
## 3795                                                                                                                                                                                               Pharmacy Technician
## 3796                                                                                                                                                                                           Surgical Technology AAS
## 3797                                                                                                                                                                                                 Medical Assisting
## 3798                                                                                                                                                                                                   Court Reporting
## 3799                                                                                                                                                                                                   Massage Therapy
## 3800                                                                                                                                                                                             Truck Driving Program
## 3801                                                                                                                                                                                                Vocational Nursing
## 3802                                                                                                                                                                                             Electronic AAS Degree
## 3803                                                                                                                                                                           Emergency Medical Services   AAS Degree
## 3804                                                                                                                                                                          Heating Ventilating and Air Conditioning
## 3805                                                                                                                                                                                      Instrumentation   AAS Degree
## 3806                                                                                                                                                                                       Instrumentation Certificate
## 3807                                                                                                                                                                                                 Medical Assisting
## 3808                                                                                                                                                                                     Office Management Certificate
## 3809                                                                                                                                                                                             Paramedic Certificate
## 3810                                                                                                                                                      Personal Computer& Local Area Network Technician Certificate
## 3811                                                                                                                                                                                      Physical Therapist Assistant
## 3812                                                                                                                                                                                                    Police Academy
## 3813                                                                                                                                                                                           Electrician Certificate
## 3814                                                                                                                                                                                   Process Technology   AAS Degree
## 3815                                                                                                                                                                                       Respiratory Care Technology
## 3816                                                                                                                                                                                                Vocational Nursing
## 3817                                                                                                                                                                                       Welding   Basic Certificate
## 3818                                                                                                                                                                                                      Advanced EMT
## 3819                                                                                                                                                                      Associate Degree Nursing (Transition Option)
## 3820                                                                                                                                                                                  Associate Degree Nursing Program
## 3821                                                                                                                                                                                 Commercial Truck Driving Training
## 3822                                                                                                                                                                                                Vocational Nursing
## 3823                                                                                                                                                                                                Vocational Nursing
## 3824                                                                                                                                                                                       Fiber Optics Certifications
## 3825                                                                                                                                                                                               Class B CDL Program
## 3826                                                                                                                                                                                               Class A CDL Program
## 3827                                                                                                                                                                    Class B CDL with Passenger Endorsement Program
## 3828                                                                                                                                                                                   Four (4) Week Refresher Program
## 3829                                                                                                                                                                   Class B CDL with School Bus Endorsement Program
## 3830                                                                                                                                                                        FortyFive Hour (45) Hour Refresher Program
## 3831                                                                                                                                                                           Hazardous Materials Endorsement Program
## 3832                                                                                                                                                                      Associate Degree Nursing   Bridgeport Campus
## 3833                                                                                                                                                                    Clinical Medical Assistant - Bridgeport Campus
## 3834                                                                                                                                                                               Dental Assistant -Bridgeport Campus
## 3835                                                                                                                                                                          Certified Nurse Aide - Bridgeport Campus
## 3836                                                                                                                                                                             Accounting A.A.S. - Bridgeport Campus
## 3837                                                                                                                                          Information Technology A.A.S. - Database Programming - Bridgeport Campus
## 3838                                                                                                                                    Information Technology A.A.S. - Information Systems Option - Bridgeport Campus
## 3839                                                                                                                                                              Introduction to HVAC Certificate - Bridgeport Campus
## 3840                                                                                                                                                                              LVN RN Transition Program Bridgeport
## 3841                                                                                                                                                                           Pharmacy Technician   Bridgeport Campus
## 3842                                                                                                                                                                          Clinical Medical Assistant - Main Campus
## 3843                                                                                                                                                                                   Accounting A.A.S. - Main Campus
## 3844                                                                                                                                                                            Associate Degree Nursing - Main Campus
## 3845                                                                                                                                                                         Business Administration AAS - Main Campus
## 3846                                                                                                                                                                 Business Administration Certificate - Main Campus
## 3847                                                                                                                                                                      Certified Logistics Technician - Main Campus
## 3848                                                                                                                                                                                Certified Nurse Aide - Main Campus
## 3849                                                                                                                                          Information Technology A.A.S. - Information Systems Option - Main Campus
## 3850                                                                                                                                                 Information Technology A.A.S.- Database Programming - Main Campus
## 3851                                                                                                                                                                           LVN RN Transition Program - Main Campus
## 3852                                                                                                                                                                            Machining   Manual & CNC - Main Campus
## 3853                                                                                                                                                                                 Pharmacy Technician   Main Campus
## 3854                                                                                                                                                                    Database Programming Certificate - Main Campus
## 3855                                                                                                                                                                                    Dental Assistant - Main Campus
## 3856                                                                                                                                                                               Radiologic Technology - Main Campus
## 3857                                                                                                                                                                                  Vocational Nursing - Main Campus
## 3858                                                                                                                                                                                 Welding Certificate - Main Campus
## 3859                                                                                                                                                                        Certified Logistics Technician - Jacksboro
## 3860                                                                                                                                           Intermediate Industrial Maintenance & Automation Technology Certificate
## 3861                                                                                                                                                  Basic Industrial Maintenance & Automation Technology Certificate
## 3862                                                                                                                                               Advanced Industrial Maintenance & Automation Technology Certificate
## 3863                                                                                                                                                                           Welding Certificate - Bridgeport Campus
## 3864                                                                                                                                                                      Certified Logisitics Technician - Bridgeport
## 3865                                                                                                                                            Associate of Applied Science in Business Administration and Management
## 3866                                                                                                                                                Associate of Applied Science in Electronics Engineering Technology
## 3867                                                                                                                                                      Associate of Applied Science in Physical Therapist Assistant
## 3868                                                                                                                                                                               Bachelor in Business Administration
## 3869                                                                                                                                                  Associate of Applied Science in Information Systems and Security
## 3870                                                                                                                                                                                        Medical Billing and Coding
## 3871                                                                                                                                                                  Medical/Clinical Assistant with X Ray Technology
## 3872                                                                                                                                                                                                   Massage Therapy
## 3873                                                                                                                                                             Associate of Occupational Studies in Diesel Mechanics
## 3874                                                                                                                                                                                   Refrigeration & HVAC Technology
## 3875                                                                                                                                                                               Bachelor in Business Administration
## 3876                                                                                                                                                                                       Advanced Welding Technology
## 3877                                                                                                                                                                                        Commercial Driver Training
## 3878                                                                                                                                            Associate of Applied Science in Business Administration and Management
## 3879                                                                                                                                                           Associate of Occupational Studies Automotive Technology
## 3880                                                                                                                                                                  Medical Clinical Assistant with X Ray Technology
## 3881                                                                                                                                                                                                Commercial Driving
## 3882                                                                                                                                                                           Electrical Lineman Training Certificate
## 3883                                                                                                                                                                                         PTAC (Process Technology)
## 3884                                                                                                                                                                                          Nursing Associate Degree
## 3885                                                                                                                                                                                 Electronics Technology AAS Degree
## 3886                                                                                                                                                                                 Health Information Technology AAS
## 3887                                                                                                                                                                                      Physical Therapist Assistant
## 3888                                                                                                                                                                                        Vocational Nursing Program
## 3889                                                                                                                                                                                             Radiologic Technology
## 3890                                                                                                                                                                                         PTAC (Process Technology)
## 3891                                                                                                                                                                                                 Paralegal Studies
## 3892                                                                                                                                                                                                           ADN AAS
## 3893                                                                                                                                                                                                Welding Technology
## 3894                                                                                                                                                                                             Automotive Technology
## 3895                                                                                                                                          Air Conditioning  Heating  Refrigeration  & Electrical Technology (CER1)
## 3896                                                                                                                                                                                        Vocational Nursing Program
## 3897                                                                                                                                                                               Health Information Technology (AAS)
## 3898                                                                                                                                                                              Health Information Technology (CER2)
## 3899                                                                                                                                                                              Health Information Technology (CER2)
## 3900                                                                                                                                          Network Administration AAS Degree - Track B-Information Security Analyst
## 3901                                                                                                                                     Network Administration AAS Degree - Track C-Network and Systems Administrator
## 3902                                                                                                                             Network Administration AAS Degree - Track D-Network and System Virtualization Analyst
## 3903                                                                                                                                          Network Administration AAS Degree - Track A- Cisco Network Administrator
## 3904                                                                                                                                                                                          LVN - ADN Transition AAS
## 3905                                                                                                                                                                                                        Nurse Aide
## 3906                                                                                                                                                                                                       CLASS A CDL
## 3907                                                                                                                                                                                    Welding Technician I (English)
## 3908                                                                                                                                                                                  Welding Technician I (Bilingual)
## 3909                                                                                                                                           Alternative Teacher Certification Program (Bilingual Core Subjects EC 6
## 3910                                                                                                                                                               Computer System Networking Cisco Specialization AAS
## 3911                                                                                                                                               Computer Systems Networking   Microsoft Server Administration   AAS
## 3912                                                                                                                                                    Computer Systems Networking   Linux Server Administrator   AAS
## 3913                                                                                                                                                           Process Technology Process Operator Certificate Level 2
## 3914                                                                                                                                                                                Air Conditioning Technician I & II
## 3915                                                                                                                                                                                      Electrical Technician I & II
## 3916                                                                                                                                              Heating Air Conditioning & Refrigeration   Basic Certificate Level 1
## 3917                                                                                                                                                                    Machining Technology Basic Level I Certificate
## 3918                                                                                                                                                                                      Introduction to Pipe Welding
## 3919                                                                                                                                                                                  Welding Technician I (Bilingual)
## 3920                                                                                                                                                                                    Welding Technician I (English)
## 3921                                                                                                                                                                                                TIG (GTAW) Welding
## 3922                                                                                                                                                                                                    Accounting AAS
## 3923                                                                                                                                                                                      Introduction to Pipe Welding
## 3924                                                                                                                                                                                                    Accounting AAS
## 3925                                                                                                                                                                                      Electircal Technician I & II
## 3926                                                                                                                                                                          Electrical Technician I & II (Bilingual)
## 3927                                                                                                                                                                         Electrical Technician I & II  (Bilingual)
## 3928                                                                                                                                              Heating Air Conditioning & Refrigeration   Basic Certificate Level 1
## 3929                                                                                                                                                                           Industrial Electricity  Electical Power
## 3930                                                                                                                                                    Industrial ElectricityIndustirla Automation Technology Level I
## 3931                                                                                                                                                                    Machining Technology Basic Level I Certificate
## 3932                                                                                                                                                                                          Machining Technology AAS
## 3933                                                                                                                                                                                          Machining Technology AAS
## 3934                                                                                                                                                                         Machining Technology Level II Certificate
## 3935                                                                                                                                                                         Machining Technology Level II Certificate
## 3936                                                                                                                                                                                                   Plumbing I & II
## 3937                                                                                                                                                                                    Welding Technician I (English)
## 3938                                                                                                                                                                                    Welding Technician I (English)
## 3939                                                                                                                                                                                  Welding Technician I (Bilingual)
## 3940                                                                                                                                                                                                TIG (GTAW) Welding
## 3941                                                                                                                                                                                  Welding Technician I (Bilingual)
## 3942                                                                                                                                                        Application Development & Microsoft C++ Specialization AAS
## 3943                                                                                                                                                        Application Development & Microsoft C++ Specialization AAS
## 3944                                                                                                                                                        Application Development   Microsoft C # Specialization AAS
## 3945                                                                                                                                                                                              Paralegal Technology
## 3946                                                                                                                                                                      Air Conditioning & Refrigeration (Bilingual)
## 3947                                                                                                                                                                            CCNA CISCO Certified Network Associate
## 3948                                                                                                                                                                    Computer Engineering Technology Specialization
## 3949                                                                                                                                                                     Computer System Networking Cyber Security AAS
## 3950                                                                                                                                                                             Heavy Vehicle/Truck Repair (Mechanic)
## 3951                                                                                                                                                                                     Histologic Technician Program
## 3952                                                                                                                                                                             Licensed (Vocational) Practical Nurse
## 3953                                                                                                                                                                                     Medical Laboratory Technician
## 3954                                                                                                                                                                                      Electrical Technician I & II
## 3955                                                                                                                                                                          Electrical Technician I & II (Bilingual)
## 3956                                                                                                                                                                                           Network + Certification
## 3957                                                                                                                                                    Heating Air Conditioning & Refrigeration Advanced Cert Level I
## 3958                                                                                                                                                                                   Petroleum Engineering Tech Cert
## 3959                                                                                                                                                                                            Process Technology AAS
## 3960                                                                                                                                                                                                       Radiography
## 3961                                                                                                                                                                                             Respiratory Therapist
## 3962                                                                                                                                                                                  Welding Technician I (Bilingual)
## 3963                                                                                                                                                                                    Welding Technician I (English)
## 3964                                                                                                                                                                                                           Nursing
## 3965                                                                                                                                                                                    Petroleum Engineering Tech AAS
## 3966                                                                                                                                                                                      Introduction to Pipe Welding
## 3967                                                                                                                                                                                                TIG (GTAW) Welding
## 3968                                                                                                                                                                                                TIG (GTAW) Welding
## 3969                                                                                                                                                                                Air Conditioning Technician I & II
## 3970                                                                                                                                                                                Air Conditioning Technician I & II
## 3971                                                                                                                                                        Application Development & Microsoft C++ Specialization AAS
## 3972                                                                                                                                                            Alternative Teacher Certification Program (Special Ed)
## 3973                                                                                                                                                                                          Combination Pipe Welding
## 3974                                                                                                                                                                                          Combination Pipe Welding
## 3975                                                                                                                                                                                                Structural Welding
## 3976                                                                                                                                                                                                Structural Welding
## 3977                                                                                                                                                                                      Introduction to Pipe Welding
## 3978                                                                                                                                                                                                Structural Welding
## 3979                                                                                                                                                                                                Structural Welding
## 3980                                                                                                                                                                                                Structural Welding
## 3981                                                                                                                                                                                                Structural Welding
## 3982                                                                                                                                                                                          Combination Pipe Welding
## 3983                                                                                                                                                                                          Combination Pipe Welding
## 3984                                                                                                                                                                                          Combination Pipe Welding
## 3985                                                                                                                                                                                          Combination Pipe Welding
## 3986                                                                                                                                                                      Air Conditioning & Refrigeration (Bilingual)
## 3987                                                                                                                                                                                Air Conditioning Technician I & II
## 3988                                                                                                                                                                   Application Development Java Specialization AAS
## 3989                                                                                                                                                      Alternative Teacher Certification Program (Math 4 8 or 7 12)
## 3990                                                                                                                                                                                                TIG (GTAW) Welding
## 3991                                                                                                                                                                                      Introduction to Pipe Welding
## 3992                                                                                                                                                               Alternative Teacher Certification Program (Science)
## 3993                                                                                                                                                                                                     Truck Driving
## 3994                                                                                                                                                                                Air Conditioning Technician I & II
## 3995                                                                                                                                                             Computer System NetworkingCyber Security Cert Level I
## 3996                                                                                                                                                             Computer System NetworkingCyber Security Cert Level 2
## 3997                                                                                                                                                Computer System NetworkingInformation Technology Core Cert Level I
## 3998                                                                                                                                             Computer System NetworkingMicrosoft Server Administrator Cert Level I
## 3999                                                                                                                                                 Computer System NetworkingLinux Server Administrator Cert Level I
## 4000                                                                                                                                                                                    Welding Technician I (English)
## 4001                                                                                                                                                                                    Welding Technician I (English)
## 4002                                                                                                                                                                                       Electrical Tecnician I & II
## 4003                                                                                                                                                                                          Combination Pipe Welding
## 4004                                                                                                                                                                                                Structural Welding
## 4005                                                                                                                                                                                          Residential Construction
## 4006                                                                                                                                                                                   Construction Project Management
## 4007                                                                                                                                                                                               Sheetmetal Training
## 4008                                                                                                                                                                                              Pipefitting Training
## 4009                                                                                                                                                                                  Welding Technician I (Bilingual)
## 4010                                                                                                                                                                                                   Plumbing I & II
## 4011                                                                                                                                                                      Air Conditioning & Refrigeration (Bilingual)
## 4012                                                                                                                                                                                  Welding Technician I (Bilingual)
## 4013                                                                                                                                                                                      Introduction to Pipe Welding
## 4014                                                                                                                                                                      Air Conditioning & Refrigeration (Bilingual)
## 4015                                                                                                                                                                                      Electrical Technician I & II
## 4016                                                                                                                                                                          Electrical Technician I & II (Bilingual)
## 4017                                                                                                                                                                      Air Conditioning & Refrigeration (Bilingual)
## 4018                                                                                                                                                                                      Electrical Technician I & II
## 4019                                                                                                                                                                          Electrical Technician I & II (Bilingual)
## 4020                                                                                                                                                                            CCNA CISCO Certified Network Associate
## 4021                                                                                                                                                                                      Electrical Technician I & II
## 4022                                                                                                                                                                          Electrical Technician I & II (Bilingual)
## 4023                                                                                                                                                                                                   Plumbing I & II
## 4024                                                                                                                                                                                      Introduction to Pipe Welding
## 4025                                                                                                                                                                                                TIG (GTAW) Welding
## 4026                                                                                                                                                                                                   CNC Programming
## 4027                                                                                                                                                                                                  Manual Machining
## 4028                                                                                                                                                                                                      CNC Operator
## 4029                                                                                                                                                                                           Cloud Computing Program
## 4030                                                                                                                                                                                      Comprehensive Coding Systems
## 4031                                                                                                                                                                                         Medical Assistant Program
## 4032                                                                                                                                                                                                  Digital Marketer
## 4033                                                                                                                                                                                              Data Analyst Program
## 4034                                                                                                                                                                                                     Cybersecurity
## 4035                                                                                                                                                                                     IT Generalist (IT ServiceNow)
## 4036                                                                                                                                                                               RAP - IT Generalist (IT ServiceNow)
## 4037                                                                                                                                                                                AWS Cloud Computing Apprenticeship
## 4038                                                                                                                                                                      Project Management Specialist Apprenticeship
## 4039                                                                                                                                                                               Software Engineering Apprenticeship
## 4040                                                                                                                                                                                    Data Operations Apprenticeship
## 4041                                                                                                                                                                                     Business Intelligence Analyst
## 4042                                                                                                                                                                 Grade & Paving Equipment Operators Apprenticeship
## 4043                                                                                                                                                                                               Construction Engeer
## 4044                                                                                                                                                                                          Building Project Manager
## 4045                                                                                                                                                   Austin Carpenters & Millwrights Training Center Local 1266 JATC
## 4046                                                                                                                                                                              Emergency Medical Responder Training
## 4047                                                                                                                                                                             Emergency Medical Technician Training
## 4048                                                                                                                                                                    Advanced Emergency Medical Technician Training
## 4049                                                                                                                                                                             Basic Structural Firefighter Training
## 4050                                                                                                                                                                                                    EKG Technician
## 4051                                                                                                                                                                                                        Phlebotomy
## 4052                                                                                                                                                                                           Patient Care Technician
## 4053                                                                                                                                                                                   San Antonio Carpenters Local 14
## 4054                                                                                                                                                                                                       Pipefitting
## 4055                                                                                                                                                                                                       Sheet Metal
## 4056                                                                                                                                                                                                          Plumbing
## 4057                                                                                                                                                                                                           Welding
## 4058                                                                                                                                                                                                        Electrical
## 4059                                                                                                                                                                                                              HVAC
## 4060                                                                                                                                                                                             Camp Fire First Texas
## 4061                                                                                                                                              Computer System Analyst / Office 365 Administrator Associate Program
## 4062                                                                                                                                                                          Database Administrator Associate Program
## 4063                                                                                                                                                                IT Help Desk / End User Support Specialist Program
## 4064                                                                                                                                                                       IT Security Administrator Associate Program
## 4065                                                                                                                                                                   Network Systems Administrator Associate Program
## 4066                                                                                                                                                                     Private Cloud Administrator Associate Program
## 4067                                                                                                                                                                    Software Solutions Developer Associate Program
## 4068                                                                                                                                                                           Houston Electrical Joint Apprenticeship
## 4069                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4070                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4071                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4072                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4073                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4074                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4075                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4076                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4077                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4078                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4079                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4080                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4081                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4082                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4083                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4084                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4085                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4086                                                                                                                                                                              Adaptive Construction Soluitons Inc.
## 4087                                                                                                                                                                Adaptive Construction Soluitons Inc. NCCER Level 2
## 4088                                                                                                                                                                Adaptive Construction Soluitons Inc. NCCER Level 3
## 4089                                                                                                                                                                                                     NCCER Level 2
## 4090                                                                                                                                                                                        Energy Utilities Installer
## 4091                                                                                                                                                                             Pre-Apprenticeship-Drywall Technician
## 4092                                                                                                                                                                                     Pre-Apprenticeship-Pipefitter
## 4093                                                                                                                                                                         Pre-Apprenticeship-Reinforcing Ironworker
## 4094                                                                                                                                                                                     Pre-Apprenticeship-Ironworker
## 4095                                                                                                                                                                             Pre-Apprenticeship-Service Technician
## 4096                                                                                                                                                                         Pre-Apprenticeship-Application Technician
## 4097                                                                                                                                                                       Pre-Apprenticeship-Civil Construction Labor
## 4098                                                                                                                                                                              Pre-Apprenticeship-Insulation Worker
## 4099                                                                                                                                                       Pre-Apprenticeship-Telecommunication Tower Technician (TTT)
## 4100                                                                                                                                                                                    Pre-Apprenticeship-Electrician
## 4101                                                                                                                                                                                     Electrical Lineworker Program
## 4102                                                                                                                                                                               Microsoft Office Specialist - Excel
## 4103                                                                                                                                                                                       Certified Medical Assistant
## 4104                                                                                                                                                                                Microsoft Office Specialist - Word
## 4105                                                                                                                                                                   Certified Medical Billing and Coding Specialist
## 4106                                                                                                                                                                                                Associate's Degree
## 4107                                                                                                                                                                                           Business Administration
## 4108                                                                                                                                                                                                  Criminal Justice
## 4109                                                                                                                                                                                           Cybersecurity-Forensics
## 4110                                                                                                                                                                                                        Management
## 4111                                                                                                                                                                                            CybersecurityForensics
## 4112                                                                                                                                                                                          Introduction to Networks
## 4113                                                                                                                                                                                                CyberOps Associate
## 4114                                                                                                                                                                                Microsoft Office Specialist - Word
## 4115                                                                                                                                                                   Certified Medical Billing and Coding Specialist
## 4116                                                                                                                                                                                       Certified Medical Assistant
## 4117                                                                                                                                                                          Rio Grande Valley Laredo Electrical JATC
## 4118                                                                                                                                                                     NCCER Core NCCER Electrical Level 1 & OSHA 30
## 4119                                                                                                                                                                                                   Medication Aide
## 4120                                                                                                                                                                                             Phlebotomy Technician
## 4121                                                                                                                                                                                               Pharmacy Technician
## 4122                                                                                                                                                                                                 Medical Assistant
## 4123                                                                                                                                                                               Electronic Health Record Specialist
## 4124                                                                                                                                                                                                  Dental Assisting
## 4125                                                                                                                                                                                                 Nursing Assistant
## 4126                                                                                                                                                                                                 Diesel Technician
## 4127                                                                                                                                                                                           Nurse Assistant Program
## 4128                                                                                                                                                                                     Phlebotomy Technician Program
## 4129                                                                                                                                                                                                 Electrical Helper
## 4130                                                                                                                                                                               Commercial Vehicle Operator Program
## 4131                                                                                                                                                                                      Learn to Program with Python
## 4132                                                                                                                                                                           Building Maintenance Technician Program
## 4133                                                                                                                                                                            Project Management Certificate Program
## 4134                                                                                                                                                                                           Python for Data Science
## 4135                                                                                                                                                                  Medical Assistant Course with Clinical Rotations
## 4136                                                                                                                                                                                    Apartment Leasing Professional
## 4137                                                                                                                                                                                        Medical Billing and Coding
## 4138                                                                                                                                                                                    Certified Nursing Aide Program
## 4139                                                                                                                                                                                                 Medical Assisting
## 4140                                                                                                                                                                                 Jefferson Plumbing Apprenticeship
## 4141                                                                                                                                                                                    Nueces Plumbing Apprenticeship
## 4142                                                                                                                                                                                    Harris Plumbing Apprenticeship
## 4143                                                                                                                                                                                       Plumbing Pre-Apprenticeship
## 4144                                                                                                                                                                                               MRSW Management LLC
## 4145                                                                                                                                                                                               Class A CDL Program
## 4146                                                                                                                                                                                  Class A CDL Program- Night Class
## 4147                                                                                                                                                                                               Class A CDL Program
## 4148                                                                                                                                                                                               Class A CDL Program
## 4149                                                                                                                                                                                               Class A CDL Program
## 4150                                                                                                                                                                                               Class A CDL Program
## 4151                                                                                                                                                                                               Class A CDL Program
## 4152                                                                                                                                                                                               Class A CDL Program
## 4153                                                                                                                                                                                               Class A CDL Program
## 4154                                                                                                                                                                                               Class A CDL Program
## 4155                                                                                                                                                                                       Multi Craft Core Curriculum
## 4156                                                                                                                                                                                       Multi Craft Core Curriculum
## 4157                                                                                                                                                                                       Multi Craft Core Curriculum
## 4158                                                                                                                                                                                       Multi Craft Core Curriculum
## 4159                                                                                                                                                                                       Multi Craft Core Curriculum
## 4160                                                                                                                                                                                       Multi Craft Core Curriculum
## 4161                                                                                                                                                                                       Multi Craft Core Curriculum
## 4162                                                                                                                                                                                       Multi Craft Core Curriculum
## 4163                                                                                                                                                                                       Multi Craft Core Curriculum
## 4164                                                                                                                                                                                       Multi Craft Core Curriculum
## 4165                                                                                                                                                                Texas Gulf Coast Electrical Apprenticeship Program
## 4166                                                                                                                                                                                          Paramedic Apprenticeship
## 4167                                                                                                                                                             Emergency Medical Technician-Paramedic Apprenticeship
## 4168                                                                                                                                                                                               Professional Brewer
## 4169                                                                                                                                                                                        Mean Stack Web Development
## 4170                                                                                                                                                                                         Pre-Apprentice Electrical
## 4171                                                                                                                                                                                           Pre-Apprentice Plumbing
## 4172                                                                                                                                                               Heating Ventilation and Air Conditioning Technician
## 4173                                                                                                                                                             Nurse Aide Training and Competency Evaluation Program
## 4174                                                                                                                                                                                   Certified Production Technician
## 4175                                                                                                                                                                       Medical Administrative Assistive Technology
## 4176                                                                                                                                                                             CDL Training: Class A Tractor Trailer
## 4177                                                                                                                                                                                                  Dental Assisting
## 4178                                                                                                                                                                                                 Medical Assisting
## 4179                                                                                                                                                                                      Professional Massage Therapy
## 4180                                                                                                                                                                       LOTE: Spanish EC - 12 Certification Pathway
## 4181                                                                                                                                                                                 Math 7 - 12 Certification Pathway
## 4182                                                                                                                                                                               Music EC - 12 Certification Pathway
## 4183                                                                                                                                                                  Physical Education EC - 12 Certification Pathway
## 4184                                                                                                                                                                              Science 7 - 12 Certification Pathway
## 4185                                                                                                                                                                                   Art EC-12 Certification Pathway
## 4186                                                                                                                                                              Bilingual Core Subjects EC - 6 Certification Pathway
## 4187                                                                                                                                                                 Core Subjects 4 -8 with ESL Certification Pathway
## 4188                                                                                                                                                                        Core Subjects EC - 6 Certification Pathway
## 4189                                                                                                                                                               Core Subjects EC - 6 with ESL Certification Pathway
## 4190                                                                                                                                                              Core Subjects EC - 6 with SPED Certification Pathway
## 4191                                                                                                                                                                        ELAR 7 - 12 with ESL Certification Pathway
## 4192                                                                                                                                                                             Underground Lineman (Line Maintainer)
## 4193                                                                                                                                                                         Overhead Lineman (Line Installer-Repairer
## 4194                                                                                                                                                                                                 Medical Assisting
## 4195                                                                                                                                                                                         Medical Office Specialist
## 4196                                                                                                                                                                                     Nursing Aide Training Program
## 4197                                                                                                                                                                                                        Phlebotomy
## 4198                                                                                                                                                                                    HVAC Repair Service Technician
## 4199                                                                                                                                                                                     Electrcian Pre-Apprenticeship
## 4200                                                                                                                                                                                       Plumbing Pre-Apprenticeship
## 4201                                                                                                                                                                                      Carpentry Pre-Apprenticeship
## 4202                                                                                                                                                                                              Certified Nurses Aid
## 4203                                                                                                                                                        Heating Ventilation Air Conditioning & Basic Refrigeration
## 4204                                                                                                                                                                                     Automotive Service Technician
## 4205                                                                                                                                                                                               Combination Welding
## 4206                                                                                                                                                                                                Diesel-Heavy Truck
## 4207                                                                                                                                                                             CDL Training: Class A Tractor Trailer
## 4208                                                                                                                                                        HVAC/R-Heating Ventilation Air Conditioning /Refrigeration
## 4209                                                                                                                                                                       Network and Computer Systems Administrators
## 4210                                                                                                                                                        HVAC/R-Heating Ventilation Air Conditioning /Refrigeration
## 4211                                                                                                                                                                                  Career School Instructor Seminar
## 4212                                                                                                                                                                           Career School Instructor Seminar-Online
## 4213                                                                                                                                                                                            2-Day Prep Tower Class
## 4214                                                                                                                                                       Additional Certification- Can be added to any class package
## 4215                                                                                                                                                                           2 Week Mobile/Overhead Class with Hotel
## 4216                                                                                                                                                                                      2 Week Mobile/Overhead Class
## 4217                                                                                                                                                                            5-Day Mobile/Overhead Class with Hotel
## 4218                                                                                                                                                                                       5-Day Mobile/Overhead Class
## 4219                                                                                                                                                                                      5-Day Tower Class with Hotel
## 4220                                                                                                                                                                                                 5-Day Tower Class
## 4221                                                                                                                                                                       2-Day Prep Mobile/Overhead Class with Hotel
## 4222                                                                                                                                                                                  2-Day Prep Mobile/Overhead Class
## 4223                                                                                                                                                                                 2-Day Prep Tower Class with Hotel
## 4224                                                                                                                                                                         Cyber Support Specialist-Tier 1 (CYSS-T1)
## 4225                                                                                                                                                                                Advanced Medical Assistant Program
## 4226                                                                                                                                                                                                              CSCP
## 4227                                                                                                                                                                                                            CPIM 1
## 4228                                                                                                                                                                                                            CPIM 2
## 4229                                                                                                                                                                                                              CLTD
## 4230                                                                                                                                                                               Appliance Career Academy Fast Track
## 4231                                                                                                                                                      Introduction to Business Admintration and Inter-Office Clerk
## 4232                                                                                                                                                                                    Introduction to Basic Plumbing
## 4233                                                                                                                                                                            Maintenance And Repair  (HouseKeeping)
## 4234                                                                                                                                                                       EPA Certification & Basic Knowledge of HVAC
## 4235                                                                                                                                                                               Culinary Skills & Basic Food Safety
## 4236                                                                                                                                                                 Basic Understanding Safety Skills On The Job OSHA
## 4237                                                                                                                                                       Introduction to Basic OSHA Safety for Construction Industry
## 4238                                                                                                                                                                                              Customer Service 101
## 4239                                                                                                                                                                                  Commercial Truck Driver Training
## 4240                                                                                                                                                                                            Package of 4 Forklifts
## 4241                                                                                                                                                                                           Sit Down Counterbalance
## 4242                                                                                                                                                                                            Package of 6 Forklifts
## 4243                                                                                                                                                                                    Clamp Truck (Sit Down w/Clamp)
## 4244                                                                                                                                                                                       Stand Up/Narrow Aisle Reach
## 4245                                                                                                                                                                                             Order Picker Forklift
## 4246                                                                                                                                                                                          Walkie/Rider Pallet Jack
## 4247                                                                                                                                                                                       Walkie/ Stacker Pallet Jack
## 4248                                                                                                                                                                        Chain Logistics  Certification Only  (CLA)
## 4249                                                                                                                                                                              Certified Logistics Technician (CLT)
## 4250                                                                                                                                                                  CLT & Forklift Package (CLA CLT and 6 Forklifts)
## 4251                                                                                                                                                                                                  Dental Assisting
## 4252                                                                                                                                                                  Basic Refrigeration Heating and Air Conditioning
## 4253                                                                                                                                       Basic Refrigeration Heating & Air Conditioning Program - Distance Education
## 4254                                                                                                                                                         Basic Refrigeration Heating and Air Conditioning (HVAC-R)
## 4255                                                                                                                                                                                             Truck Driver Training
## 4256                                                                                                                                                                                                  Dental Assistant
## 4257                                                                                                                                                                                           Patient Care Technician
## 4258                                                                                                                                                            Nursing Assistant/Aide and Patient Care Assistant/Aide
## 4259                                                                                                                                                                                Phlebotomy Technician/Phlebotomist
## 4260                                                                                                                                                                          Electrocardiograph Technology/Technician
## 4261                                                                                                                                                                                                 MEDICAL ASSISTANT
## 4262                                                                                                                                                         Associate of Applied Science Degree  LVN to RN Transition
## 4263                                                                                                                                                                    Associate of Applied Science Degree of Nursing
## 4264                                                                                                                                                                         Bachelor of Science in Nursing  RN to BSN
## 4265                                                                                                                                                                             Intro to SMAW  GMAW  and FCAW welding
## 4266                                                                                                                                                                                         Electrical Apprenticeship
## 4267                                                                                                                                                                                  Telecommunication Apprenticeship
## 4268                                                                                                                                                         Associate of Science in Physical Therapist Assistant (AS)
## 4269                                                                                                                                                                                   Workplace & Business Essentials
## 4270                                                                                                                                                                                        Customer Service and Sales
## 4271                                                                                                                                                                                Administrative Office Professional
## 4272                                                                                                                                                                                Bookkeeping & Accounting Assistant
## 4273                                                                                                                                                                                                 Office Technology
## 4274                                                                                                                                                                                            Emerging Entrepreneurs
## 4275                                                                                                                                                                                     Adobe Certified Web Developer
## 4276                                                                                                                                                                               Advanced Customer Service and Sales
## 4277                                                                                                                                                                                      Medical Office Professionals
## 4278                                                                                                                                                                                                   Legal Secretary
## 4279                                                                                                                                                                                   Workplace & Business Essentials
## 4280                                                                                                                                                                                        Customer Service and Sales
## 4281                                                                                                                                                                                Administrative Office Professional
## 4282                                                                                                                                                                                Bookkeeping & Accounting Assistant
## 4283                                                                                                                                                                                                 Office Technology
## 4284                                                                                                                                                                                            Emerging Entrepreneurs
## 4285                                                                                                                                                                                     Adobe Certified Web Developer
## 4286                                                                                                                                                                               Advanced Customer Service and Sales
## 4287                                                                                                                                                                                      Medical Office Professionals
## 4288                                                                                                                                                                                                   Legal Secretary
## 4289                                                                                                                                                                                   Workplace & Business Essentials
## 4290                                                                                                                                                                                        Customer Service and Sales
## 4291                                                                                                                                                                                Administrative Office Professional
## 4292                                                                                                                                                                                Bookkeeping & Accounting Assistant
## 4293                                                                                                                                                                                                 Office Technology
## 4294                                                                                                                                                                                            Emerging Entrepreneurs
## 4295                                                                                                                                                                                     Adobe Certified Web Developer
## 4296                                                                                                                                                                               Advanced Customer Service and Sales
## 4297                                                                                                                                                                                      Medical Office Professionals
## 4298                                                                                                                                                                                                   Legal Secretary
## 4299                                                                                                                                                                                   Workplace & Business Essentials
## 4300                                                                                                                                                                                        Customer Service and Sales
## 4301                                                                                                                                                                                Administrative Office Professional
## 4302                                                                                                                                                                                Bookkeeping & Accounting Assistant
## 4303                                                                                                                                                                                                 Office Technology
## 4304                                                                                                                                                                                            Emerging Entrepreneurs
## 4305                                                                                                                                                                                     Adobe Certified Web Developer
## 4306                                                                                                                                                                               Advanced Customer Service and Sales
## 4307                                                                                                                                                                                      Medical Office Professionals
## 4308                                                                                                                                                                                                   Legal Secretary
## 4309                                                                                                                                                                                   Workplace & Business Essentials
## 4310                                                                                                                                                                                        Customer Service and Sales
## 4311                                                                                                                                                                                Administrative Office Professional
## 4312                                                                                                                                                                                Bookkeeping & Accounting Assistant
## 4313                                                                                                                                                                                                 Office Technology
## 4314                                                                                                                                                                                            Emerging Entrepreneurs
## 4315                                                                                                                                                                                     Adobe Certified Web Developer
## 4316                                                                                                                                                                               Advanced Customer Service and Sales
## 4317                                                                                                                                                                                      Medical Office Professionals
## 4318                                                                                                                                                                                                   Legal Secretary
## 4319                                                                                                                                                                            Commerical Truck Driver Training (CDL)
## 4320                                                                                                                                                                                        Advanced Medical Assisting
## 4321                                                                                                                                                                                     Sterile Processing Technology
## 4322                                                                                                                                                                                                    EKG Technician
## 4323                                                                                                                                                                                             Phlebotomy Technician
## 4324                                                                                                                                                                                  Advanced Patient Care Technician
## 4325                                                                                                                                                                                               Pharmacy Technology
## 4326                                                                                                                                                                                               Surgical Technology
## 4327                                                                                                                                                                              Electronic Health Records Specialist
## 4328                                                                                                                                                                              Electronic Health Records Specialist
## 4329                                                                                                                                                                                           Patient Care Technician
## 4330                                                                                                                                                                                               Pharmacy Technician
## 4331                                                                                                                                                                                             Phlebotomy Technician
## 4332                                                                                                                                                                                     Sterile Processing Technician
## 4333                                                                                                                                                                                               Surgical Technology
## 4334                                                                                                                                                                             Advanced Hospital Coding and CCS Prep
## 4335                                                                                                                                                                                             ICD-10 Medical Coding
## 4336                                                                                                                                                            Certified Electronic Health Records Specialist (CEHRS)
## 4337                                                                                                                                                                 Certified Medical Administrative Assistant (CMAA)
## 4338                                                                                              Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology
## 4339                                                                                                              Certified Clinical Medical Assistant (CCMA) + Certified Electronic Health Records Specialist (CEHRS)
## 4340                                                                                                                                                     Certified Clinical Medical Assistant for the Experienced CMAA
## 4341                                                                                                                                                                       Certified Clinical Medical Assistant (CCMA)
## 4342                                                                                                                                                                                        Certified Outpatient Coder
## 4343                                                                                                                                                                                                   Java Programmer
## 4344                                                                                                                                       Certified Administrative Professional with Microsoft Office Specialist 2019
## 4345                                                                                                                                                                             Certified Administrative Professional
## 4346                                                                                                                                                                       Microsoft Excel 2019 Certification Training
## 4347                                                                                                                                                               Microsoft Office Master 2019 Certification Training
## 4348                                                                                                                                                     Microsoft Office Specialist 2019 (MOS) Certification Training
## 4349                                                                                                                                                                    Certified Bookkeeper with Microsoft Excel 2019
## 4350                                                                                                                                                                                Certified Medical Transcriptionist
## 4351                                                                                                                                                                                               Certified Paralegal
## 4352                                                                                                                                                                                   Certified Risk Adjustment Coder
## 4353                                                                                                                                                                                    Certified Six Sigma Black Belt
## 4354                                                                                                                                                                                         Lean Six Sigma Black Belt
## 4355                                                                                                                                                                                    Certified Six Sigma Green Belt
## 4356                                                                                                                                            Lean Six Sigma Green Belt with Black Belt with 1-on-1 Project Coaching
## 4357                                                                                                                                                            Lean Six Sigma Black Belt with 1-on-1 Project Coaching
## 4358                                                                                                                                                                               Lean Six Sigma Green and Black Belt
## 4359                                                                                                                                                                    Certified Six Sigma Yellow Belt and Green Belt
## 4360                                                                                                                                                                                                     CNC Machinist
## 4361                                                                                                                                                           CompTIA Certification Training  A+  Network+  Security+
## 4362                                                                                                                                                                          CompTIA Security+ Certification Training
## 4363                                                                                                                                                                                 CompTIA A+ Certification Training
## 4364                                                                                                                                                                                   CompTIA A+ with ITIL Foundation
## 4365                                                                                                                                                                           CompTIA Network+ Certification Training
## 4366                                                                                                                                                                        CompTIA IT Fundamentals (Voucher Included)
## 4367                                                                                                                                                  CompTIA Advanced Security Practitioner (CASP) (Voucher Included)
## 4368                                                                                                                                                                     Certified Information Security Manager (CISM)
## 4369                                                                                                                                                  Certified Information Security Manager (CISM) (Voucher Included)
## 4370                                                                                                                                                   Certified Information Systems Auditor (CISA) (Voucher Included)
## 4371                                                                                                                                                                                     Information Security Training
## 4372                                                                                                                                                       Certified Information Systems Security Professional (CISSP)
## 4373                                                                                                                                                                                     Full Stack Software Developer
## 4374                                                                                                                                                                  Medical Office Manager (CPPM)(Vouchers Included)
## 4375                                                                                                                                                                                             Electrical Technician
## 4376                                                                                                                                       Entrepreneurship: Start-Up and Business Owner Management (Voucher Included)
## 4377                                                                                                                                                                         Food and Customer Service Skills Training
## 4378                                                                                                                                                                                             Restaurant Management
## 4379                                                                                                                                                                                           Foundations of Plumbing
## 4380                                                                                                                                                                                     Freight Broker/Agent Training
## 4381                                                                                                                                                                 Graphic Design with Photoshop (Software Included)
## 4382                                                                                                                                                                                      Human Resources Professional
## 4383                                                                                                                                                                              Child Development Associate Training
## 4384                                                                                                                                                                           Retail Customer Service Skills Training
## 4385                                                                                                                                                                                       Home Inspection Certificate
## 4386                                                                                                                                                 Human Resources Professional with Payroll Practice and Management
## 4387                                                                                                                                                                        HVACR Controls/Building Automation Systems
## 4388                                                                                                                                                 Programa de Certificado de Conocimiento Basico de HVACR NATE Core
## 4389                                                                                                                                                                              HVAC/R Technician (Voucher Included)
## 4390                                                                                                                                                                    HVAC/R Certified Technician (Voucher Included)
## 4391                                                                                                                                                                                                  Manual Machinist
## 4392                                                                                                                                                                             Medical Interpreter (Spanish/English)
## 4393                                                                                                                                                                                         Federal Court Interpreter
## 4394                                                                                                                                                                                           Professional Translator
## 4395                                                                                                                                                                               Court Interpreter (Spanish/English)
## 4396                                                                                                                                                   Microsoft Access 2016 Certification Training (Voucher Included)
## 4397                                                                                                                                                                      Microsoft Access 2019 Certification Training
## 4398                                                                                                                                                                                        Web Applications Developer
## 4399                                                                                                                                                          Mobile and Desktop Web Developer / Responsive Web Design
## 4400                                                                                                                                                                                           Web Design Professional
## 4401                                                                                                                                                                                                 Welder Technician
## 4402                                                                                                                                                                                                Process Technician
## 4403                                                                                                                                                                                            Engineering Technician
## 4404                                                                                                                                                                                             Composites Technician
## 4405                                                                                                                                                                                        Certified Internal Auditor
## 4406                                                                                                                                            Purchasing and Supply Chain Management + Freight Broker/Agent Training
## 4407                                                                                                                                                  OMCP Social and Mobile Marketing Professional (Voucher Included)
## 4408                                                                                                                                                 Professional Bookkeeping with QuickBooks 2018 (Software Included)
## 4409                                                                                                                                Professional Bookkeeping with QuickBooks 2018 with Payroll Practice and Management
## 4410                                                                                                            Professional Bookkeeping with QuickBooks 2018 with Payroll Practice and Management (software included)
## 4411                                                                                                                                                                 OMCA Email Marketing Associate (Voucher Included)
## 4412                                                                                                                                                                  OMCP Paid Search Professional (Voucher Included)
## 4413                                                                                                                                                                                       Fitness Business Management
## 4414                                                                                                                                                                            Pharmacy Technician (Voucher Included)
## 4415                                                                                                                                                                                           Residential Electrician
## 4416                                                                                                             Professional Bookkeeping with QuickBooks 2019 and Payroll Practice and Management (Software Included)
## 4417                                                                                                                                                   SSCP Systems Security Certified Practitioner (Voucher Included)
## 4418                                                                                                                                                 Professional Bookkeeping with QuickBooks 2019 (Software Included)
## 4419                                                                                                                                                                Certified Physical Therapy Aide (Voucher Included)
## 4420                                                                                                                                                                     Professional Bookkeeping with QuickBooks 2019
## 4421                                                                                                                                             OMCP Digital Analytics and Conversion Professional (Voucher Included)
## 4422                                                                                                                                                                OMCA Content Marketing Associate (Voucher Included
## 4423                                                                                                                                                                OMCA Mobile Marketing Associate (Voucher Included)
## 4424                                                                                                                                                                     Professional Bookkeeping with QuickBooks 2018
## 4425                                                                                                                                                         OMCA Conversion Optimization Associate (Voucher Included)
## 4426                                                                                                                                               OMCP Email Marketing and Automation Professional (Voucher Included)
## 4427                                                                                                                                                             OMCP Search Marketing Professional (Voucher Included)
## 4428                                                                                                                                 Professional Bookkeeping with QuickBooks 2019 and Payroll Practice and Management
## 4429                                                                                                                                                                                               Robotics Technician
## 4430                                                                                                                                                   Senior Professional In Human Resources with Workplace Mediation
## 4431                                                                                                                                                                                              Veterinary Assistant
## 4432                                                                                                                                                                               Full Stack Web Development - Online
## 4433                                                                                                                                                                            Full Stack Web Development - In Person
## 4434                                                                                                                                                                                                    Cyber Security
## 4435                                                                                                                                                              Cisco CCNA Certification Training (Voucher Included)
## 4436                                                                                                                                                                                                   AutoCAD 3D 2021
## 4437                                                                                                                                                              AutoCAD 2021 with AutoCAD 3D 2021 (Voucher Included)
## 4438                                                                                                                                                               Autodesk Revit Architecture 2021 (Voucher Included)
## 4439                                                                                                                                                                         Autodesk Inventor 2021 (Voucher Included)
## 4440                                                                                                                                                                    AutoCAD 2021 Certified User (Voucher Included)
## 4441                                                                                                                                                                            Accounts Payable Manager Certification
## 4442                                                                                                                                                                         Accounts Payable Specialist Certification
## 4443                                                                                                                                               Accounts Payable Specialist Certification with Microsoft Excel 2019
## 4444                                                                                                                                                                     Medical Billing and Coding (Voucher Included)
## 4445                                                                                                        Certified Medical Administrative Assistant with Medical Billing and Coding (CMAA + MBC) (Voucher Included)
## 4446                                                                                                                                                         Track I: Rigger Level I  Rigger Level II  & Signal Person
## 4447                                                                                                                                                                   Track II: Small Crane (TSS) & Large Crane (TLL)
## 4448                                                                                                                                     Track III: Rigger Level 1  Rigger Level 2  Signal Person  & Small Crane (TSS)
## 4449                                                                                                                                                                                   Rigger Level II Recertification
## 4450                                                                                                                                                                                      Mobile Crane Recertification
## 4451                                                                                                                                                               Mobile Crane Additional Specialties Recertification
## 4452                                                                                                                                                                              Tower Crane Operator Recertification
## 4453                                                                                                                                                                                        Small Crane Operator (TSS)
## 4454                                                                                                                                                                                        Large Crane Operator (TLL)
## 4455                                                                                                                                                        Track II Fast Track: Small Crane (TSS) & Large Crane (TLL)
## 4456                                                                                                                                                                               Lattice Boom Crawler Crane Operator
## 4457                                                                                                                                                                                              Tower Crane Operator
## 4458                                                                                                                                                         Track IV: Small Crane (TSS) Rigger Leve I Rigger Level II
## 4459                                                                                                                                                                                           Overhead Crane Operator
## 4460                                                                                                                                                                           Overhead Crane Operator Recertification
## 4461                                                                                                                                                 Cyber Program Specialist (A14)(Cyber Security Support Technician)
## 4462                                                                                                                                                                                    Quality Control Inspector (A1)
## 4463                                                                                                                                                     Rf Assembly (A2)(Existing Title: Assembler Installer General)
## 4464                                                                                                                    Assembly & Tester - Electrical & Electronic (A3) (Existing Title: Assembler Installer General)
## 4465                                                                                                                                               Electronics Associate (A4) (Existing Title: Electronics Technician)
## 4466                                                                                                                                                          Payroll Assistant Specialist (A5)(Accounting Technician)
## 4467                                                                                                                                                                   Aircraft Structural Maintenance Technician (A6)
## 4468                                                                                                                                                  Software Technician (A20) (Existing Title:  Computer Programmer)
## 4469                                                                                                                                                                                          Tool And Die Maker (A21)
## 4470                                                                                                                                              Assembler Senior (A22)(Existing Title:  Assembler Installer General)
## 4471                                                                                                                                Cyber Systems Specialist (A23) (Existing Title: Cyber Security Support Technician)
## 4472                                                                                                                                         Electronic Assembler (A13) (Existing Title:  Assembler Installer General)
## 4473                                                                                                                                  Electronics Associate Senior (A15) (Existing Title: Assembler Installer General)
## 4474                                                                                                                             Aircraft Maintenance Technician (A16) (Existing Title: Assembler Aircraft Structures)
## 4475                                                                                                                                                        Program Manager (A17) (Existing Title: It Project Manager)
## 4476                                                                                                                                                 Software Technician (A18)  (Existing Title:  Computer Programmer)
## 4477                                                                                                                         Programmable Logic Design Engineer (A19) (Existing Occupation Title : Aerospace Engineer)
## 4478                                                                                                                                                                                Career Development Technician (A7)
## 4479                                                                                                                         Cyber Systems Security Engineer (A8) (Existing Title:  Cyber Security Support Technician)
## 4480                                                                                                                            Cyber Intel Security Analyst (A9) (Existing Title:  Cyber Security Support Technician)
## 4481                                                                                                                                               Inspector Senior (A10) (Existing Title:  Quality Control Inspector)
## 4482                                                                                                                                                  Software Technician (A11) (Existing Title:  Computer Programmer)
## 4483                                                                                                                                             Assembler Senior (A12) (Existing Title:  Assembler Installer General)
## 4484                                                                                                                                                                                  Quality Control Inspector (A1m2)
## 4485                                                                                                                                                  RF Assembly (A2m1) (Existing Title: Assembler Installer General)
## 4486                                                                                                                  ASSEMBLY & TESTER - ELECTRICAL & ELECTRONIC (A3m5) (EXISTING TITLE: ASSEMBLER INSTALLER GENERAL)
## 4487                                                                                                                                             ELECTRONICS ASSOCIATE (A4m2) (EXISTING TITLE: ELECTRONICS TECHNICIAN)
## 4488                                                                                                                                                        PAYROLL ASSISTANT SPECIALIST (A5m1)(ACCOUNTING TECHNICIAN)
## 4489                                                                                                                                                                 AIRCRAFT STRUCTURAL MAINTENANCE TECHNICIAN (A6m1)
## 4490                                                                                                                                Cybersecurity Engineer (A30m1) (Existing Title: Cyber Security Support Technician)
## 4491                                                                                                                                         Cyber Architect (A31) (Existing Title: Cyber Security Support Technician)
## 4492                                                                                                                           Engineering Technician (A27m3_ARCI) (Existing Title: Industrial Engineering Technician)
## 4493                                                                                                                           Engineering Technician (A27m3_NASP) (Existing Title: Industrial Engineering Technician)
## 4494                                                                                                                             Engineering Technician (A27m3_CM) (Existing Title: Industrial Engineering Technician)
## 4495                                                                                                                            Engineering Technician (A27m3_ILS) (Existing Title: Industrial Engineering Technician)
## 4496                                                                                                                                                    Software Technician (A28)(Existing Title: Computer Programmer)
## 4497                                                                                                                           Maintenance Mechanic Industrial (A29) (Existing Title: Industrial Maintenance Mechanic)
## 4498                                                                                                                            Engineering Technician (A27m3_INT) (Existing Title: Industrial Engineering Technician)
## 4499                                                                                                                           Engineering Technician (A27m3_TEST) (Existing Title: Industrial Engineering Technician)
## 4500                                                                                                                       Engineering Technician (A27m3_HARDWARE) (Existing Title: Industrial Engineering Technician)
## 4501                                                                                                                            Engineering Technician (A27m3_LAB) (Existing Title: Industrial Engineering Technician)
## 4502                                                                                                                            Engineering Technician (A27m3_R&D) (Existing Title: Industrial Engineering Technician)
## 4503                                                                                                                             Engineering Technician (A27m3_SA) (Existing Title: Industrial Engineering Technician)
## 4504                                                                                                                                           ASSEMBLER SENIOR (A22m2) (EXISTING TITLE:  ASSEMBLER INSTALLER GENERAL)
## 4505                                                                                                                              Cyber Systems Specialist (A23m1) (Existing Title: Cyber Security Support Technician)
## 4506                                                                                                                                    Assembly Test Technician (A24m1) (Existing Title: Assembler Installer General)
## 4507                                                                                                                         PROGRAMMABLE LOGIC DESIGN ENGINEER (A25) (EXISTING OCCUPATION TITLE : AEROSPACE ENGINEER)
## 4508                                                                                                                                     CIRCUIT DESIGN ENGINEER (A26) (EXISTING OCCUPATION TITLE: AEROSPACE ENGINEER)
## 4509                                                                                                                             Engineering Technician (A27m3_SE) (Existing Title: Industrial Engineering Technician)
## 4510                                                                                                                                        ELECTRONIC ASSEMBLER (A13m3)(EXISTING TITLE:  ASSEMBLER INSTALLER GENERAL)
## 4511                                                                                                                            AIRCRAFT MAINTENANCE TECHNICIAN (A16m3)(EXISTING TITLE: ASSEMBLER AIRCRAFT STRUCTURES)
## 4512                                                                                                                                                       PROGRAM MANAGER (A17m1)(EXISTING TITLE: IT PROJECT MANAGER)
## 4513                                                                                                                                                SOFTWARE TECHNICIAN (A18m1) (EXISTING TITLE:  COMPUTER PROGRAMMER)
## 4514                                                                                                                                                SOFTWARE TECHNICIAN (A20m1) (EXISTING TITLE:  COMPUTER PROGRAMMER)
## 4515                                                                                                                                                                                        Tool and Die Maker (A21m1)
## 4516                                                                                                                                    APPRENTICESHIP NAVIGATOR (A7m2)(Existing Title: Career Development Technician)
## 4517                                                                                                                        Cyber Systems Security Engineer (A8m1)(Existing Title:  Cyber Security Support Technician)
## 4518                                                                                                                           CYBER INTEL SECURITY ANALYST (A9m1)(Existing Title:  Cyber Security Support Technician)
## 4519                                                                                                                                              INSPECTOR SENIOR (A10m1)(Existing Title:  Quality Control Inspector)
## 4520                                                                                                                                                 SOFTWARE TECHNICIAN (A11m2)(Existing Title:  Computer Programmer)
## 4521                                                                                                                                            ASSEMBLER SENIOR (A12m1)(EXISTING TITLE:  ASSEMBLER INSTALLER GENERAL)
## 4522                                                                                                                                 Cyber Systems Specialist (A23)(Existing Title: Cyber Security Support Technician)
## 4523                                                                                                                                          Electronic Assembler (A13)(Existing Title:  Assembler Installer General)
## 4524                                                                                                                                   Electronics Associate Senior (A15)(Existing Title: Assembler Installer General)
## 4525                                                                                                                                                         Program Manager (A17)(Existing Title: It Project Manager)
## 4526                                                                                                                                                                                Career Development Technician (A7)
## 4527                                                                                                                                 Cyber Systems Specialist (A23)(Existing Title: Cyber Security Support Technician)
## 4528                                                                                                                                          Electronic Assembler (A13)(Existing Title:  Assembler Installer General)
## 4529                                                                                                                                   Electronics Associate Senior (A15)(Existing Title: Assembler Installer General)
## 4530                                                                                                                                                         Program Manager (A17)(Existing Title: It Project Manager)
## 4531                                                                                                                                                                                Career Development Technician (A7)
## 4532                                                                                                                                 Cyber Systems Specialist (A23)(Existing Title: Cyber Security Support Technician)
## 4533                                                                                                                                          Electronic Assembler (A13)(Existing Title:  Assembler Installer General)
## 4534                                                                                                                                   Electronics Associate Senior (A15)(Existing Title: Assembler Installer General)
## 4535                                                                                                                                                         Program Manager (A17)(Existing Title: It Project Manager)
## 4536                                                                                                                                                                                Career Development Technician (A7)
## 4537                                                                                                                                 Cyber Systems Specialist (A23)(Existing Title: Cyber Security Support Technician)
## 4538                                                                                                                                          Electronic Assembler (A13)(Existing Title:  Assembler Installer General)
## 4539                                                                                                                                   Electronics Associate Senior (A15)(Existing Title: Assembler Installer General)
## 4540                                                                                                                                                         Program Manager (A17)(Existing Title: It Project Manager)
## 4541                                                                                                                                                                                Career Development Technician (A7)
## 4542                                                                                                                                                                                      Professional Massage Therapy
## 4543                                                                                                                                                                                           Mastery Massage Therapy
## 4544                                                                                                                                                                                                     CNC Machinist
## 4545                                                                                                                                                                                                 Welder Technician
## 4546                                                                                                                                                                       Help Desk Analyst Tier 1 Support Specialist
## 4547                                                                                                                                             Webmaster Web Applications Developer Mobile and Desktop Web Developer
## 4548                                                                                                                                                           Entrepreneurship Start Up and Business Owner Management
## 4549 ITIL Capability Expert ITIL Capability Expert Vouchers Included ITIL Foundation Voucher Included CompTIA A Certification Training CompTIA Network+ Certification Training CompTIA Security Certification Training
## 4550                                                                                                                                                  High School Diploma with Retail Customer Service Skills Training
## 4551                                                                                                                                                                                           Residential Electrician
## 4552                                                                                                                                                                                            Maintenance Technician
## 4553                                                                                                                                                                                               Medical Terminology
## 4554                                                                                                                                                                        Advanced Coding for the Physician Office A
## 4555                                                                                                                                                                                   Paralegals and Legal Assistants
## 4556                                                                                                                                                                                      Certified Protection Officer
## 4557                                                                                                                                                                Certified Health Unit Coordinator Voucher Included
## 4558                                                                                                                                                         Administrative Dental Assistant Clinical Dental Assistant
## 4559                                                                                                                                                                                           Computer System Analyst
## 4560                                                                                                                                                                                            Database Administrator
## 4561                                                                                                                                     Graphic Design with Photoshop Graphic Design with Photoshop Software Included
## 4562                                                                                                                                                                                           Foundations of Plumbing
## 4563                                                                                                                                                                                                Software Developer
## 4564                                                                                                                                                                                                 Quality Inspector
## 4565                                                                                                                                                                                        Certified Internal Auditor
## 4566                                                                                                                           Professional Bookkeeping with QuickBooks 2015 Practice and Management Software Included
## 4567                                                                                                                                                                                              Pharmacy Technicians
## 4568                                                                                                                      Certified Administrative Professional with Microsoft Office Specialist 2016 Voucher Included
## 4569                                                                                                                                                                                             Electrical Technician
## 4570                                                                                                                                  High School Diploma With Commercial Driving Training  Commercial Driver Training
## 4571                                                                                                                                                        HVACR ControlsBuilding Automation Systems HVACR Technician
## 4572                                                                                                                                                                            Dental Office Manager Voucher Included
## 4573                                                                                                                                                                                                     Sales Manager
## 4574                                                                                                                                                                               Advertising and Outreach Specialist
## 4575                                                                                                                                                                                    Business Operations Specialist
## 4576                                                                                                                                                  Certified Information Security Manager (CISM) (Voucher Included)
## 4577                                                                                                                                                                                             Restaurant Management
## 4578                                                                                                                                                                                           Oil Refinery Operations
## 4579                                                                                                                                                                                               Robotics Technician
## 4580                                                                                                                                                                                     Freight Broker/Agent Training
## 4581                                                                                                                                   Oracle SQL and PL/SQL + Python Developer + Java                      Programmer
## 4582                                                                                                                                                                       Hotel Management with Executive Housekeeper
## 4583                                                                                                                                                                   Veterinary Assistant with Horse Care Management
## 4584                                                                                                                                                                                         Veterinary Office Manager
## 4585                                                                                                                                                                                            Engineering Technician
## 4586                                                                                                                                                                                       Professional Recovery Coach
## 4587                                                                                                                                                                                           Front-End Web Developer
## 4588                                                                                                                                                       Certified Information Systems Security Professional (CISSP)
## 4589                                                                                                                                                                            Student Loan Counselor (Exam Included)
## 4590                                                                                                                                                                                    Human Resources Senior Manager
## 4591                                                                                                                                                                                      Human Resources Professional
## 4592                                                                                                                                                 Computer Hacking Forensics Investigator (CHFI) (Voucher Included)
## 4593                                                                                                                                                                              Certified Indoor Air Quality Manager
## 4594                                                                                                                                      The Complete Project Manager with Microsoft Project 2019 (Software Included)
## 4595                                                                                                                                                                                               Management Training
## 4596                                                                                                                                                                                                  Manual Machinist
## 4597                                                                                                                                                                Certified Physical Therapy Aide (Voucher Included)
## 4598                                                                                                                                                    Certified Clinical Medical Assistant (CCMA) (Voucher Included)
## 4599                                                                                                                               Certified Credit Counselor and Certified Financial Health Counselor (Exam Included)
## 4600                                                                                                                                                                                              Sales Representative
## 4601                                                                                                                                                                                      Digital Marketing Strategist
## 4602                                                                                                                                                                                         PMP CAMP ACP Scrum Master
## 4603                                                                                                                                                                                                        Cisco CCNA
## 4604                                                                                                                                                                                           CompTIA/ITILFoundations
## 4605                                                                                                                                                                                           Cyber Security Bootcamp
## 4606                                                                                                                                                                                          Certified Ethical Hacker
## 4607                                                                                                                                                                                             Data Science Bootcamp
## 4608                                                                                                                                                                               CompTIA Fundamentals (A+ Net+ Sec+)
## 4609                                                                                                                                                                            Project Management (PMP) Certification
## 4610                                                                                                                                                                                          Cloud Computing Bootcamp
## 4611                                                                                                                                                                Web Development & Project Management Certification
## 4612                                                                                                                                                                            Microsoft Azure Administrator (AZ-104)
## 4613                                                                                                                                                          Microsoft Office & Productivity Specialist Certification
## 4614                                                                                                                                                                     IT Help Desk Certification (ITIL Foundations)
## 4615                                                                                                                                                                                      Pharmacy Technician Bootcamp
## 4616                                                                                                                                                                                         Dental Assistant Bootcamp
## 4617                                                                                                                                                                                        Medical Assistant Bootcamp
## 4618                                                                                                                                                                                  Patient Care Technician Bootcamp
## 4619                                                                                                                        Azure Data Scientist: Designing and Implementing a Data Science Solution on Azure (DP-100)
## 4620                                                                                                                                                                                        Cloud Engineering Bootcamp
## 4621                                                                                                                                                                               Data Science and Analytics Bootcamp
## 4622                                                                                                                                                                                       Microsoft Office Specialist
## 4623                                                                                                                                                                                   Multi Craft Core Curriculum MC3
## 4624                                                                                                                                                                                               Pharmacy Technician
## 4625                                                                                                                                                                                   Office Administrative Assistant
## 4626                                                                                                                                                                                        Medical Coding and Billing
## 4627                                                                                                                                                                                             Phlebotomy Technician
## 4628                                                                                                                                                                                         Medical Office Specialist
## 4629                                                                                                                                                                                                 Medical Assistant
## 4630                                                                                                                                                                                               Nurse Aide Training
## 4631                                                                                                                                                                                                        Phlebotomy
## 4632                                                                                                                                                                                                 Medical Assistant
## 4633                                                                                                                                                                                         Houston Area Pipe fitters
## 4634                                                                                                                                                                                        Beaumont Area Pipe fitters
## 4635                                                                                                                                                                          CyJobs Registered Apprenticeship Program
## 4636                                                                                                                                                               Preschool Teachers / Montessori Lead Apprenticeship
## 4637                                                                                                                                                                      Child Care Provider / Teacher Apprenticeship
## 4638                                                                                                                                                                   Professional Bookkeeping with QuickBooks Online
## 4639                                                                                                                                                Professional Bookkeeping with QuickBooks Online (Voucher Included)
## 4640                                                                                                                              Professional Bookkeeping with QuickBooks Online with Payroll Practice and Management
## 4641                                                                                                           Professional Bookkeeping with QuickBooks Online with Payroll Practice and Management (Voucher Included)
## 4642                                                                                                                                                      Certified Bookkeeper with Microsoft Excel (Voucher Included)
## 4643                                                                                                                                                                                              Certified Bookkeeper
## 4644                                                                                                                                                                   Graphic Design with Photoshop Software Included
## 4645                                                                                                                                                                                        Web Applications Developer
## 4646                                                                                                                                                                                           Web Design Professional
## 4647                                                                                                                                                                                     Paralegal Certificate Program
## 4648                                                                                                                                                                                        Lean Six Sigma Yellow Belt
## 4649                                                                                                                                                                                        Lean Six Sigma Green  Belt
## 4650                                                                                                                                                                                         Lean Six Sigma Black Belt
## 4651                                                                                                                                                                                        Full Stack Coding Bootcamp
## 4652                                                                                                        Certified Administrative Professional with Microsoft Office Specialist (MOS) Associate (Vouchers Included)
## 4653                                                                                                              Certified Clinical Medical Assistant (CCMA) + Certified Electronic Health Records Specialist (CEHRS)
## 4654                                                                                                                                                                       Certified Ethical Hacker (Voucher Included)
## 4655                                                                                                                                                  Certified Information Security Manager (CISM) (Voucher Included)
## 4656                                                                                                                                                                             Medical Interpreter (Spanish/English)
## 4657                                                                                                                                               Certified Supply Chain Professional + Freight Broker/Agent Training
## 4658                                                                                                                                        CompTIA Certification Training: A+  Network+  Security+ (Voucher Included)
## 4659                                                                                                                                         Entrepreneurship: Start-Up and Business Owner Management Voucher Included
## 4660                                                                                                                                                                                     Freight Broker/Agent Training
## 4661                                                                                                                                                                                      Human Resources Professional
## 4662                                                                                                                                                 Human Resources Professional with Payroll Practice and Management
## 4663                                                                                                                                                                 Certified Medical Administrative Assistant (CMAA)
## 4664                                                                                              Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology
## 4665                                                                                                                                                                        CompTIA IT Fundamentals (Voucher Included)
## 4666                                                                                                                                                                           CompTIA Network+ Certification Training
## 4667                                                                                                                                                       CompTIA Security+ Certification Training (Voucher Included)
## 4668                                                                                                                                                                                           Data Analytics Bootcamp
## 4669                                                                                                                                                                                                    UX/UI Bootcamp
## 4670                                                                                                                                                              CompTIA A+ Certification Training (Voucher Included)
## 4671                                                                                                                    Certified Medical Administrative Assistant with Medical Billing and Coding (Vouchers Included)
## 4672                                                                                                                                                                            Pharmacy Technician (Voucher Included)
## 4673                                                                                                                                                          Certified Phlebotomy Technician (Voucher + Lab Included)
## 4674                                                                                                                                                            Certified Electronic Health Records Specialist (CEHRS)
## 4675                                                                                                                                                                           Registered Behavior Technician Training
## 4676                                                                                                                                                                                                 Quality Inspector
## 4677                                                                                                                                                             Certified Medical Transcriptionist (Voucher Included)
## 4678                                                                                                                                                                                           Professional Translator
## 4679                                                                                                                                                                 Medical Office Manager (CPPM) (Vouchers Included)
## 4680                                                                                                                                                                     Medical Billing and Coding (Voucher Included)
## 4681                                                                                                                                                                                  Cyber Security Skills Foundation
## 4682                                                                                                                                                                Cyber Security Training - Advanced Network Defense
## 4683                                                                                                                                                                                  Cyber Defense Analyst 1 Training
## 4684                                                                                                                                                                                  Cyber Defense Analyst 2 Training
## 4685                                                                                                                                                                                         Cyber Operator 1 Training
## 4686                                                                                                                                                                                         Cyber Operator 2 Training
## 4687                                                                                                                                                                                 Cyber Defense Forensics Analyst 1
## 4688                                                                                                                                                                                 Cyber Defense Forensics Analyst 2
## 4689                                                                                                                                                           Law Enforcement/Counterintelligence Forensics Analyst 1
## 4690                                                                                                                                                           Law Enforcement/Counterintelligence Forensics Analyst 2
## 4691                                                                                                                                                                       Vulnerability Assessment Analyst 1 Training
## 4692                                                                                                                                                                       Vulnerability Assessment Analyst 2 Training
## 4693                                                                                                                                                                                  Systems Administrator 1 Training
## 4694                                                                                                                                                                                  Systems Administrator 2 Training
## 4695                                                                                                                                                                 Cyber Defense Infrastructure Support Specialist 1
## 4696                                                                                                                                                                 Cyber Defense Infrastructure Support Specialist 2
## 4697                                                                                                                                                                                   Core Construction Certification
## 4698                                                                                                                                                                                                        Nurse Aide
## 4699                                                                                                                                                                           HVACR Maintenance Certificate - EVENING
## 4700                                                                                                                                                                               HVACR Maintenance Certificate - DAY
## 4701                                                                                                                                                                           HVACR Maintenance Certificate - WEEKEND
## 4702                                                                                                                                                 The Houston Launch Pad Apprenticeship General Insurance Associate
## 4703                                                                                                                                                                 The Houston Launch Pad Apprenticeship Logistician
## 4704                                                                                                                                                                                              Material Coordinator
## 4705                                                                                                                                                                                        Construction Craft Laborer
## 4706                                                                                                                                                                    General Insurance Associate Pre-Apprenticeship
## 4707                                                                                                                                                                                            Forklift Certification
## 4708                                                                                                                                                                                         CDL Class A Truck Driving
## 4709                                                                                                                                                                         Class A CDL Truck Driver Training Program
## 4710                                                                                                                                                                  CompTIA Security Certification Preparation (OSA)
## 4711                                                                                                                                               Information Technology Cybersecurity Specialist Level I Certificate
## 4712                                                                                                                                               Information Technology Cybersecurity Specialist Level I Certificate
## 4713                                                                                                                                                                          Network Administration Technology A.A.S.
## 4714                                                                                                                                                                          Network Administration Technology A.A.S.
## 4715                                                                                                                                                                                              Cyber Defense A.A.S.
## 4716                                                                                                                                                                                              Cyber Defense A.A.S.
## 4717                                                                                                                                                                  CompTIA Security Certification Preparation (OSA)
## 4718                                                                                                                                                                      CompTIA Linux+ Certification Preparation OSA
## 4719                                                                                                                                                                      CompTIA Linux+ Certification Preparation OSA
## 4720                                                                                                                                                                    CompTIA Security Certification Preparation OSA
## 4721                                                                                                                                               Information Technology Cybersecurity Specialist Level I Certificate
## 4722                                                                                                                                                                             Network Administration Technology AAS
## 4723                                                                                                                                                                                                 Cyber Defense AAS
## 4724                                                                                                                                                                   CompTIA LinuxPlus Certification Preparation OSA
## 4725                                                                                                                                                                         AAS Logistics and Supply Chain Management
## 4726                                                                                                                                                                         AAS Logistics and Supply Chain Management
## 4727                                                                                                                                                                            AAS Social Media and Digital Marketing
## 4728                                                                                                                                                                            AAS Social Media and Digital Marketing
## 4729                                                                                                                                                                          Logistics Management Level 1 Certificate
## 4730                                                                                                                                                                          Logistics Management Level 1 Certificate
## 4731                                                                                                                                                                  Coding Boot Camp Certificate Program (full time)
## 4732                                                                                                                                                                  Coding Boot Camp Certificate Program (part time)
## 4733                                                                                                                                                                              Online Boot Camp Certificate Program
## 4734                                                                                                                                                      Human Resource Management Certificate Program (regular pace)
## 4735                                                                                                                                                        Human Resource Management Certificate Program (fast track)
## 4736                                                                                                                                                                              Online Paralegal Certificate Program
## 4737                                                                                                                                                                                Graphic Design Certificate Program
## 4738                                                                                                                                                                         CenTex Independent Electrical Contractors
## 4739                                                                                                                                                   ASSOCIATE OF APPLIED SCIENCE IN BIOMEDICAL EQUIPMENT TECHNOLOGY
## 4740                                                                                                                                                               BIOMEDICAL EQUIPMENT TECHNICIAN  CERTIFICATE (BMET)
## 4741                                                                                                                                                                                   Introduction to Imaging Seminar
## 4742                                                                                                                                                                                          Advanced Imaging Seminar
## 4743                                                                                                                                                                   Principles of Medical Injectors Service Seminar
## 4744                                                                                                                                                                              Multi-Product Portable X-Ray Seminar
## 4745                                                                                                                                                                                       Multi-Product C-Arm Seminar
## 4746                                                                                                                                                                       Introduction to Computed Tomography Seminar
## 4747                                                                                                                                                                                          CRES Prep Course Seminar
## 4748                                                                                                                                                                   Bimomedical Imaging Information Systems Seminar
## 4749                                                                                                                                                                                      Radiographic Anatomy Seminar
## 4750                                                                                                                                                                                       Radiological Safety Seminar
## 4751                                                                                                                                                                                                MRI Safety Seminar
## 4752                                                                                                                                                                                    MRI Basics and Physics Seminar
## 4753                                                                                                                                                                    Fundamentals of Diagnostic Radiography Seminar
## 4754                                                                                                                                                                    Fundamentals of Diagnostic Fluoroscopy Seminar
## 4755                                                                                                                                                                                 Principles of Mammography Seminar
## 4756                                                                                                                                                                                  Principles of Ultrasound Seminar
## 4757                                                                                                                                                                          Dual X-Ray Absorptiometry Basics Seminar
## 4758                                                                                                                                       Certified Healthcare Operations Professional Certification - Basic (CHOP-B)
## 4759                                                                                                                                    Certified Healthcare Operations Professional Certification - Advanced (CHOP-A)
## 4760                                                                                                                                                          Cloud Databse Administrator for MS Azure with Externship
## 4761                                                                                                                                                                                AWS SysOps Administrator Associate
## 4762                                                                                                                                                                                              Childcare Specialist
## 4763                                                                                                                                                                                           Accounting Professional
## 4764                                                                                                                                                     Clinical Medical Assistant with Optional Volunteer Externship
## 4765                                                                                                                                                                                 Clinical Medical Assistant Master
## 4766                                                                                                                                                                                             Physical Therapy Aide
## 4767                                                                                                                                                                                      Nursing Assistant Specialist
## 4768                                                                                                                                                                                      Paralegal Certificate Course
## 4769                                                                                                                                                                                     Project Management Specialist
## 4770                                                                                                                                                                                       Risk Managemnt Professional
## 4771                                                                                                                                                                                                 Diesel Technician
## 4772                                                                                                                                                                                             Electrical Technician
## 4773                                                                                                                                                                                                   HVAC Technician
## 4774                                                                                                                                                                                         LEED Green Associate (GA)
## 4775                                                                                                                                                                             Advanced Paralegal Certificate Course
## 4776                                                                                                                                                                                          Agile Project Management
## 4777                                                                                                                                                                                   Program Management Professional
## 4778                                                                                                                                                                                   Project Management Professional
## 4779                                                                                                                                                                Business Operations Management Certificate Program
## 4780                                                                                                                                              Professional Bookkeeping Certification Training with QuickBooks 2019
## 4781                                                                                                                          Professional Bookkeeping Certification Training with QuickBooks 2019 (Software Included)
## 4782                                                                                                          Professional Bookkeeping Certification Training with QuickBooks 2019 and Payroll Practice and Management
## 4783                                                                                      Professional Bookkeeping Certification Training with QuickBooks 2019 and Payroll Practice and Management (Software Included)
## 4784                                                                                                                                                                                 CompTIA A+ Certification Training
## 4785                                                                                                                                                            CompTIA A+ Certification Training with ITIL Foundation
## 4786                                                                                                                                                                                      Human Resources Professional
## 4787                                                                                                                                                                                        Certified Outpatient Coder
## 4788                                                                                                                                    CPC Certified Medical Administrative Assistant with Medical Billing and Coding
## 4789                                                                                                                                                                       Certified Clinical Medical Assistant (CCMA)
## 4790                                                                                                                                                     Certified Clinical Medical Assistant for the Experienced CMAA
## 4791                                                                                                                                                                            Pharmacy Technician (Voucher Included)
## 4792                                                                                                                                                           CompTIA Certification Training: A+  Network+  Security+
## 4793                                                                                                                                                                           CompTIA Network+ Certification Training
## 4794                                                                                                                                                                          CompTIA Security+ Certification Training
## 4795                                                                                                                                                            Certified Electronic Health Records Specialist (CEHRS)
## 4796                                                                                                                                   CBCS Certified Medical Administrative Assistant with Medical Billing and Coding
## 4797                                                                                                                                    CCA Certified Medical Administrative Assistant with Medical Billing and Coding
## 4798                                                                                                                              The Complete Project Manager with Microsoft Project 2019 (Software Included) GES2060
## 4799                                                                                                                                                               The Complete Project Manager with CAPM and PMP Prep
## 4800                                                                                                                                                                        Mastering Project Management with PMP Prep
## 4801                                                                                                                                                                      Project Management Essentials with CAPM Prep
## 4802                                                                                                                                                              AutoCAD 2018 with AutoCAD 3D 2018 (Voucher Included)
## 4803                                                                                                                                                                    Certified Bookkeeper with Microsoft Excel 2019
## 4804                                                                                                                                                                              HVAC/R Technician (Voucher Included)
## 4805                                                                                                                                                                    HVAC/R Certified Technician (Voucher Included)
## 4806                                                                                                                                                                                           Residential Electrician
## 4807                                                                                                                                                                                         Clinical Dental Assistant
## 4808                                                                                                                   Certified Administrative Professional with Microsoft Office Specialist 2019 (Vouchers Included)
## 4809                                                                                                                                                                                              EMT Training Program
## 4810                                                                                                                                                                                 Dental Assistant Training Program
## 4811                                                                                                                                                                                                 Medical Assistant
## 4812                                                                                                                                                                                        Network Support specialist
## 4813                                                                                                                                                                                                  Network Engineer
## 4814                                                                                                                                                                                         Vocational Nurse Training
## 4815                                                                                                                                                                                         Vocational Nurse Training
## 4816                                                                                                                                                                                                 Medical Assistant
## 4817                                                                                                                                                                                                  Network Engineer
## 4818                                                                                                                                                                                        Network Support specialist
## 4819                                                                                                                                                                                                 Nursing Assistant
## 4820                                                                                                                                                                                       Acute Care Technician (ACT)
## 4821                                                                                                                                                                                      Electrocardiogram Technician
## 4822                                                                                                                                                                                  Emergency Medical Technician EMT
## 4823                                                                                                                                                                                    Mobile Application Development
## 4824                                                                                                                                                                                        Web Design and Development
## 4825                                                                                                                                                                                                 ITIL 4 FOUNDATION
## 4826                                                                                                                                                                  ITIL 4 Specialist Create Deliver and Support CDS
## 4827                                                                                                                                                                     ITIL 4 Specialist Drive Stakeholder Value DSV
## 4828                                                                                                                                                                          ITIL 4 Specialist  High Velocity IT HVIT
## 4829                                                                                                                                                                        ITIL 4 Strategist Direct Plan  Improve DPI
## 4830                                                                                                                                                       ITIL 4 Strategist ITIL Leader  Digital and IT Strategy DITS
## 4831                                                                                                                                ITIL Managing Professional Transition Module MPT Official PeopleCert Certification
## 4832                                                                                                                                                                                    Facility Solutionsw Group Inc.
## 4833                                                                                                                                                                                               Pharmacy Technician
## 4834                                                                                                                                                       Heating Ventilation & Air Conditioning & Basic Refigeration
## 4835                                                                                                                                                                                               Combination Welding
## 4836                                                                                                                                                                                                  Dental Assisting
## 4837                                                                                                                                                                                     Automotive Service Technician
## 4838                                                                                                                                                                             CDL Training: Class A Tractor Trailer
## 4839                                                                                                                                                                                        Medical Clinical Assistant
## 4840                                                                                                                                                                              Construction Project Manager Builder
## 4841                                                                                                                                                                          Pro Builder Pro Inspector Pro Commercial
## 4842                                                                                                                                                                            ICC IECC Commercial Building Inspector
## 4843                                                                                                                                                                           ICC New Construction Building Inspector
## 4844                                                                                                                                                                                                 Estimating Course
## 4845                                                                                                                                                Energy Course Residential IECC Energy Inspector and Plans Examiner
## 4846                                                                                                                                                 Energy Course Commercial IECC Energy Inspector and Plans Examiner
## 4847                                                                                                                                                                                             Real Estate Inspector
## 4848                                                                                                                                                                                            Professional Inspector
## 4849                                                                                                                                                                                        CONSTRUCTION CRAFT LABORER
## 4850                                                                                                                                                                                        CONSTRUCTION CRAFT LABORER
## 4851                                                                                                                                                                                        CONSTRUCTION CRAFT LABORER
## 4852                                                                                                                                                                                           Construction fundations
## 4853                                                                                                                                                                               HAZARDOUS-WASTE MATERIAL TECHNICIAN
## 4854                                                                                                                                                                                        CONSTRUCTION CRAFT LABORER
## 4855                                                                                                                                                                                           Construction fundations
## 4856                                                                                                                                                                               HAZARDOUS-WASTE MATERIAL TECHNICIAN
## 4857                                                                                                                                                                          Gas Metal Arc Welding Certificate (GMAW)
## 4858                                                                                                                                                                                  HVAC NCCER Workforce Certificate
## 4859                                                                                                                                                                     Shielded Metal Arc Welding Certificate (SMAW)
## 4860                                                                                                                                                                         Carpentry I NCCER Residential Certificate
## 4861                                                                                                                                                                        Carpentry II NCCER Residential Certificate
## 4862                                                                                                                                                                                          Logistics Management AAS
## 4863                                                                                                                                                                                                 Welding - Level 2
## 4864                                                                                                                                                                                            Welding Technology AAS
## 4865                                                                                                                                                                                   Accounting Assistant/Bookkeeper
## 4866                                                                                                                                                                                       Waco Area Electricians JATC
## 4867                                                                                                                                                                                               IT ProBasic Program
## 4868                                                                                                                                                                Information Technology Security and Administration
## 4869                                                                                                                                                            Introduction to Community Interpreting and Translation
## 4870                                                                                                                                                                       Medical Interpreting Training certification
## 4871                                                                                                                                                                                               Class A CDL Program
## 4872                                                                                             Construction Paralegal Business Nursing Assistants Computer User Support Electrical Plumbing HVAC Entrepreneurialship
## 4873                                                                                                                                                                                            Certified Nursing Aide
## 4874                                                                                                                                                                                      Microsoft Support Specialist
## 4875                                                                                                                                                                                           Business Administration
## 4876                                                                                                                                                                          Paralegal   Associate of Applied Science
## 4877                                                                                                                                                Business Computer Office Management   Associate of Applied Science
## 4878                                                                                                                                                                                         Early Childhood Education
## 4879                                                                                                                                                               Business Management    Associate of Applied Science
## 4880                                                                                                                                                                                   Business Management Certificate
## 4881                                                                                                                                                                                 Child Care Apprentice Certificate
## 4882                                                                                                                                                                                            Accounting Certificate
## 4883                                                                                                                                                                    Child  Development Associate (CDA) Certificate
## 4884                                                                                                                                                                         Accounting   Associate of Applied Science
## 4885                                                                                                                                                                             Legal Assisting/Paralegal Certificate
## 4886                                                                                                                                                  Operating Engineers Apprenticeship and Training   IUOE Local 450
## 4887                                                                                                                                                                                                        Phlebotomy
## 4888                                                                                                                                                                                                                A+
## 4889                                                                                                                                                                      Entrepreneurship & Small Business Management
## 4890                                                                                                                                                                                                          Network+
## 4891                                                                                                                                                                                                         Security+
## 4892                                                                                                                                                                                   Accounting & Bookkepping Vitals
## 4893                                                                                                                                                                                      Marketing  for Entrepreneurs
## 4894                                                                                                                                                                                       Financing for Entrepreneurs
## 4895                                                                                                                                                                                                               EKG
## 4896                                                                                                                                                                                          Medical Billing & Coding
## 4897                                                                                                                                                                                                     IT Essentials
## 4898                                                                                                                                                                                                 Medical Assistant
## 4899                                                                                                                                                       The ACF Apprenticeship at The Culinary School of Fort Worth
## 4900                                                                                                                                                                                             Systems Administrator
## 4901                                                                                                                                                                                        Desktop Support Specialist
## 4902                                                                                                                                                                                                Windows Technician
## 4903                                                                                                                                                                                                  Network Engineer
## 4904                                                                                                                                                                                                        Nurse Aide
## 4905                                                                                                                                                                                             Phlebotomy Technician
## 4906                                                                                                                                                                       Continuing Education Seminar for Nurse Aide
## 4907                                                                                                                                                          Region 10 Education Service Center CERTification Program
## 4908                                                                                                                                                                                        CIT2 - IT ENGINEER PROGRAM
## 4909                                                                                                                                                                                          CLOUD ARCHITECT TRAINING
## 4910                                                                                                                                                                                     ORACLE ADMINISTRATOR DATABASE
## 4911                                                                                                                                                                                   IT SERVICE CERTIFICATION (ITIL)
## 4912                                                                                                                                                                         COMPUTER SECURITY ANALYST (CYBERSECURITY)
## 4913                                                                                                                                                                               C# PROGRAMMING USING MICROSOFT .NET
## 4914                                                                                                                                                                                   CIT1 -  IT ADMINSTRATOR PROGRAM
## 4915                                                                                                                                                                               Digital Marketing Bootcamp - 8 week
## 4916                                                                                                                                                                                    Data Analyst Bootcamp - 8 week
## 4917                                                                                                                                                                                  Cyber Security Bootcamp - 8 week
## 4918                                                                                                                                                                              Digital Marketing Bootcamp - 12 week
## 4919                                                                                                                                                                                            IT ServiceNow - 9 week
## 4920                                                                                                                                                                                       AWS Cloud Bootcamp - 9 week
## 4921                                                                                                                                                                         Tech Support Specialist Bootcamp - 4 week
## 4922                                                                                                                                                                                              Certified Bookkeeper
## 4923                                                                                                                                                                                     Freight Broker/Agent Training
## 4924                                                                                                                                                                              HVAC/R Technician (Voucher Included)
## 4925                                                                                                                                                                                         Clinical Dental Assistant
## 4926                                                                                                                                                    Certified Clinical Medical Assistant (CCMA) (Voucher Included)
## 4927                                                                                                                                              Certified Medical Administrative Assistant (CMAA) (Voucher Included)
## 4928                                                                                                                                                                                                 Welder Technician
## 4929                                                                                                                                                                                                TRUCK DRIVER HEAVY
## 4930                                                                                                                                                                   HEATING AND AIR CONDITIONING INSTALLER SERVICER
## 4931                                                                                                                                                                                                COMBINATION WELDER
## 4932                                                                                                                                                                                             WIREMAN (ELECTRICIAN)
## 4933                                                                                                                                                                                       SAFETY INSPECTOR/TECHNICIAN
## 4934                                                                                                                                                                                                           PLUMBER
## 4935                                                                                                                                                                                                        Phlebotomy
## 4936                                                                                                                                                                                                    EKG TECHNICIAN
## 4937                                                                                                                                                                                           SOLAR ENERGY TECHNICIAN
## 4938                                                                                                                                                                                                         Welding 2
## 4939                                                                                                                                                                                                         Welding 1
## 4940                                                                                                                                                                            East End Driving and Placement Service
## 4941                                                                                                                                                  North Texas Automobile Dealers Registered Apprenticeship Program
## 4942                                                                                                                                                                                                        nurse aide
## 4943                                                                                                                                                                                             nurse aide- bilingual
## 4944                                                                                                                                                                                           Patient Care Technician
## 4945                                                                                                                                                                                                        Phlebotomy
## 4946                                                                                                                                                                                                   Medication Aide
## 4947                                                                                                                                                                                                               EKG
## 4948                                                                                                                                                                                                 Medical Assistant
## 4949                                                                                                                                                                                        Medical Billing and Coding
## 4950                                                                                                                                                                                 Business Administration Associate
## 4951                                                                                                                                                                              Business Administration Professional
## 4952                                                                                                                                                                        Network Systems Administrator Professional
## 4953                                                                                                                                                                                        IT Networking and Security
## 4954                                                                                                                                                                                                  Cisco Networking
## 4955                                                                                                                                                                                 Business Administration Associate
## 4956                                                                                                                                                                              Business Administration Professional
## 4957                                                                                                                                                                                     Medical Office Administration
## 4958                                                                                                                                                                        Network Systems Administrator Professional
## 4959                                                                                                                                                                                        IT Networking and Security
## 4960                                                                                                                                                                                 Business Administration Associate
## 4961                                                                                                                                                                              Business Administration Professional
## 4962                                                                                                                                                                                     Medical Office Administration
## 4963                                                                                                                                                                        Network Systems Administrator Professional
## 4964                                                                                                                                                                                        IT Networking and Security
## 4965                                                                                                                                                                                 Business Administration Associate
## 4966                                                                                                                                                                              Business Administration Professional
## 4967                                                                                                                                                                                     Medical Office Administration
## 4968                                                                                                                                                                        Network Systems Administrator Professional
## 4969                                                                                                                                                                                        IT Networking and Security
## 4970                                                                                                                                                                                     Medical Office Administration
## 4971                                                                                                                                                                                 Business Administration Associate
## 4972                                                                                                                                                                              Business Administration Professional
## 4973                                                                                                                                                                        Network Systems Administrator Professional
## 4974                                                                                                                                                                                        IT Networking and Security
## 4975                                                                                                                                                                                 Business Administration Associate
## 4976                                                                                                                                                                              Business Administration Professional
## 4977                                                                                                                                                                                     Medical Office Administration
## 4978                                                                                                                                                                        Network Systems Administrator Professional
## 4979                                                                                                                                                                                        IT Networking and Security
## 4980                                                                                                                                                                                 Business Administration Associate
## 4981                                                                                                                                                                              Business Administration Professional
## 4982                                                                                                                                                                                     Medical Office Administration
## 4983                                                                                                                                                                        Network Systems Administrator Professional
## 4984                                                                                                                                                                                        IT Networking and Security
## 4985                                                                                                                                                                                                  Cisco Networking
## 4986                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 4987                                                                                                                                                                                IT Desktop Networking and Security
## 4988                                                                                                                                                                         IT Networking Security and Infrastructure
## 4989                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 4990                                                                                                                                                                                                  Cisco Networking
## 4991                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 4992                                                                                                                                                                                IT Desktop Networking and Security
## 4993                                                                                                                                                                         IT Networking Security and Infrastructure
## 4994                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 4995                                                                                                                                                                                                  Cisco Networking
## 4996                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 4997                                                                                                                                                                                IT Desktop Networking and Security
## 4998                                                                                                                                                                         IT Networking Security and Infrastructure
## 4999                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 5000                                                                                                                                                                                                  Cisco Networking
## 5001                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 5002                                                                                                                                                                                IT Desktop Networking and Security
## 5003                                                                                                                                                                         IT Networking Security and Infrastructure
## 5004                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 5005                                                                                                                                                                                                  Cisco Networking
## 5006                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 5007                                                                                                                                                                                IT Desktop Networking and Security
## 5008                                                                                                                                                                         IT Networking Security and Infrastructure
## 5009                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 5010                                                                                                                                                                                                  Cisco Networking
## 5011                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 5012                                                                                                                                                                                IT Desktop Networking and Security
## 5013                                                                                                                                                                         IT Networking Security and Infrastructure
## 5014                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 5015                                                                                                                                                                          IT Desktop Networking and Infrastructure
## 5016                                                                                                                                                                                IT Desktop Networking and Security
## 5017                                                                                                                                                                         IT Networking Security and Infrastructure
## 5018                                                                                                                                                                            Microsoft Cloud Desktop Administration
## 5019                                                                                                                                                                                     Medical Office Administration
## 5020                                                                                                                                                                                Greatwood Dental Assisting Program
## 5021                                                                                                                                                                                         NCCER Pipefitting Level 2
## 5022                                                                                                                                                                                             NCCER Welding Level 4
## 5023                                                                                                                                                                                         NCCER Pipefitting Level 3
## 5024                                                                                                                                                                                          NCCER Electrical Level 1
## 5025                                                                                                                                                                                          NCCER Electrical Level 2
## 5026                                                                                                                                                                                         NCCER Pipefitting Level 4
## 5027                                                                                                                                                                                         NCCER Pipefitting Level 1
## 5028                                                                                                                                                                                          NCCER Electrical Level 3
## 5029                                                                                                                                                                                          NCCER Electrical Level 4
## 5030                                                                                                                                                                                             NCCER Welding Level 1
## 5031                                                                                                                                                                                             NCCER Welding Level 2
## 5032                                                                                                                                                                                             NCCER Welding Level 3
## 5033                                                                                                                                                                              Advanced Structural and Pipe Welding
## 5034                                                                                                                                                                                              Intermediate Welding
## 5035                                                                                                                                                                                                  Advanced Welding
## 5036                                                                                                                                                                                           Fundamentals of Welding
## 5037                                                                                                                                                                                  Advanced Welding - Evening Class
## 5038                                                                                                                                                                           Fundamentals of Welding - Evening Class
## 5039                                                                                                                                                                              Intermediate Welding - Evening Class
## 5040                                                                                                                                                              Advanced Structural and Pipe Welding - Evening Class
## 5041                                                                                                                                                                SheConnects Ministries Personal Skills Development
## 5042                                                                                                                                                                                 Electrician Apprentice Technician
## 5043                                                                                                                                                                                   Plumbling Apprentice Technician
## 5044                                                                                                                                                                                            YouthBuild San Antonio
## 5045                                                                                                                                                                                       Construction Craft Laborere
## 5046                                                                                                                                              RIO GRANDE VALLEY CHAPTER OF INDEPENDENT ELECTRICAL CONTRACTORS INC.
## 5047                                                                                                                                                                       Build and Developer (Residential Carpenter)
## 5048                                                                                                                                                                                                Optical Technician
## 5049                                                                                                                                                                                       Certified Nursing Assistant
## 5050                                                                                                                                                                                                         HVAC Tech
## 5051                                                                                                                                                                             TRIO Education Apprenticeship Program
## 5052                                                                                                                                                                                             Super Welders Academy
## 5053                                                                                                                                                                                                 Medical Assistant
## 5054                                                                                                                                                                                       South Texas Initiatives LLC
## 5055                                                                                                                                                                                       South Texas Initiatives LLC
## 5056                                                                                                                                                               University of Houston-Honors College Apprenticeship
## 5057                                                                                                                                                                        Google IT Support Professional Certificate
## 5058                                                                                                                                                                                                Phlebotomy Program
## 5059                                                                                                                                                                     Clinical Laboratory Testing Procedure Seminar
## 5060                                                                                                                                                                                                EKG Basics Seminar
## 5061                                                                                                                                                                                                IV Therapy Seminar
## 5062                                                                                                                                                                                                Phlebotomy Seminar
## 5063                                                                                                                                                                             Accelerated Medical Assistant Program
## 5064                                                                                                                                                                                           Nurse Assistant Program
## 5065                                                                                                                                                                                         Medical Assistant Seminar
## 5066                                                                                                                                                                                           Nurse Assistant Seminar
## 5067                                                                                                                                                                                        Data Analytics with MS Sql
## 5068                                                                                                                                                                                      Data Analytics with Power Bi
## 5069                                                                                                                                                                                          Data Science with Python
## 5070                                                                                                                                                                                    Culinary Arts Training Program
## 5071                                                                                                                                                                              Warehouse/Logistics Training Program
## 5072                                                                                                                                                                                            YouthBuild San Antonio
## 5073                                                                                                                                                                                         Cyber Security CyberBuild
## 5074                                                                                                                                                       Nationa Council for Construction Engineering Research NCCER
## 5075                                                                                                                                                                                             Southwest EMS Academy
## 5076                                                                                                                                                                                           Fiber Optics Technician
## 5077                                                                                                                                                                                       Multi Craft Core Curriculum
## 5078                                                                                                                                                                                                 Electrical Wiring
## 5079                                                                                                                                                                                           HVAC Vocatioal Training
## 5080                                                                                                                                                                                               Professional Coding
## 5081                                                                                                                                                                                                 Tech Fundamentals
## 5082                                                                                                                                                                                                  Dental Assisting
## 5083                                                                                                                       Certified Administrative Professional with Microsoft Office Master 2016 (Vouchers Included)
## 5084                                                                                                                       Certified Administrative Professional with Microsoft Office Master 2019 (Vouchers Included)
## 5085                                                                                                                     Certified Medical Administrative Assistant with Medical Billing and Coding (Voucher Included)
## 5086                                                                                                                                                                    Medical Billing and Coding (Vouchers Included)
## 5087                                                                                                                                                   Certified Clinical Medical Assistant (CCMA) (Vouchers Included)
## 5088                                                                                          Certified Clinical Medical Assistant (CCMA) + Certified Electronic Health Records Specialist (CEHRS) (Vouchers Included)
## 5089                                                                                                                                                           Certified Electronic Health Records Specialists (CEHRS)
## 5090                                                                                                                                            Certified Electronic Health Records Specialists  + Medical Terminology
## 5091                                                                                                                                              Certified Medical Administrative Assistant (CMAA) (Voucher Included)
## 5092                                                                           Certified Medical Administrative Assistant with Certified Electronic Health Records Specialist + Medical Terminology (Voucher Included)
## 5093                                                                                                                                                 Human Resources Professional with Payroll Practice and Management
## 5094                                                                                                                                                                  Medical Office Manager (CPPM) (Voucher Included)
## 5095                                                                                                                                                                                         Clinical Dental Assistant
## 5096                                                                                                                                                                                               Pharmacy Technician
## 5097                                                                                                                                                             The Kenza Institute - Automotive Techician Specialist
## 5098                                                                                                                                                                               The Kenza Group - Builder/Developer
## 5099                                                                                                                                                                               The Kenza Group - Professional Cook
## 5100                                                                                                                                                                               The Kenza Institute - EGG Techician
## 5101                                                                                                                                                                                            The Kenza Group - HVAC
## 5102                                                                                                                                                      Renewable Energy and Communications Tower Technician Program
## 5103                                                                                                                                                                                           Structural (SMAW) Stick
## 5104                                                                                                                                                                                       Structural (FCAW) Flux Core
## 5105                                                                                                                                                                                                   Pipe (GTAW) Tig
## 5106                                                                                                                                                                                             Pipe (SMAW) 6010/7018
## 5107                                                                                                                                                                                        Combo/Pipe (Master Course)
## 5108                                                                                                                                                                                                MiG/Flux Core Pipe
## 5109                                                                                                                                                                                             Flux Core Arc Welding
## 5110                                                                                                                                                                                        Shielded Metal Arc Welding
## 5111                                                                                                                                                                                             Gas Metal Arc Welding
## 5112                                                                                                                                                                                          Gas Tungsten Arc Welding
## 5113                                                                                                                                                                                       Apprenti - Software Analyst
## 5114                                                                                                                                                                                    Apprenti -Software Developer 1
## 5115                                                                                                                                                                          Apprenti - Cloud Operations Specialist 1
## 5116                                                                                                                                                                                                  HVACR Technician
## 5117                                                                                                                                                                                             Electrical Technician
## 5118                                                                                                                                                                                                  Dental Assistant
## 5119                                                                                                                                                                                                    EKG Technician
## 5120                                                                                                                                                                                             Physical Therapy Aide
## 5121                                                                                                                                                                                                 Medical Assistant
## 5122                                                                                                                                                                                            Radiologic Technicians
## 5123                                                                                                                                                                                                   Medication Aide
## 5124                                                                                                                                                                                                  Nurse Assistants
## 5125                                                                                                                                                                                                        Phlebotomy
## 5126                                                                                                                                                                                          Medical Insurance coding
## 5127                                                                                                                                                                                                        Phlebotomy
## 5128                                                                                                                                                                                          Medical Insurance coding
## 5129                                                                                                                                                                                                  Dental Assistant
## 5130                                                                                                                                                                                                    EKG Technician
## 5131                                                                                                                                                                                             Physical Therapy Aide
## 5132                                                                                                                                                                                                 Medical Assistant
## 5133                                                                                                                                                                                            Radiologic Technicians
## 5134                                                                                                                                                                                                   Medication Aide
## 5135                                                                                                                                                                                                  Nurse Assistants
## 5136                                                                                                                                                                                                  Dental Assistant
## 5137                                                                                                                                                                                           Medical Insurace Coding
## 5138                                                                                                                                                                                               Pharmacy Techinican
## 5139                                                                                                                                                                                                        Phlebotomy
## 5140                                                                                                                                                                                                   Medication Aide
## 5141                                                                                                                                                                                                               EKG
## 5142                                                                                                                                                                                                   Nurse Assistant
## 5143                                                                                                                                                                                                 Medical Assistant
## 5144                                                                                                                                                                                              Veterinary Assistant
## 5145                                                                                                                                                                                             Radiologic Technician
## 5146                                                                                                                                                                                                   Nurse Assistant
## 5147                                                                                                                                                                                                 Medical Assistant
## 5148                                                                                                                                                                                              Veterinary Assistant
## 5149                                                                                                                                                                                               Pharmacy Techinican
## 5150                                                                                                                                                                                             Radiologic Technician
## 5151                                                                                                                                                                                      Medical Assistant with X-Ray
## 5152                                                                                                                                                                                     Sterile Processing Technician
## 5153                                                                                                                                                                                            Chiropractic Assistant
## 5154                                                                                                                                                                                            Patient Care Assistant
## 5155                                                                                                                                                                                              Veterinary Assistant
## 5156                                                                                                                                                                                               Pharmacy Technician
## 5157                                                                                                                                                                                                   Medication Aide
## 5158                                                                                                                                                                                            Patient Care Assistant
## 5159                                                                                                                                                                                                  Nurse Assistants
## 5160                                                                                                                                                                                              Veterinary Assistant
## 5161                                                                                                                                                                                                  Dental Assistant
## 5162                                                                                                                                                                                                    EKG Technician
## 5163                                                                                                                                                                                      Medical Assistant with X-Ray
## 5164                                                                                                                                                                                     Sterile Processing Technician
## 5165                                                                                                                                                                                            Chiropractic Assistant
## 5166                                                                                                                                                                                                        Phlebotomy
## 5167                                                                                                                                                                                               Pharmacy Technician
## 5168                                                                                                                                                                                          Medical Insurance coding
## 5169                                                                                                                                                                                            Radiologic Technicians
## 5170                                                                                                                                                                                             Physical Therapy Aide
## 5171                                                                                                                                                                                                 Medical Assistant
## 5172                                                                                                                                                                                            Chiropractic Assistant
## 5173                                                                                                                                                                                     Sterile Processing Technician
## 5174                                                                                                                                                                                      Medical Assistant with X-Ray
## 5175                                                                                                                                                                                               Pharmacy Technician
## 5176                                                                                                                                                                                            Patient Care Assistant
## 5177                                                                                                                                                                                              Veterinary Assistant
## 5178                                                                                                                                                                                  Software & Application Developer
## 5179                                                                                                                                                                                  Interplay Learning - Electrician
## 5180                                                                                                                                                                  Interplay Learning - Plumbing Technology/Plumber
## 5181                                                                                                     Interplay Learning - Heating Air Conditioning Ventilation and Refrigeration Maintenance Technology/Technician
## 5182                                                                                                                                                                                                  Goodbee Plumbing
## 5183                                                                                                                                                                      Computer Support Specialist - Apprenticeship
## 5184                                                                                                                                                                                        Carpentry - Apprenticeship
## 5185                                                                                                                                                                Landscaping Management Technician - Apprenticeship
## 5186                                                                                                                                                                     ABC of Central Texas Inc. Sheet Metal Program
## 5187                                                                                                                                                                        ABC of Central Texas Inc. Plumbing Program
## 5188                                                                                                                                                                     ABC of Central Texas Inc. Pipefitting Program
## 5189                                                                                                                                                                            ABC of Central Texas Inc. HVAC Program
## 5190                                                                                                                                                           Heating & Air Conditioning Installer/Service Technician
## 5191                                                                                                                                                                                 Jefferson Plumbing Apprenticeship
## 5192                                                                                                                                                                                    Nueces Plumbing Apprenticeship
## 5193                                                                                                                                                                                   Hidalgo Plumbing Apprenticeship
## 5194                                                                                                                                                                                        Basic Class A CDL Training
## 5195                                                                                                                                                                                                            Barber
## 5196                                                                                                                                                                                                     Pharmecy tech
## 5197                                                                                                                                                                                              medical Front office
## 5198                                                                                                                                                                                                       Cosmetology
## 5199                                                                                                                                                                                                     Pharmecy tech
## 5200                                                                                                                                                                                                              HVAC
## 5201                                                                                                                                                                                                       Electrician
## 5202                                                                                                                                                                                                    Cyber Security
## 5203                                                                                                                                                                               Medical Billing & Coding Specialist
## 5204                                                                                                                                                                                     Microsoft Office Suite Course
## 5205                                                                                                                                                                                                  Dental Assisting
## 5206                                                                                                                                                                                  Comp TIA A+ Certification Course
## 5207                                                                                                                                                                         Comp TIA Networking+ Certification Course
## 5208                                                                                                                                                                                       Nurse Aide Training Program
## 5209                                                                                                                                                                                              medical Front office
## 5210                                                                                                                                                                                                        Phlebotomy
## 5211                                                                                                                                                                                           Patient Care Technician
## 5212                                                                                                                                                                         Collision Repair & Refinishing Technology
## 5213                                                                                                                                                                                       Nurse Aide Training Program
## 5214                                                                                                                                                                                                  Dental Assisting
## 5215                                                                                                                                                                                        Medical Billing and Coding
## 5216                                                                                                                                                                                        Medical Clinical Assistant
## 5217                                                                                                                                                                                                   Building Trades
## 5218                                                                                                                                                                                         Paralegal Studies Program
## 5219                                                                                                                                                                                              Cloud Administration
## 5220                                                                                                                                                                                                      IT Jumpstart
## 5221                                                                                                                                                                                                            SMAW 1
## 5222                                                                                                                                                                                                            SMAW 2
## 5223                                                                                                                                                                                                            SMAW 3
## 5224                                                                                                                                                                                                            SMAW 4
## 5225                                                                                                                                                                                                            SMAW 5
## 5226                                                                                                                                                                                                            GTAW12
## 5227                                                                                                                                                                                                            GTAW13
## 5228                                                                                                                                                                                                            GTAW14
## 5229                                                                                                                                                                                                            GTAW15
## 5230                                                                                                                                                                                                            GTAW16
## 5231                                                                                                                                                                                 Full Stack Web Development - JAVA
## 5232                                                                                                                                                                     Operation Phantom Support Retail Managers RAP
## 5233                                                                                                                                                                                            FIBER OPTICS INSTALLER
## 5234                                                                                                                                                            Real World of Work Career Exploration/Awareness Skills
## 5235                                                                                                                                                        Real World of Work 101 Basics: Job-Seeking/Changing Skills
## 5236                                                                                                                                                                      Real World of Work Human Resources Discovery
## 5237                                                                                                                                                                 Real World of Work Operations and Legal Discovery
## 5238                                                                                                                                                                  Real World of Work Sales and Marketing Discovery
## 5239                                                                                                                                                               Real World of Work Accounting and Finance Discovery
## 5240                                                                                                                                            Real World of Work Technology Development and Infrastructure Discovery
## 5241                                                                                                                              Real World of Work Specialist Shadowing: Workforce Development and Training-CIP Code
## 5242                                                                                                                           Sunset Logistics Inc. (Truck and Bus Driver/Commercial Vehicle Operator and Instructor)
## 5243                                                                                                                                                                                                        Phlebotomy
## 5244                                                                                                                                                                              Certified Clinical Medical Assistant
## 5245                                                                                                                                                                                                 Nursing Assistant
## 5246                                                                                                                                                                                        Medical Billing and Coding
## 5247                                                                                                                                                                                            Maintenance Technician
## 5248                                                                                                                                                                                 Professional Truck Driving Course
## 5249                                                                                                                                                                                           Texas Injection Molding
## 5250                                                                                                                                                                                 Bookkeeping Administration Expert
## 5251                                                                                                                                                                                                       Comp Tia A+
## 5252                                                                                                                                                                               Medical Billing & Coding Specialist
## 5253                                                                                                                                                                                           Patient Care Technician
## 5254                                                                                                                                                                                    Medical Front Office Assistant
## 5255                                                                                                                                                                                          Medical Transcriptionist
## 5256                                                                                                                                                                                  Sales and Marketing Professional
## 5257                                                                                                                                                                                     Health Information Specialist
## 5258                                                                                                                                                                                               Pharmacy Technician
## 5259                                                                                                                                                                                 Bookkeeping Administration Expert
## 5260                                                                                                                                                                           Cloud Security Professional (CCSP) 2018
## 5261                                                                                                                                                                                                 Medical Assistant
## 5262                                                                                                                                                                                   Administrative Office Assistant
## 5263                                                                                                                                                                               Comp TIA A+ Network+ Security+ CCNA
## 5264                                                                                                                                                                                  Medical Administrative Assistant
## 5265                                                                                                                                                                                                    Cyber Security
## 5266                                                                                                                                                                                     Home Health Aide Professional
## 5267                                                                                                                                                                          Information Technology Level 1 Help Desk
## 5268                                                                                                                                                                                              Office Administrator
## 5269                                                                                                                                                                                                 Office Management
## 5270                                                                                                                                                                                                         Paralegal
## 5271                                                                                                                                                                                       Certified Nursing Assistant
## 5272                                                                                                                                                                                   Certified Phlebotomy Technician
## 5273                                                                                                                                                                         Medical Billing and Coding Hybrid Program
## 5274                                                                                                                                                                                  Medical Assistant Hybrid Program
## 5275                                                                                                                                                                        South Texas Associated General Contractors
## 5276                                                                                                                                                                                                           CAVALRY
## 5277                                                                                                                                                                       Licensed Unmanned Vehicle Pilot Certificate
## 5278                                                                                                                                                                       Licensed Unmanned Vehicle Pilot Certificate
## 5279                                                                                                                                                                       Licensed Unmanned Vehicle Pilot Certificate
## 5280                                                                                                                                                                       Licensed Unmanned Vehicle Pilot Certificate
## 5281                                                                                                                                                                          UA Dallas LU #100 Plumbers & Pipefitters
## 5282                                                                                                                                                                                  Industrial Sewing Apprenticeship
## 5283                                                                                                                                                                                                Basic Pipe Welding
## 5284                                                                                                                                                                             Combination Structural & Pipe Welding
## 5285                                                                                                                                                                                                 Structural Fitter
## 5286                                                                                                                                                                                           Fundamentals of Welding
## 5287                                                                                                                                                                                             PHLEBOTOMY TECHNICIAN
## 5288                                                                                                                                                                                      electrocardiogram technician
## 5289                                                                                                                                                                             Electrician Journeyman Apprenticeship
## 5290                                                                                                                                                                                      Class A CDL Training Program
## 5291                                                                                                                                                                                      Class B CDL Training Program
## 5292                                                                                                                                                                                         Professional Truck Driver
## 5293                                                                                                                                                                                                 School Bus Driver
## 5294                                                                                                                                                                                          CDL ENDORSEMENT TRAINING
## 5295                                                                                                                                                                                       TRUCK DRIVER TRAINING - CDL
## 5296                                                                                                                                                                                         API 1104 Pipeline Welding
## 5297                                                                                                                                                 GTAW SMAW & FCAW Combo Welder- Tig Stick & Flux Cored Arc Welding
## 5298                                                                                                                                                                            Exotic Alloy - Stainless Steel Welding
## 5299                                                                                                                                                                          SMAW Pipe Stick Shield Metal Arc Welding
## 5300                                                                                                                                                                         SMAW Plate Stick Shield Metal Arc Welding
## 5301                                                                                                                                                                           FCAW & GMAW Pipe Flux Cored Arc Welding
## 5302                                                                                                                                                                          FCAW & GMAW Plate Flux Cored Arc Welding
## 5303                                                                                                                                                                    GTAW & SMAW Pipe Combo-Tig & Stick Arc Welding
## 5304                                                                                                                                                                            GTAW Tig Pipe Gas Tungsten Arc Welding
## 5305                                                                                                                                                                                                      Cybesecurity
## 5306                                                                                                                                                                                                 Nursing Assistant
## 5307                                                                                                                                                                                                        Networking
## 5308                                                                                                                                                                                         Medical Assistant Program
## 5309                                                                                                                                                                                                  Vocational Nurse
## 5310                                                                                                                                                                                             Truck Driver Training
## 5311                                                                                                                                                                                   Aviation Maintenance Technician
## 5312                                                                                                                                                                          Comprehensive Clinical Medical Assistant
## 5313                                                                                                                                                                                          Construction Electrician
## 5314                                                                                                                                                               Comprehensive Medical Billing and Coding Specialist
## 5315                                                                                                                                                                           Comprehensive  Dental Assistant Program
## 5316                                                                                                                                                                                 Patient Care Technician/Assistant
## 5317                                                                                                                                                                                       Pharmacy Technician Program
## 5318                                                                                                                                                                                   Solar Energy Technician Program
## 5319                                                                                                                                                                                        Clinical Medical Assistant
## 5320                                                                                                                                                                                       Pharmacy Technician Program
## 5321                                                                                                                                                                                       Full Stac k Web Development
## 5322                                                                                                                                                                                           Full-Stack Data Science
## 5323                                                                                                                                                                                        Professional Medical Coder
## 5324                                                                                                                                                                              CLINICAL MEDICAL ASSISTANT ASSOCIATE
## 5325                                                                                                                                                            Nursing Assistant/Aide and Patient Care Assistant/Aide
## 5326                                                                                                                                                                                           evolution of her beauty
## 5327                                                                                                                                                                                  Customer Service Representatives
## 5328                                                                                                                                                                                         Transportation Dispatcher
## 5329                                                                                                                                                              Nursing Assistant Aide & Patient Care Assistant Aide
## 5330                                                                                                                                                                                   Business Operations Specialists
## 5331                                                                                                                                                                                             Book Accounting Clerk
## 5332                                                                                                                                                              (PBBI) Phoenix Bodi and Beauty Institute- Esthectian
## 5333                                                                                                                                                        (PBBI) Phoenix Bodi and Beauty Institute - Master Educator
## 5334                                                                                                                                                                      Cosmetology - Medical Aesthetics/Esthetician
## 5335                                                                                                                                                                                  Customer Service Respresentative
## 5336                                                                                                                                                            Professional Educator (Formerly Known Master Educator)
## 5337                                                                                                                                                                           Executive Assistant/Executive Secretary
## 5338                                                                                                                                                                          Small Business Administration/Management
## 5339                                                                                                                                                                     Beauty Professional CE - Spa.Salon Management
## 5340                                                                                                                                                                                    Business Operations Specialist
## 5341                                                                                                                                                                                      General & Operations Manager
## 5342                                                                                                                                                                        Business Management Technology Certificate
## 5343                                                                                                                                                                                         Transportation Dispatcher
## 5344                                                                                                                                                  Nursing Assistant/Aide (CNA) & Patient Care Assistant/Aide (PTC)
## 5345                                                                                                                                                                            SOFTWARE APPLICATION DEVELOPER TESTING
## 5346                                                                                                                                                                    INFORMATION TECHNOLOGY SPECIALIST IT HELP DESK
## 5347                                                                                                                                                                                  DATA ANALYST DATABASE TECHNICIAN
## 5348                                                                                                                                                                                 CYBER SECURITY SUPPORT TECHNICIAN
## 5349                                                                                                                                                                                                              HVAC
## 5350                                                                                                                                                                                                          Plumbing
## 5351                                                                                                                                                                                     Building Maintenance Repairer
## 5352                                                                                                                                                                                                           Rigging
## 5353                                                                                                                                                                                           Commercial Truck Driver
## 5354                                                                                                                                                                                    Material Coordinator Logistics
## 5355                                                                                                                                                                   Appliance Repair Technician - Cooking Specialty
## 5356                                                                                                                                                                   Appliance Repair Technician - Laundry Specialty
## 5357                                                                                                                                                             Appliance Repair Technician - Refrigeration Specialty
## 5358                                                                                                                                                                                       FGL Construction Group LLC.
## 5359                                                                                                                                                                                             Phlebotomy Technician
## 5360                                                                                                                                                                                                   Nurse Assistant
## 5361                                                                                                                                                                           Prelicensure Vocational Nursing Program
## 5362                                                                                                                                                              Associate Degree in Nursing LVN to RN Bridge Program
## 5363                                                                                                                                                                     Prelicensure Baccalaureate in Nursing Program
## 5364                                                                                                                                                                                       Child Development Associate
## 5365                                                                                                                                                                        Google IT Support Professional Certificate
## 5366                                                                                                                                                                    Google Data Analytics Professional Certificate
## 5367                                                                                                                                                                Google Project Management Professional Certificate
## 5368                                                                                                                                                                         Google UX Design Professional Certificate
## 5369                                                                                                                                                         Google IT Automation with Python Professional Certificate
## 5370                                                                                                                                                                                    CompTIA Security+  Certificate
## 5371                                                                                                                                                                             Hack Reactor Data Science Certificate
## 5372                                                                                                                                                          Advanced Manufacturing Production Technician Certificate
## 5373                                                                                                                                                                                           CompTIA A+  Certificate
## 5374                                                                                                                                                                                     CompTIA Network+  Certificate
## 5375                                                                                                                                                                             CompTIA IT Fundamentals+  Certificate
## 5376                                                                                                                                                                          Drone Pilot Federal Aviation Certificate
## 5377                                                                                                                                                                     Hack Reactor Software Engineering Certificate
## 5378                                                                                                                                                                                Phlebotomy Technician/Phlebotomist
## 5379                                                                                                                                                                                        Medical Clinical Assistant
## 5380                                                                                                                                                                                                 Nursing Assistant
## 5381                                                                                                                                                                                                 Patient Care tech
## 5382                                                                                                                                                                 Heating Ventilation and Air Conditioning - Hybrid
## 5383                                                                                                                                                                 Heating Ventilation and Air Conditioning - Hybrid
## 5384                                                                                                                                                                                           Database Administration
## 5385                                                                                                                                                                                      Nurse Aide/Nursing Assistant
## 5386                                                                                                                                                                                       Operations Research Analyst
## 5387                                                                                                                                                                                 Applications Software Development
## 5388                                                                                                                                                                Computer Support Specialist - Desktop Support Tech
## 5389                                                                                                                                                                             Computer Systems Analyst (IT Analyst)
## 5390                                                                                                                                                                                                 Medical Assistant
## 5391                                                                                                                                                                                             Phlebotomy Technician
## 5392                                                                                                                                                                                        Dental Assisting Assistant
## 5393                                                                                                                                                                                                   Medication Aide
## 5394                                                                                                                                                              Nurse Assistant aide and patient Care assistant aide
## 5395                                                                                                                                                                                              Coding Clarified LLC
## 5396                                                                                                                                                                                       CDL Driver Training Program
## 5397                                                                                                                                                                       Associate Project Management CAPM Exam Prep
## 5398                                                                                                                                                                              Agile Practitioner PMI-ACP Exam Prep
## 5399                                                                                                                                                                                Project Management Ready Exam Prep
## 5400                                                                                                                                                                 Entrepreneurship and Small Business ESB Exam Prep
## 5401                                                                                                                                                                   Microsoft Operation Specialist - Word Exam Prep
## 5402                                                                                                                                                             Microsoft Operation Specialist - PowerPoint Exam Prep
## 5403                                                                                                                                                                  Microsoft Operation Specialist - Excel Exam Prep
## 5404                                                                                                                                                                                              Help Desk Technician
## 5405                                                                                                                                                                                              System Administrator
## 5406                                                                                                                                                                                                 Office Specialist
## 5407                                                                                                                                                                                                        CompTIA A+
## 5408                                                                                                                                                                                                  CompTIA Network+
## 5409                                                                                                                                                                                                 CompTIA Security+
## 5410                                                                                                                                                             Implementing and Administering Cisco Solutions (CCNA)
## 5411                                                                                                                                                                                                   Microsoft Excel
## 5412                                                                                                                                                                                    Excellence in Customer Service
## 5413                                                                                                                                                                    Introducation to Agile and Scrum Methodologies
## 5414                                                                                                                                                                                   Project Management Fundamentals
## 5415                                                                                                                                     Implementing and Operating Cisco Enterprise Network Core Technologies (ENCOR)
## 5416                                                                                                                                                                                      Microsoft Azure Fundamentals
## 5417                                                                                                                                                                                     Microsoft Azure Administrator
## 5418                                                                                                                                                                                                 ITIL 4 Foundation
## 5419                                                                                                                                                                       Advanced Programming Techniques with Python
## 5420                                                                                                                                                                                                  Microsoft Access
## 5421                                                                                                                                                                                                 Microsoft Project
## 5422                                                                                                                                                                                        Using Microsoft Windows 10
## 5423                                                                                                                                                                            Providing Outstanding Customer Service
## 5424                                                                                                                                                                     CompTIA IT Fundamentals+ Certification (ITF+)
## 5425                                                                                                                                                                                                        Windows 10
## 5426                                                                                                                                                       Certified Information Systems Security Professional (CISSP)
## 5427                                                                                                                                                                                         SQL Querying Fundamentals
## 5428                                                                                                                                                                  Certified Associate in Project Management (CAPM)
## 5429                                                                                                                                                                                    CompTIA Project+ Certification
## 5430                                                                                                                                                                                                    Microsoft Word
## 5431                                                                                                                                                                                              Microsoft PowerPoint
## 5432                                                                                                                                                                                          Managing Modern Desktops
## 5433                                                                                                                                                                          Introducation to Programming with Python
## 5434                                                                                                                                                                                                 Microsoft Outlook
## 5435                                                                                                                                                                                     Project Management Essentials
## 5436                                                                                                                                                                                 CompTIA A+ Part 1 (Exam 220-1101)
## 5437                                                                                                                                                                                 CompTIA A+ Part 2 (Exam 220-1102)
## 5438                                                                                                                                                                             CompTIA Cybersecurity Analyst (CySA+)
## 5439                                                                                                                                                                                                    CompTIA Linux+
## 5440                                                                                                                                                                                                  Dental Assisting
## 5441                                                                                                                                                                            Heavy Equipment Operator Certification
## 5442                                                                                                                                                                                                    EKG Technician
## 5443                                                                                                                                                                                               Pharmacy Technician
## 5444                                                                                                                                                                                             Phlebotomy Technician
## 5445                                                                                                                                                              National Flooring Contractors Appretniceship Program
## 5446                                                                                                                                                              Texas Rural Water Association Apprenticeship Program
## 5447                                                                                                                                                                                         Red Knight Solutions - IT
## 5448                                                                                                                                                                                                     IT Generalist
## 5449                                                                                                                                                                                                     IT Generalist
## 5450                                                                                                                                                                                                     IT Generalist
## 5451                                                                                                                                                                                                     IT Generalist
## 5452                                                                                                                                                                                                     IT Generalist
## 5453                                                                                                                                                                                                     IT Generalist
## 5454                                                                                                                                                                                                     IT Generalist
## 5455                                                                                                                                                                                        Elementary School Teachers
## 5456                                                                                                                                                                          English B.A. with Teaching Certification
## 5457                                                                                                                                                                           Mathematics with teaching Certification
## 5458                                                                                                                                                                                        Clinical Medical Assistant
## 5459                                                                                                                                                                                                  Dental Assisting
## 5460                                                                                                                                                                                               Pharmacy Technician
## 5461                                                                                                                                                                                             Phlebotomy Technician
## 5462                                                                                                                                                                                            DATS Rio Grande Valley
## 5463                                                                                                                                                                                     IT Pre-Apprenticeship Program
## 5464                                                                                                                                                                                  Pre-Apprenticeship - Electrician
## 5465                                                                                                                                                                                       Combination Pipeline Welder
## 5466                                                                                                                                                                                           Introduction to Welding
## 5467                                                                                                                                   Introduction to Gas Tungsten Arc Welding (GTAW) / Tungsten Inert Gas (TIG) Pipe
## 5468                                                                                                                                                                                      Stainless Steel Pipe Welding
## 5469                                                                                                                                                                                     Industrial Electrical Program
## 5470                                                                                                                                  Introduction to Gas Tungsten Arc Welding (GTAW) / Tungsten Inert Gas (TIG) Plate
## 5471                                                                                                                                                               Gas Metal Arc Welding / Flux Cored Arc Welding Pipe
## 5472                                                                                                                                                                                      Specialty Alloy Pipe Welding
## 5473                                                                                                                                                                                                 Advanced Pipeline
## 5474                                                                                                                                                                                           Combination Pipe Welder
## 5475                                                                                                                                                                                          Introduction to Pipeline
## 5476                                                                                                                                                                   Introduction to Shielded Metal Arc Welding Pipe
## 5477                                                                                                                                                              Gas Metal Arc Welding / Flux Cored Arc Welding Plate
## 5478                                                                                                                                                                      BICSI Cabling Specialist Certificate Program
## 5479                                                                                                                                                  Carpentry and Construction Safety Specialist Certificate Program
## 5480                                                                                                                                                Administrative Assistant with Customer Service Certificate Program
## 5481                                                                                                                                                                   Computer Support Specialist Certificate Program
## 5482                                                                                                                                             Medical Coding and Health Inof Technician (MCHIT) Certificate Program
## 5483                                                                                                                                                    Computer Support and Networking Specialist Certificate Program
## 5484                                                                                                                                                 Computer Support Specialist and BICSI Cabling Certificate Program
## 5485                                                                                                                                                          Production Technician Certificate Training Program (CPT)
## 5486                                                                                                                                                           Productio Technician Certificate Training Program (CPT)
## 5487                                                                                                                                                                                  NCCCO Crane Certification Course
## 5488                                                                                                                                                                       NCCCO Rigger-Signalman Certification Course
## 5489                                                                                                                                              Region 2 Alternative Teacher Certification Program: Core EC-6  w/STR
## 5490                                                                                                                                               Region 2 Alternative Teacher Certification Program: Core 4-8  w/STR
## 5491                                                                                                                                              Region 2 Alternative Teacher Certification Program:  ELAR 4-8  w/STR
## 5492                                                                                                                                            Region 2 Alternative Teacher Certification Program:  ELAR/SS 4-8 w/STR
## 5493                                                                                                                                                     Region 2 Alternative Teacher Certification Program:  Math 4-8
## 5494                                                                                                                                              Region 2 Alternative Teacher Certification Program: Math/Science 4-8
## 5495                                                                                                                             Region 2 Partners in Educational Leadership (PEL): Principal as Instructional Leaders
## 5496                                                                                                                                              Region 2 Alternative Teacher Certification Program:  Journalism 7-12
## 5497                                                                                                                                           Region 2 Alternative Teacher Certification Program:  LOTE/Spanish EC-12
## 5498                                                                                                                                Region 2 Alternative Teacher Certification Program:  Technology Applications EC-12
## 5499                                                                                                                                                   Region 2 Alternative Teacher Certification Program:  ELAR w/STR
## 5500                                                                                                                                           Region 2 Alternative Teacher Certification Program:  Social Studies 4-8
## 5501                                                                                                                                                     Region 2 Alternative Teacher Certification Program:  PE EC-12
## 5502                                                                                                                                                     Region 2 Alternative Teacher Certification Program: Math 7-12
## 5503                                                                                                                                                   Region 2 Alternative Teacher Certification Program: Sciene 7-12
## 5504                                                                                                                                      Region 2 Alternative Teacher Certification Program:  Special Education EC-12
## 5505                                                                                                                                                    Region 2 Alternative Teacher Certification Program:  ELAR 7-12
## 5506                                                                                                                                          Region 2 Alternative Teacher Certification Program:  Social Studies 7-12
## 5507                                                                                                                                                  Region 2 Alternative Teacher Certification Program:  Science 4-8
## 5508                                                                                                                                                                                        Dental Assisting/Assistant
## 5509                                                                                                                                                                                          Commercial Truck Driving
## 5510                                                                                                                                                                                  Commercial Electrical Technology
## 5511                                                                                                                                                                          Commercial Electronic Systems Technology
## 5512                                                                                                                                                                                                Welding Technology
## 5513                                                                                                                                                                                                  Dental Assisting
## 5514                                                                                                                                                                  Residency with BA/BS degree & Government License
## 5515                                                                                                                                                                                 Residency with Government License
## 5516                                                                                                                                                                                       Commercial Vehicle Operator
## 5517                                                                                                                                                                                     Health Information Technician
## 5518                                                                                                                                                                                              Nurse Aide On Campus
## 5519                                                                                                                                                                                             Phlebotomy  on campus
## 5520                                                                                                                                                                                                EKG/Telemetry Tech
## 5521                                                                                                                                                                                       Medical Assistant On campus
## 5522                                                                                                                                                                                                 Phlebotomy Hybrid
## 5523                                                                                                                                                                                              Pharmacy Techinician
## 5524                                                                                                                                                                                         Medical Assistant  Hybrid
## 5525                                                                                                                             Medical Administrative Assistant or Medical Records and Health Information Technician
## 5526                                                                                                                                                                      Health Information Technician/Medical Coding
## 5527                                                                                                                                                                                      Pharmacy Technician Extended
## 5528                                                                                                                                                                                  Medical Administrative Assistant
## 5529                                                                                                                                                                                              Phlebotomy on Campus
## 5530                                                                                                                                                                                       Medical Assistant On campus
## 5531                                                                                                                                                                                          Medical Assistant Hybrid
## 5532                                                                                                                                                                                                 Phlebotomy Hybrid
## 5533                                                                                                                                                                                      Pharmacy Technician Extended
## 5534                                                                                                                                                                                   Business Operations Specialists
## 5535                                                                                                                                                                                  Customer Service Representatives
## 5536                                                                                                                                                                                         Transportation Dispatcher
## 5537                                                                                                                                                              Nursing Assistant Aide & Patient Care Assistant Aide
## 5538                                                                                                                                                                                                      CDL Training
## 5539                                                                                                                                                                                   Aviation Maintenance Technician
## 5540                                                                                                                                                                           Aviation Maintenance Technical Engineer
## 5541                                                                                                                                                                                            Maintenance Technician
## 5542                                                                                                                                                          Fast Track CDL LLC - Commercial Driver's License Program
## 5543                                                                                                                                                                                CDL Truck driving Training Program
## 5544                                                                                                                                                                                    From Ordinary to Extraordinary
## 5545                                                                                                                                                                                    From Ordinary to Extraordinary
## 5546                                                                                                                                                                             DJH Express National Training Academy
## 5547                                                                                                                                                                                               Nurse Aide Training
## 5548                                                                                                                                                                                               Class A Barber 1000
## 5549                                                                                                                                                                                               Massage Therapy 600
## 5550                                                                                                                                                                                                 Medical Assisting
## 5551                                                                                                                                                                                  Administrative Medical Assistant
## 5552                                                                                                                                                                                                   Welding Level 2
## 5553                                                                                                                                                                                                   Welding Level 1
## 5554                                                                                                                                                                                      EducationBachelor of Science
## 5555                                                                                                                                                                                       Nursing Bachelor of Science
## 5556                                                                                                                                                                          Clinical Lab Science Bachelor of Science
## 5557                                                                                                                                                            Child Development Bachelor of Science/Bachelor of Arts
## 5558                                                                                                                                                                                   Kinesiology Bachelor of Science
## 5559                                                                                                                                                                 Health Administration Bachelor of Applied Science
## 5560                                                                                                                                                                      Business Bachelor of Business Administration
## 5561                                                                                                                                                                                     Education Bachelor of Science
## 5562                                                                                                                                                                    Accounting Bachelor of Business Administration
## 5563                                                                                                                                           Biology Concentration in Cell and Molecular Biology Bachelor of Science
## 5564                                                                                                                                                              Biology Concentration in Ecology Bachelor of Science
## 5565                                                                                                                                                            Biology with Teacher Certification Bachelor of Science
## 5566                                                                                                                                                                                          Biology Bachelor of Arts
## 5567                                                                                                                                                                                       Biology Bachelor of Science
## 5568                                                                                                                                        Water Resources Science & Technology Bachelor of Applied Arts and Sciences
## 5569                                                                                                                                                          Water Resources Science & Technology Bachelor of Science
## 5570                                                                                                                                      Management Human Resources Concentration Bachelor of Business Administration
## 5571                                                                                                                              Management Supply Chain Management Concentration Bachelor of Business Administration
## 5572                                                                                                                                                                    Management Bachelor of Business Administration
## 5573                                                                                                                                                        Mathematics with Teacher Certification Bachelor of Science
## 5574                                                                                                                                                                                    Psychology Bachelor of Science
## 5575                                                                                                                                                               Spanish with Teacher Certification Bachelor of Arts
## 5576                                                                                                                                             Interdisciplinary Studies Generalist (Grades 4-8) Bachelor of Science
## 5577                                                                                                                                                      International Management Bachelor of Business Administration
## 5578                                                                                                                                                                  Kinesiology Exercise Science Bachelor of Science
## 5579                                                                                                                                                           Kinesiology Exercise Science/Pre-PT Bachelor of Science
## 5580                                                                                                                                                 Kinesiology Physical Education (Grades EC-12) Bachelor of Science
## 5581                                                                                                                                     Management Entrepreneurship Concentration Bachelor of Business Administration
## 5582                                                                                                                                        History with History Teacher Certification Social Studies Bachelor of Arts
## 5583                                                                                                                                        Information Technology Concentration Bachelor of Applied Arts and Sciences
## 5584                                                                                                     Information Technology/Information Assurance and Security Concentration Bachelor of Applied Arts and Sciences
## 5585                                                                                                                                   Interdisciplinary Studies Bilingual Generalist (Grades 4-8) Bachelor of Science
## 5586                                                                                                                                  Interdisciplinary Studies Bilingual Generalist (Grades EC-6) Bachelor of Science
## 5587                                                                                                                 Interdisciplinary Studies Concentration (Non-Certification) Bachelor of Applied Arts and Sciences
## 5588                                                                                                                                                                       Finance Bachelor of Business Administration
## 5589                                                                                                Fire and Emergency Services Administration-Fire Administration Concentration Bachelor of Applied Arts and Sciences
## 5590                                                                                                  Fire and Emergency Services Administration-Homeland Security Concentration Bachelor of Applied Arts and Sciences
## 5591                                                                                                                                                              General Business Bachelor of Business Administration
## 5592                                                                                                                                                                       General Studies Bachelor of General Studies
## 5593                                                                                                                                                       History with History Teacher Certification Bachelor of Arts
## 5594                                                                                                                              Criminology and Criminal Justice Concentration Bachelor of Applied Arts and Sciences
## 5595                                                                                                                                                                  Cyber Engineering Technology Bachelor of Science
## 5596                                                                                                                                                                                Cyber Security Bachelor of Science
## 5597                                                                                                                 Early Childhood Education Concentration (Non-Certification) Bachelor of Applied Arts and Sciences
## 5598                                                                                                                                                     Electronic Systems Engineering Technology Bachelor of Science
## 5599                                                                                                                                                               English with Teacher Certification Bachelor of Arts
## 5600                                                                                                                                                      Business Concentration Bachelor of Applied Arts and Sciences
## 5601                                                                                                                                                                             Child Development Bachelor of Science
## 5602                                                                                                                                                                                    Communication Bachelor of Arts
## 5603                                                                                                 Computer Information Systems Information Assurance and Security Concentration Bachelor of Business Administration
## 5604                                                                                                                                                  Computer Information Systems Bachelor of Business Administration
## 5605                                                                                                                                                                              Computer Science Bachelor of Science
## 5606                                                                                                                                                                                 Entry-Level Truck Driver Training
## 5607                                                                                                                                                                                     Innovative Workforce Projects
## 5608                                                                                                                                                                                     Innovative Workforce Projects
## 5609                                                                                                                                                                                     Innovative Workforce Projects
## 5610                                                                                                                                                                            Teacher Certification FasTrack Program
## 5611                                                                                                                                                                    Teacher Certification FasTrack Program (52wks)
## 5612                                                                                                                                                                                                    TX CDL Class A
## 5613                                                                                                                                                                                               IT ProBasic Program
## 5614                                                                                                                                                                Information Technology Security and Administration
## 5615                                                                                                                                                                                               IT ProBasic Program
## 5616                                                                                                                                                                Information Technology Security and Administration
## 5617                                                                                                                                                                                               IT ProBasic Program
## 5618                                                                                                                                                                Information Technology Security and Administration
## 5619                                                                                                                                                                                               IT ProBasic Program
## 5620                                                                                                                                                                Information Technology Security and Administration
## 5621                                                                                                                                                                                               IT ProBasic Program
## 5622                                                                                                                                                                Information Technology Security and Administration
## 5623                                                                                                                                                                                               IT ProBasic Program
## 5624                                                                                                                                                                Information Technology Security and Administration
## 5625                                                                                                                                                                                               IT ProBasic Program
## 5626                                                                                                                                                                Information Technology Security and Administration
## 5627                                                                                                                                                                                               IT ProBasic Program
## 5628                                                                                                                                                                Information Technology Security and Administration
## 5629                                                                                                                                                                                               IT ProBasic Program
## 5630                                                                                                                                                                Information Technology Security and Administration
## 5631                                                                                                                                                                                               IT ProBasic Program
## 5632                                                                                                                                                                Information Technology Security and Administration
## 5633                                                                                                                                                    Information Technology Security and Administration - Bilingual
## 5634                                                                                                                                                                                               IT ProBasic Program
## 5635                                                                                                                                                                Information Technology Security and Administration
## 5636                                                                                                                                                    Information Technology Security and Administration - Bilingual
## 5637                                                                                                                                                                                               IT ProBasic Program
## 5638                                                                                                                                                                Information Technology Security and Administration
## 5639                                                                                                                                                    Information Technology Security and Administration - Bilingual
## 5640                                                                                                                                                                                         Paintless Dent Repair-200
## 5641                                                                                                                                                                                          Paintless Dent Repair-80
## 5642                                                                                                                                                                                         Paintless Dent Repair-160
## 5643                                                                                                                                                                                                     Total Recon 3
## 5644                                                                                                                                                                                         Paintless Dent Repair-480
## 5645                                                                                                                                                                                            Paint and Dent Recon 4
## 5646                                                                                                                                                                               Certified Nurse Aide (CNA) Training
## 5647                                                                                                                                                                 Air Conditioning Technician (Spanish Instruction)
## 5648                                                                                                                                                                                                   Pipefitting 101
## 5649                                                                                                                                                                                                   Scaffolding 101
## 5650                                                                                                                                                                                         Mobile Crane Operator 101
## 5651                                                                                                                                                                                                    Electrical 101
## 5652                                                                                                                                                                                                    Millwright 101
## 5653                                                                                                                                                                                   NCCER Core and Intro to Level I
## 5654                                                                                                                                                                                           Construction Management
## 5655                                                                                                                                                                                                  Drywall Mechanic
## 5656                                                                                                                                                                                           Commercial Truck Driver
## 5657                                                                                                                                                                                                 IT Apprenticeship
## 5658                                                                                                                                                                                                  Digital Marketer
## 5659                                                                                                                                                                                   Customer Service Representative
## 5660                                                                                                                                                                                                  Public Relations
## 5661                                                                                                                                                                                                  Graphic Designer
## 5662                                                                                                                                                                          Information Technology - Project Manager
## 5663                                                                                                                                                                                          User Experience Designer
## 5664                                                                                                                                                                                     Class A Barber and Cross Over
## 5665                                                                                                                                                                                 Cyber Security Support Technician
## 5666                                                                                                                                                                                       Computer Support Specialist
## 5667                                                                                                                                                                                        Network Support Specialist
## 5668                                                                                                                                                                                            Teacher Residency 4000
## 5669                                                                                                                                                                                            Teacher Residency 5000
## 5670                                                                                                                                                                                            Teacher Residency 4000
## 5671                                                                                                                                                                                            Teacher Residency 5000
## 5672                                                                                                                                                                    Inspire Texas Educator Preparation by Region 4
## 5673                                                                                                                                                                                               Nurse Aide Training
## 5674                                                                                                                                                                                           Medication Aide Program
## 5675                                                                                                                                                                       Full Stack Web Developer with Ruby-on-Rails
## 5676                                                                                                                                                                                                 Medical Assistant
## 5677                                                                                                                                                                                    Essentials of Dental Assisting
## 5678                                                                                                                                                                                                X-Ray Technologist
## 5679                                                                                                                                                               Refrigeration Air Conditioning and Heating (HVAC-R)
## 5680                                                                                                                                                                                                Insurance adjuster
## 5681                                                                                                                                                                                              CDL Training Program
## 5682                                                                                                                                                                                    Combination Pipe Fitter Welder
## 5683                                                                                                                                                                              Combination Structural Fitter Welder
## 5684                                                                                                                                                                      Intermediate Maritime Structural Pipe Fitter
## 5685                                                                                                                                                                         Advanced Maritimne Structural Pipe Fitter
## 5686                                                                                                                                                                                               Intermediate Welder
## 5687                                                                                                                                                                                                   Advanced Welder
## 5688                                                                                                                                                                   Maritime Structural Fitter (Shipfitter) Seminar
## 5689                                                                                                                                                                                                Pipefiting Seminar
## 5690                                                                                                                                                                                              Pipe Welding Seminar
## 5691                                                                                                                                                                                        Structural Welding Seminar
## 5692                                                                                                                                                                                                   Welding Seminar
## 5693                                                                                                                                                                                          Intermediate Pipefitting
## 5694                                                                                                                                                                                              Advanced Pipefitting
## 5695                                                                                                                                                                                                      Field Safety
## 5696                                                                                                                                                                                                 Safety Technology
## 5697                                                                                                                                                                                              Basic Safety Seminar
## 5698                                                                                                                                                                                      Maritime Pipefitting Seminar
## 5699                                                                                                                                                                                                   Massage Therapy
## 5700                                                                                                                                                                   Registered Nurse to Bachelor of Science Nursing
## 5701                                                                                                                                                                                           Patient Care Technician
## 5702                                                                                                                                                                                                        Phlebotomy
## 5703                                                                                                                                                                                                        Phlebotomy
## 5704                                                                                                                                                                                                        Phlebotomy
## 5705                                                                                                                                                                                         Expanded Dental Assisting
## 5706                                                                                                                                                                                 ACP - Social Studies (Grades 4-8)
## 5707                                                                                                                                                              ACP - English Language Arts and Reading (Grades 4-8)
## 5708                                                                                                                                                                                    ACP - Mathematics (Grades 4-8)
## 5709                                                                                                                                                                                       ACP -  Science (Grades 4-8)
## 5710                                                                                                                                                                     ACP -  Technology Applications (Grades EC-12)
## 5711                                                                                                                                                                             ACP - Physical Sciences (Grades 6-12)
## 5712                                                                                                                                                                           Nondestructive Testing( NDT) Technology
## 5713                                                                                                                                                                                            RT Film Interpretation
## 5714                                                                                                                                                                                               UT Thickness A-scan
## 5715                                                                                                                                                                UT Weld Flaw Characteristics and Sizing Techniques
## 5716                                                                                                                                                                                               API 570 Preparatory
## 5717                                                                                                                                                                                                  QA/QC Inspection
## 5718                                                                                                                                                                                        API Inspection Methodology
## 5719                                                                                                                                                                                                 Phased Array UT I
## 5720                                                                                                                                                                                                Phased Array UT II
## 5721                                                                                                                                                                                             Visual Testing I & II
## 5722                                                                                                                                                                                   Liquid Penetrant Testing I & II
## 5723                                                                                                                                                                                  Magnetic Particle Testing I & II
## 5724                                                                                                                                                                                            Radiographic Testing I
## 5725                                                                                                                                                                                           Radiographic Testing II
## 5726                                                                                                                                                                                              Ultrasonic Testing I
## 5727                                                                                                                                                                                             Ultrasonic Testing II
## 5728                                                                                                                                                                               Commercial Driver's License Program
## 5729                                                                                                                                                                                       COMPUTER SUPPORT SPECIALIST
## 5730                                                                                                                                                                                 Cyber Security Support Technician
## 5731                                                                                                                                                                            Information Technology Project Manager
## 5732                                                                                                                                                                                                       Cosmetology
## 5733                                                                                                                                                                                     Secretary Certificate Program
## 5734                                                                                                                                                                                Administrative Certificate Program
## 5735                                                                                                                                                                                                  Dental Assisting
## 5736                                                                                                                                                                                    LSA Document & Notary Training
## 5737                                                                                                                                                                                Truck Commercial Vehicle Operation
## 5738                                                                                                                                                              Java Web Application Development Bootcamp  Full-time
## 5739                                                                                                                                                                                         Welding Technology Welder
## 5740                                                                                                                                                                                              Medical Front Office
## 5741                                                                                                                                                                               Professional Truck Driver (Class A)
## 5742                                                                                                                                                                                 Professional Bus Driver (Class B)
## 5743                                                                                                                                                                                Entry Level Truck Driving Training
## 5744                                                                                                                                                                                                    EKG Technician
## 5745                                                                                                                                                                                             Phlebotomy Technician
## 5746                                                                                                                                                                              Medical Insurance Billing and Coding
## 5747                                                                                                                                                                                        Clinical Medical Assistant
## 5748                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5749                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5750                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5751                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5752                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5753                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5754                                                                                                                                                     ACE Education Consortium Teacher Certification Apprenticeship
## 5755                                                                                                                                                                                     Mental Health Peer Specialist
## 5756                                                                                                                                                                                     Substance Use Peer Specialist
## 5757                                                                                                                                                                                          Reentry  Peer Specialist
## 5758                                                                                                                                                                                      Beaumont Electrical J.A.T.C.
## 5759                                                                                                                                                                                           Patient Care Technician
## 5760                                                                                                                                                                                              Phlebotomy Technican
## 5761                                                                                                                                                                                               Pharmacy Technician
## 5762                                                                                                                                                                                          Medical Office Assistant
## 5763                                                                                                                                                                                                  Dental Assistant
## 5764                                                                                                                                                                                                 Medical Assistant
## 5765                                                                                                                                                                                          Medical Billing & Coding
## 5766                                                                                                                                                                                     Career Development Technician
## 5767                                                                                                                                                            Showoff the Ultimate SS Llc dba E and D Driving School
## 5768                                                                                                                                                       Mid Coast Construction Academy Trust Apprenticeship Program
## 5769                                                                                                                                                                                                       Electrician
## 5770                                                                                                                                                                                       Plumbing Technology/Plumber
## 5771                                                                                                                                                                                        Construction Craft Laborer
## 5772                                                                                                                                                                                                         Counselor
## 5773                                                                                                                                                                                               Construction Driver
## 5774                                                                                                                                                                                     Building Maintenance Repairer
## 5775                                                                                                                                                                                                     Chimney Sweep
## 5776                                                                                                                                                                                           Community Health Worker
## 5777                                                                                                                                                                                                              Cook
## 5778                                                                                                                                                                                       Certified Nursing Assistant
## 5779                                                                                                                                                                                                       Cook Pastry
## 5780                                                                                                                                                                                   Customer Service Representative
## 5781                                                                                                                                                                                                    Freight Broker
## 5782                                                                                                                                                                                                     Medical Coder
## 5783                                                                                                                                                                                               Pharmacy Technician
## 5784                                                                                                                                                                                                   Diesel Mechanic
## 5785                                                                                                                                                                                                      Phlebotomist
## 5786                                                                                                                                                                                                    Guard Security
## 5787                                                                                                                                                                                             Accounting Technician
## 5788                                                                                                                                                                        Network and Computer Systems Administrator
## 5789                                                                                                                                                                                       Personal Systems Management
## 5790                                                                                                                                                                                                   Peer Specialist
## 5791                                                                                                                                                                                               Director Television
## 5792                                                                                                                                                                                                  Digital Marketer
## 5793                                                                                                                                                                                            Electrician Technician
## 5794                                                                                                                                                                                              Landscape Technician
## 5795                                                                                                                                                                                              Material Coordinator
## 5796                                                                                                                                                                                         Film and Videotape Editor
## 5797                                                                                                                                                                                           Mechatronics Technician
## 5798                                                                                                                                                                  Medical Record and Health Information Technician
## 5799                                                                                                                                                                                        Photocomposing-Perforat-MA
## 5800                                                                                                                                                                                                        Nurse Aide
## 5801                                                                                                                                                                                                 Nursing Assistant
## 5802                                                                                                                                                                                                    EKG Technician
## 5803                                                                                                                                                                             Medical Billing and Coding Specialist
## 5804                                                                                                                                                                                               Pharmacy Technician
## 5805                                                                                                                                                                         MEDICAL ASSISTANT CLINICAL ADMINISTRATIVE
## 5806                                                                                                                                                                                     OFFICE APPLICATION TECHNICIAN
## 5807                                                                                                                                                                                             Phlebotomy Technician
## 5808                                                                                                                                                                                       Construction Trades General
## 5809                                                                                                                                                                                                         Insulator
## 5810                                                                                                                                                                                 Painting Painter and Wall Coverer
## 5811                                                                                                                                                                                                         Insulator
## 5812                                                                                                                                                                                       Construction Trades General
## 5813                                                                                                                                                                                 Painting Painter and Wall Coverer
## 5814                                                                                                                                                                                              CDL CLASS B TRAINING
## 5815                                                                                                                                                                                    CDL CLASS B TO CLASS A UPGRADE
## 5816                                                                                                                                                                                  HAZARDOUS MATERIALS ENDORSEMENTS
## 5817                                                                                                                                                                                  ELDT Behind the wheel Range Road
## 5818                                                                                                                                                                                              CDL CLASS A TRAINING
## 5819                                                                                                                                                                 Bachelor of Science in Nursing (Registered Nurse)
## 5820                                                                                                                                                                               Chefs and Head Cook Restaurant Cook
## 5821                                                                                                                                                                                   Administrative Office Assistant
## 5822                                                                                                                                                                                     Mental Health Peer Specialist
## 5823                                                                                                                                                                                     Substance Use Peer Specialist
## 5824                                                                                                                                                                                        Peer Specialist Supervisor
## 5825                                                                                                                                                                                        Peer Specialist Supervisor
## 5826                                                                                                                                                                                     Substance Use Peer Specialist
## 5827                                                                                                                                                                                     Mental Health Peer Specialist
## 5828                                                                                                                                                                                        Peer Specialist Supervisor
## 5829                                                                                                                                                                                     Mental Health Peer Specialist
## 5830                                                                                                                                                                                     Substance Use Peer Specialist
## 5831                                                                                                                                                                                      Certified Medical Assistants
## 5832                                                                                                                                                                                     Healthcare Training Institute
## 5833                                                                                                                                                                                        Medical Clinical Assistant
## 5834                                                                                                                                                                                             Application Developer
## 5835                                                                                                                                                                                          Salesforce Administrator
## 5836                                                                                                                                                                                           Tech Support Specialist
## 5837                                                                                                                                                                                                End User Computing
## 5838                                                                                                                                                                                               Application Support
## 5839                                                                                                                                                                               Application Development and Support
## 5840                                                                                                                                                                                 Cyber Security Support Technician
## 5841                                                                                                                                                                                        Network Support Specialist
## 5842                                                                                                                                                                                             Application Developer
## 5843                                                                                                                                                                                         Software Testing Services
## 5844                                                                                                                                                                                         IT Infrastructure Support
## 5845                                                                                                                                                                                      Dental Assisting Certificate
## 5846                                                                                                                                                                        Bombardier Aviation Apprenticeship Program
## 5847                                                                                                                                                          Cyber Security Analyst Cyber Security Support Technician
## 5848                                                                                                                                                                                               Beyond Expectations
## 5849                                                                                                                                                                                                  Bigg Boii Status
## 5850                                                                                                                                                                                                The Goddess Within
## 5851                                                                                                                                                                                     Telecommunications Technician
## 5852                                                                                                                                                                        Wind Turbine Technician (cip code:15.1704)
## 5853                                                                                                                                                                  Radio Frequency Technician (Wireless Technician)
## 5854                                                                                                                                                                                       Computer Support Specialist
## 5855                                                                                                                                                                                 Cyber Security Support Technician
## 5856                                                                                                                                                                                                IT Project Manager
## 5857                                                                                                                                                                                        Network Support Technician
## 5858                                                                                                                                                                                            Fiber Optic Technician
## 5859                                                                                                                                                                                        Medical Billing and Coding
## 5860                                                                                                                                                                                                 Medical Assistant
## 5861                                                                                                                                                                                      HOUSTON PLUMBING AND GAS LLC
## 5862                                                                                                                                                            Nursing Assistant Aide and Patient Care Assistant Aide
## 5863                                                                                                                                                                       Digital Video Editor Apprenticeship Program
## 5864                                                                                                                                                                        Multimedia producer Apprenticeship Program
## 5865                                                                                                                                                                      Fort Worth Pipe Trades Training Center Trust
## 5866                                                                                                                                                                                                       IEC El Paso
## 5867                                                                                                                                                                                Injection Molding Machine Operator
## 5868                                                                                                                                                                                Injection Molding Machine Operator
## 5869                                                                                                                                                                                    Industrial Machinery Mechanics
## 5870                                                                                                                                                                                Injection Molding Machine Operator
## 5871                                                                                                                                                                                             Empowering the Masses
## 5872                                                                                                                                                                                             Empowering the Masses
## 5873                                                                                                                                                                                       WordPress Website Developer
## 5874                                                                                                                                                                                     Clinical Research Coordinator
## 5875                                                                                                                                                                                            Principal Investigator
## 5876                                                                                                                                                                                       Clinical Research Associate
## 5877                                                                                                                                                                                          Dental Assistant Program
## 5878                                                                                                                                                                                                Essential Trucking
## 5879                                                                                                                                                                                                 Medical Assistant
## 5880                                                                                                                                                                                        Medical Billing and Coding
## 5881                                                                                                                                                             Entry Level HVAC/Installation Technician Fusion Model
## 5882                                                                                                                                                               Entry Level Electrical Technician Traditional Model
## 5883                                                                                                                                                                 Entry Level Plumbing Technician Traditional Model
## 5884                                                                                                                                                        Entry Level HVAC/Installation Technician Traditional Model
## 5885                                                                                                                                                                    Entry Level Electrical Technician Fusion Model
## 5886                                                                                                                                                                      Entry Level Plumbing Technician Fusion Model
## 5887                                                                                                                                                                                 Aviation Basics PreApprenticeship
## 5888                                                                                                                                                                            Professional Medical Coding Curriculum
## 5889                                                                                                                                                                                 Professional Truck Driver Program
## 5890                                                                                                                                                               Heating Ventilation and Air Conditioning Technician
## 5891                                                                                                                                                                                           Pre-Apprentice Plumbing
## 5892                                                                                                                                                                                         Pre-Apprentice Electrical
## 5893                                                                                                                                                                                   Certified Production Technician
## 5894                                                                                                                                                                                   Certified Production Technician
## 5895                                                                                                                                                                                           Pre-Apprentice Plumbing
## 5896                                                                                                                                                                                         Pre-Apprentice Electrical
## 5897                                                                                                                                                               Heating Ventilation and Air Conditioning Technician
## 5898                                                                                                                                                                                            Non Destructive Tester
## 5899                                                                                                                                                                                                              <NA>
##      All.Students..7.1.2018...6.30.2022.
## 1                                      0
## 2                                      0
## 3                                      0
## 4                                      0
## 5                                     38
## 6                                      0
## 7                                     41
## 8                                     11
## 9                                     46
## 10                                     5
## 11                                     6
## 12                                     *
## 13                                   111
## 14                                    27
## 15                                    86
## 16                                    11
## 17                                    12
## 18                                   147
## 19                                     0
## 20                                    38
## 21                                   198
## 22                                    51
## 23                                     *
## 24                                     0
## 25                                     *
## 26                                     6
## 27                                     *
## 28                                   134
## 29                                     0
## 30                                    20
## 31                                    18
## 32                                    15
## 33                                    81
## 34                                     5
## 35                                    75
## 36                                     *
## 37                                    24
## 38                                     8
## 39                                     *
## 40                                     0
## 41                                     *
## 42                                    10
## 43                                     *
## 44                                     *
## 45                                     *
## 46                                     *
## 47                                     0
## 48                                   130
## 49                                    66
## 50                                     6
## 51                                     0
## 52                                     0
## 53                                     *
## 54                                     *
## 55                                     0
## 56                                    21
## 57                                     7
## 58                                     0
## 59                                    28
## 60                                     0
## 61                                   974
## 62                                   954
## 63                                   123
## 64                                     8
## 65                                   394
## 66                                     0
## 67                                   384
## 68                                   559
## 69                                   110
## 70                                    61
## 71                                   172
## 72                                    23
## 73                                    59
## 74                                    88
## 75                                    16
## 76                                    37
## 77                                    47
## 78                                    10
## 79                                     0
## 80                                     *
## 81                                     0
## 82                                     0
## 83                                     0
## 84                                     0
## 85                                     *
## 86                                    67
## 87                                     *
## 88                                     0
## 89                                     0
## 90                                     0
## 91                                     *
## 92                                     *
## 93                                    10
## 94                                    41
## 95                                    34
## 96                                     7
## 97                                     0
## 98                                    12
## 99                                     0
## 100                                   10
## 101                                    6
## 102                                  108
## 103                                  431
## 104                                    *
## 105                                  161
## 106                                  361
## 107                                   56
## 108                                    9
## 109                                   44
## 110                                    *
## 111                                   22
## 112                                   23
## 113                                  364
## 114                                    0
## 115                                    *
## 116                                    *
## 117                                    9
## 118                                    8
## 119                                   15
## 120                                    6
## 121                                    5
## 122                                   33
## 123                                    0
## 124                                    *
## 125                                    6
## 126                                    0
## 127                                   10
## 128                                    0
## 129                                    0
## 130                                   11
## 131                                   79
## 132                                   16
## 133                                    *
## 134                                    0
## 135                                    0
## 136                                   13
## 137                                    *
## 138                                   43
## 139                                    0
## 140                                  350
## 141                                   15
## 142                                  166
## 143                                  281
## 144                                    0
## 145                                    0
## 146                                    0
## 147                                    0
## 148                                    0
## 149                                    8
## 150                                    7
## 151                                   13
## 152                                  455
## 153                                   41
## 154                                    0
## 155                                   34
## 156                                  459
## 157                                    0
## 158                                   19
## 159                                   17
## 160                                    0
## 161                                    0
## 162                                   58
## 163                                   17
## 164                                   77
## 165                                    0
## 166                                    *
## 167                                  155
## 168                                    0
## 169                                   57
## 170                                    *
## 171                                    *
## 172                                    *
## 173                                    *
## 174                                    *
## 175                                    *
## 176                                    0
## 177                                    0
## 178                                    *
## 179                                    *
## 180                                   11
## 181                                    0
## 182                                    0
## 183                                   11
## 184                                    *
## 185                                    0
## 186                                    5
## 187                                    *
## 188                                    6
## 189                                    6
## 190                                    *
## 191                                    *
## 192                                   20
## 193                                   11
## 194                                   91
## 195                                  216
## 196                                    0
## 197                                  142
## 198                                  233
## 199                                    0
## 200                                    0
## 201                                    *
## 202                                    0
## 203                                    0
## 204                                    0
## 205                                    0
## 206                                    0
## 207                                   12
## 208                                    0
## 209                                    0
## 210                                    0
## 211                                    0
## 212                                    0
## 213                                    0
## 214                                    0
## 215                                    0
## 216                                    0
## 217                                    0
## 218                                    *
## 219                                    *
## 220                                    0
## 221                                    0
## 222                                    0
## 223                                   16
## 224                                    *
## 225                                    0
## 226                                    0
## 227                                    0
## 228                                  426
## 229                                   68
## 230                                   77
## 231                                  214
## 232                                  164
## 233                                   43
## 234                                   26
## 235                                   15
## 236                                  460
## 237                                  141
## 238                                   27
## 239                                    7
## 240                                   19
## 241                                    *
## 242                                  140
## 243                                   93
## 244                                   68
## 245                                  419
## 246                                  302
## 247                                  168
## 248                                  235
## 249                                  357
## 250                                    0
## 251                                  381
## 252                                   67
## 253                                   92
## 254                                  252
## 255                                    0
## 256                                    0
## 257                                  115
## 258                                    0
## 259                                   85
## 260                                    0
## 261                                  124
## 262                                    0
## 263                                    0
## 264                                    0
## 265                                    0
## 266                                  159
## 267                                  112
## 268                                  137
## 269                                   31
## 270                                  578
## 271                                  188
## 272                                 1125
## 273                                  225
## 274                                  308
## 275                                  146
## 276                                  132
## 277                                  481
## 278                                    0
## 279                                  257
## 280                                 1411
## 281                                  227
## 282                                  727
## 283                                 1128
## 284                                 4768
## 285                                  290
## 286                                  751
## 287                                 1212
## 288                                  664
## 289                                    0
## 290                                    0
## 291                                    0
## 292                                    *
## 293                                    0
## 294                                  337
## 295                                   60
## 296                                    0
## 297                                  181
## 298                                    0
## 299                                   54
## 300                                    0
## 301                                    0
## 302                                    0
## 303                                    0
## 304                                    0
## 305                                    0
## 306                                    0
## 307                                    0
## 308                                    0
## 309                                    0
## 310                                    0
## 311                                  106
## 312                                   20
## 313                                  305
## 314                                  229
## 315                                  187
## 316                                   84
## 317                                  202
## 318                                  480
## 319                                  302
## 320                                  114
## 321                                  207
## 322                                   40
## 323                                  620
## 324                                  244
## 325                                   74
## 326                                  172
## 327                                  167
## 328                                   17
## 329                                    0
## 330                                  128
## 331                                  127
## 332                                    0
## 333                                  138
## 334                                  121
## 335                                  284
## 336                                  101
## 337                                   84
## 338                                   34
## 339                                   25
## 340                                   17
## 341                                   28
## 342                                   43
## 343                                   60
## 344                                   55
## 345                                    7
## 346                                   26
## 347                                   36
## 348                                   23
## 349                                    0
## 350                                  148
## 351                                    0
## 352                                   63
## 353                                   41
## 354                                   15
## 355                                   43
## 356                                   16
## 357                                   39
## 358                                    0
## 359                                    0
## 360                                    0
## 361                                    0
## 362                                    0
## 363                                    0
## 364                                    0
## 365                                    0
## 366                                   52
## 367                                   52
## 368                                   16
## 369                                    0
## 370                                    0
## 371                                    0
## 372                                    0
## 373                                    0
## 374                                    0
## 375                                    0
## 376                                    0
## 377                                    0
## 378                                    0
## 379                                   21
## 380                                   55
## 381                                  530
## 382                                   48
## 383                                   90
## 384                                  116
## 385                                   40
## 386                                  343
## 387                                  316
## 388                                    0
## 389                                    9
## 390                                    8
## 391                                    *
## 392                                   17
## 393                                   31
## 394                                   20
## 395                                   18
## 396                                   42
## 397                                   87
## 398                                   34
## 399                                   11
## 400                                    0
## 401                                    0
## 402                                 1056
## 403                                 1066
## 404                                  573
## 405                                   13
## 406                                    0
## 407                                   41
## 408                                   44
## 409                                  168
## 410                                   25
## 411                                   41
## 412                                   89
## 413                                  172
## 414                                  227
## 415                                 1735
## 416                                    *
## 417                                  165
## 418                                  105
## 419                                  445
## 420                                   89
## 421                                   12
## 422                                  130
## 423                                  253
## 424                                  163
## 425                                   13
## 426                                   11
## 427                                  155
## 428                                  109
## 429                                   77
## 430                                  155
## 431                                  154
## 432                                  279
## 433                                  438
## 434                                  403
## 435                                  118
## 436                                    0
## 437                                   43
## 438                                  106
## 439                                    0
## 440                                   61
## 441                                   23
## 442                                    0
## 443                                  221
## 444                                   25
## 445                                   26
## 446                                   32
## 447                                  203
## 448                                  181
## 449                                  275
## 450                                   89
## 451                                  223
## 452                                   40
## 453                                   76
## 454                                   18
## 455                                   14
## 456                                   40
## 457                                  305
## 458                                  425
## 459                                  649
## 460                                  411
## 461                                  128
## 462                                  386
## 463                                  252
## 464                                  504
## 465                                  198
## 466                                  204
## 467                                  252
## 468                                   10
## 469                                   66
## 470                                  294
## 471                                  506
## 472                                  186
## 473                                  262
## 474                                   11
## 475                                  562
## 476                                  238
## 477                                   41
## 478                                   11
## 479                                    *
## 480                                   13
## 481                                  121
## 482                                  141
## 483                                   78
## 484                                   51
## 485                                   88
## 486                                    0
## 487                                  143
## 488                                   48
## 489                                   16
## 490                                    0
## 491                                    7
## 492                                   85
## 493                                   50
## 494                                    0
## 495                                    0
## 496                                    *
## 497                                   48
## 498                                    0
## 499                                    0
## 500                                    0
## 501                                   82
## 502                                    0
## 503                                  112
## 504                                    0
## 505                                   11
## 506                                    0
## 507                                   43
## 508                                   11
## 509                                  107
## 510                                   29
## 511                                   34
## 512                                    0
## 513                                    0
## 514                                    0
## 515                                    0
## 516                                   37
## 517                                    0
## 518                                    0
## 519                                    0
## 520                                    5
## 521                                    0
## 522                                   77
## 523                                    0
## 524                                    0
## 525                                    0
## 526                                    0
## 527                                    *
## 528                                    0
## 529                                    0
## 530                                    0
## 531                                    0
## 532                                    0
## 533                                    0
## 534                                    0
## 535                                   21
## 536                                    0
## 537                                    0
## 538                                    0
## 539                                    0
## 540                                    0
## 541                                    0
## 542                                    0
## 543                                    0
## 544                                    0
## 545                                    0
## 546                                    0
## 547                                    0
## 548                                    0
## 549                                    0
## 550                                    0
## 551                                    0
## 552                                    0
## 553                                    0
## 554                                    0
## 555                                    0
## 556                                    0
## 557                                    0
## 558                                   36
## 559                                  135
## 560                                  114
## 561                                   17
## 562                                  685
## 563                                   11
## 564                                    0
## 565                                  254
## 566                                   73
## 567                                    0
## 568                                  134
## 569                                  245
## 570                                   12
## 571                                  256
## 572                                  207
## 573                                  491
## 574                                   35
## 575                                  142
## 576                                    7
## 577                                  162
## 578                                   95
## 579                                   12
## 580                                  230
## 581                                  268
## 582                                  174
## 583                                  973
## 584                                  206
## 585                                   91
## 586                                   87
## 587                                    9
## 588                                   27
## 589                                   31
## 590                                   21
## 591                                    8
## 592                                 2773
## 593                                    0
## 594                                    0
## 595                                    0
## 596                                    0
## 597                                    0
## 598                                    0
## 599                                   23
## 600                                   14
## 601                                  111
## 602                                   30
## 603                                  800
## 604                                   63
## 605                                  312
## 606                                  133
## 607                                    9
## 608                                   14
## 609                                  145
## 610                                  138
## 611                                   66
## 612                                   61
## 613                                   39
## 614                                    0
## 615                                    0
## 616                                    0
## 617                                    0
## 618                                  935
## 619                                   18
## 620                                    0
## 621                                   16
## 622                                    *
## 623                                   34
## 624                                    0
## 625                                    0
## 626                                    *
## 627                                    *
## 628                                   21
## 629                                    *
## 630                                    7
## 631                                    *
## 632                                    0
## 633                                    0
## 634                                    *
## 635                                   37
## 636                                   27
## 637                                   10
## 638                                   83
## 639                                  112
## 640                                  142
## 641                                  137
## 642                                   61
## 643                                   37
## 644                                   39
## 645                                   45
## 646                                    0
## 647                                    0
## 648                                    0
## 649                                 1027
## 650                                    0
## 651                                    0
## 652                                    0
## 653                                    0
## 654                                    0
## 655                                    0
## 656                                  330
## 657                                   17
## 658                                    0
## 659                                  211
## 660                                  495
## 661                                  479
## 662                                  385
## 663                                  192
## 664                                  246
## 665                                  218
## 666                                  141
## 667                                   37
## 668                                  132
## 669                                  119
## 670                                  136
## 671                                   89
## 672                                  710
## 673                                   21
## 674                                  180
## 675                                   45
## 676                                  319
## 677                                  302
## 678                                    *
## 679                                   44
## 680                                   26
## 681                                   18
## 682                                   17
## 683                                   24
## 684                                   21
## 685                                   34
## 686                                  212
## 687                                    0
## 688                                   99
## 689                                    8
## 690                                  217
## 691                                    0
## 692                                    0
## 693                                    0
## 694                                    0
## 695                                    0
## 696                                    0
## 697                                   50
## 698                                    0
## 699                                   11
## 700                                    9
## 701                                   40
## 702                                   31
## 703                                    0
## 704                                   19
## 705                                   12
## 706                                   16
## 707                                  200
## 708                                   10
## 709                                   35
## 710                                   21
## 711                                    6
## 712                                   89
## 713                                  116
## 714                                    *
## 715                                    *
## 716                                    0
## 717                                    *
## 718                                   10
## 719                                    *
## 720                                    *
## 721                                    *
## 722                                    0
## 723                                    0
## 724                                    *
## 725                                   16
## 726                                    *
## 727                                   11
## 728                                    0
## 729                                    0
## 730                                    0
## 731                                    0
## 732                                    0
## 733                                    0
## 734                                    0
## 735                                    0
## 736                                    0
## 737                                  128
## 738                                  385
## 739                                   94
## 740                                  505
## 741                                  102
## 742                                   80
## 743                                    0
## 744                                    0
## 745                                    0
## 746                                    0
## 747                                    0
## 748                                    0
## 749                                    0
## 750                                    0
## 751                                    0
## 752                                    0
## 753                                    0
## 754                                   21
## 755                                    0
## 756                                    0
## 757                                    0
## 758                                    0
## 759                                    0
## 760                                    0
## 761                                    0
## 762                                    0
## 763                                    0
## 764                                    0
## 765                                    0
## 766                                  192
## 767                                   95
## 768                                    0
## 769                                   33
## 770                                    7
## 771                                  105
## 772                                    0
## 773                                    0
## 774                                    *
## 775                                   32
## 776                                    0
## 777                                  144
## 778                                    0
## 779                                    0
## 780                                   91
## 781                                    *
## 782                                    *
## 783                                   21
## 784                                    0
## 785                                    0
## 786                                   65
## 787                                   20
## 788                                    0
## 789                                    0
## 790                                    0
## 791                                    0
## 792                                    0
## 793                                   25
## 794                                   18
## 795                                    0
## 796                                   77
## 797                                    0
## 798                                   26
## 799                                   32
## 800                                    0
## 801                                    0
## 802                                    0
## 803                                   26
## 804                                    0
## 805                                    0
## 806                                    0
## 807                                    0
## 808                                    0
## 809                                    *
## 810                                    0
## 811                                    0
## 812                                    0
## 813                                    *
## 814                                    0
## 815                                    0
## 816                                    *
## 817                                    0
## 818                                    0
## 819                                    0
## 820                                    0
## 821                                    0
## 822                                    0
## 823                                    0
## 824                                    0
## 825                                    0
## 826                                    0
## 827                                   33
## 828                                    0
## 829                                    0
## 830                                    6
## 831                                   26
## 832                                   90
## 833                                    *
## 834                                    0
## 835                                   64
## 836                                   32
## 837                                   72
## 838                                   11
## 839                                    0
## 840                                    0
## 841                                    0
## 842                                    *
## 843                                   51
## 844                                    0
## 845                                    *
## 846                                   39
## 847                                    6
## 848                                   56
## 849                                    *
## 850                                   31
## 851                                  163
## 852                                   91
## 853                                    0
## 854                                    6
## 855                                   77
## 856                                   37
## 857                                   21
## 858                                    *
## 859                                   17
## 860                                    5
## 861                                    0
## 862                                    0
## 863                                    0
## 864                                    0
## 865                                    0
## 866                                    0
## 867                                    0
## 868                                    5
## 869                                    5
## 870                                   55
## 871                                    0
## 872                                    0
## 873                                    0
## 874                                   22
## 875                                    0
## 876                                   12
## 877                                   10
## 878                                   12
## 879                                    0
## 880                                    0
## 881                                    0
## 882                                    0
## 883                                    0
## 884                                    0
## 885                                    0
## 886                                    0
## 887                                    0
## 888                                    0
## 889                                    0
## 890                                    0
## 891                                    0
## 892                                    0
## 893                                    0
## 894                                    0
## 895                                    0
## 896                                    0
## 897                                    0
## 898                                    0
## 899                                    0
## 900                                    0
## 901                                    0
## 902                                    0
## 903                                    0
## 904                                    0
## 905                                    0
## 906                                    0
## 907                                    0
## 908                                    0
## 909                                    0
## 910                                    0
## 911                                    0
## 912                                    0
## 913                                    0
## 914                                    0
## 915                                    0
## 916                                    0
## 917                                   15
## 918                                    0
## 919                                   20
## 920                                    0
## 921                                    0
## 922                                    0
## 923                                   25
## 924                                    0
## 925                                    0
## 926                                    0
## 927                                    0
## 928                                    0
## 929                                    0
## 930                                    0
## 931                                    0
## 932                                    0
## 933                                    0
## 934                                    0
## 935                                    0
## 936                                    0
## 937                                    0
## 938                                    0
## 939                                    0
## 940                                    0
## 941                                    0
## 942                                    0
## 943                                    0
## 944                                    0
## 945                                    0
## 946                                    0
## 947                                    0
## 948                                    0
## 949                                    0
## 950                                    0
## 951                                    0
## 952                                    0
## 953                                    0
## 954                                    0
## 955                                    0
## 956                                    0
## 957                                    0
## 958                                    0
## 959                                    0
## 960                                    0
## 961                                    0
## 962                                    0
## 963                                    0
## 964                                    0
## 965                                    0
## 966                                    0
## 967                                    0
## 968                                    0
## 969                                    0
## 970                                    0
## 971                                    0
## 972                                    0
## 973                                    0
## 974                                    0
## 975                                    0
## 976                                    0
## 977                                    0
## 978                                    0
## 979                                    0
## 980                                    0
## 981                                    0
## 982                                    0
## 983                                    0
## 984                                    0
## 985                                    0
## 986                                    0
## 987                                    0
## 988                                    0
## 989                                    0
## 990                                    0
## 991                                    0
## 992                                    0
## 993                                    0
## 994                                    0
## 995                                    0
## 996                                    0
## 997                                    0
## 998                                  926
## 999                                  330
## 1000                                   0
## 1001                                   0
## 1002                                   0
## 1003                                2580
## 1004                                   0
## 1005                                   0
## 1006                                   0
## 1007                                   0
## 1008                                   0
## 1009                                   0
## 1010                                  40
## 1011                                  32
## 1012                                   *
## 1013                                  27
## 1014                                  63
## 1015                                  47
## 1016                                 195
## 1017                                   *
## 1018                                 111
## 1019                                  13
## 1020                                  12
## 1021                                 410
## 1022                                  89
## 1023                                  87
## 1024                                   *
## 1025                                 324
## 1026                                 129
## 1027                                 901
## 1028                                 131
## 1029                                 196
## 1030                                 771
## 1031                                 236
## 1032                                2548
## 1033                                 221
## 1034                                 287
## 1035                                  24
## 1036                                 292
## 1037                                  17
## 1038                                 650
## 1039                                 311
## 1040                                 194
## 1041                                  90
## 1042                                  45
## 1043                                 516
## 1044                                  49
## 1045                                 652
## 1046                                   0
## 1047                                   6
## 1048                                   0
## 1049                                   0
## 1050                                   0
## 1051                                  55
## 1052                                   0
## 1053                                  26
## 1054                                  61
## 1055                                   *
## 1056                                   *
## 1057                                   0
## 1058                                   *
## 1059                                   0
## 1060                                   0
## 1061                                 241
## 1062                                   0
## 1063                                   0
## 1064                                   0
## 1065                                   0
## 1066                                  21
## 1067                                   *
## 1068                                  17
## 1069                                   0
## 1070                                   0
## 1071                                  27
## 1072                                   0
## 1073                                   0
## 1074                                   0
## 1075                                   0
## 1076                                   6
## 1077                                   5
## 1078                                   0
## 1079                                   0
## 1080                                   0
## 1081                                   0
## 1082                                   0
## 1083                                   0
## 1084                                   0
## 1085                                   0
## 1086                                   0
## 1087                                   0
## 1088                                   0
## 1089                                   0
## 1090                                   0
## 1091                                   0
## 1092                                   0
## 1093                                   0
## 1094                                   0
## 1095                                1490
## 1096                                 166
## 1097                                 729
## 1098                                 323
## 1099                                1363
## 1100                                 200
## 1101                                1381
## 1102                                2092
## 1103                                 227
## 1104                                1003
## 1105                                 101
## 1106                                 919
## 1107                                 142
## 1108                                 288
## 1109                                 145
## 1110                                  64
## 1111                                   0
## 1112                                   0
## 1113                                   0
## 1114                                   0
## 1115                                   0
## 1116                                1615
## 1117                                 629
## 1118                                  87
## 1119                                 775
## 1120                                 215
## 1121                                  63
## 1122                                 435
## 1123                                  17
## 1124                                  34
## 1125                                  56
## 1126                                 151
## 1127                                 271
## 1128                                 154
## 1129                                  91
## 1130                                 159
## 1131                                 116
## 1132                                 323
## 1133                                 179
## 1134                                 119
## 1135                                   6
## 1136                                 458
## 1137                                  87
## 1138                                 101
## 1139                                 144
## 1140                                 391
## 1141                                  19
## 1142                                 313
## 1143                                   0
## 1144                                  85
## 1145                                 263
## 1146                                1901
## 1147                                   0
## 1148                                 128
## 1149                                  29
## 1150                                  76
## 1151                                  84
## 1152                                 296
## 1153                                 209
## 1154                                 789
## 1155                                   6
## 1156                                 216
## 1157                                  82
## 1158                                  90
## 1159                                  59
## 1160                                 139
## 1161                                   0
## 1162                                  54
## 1163                                  13
## 1164                                   8
## 1165                                   0
## 1166                                 123
## 1167                                   *
## 1168                                   5
## 1169                                   *
## 1170                                   *
## 1171                                   *
## 1172                                   *
## 1173                                  20
## 1174                                   0
## 1175                                   0
## 1176                                   0
## 1177                                   0
## 1178                                   0
## 1179                                   0
## 1180                                   0
## 1181                                   0
## 1182                                   0
## 1183                                   0
## 1184                                   0
## 1185                                   0
## 1186                                   0
## 1187                                   0
## 1188                                   0
## 1189                                   0
## 1190                                   0
## 1191                                   0
## 1192                                   0
## 1193                                   0
## 1194                                   0
## 1195                                   0
## 1196                                   0
## 1197                                   0
## 1198                                   0
## 1199                                   0
## 1200                                   0
## 1201                                   0
## 1202                                   0
## 1203                                   0
## 1204                                   0
## 1205                                   0
## 1206                                   0
## 1207                                   0
## 1208                                   0
## 1209                                   0
## 1210                                   0
## 1211                                   0
## 1212                                   0
## 1213                                   0
## 1214                                   0
## 1215                                   0
## 1216                                   0
## 1217                                   0
## 1218                                   0
## 1219                                   0
## 1220                                   0
## 1221                                   0
## 1222                                   0
## 1223                                   0
## 1224                                   0
## 1225                                   0
## 1226                                   0
## 1227                                   0
## 1228                                   0
## 1229                                   0
## 1230                                   0
## 1231                                   0
## 1232                                   0
## 1233                                   0
## 1234                                   0
## 1235                                   0
## 1236                                   0
## 1237                                   0
## 1238                                   0
## 1239                                   0
## 1240                                   0
## 1241                                   0
## 1242                                   0
## 1243                                   0
## 1244                                   0
## 1245                                   0
## 1246                                   0
## 1247                                   0
## 1248                                   0
## 1249                                   0
## 1250                                   0
## 1251                                   0
## 1252                                   0
## 1253                                   0
## 1254                                   0
## 1255                                   0
## 1256                                   0
## 1257                                   0
## 1258                                   0
## 1259                                   0
## 1260                                   0
## 1261                                   0
## 1262                                   0
## 1263                                   0
## 1264                                   0
## 1265                                   0
## 1266                                   0
## 1267                                   0
## 1268                                   0
## 1269                                   0
## 1270                                   0
## 1271                                   0
## 1272                                   0
## 1273                                   0
## 1274                                   0
## 1275                                   0
## 1276                                   0
## 1277                                 229
## 1278                                  54
## 1279                                  53
## 1280                                 124
## 1281                                  37
## 1282                                  10
## 1283                                  62
## 1284                                   7
## 1285                                1619
## 1286                                   *
## 1287                                  89
## 1288                                 153
## 1289                                  21
## 1290                                 199
## 1291                                  24
## 1292                                 148
## 1293                                 155
## 1294                                  10
## 1295                                  91
## 1296                                   0
## 1297                                 231
## 1298                                  58
## 1299                                 160
## 1300                                   0
## 1301                                 103
## 1302                                  55
## 1303                                 376
## 1304                                 148
## 1305                                 239
## 1306                                  54
## 1307                                 129
## 1308                                  47
## 1309                                   0
## 1310                                   *
## 1311                                 327
## 1312                                 127
## 1313                                  36
## 1314                                  36
## 1315                                 100
## 1316                                  79
## 1317                                  46
## 1318                                   5
## 1319                                 153
## 1320                                 181
## 1321                                   *
## 1322                                 182
## 1323                                  17
## 1324                                   *
## 1325                                  15
## 1326                                   *
## 1327                                1007
## 1328                                  14
## 1329                                  20
## 1330                                  95
## 1331                                  87
## 1332                                   *
## 1333                                  16
## 1334                                 138
## 1335                                 145
## 1336                                  87
## 1337                                  10
## 1338                                  43
## 1339                                  20
## 1340                                  30
## 1341                                  16
## 1342                                 628
## 1343                                  51
## 1344                                  93
## 1345                                 144
## 1346                                 434
## 1347                                  26
## 1348                                  10
## 1349                                 203
## 1350                                  11
## 1351                                 171
## 1352                                  79
## 1353                                  21
## 1354                                2704
## 1355                                  29
## 1356                                  49
## 1357                                   0
## 1358                                  56
## 1359                                 100
## 1360                                  23
## 1361                                 109
## 1362                                  27
## 1363                                   0
## 1364                                  70
## 1365                                   0
## 1366                                  59
## 1367                                 129
## 1368                                  77
## 1369                                  74
## 1370                                  52
## 1371                                  29
## 1372                                 294
## 1373                                   9
## 1374                                  55
## 1375                                   0
## 1376                                 151
## 1377                                  24
## 1378                                 131
## 1379                                  93
## 1380                                 121
## 1381                                  26
## 1382                                 118
## 1383                                 153
## 1384                                  15
## 1385                                   0
## 1386                                   0
## 1387                                 258
## 1388                                   0
## 1389                                   0
## 1390                                   8
## 1391                                   8
## 1392                                  54
## 1393                                 193
## 1394                                 197
## 1395                                  33
## 1396                                   0
## 1397                                  49
## 1398                                 115
## 1399                                   0
## 1400                                   0
## 1401                                 120
## 1402                                  46
## 1403                                  94
## 1404                                 321
## 1405                                  99
## 1406                                 495
## 1407                                  26
## 1408                                   9
## 1409                                  75
## 1410                                  74
## 1411                                  31
## 1412                                  84
## 1413                                  42
## 1414                                  48
## 1415                                 349
## 1416                                   9
## 1417                                 159
## 1418                                   *
## 1419                                  46
## 1420                                  83
## 1421                                   6
## 1422                                   *
## 1423                                 144
## 1424                                 262
## 1425                                 317
## 1426                                 705
## 1427                                   0
## 1428                                 102
## 1429                                  38
## 1430                                  79
## 1431                                   6
## 1432                                  22
## 1433                                 145
## 1434                                 454
## 1435                                1492
## 1436                                  77
## 1437                                   5
## 1438                                 118
## 1439                                  60
## 1440                                  12
## 1441                                   *
## 1442                                  98
## 1443                                  45
## 1444                                 122
## 1445                                   8
## 1446                                 255
## 1447                                 119
## 1448                                  59
## 1449                                  40
## 1450                                  77
## 1451                                 156
## 1452                                 113
## 1453                                  64
## 1454                                  42
## 1455                                 119
## 1456                                 266
## 1457                                   *
## 1458                                  27
## 1459                                 167
## 1460                                1422
## 1461                                   0
## 1462                                 100
## 1463                                  46
## 1464                                 446
## 1465                                  77
## 1466                                   0
## 1467                                 183
## 1468                                   *
## 1469                                  12
## 1470                                 108
## 1471                                   0
## 1472                                  41
## 1473                                 292
## 1474                                   0
## 1475                                  22
## 1476                                 117
## 1477                                  38
## 1478                                   0
## 1479                                   0
## 1480                                 329
## 1481                                   0
## 1482                                 307
## 1483                                2315
## 1484                                   0
## 1485                                  90
## 1486                                 660
## 1487                                 107
## 1488                                   0
## 1489                                 202
## 1490                                  45
## 1491                                   *
## 1492                                   0
## 1493                                  13
## 1494                                   0
## 1495                                 244
## 1496                                 269
## 1497                                  21
## 1498                                 108
## 1499                                  40
## 1500                                  56
## 1501                                  52
## 1502                                  39
## 1503                                  19
## 1504                                  38
## 1505                                  57
## 1506                                  14
## 1507                                   0
## 1508                                   0
## 1509                                  28
## 1510                                   0
## 1511                                  18
## 1512                                   0
## 1513                                   0
## 1514                                  26
## 1515                                   0
## 1516                                  20
## 1517                                  27
## 1518                                  24
## 1519                                 222
## 1520                                  57
## 1521                                   5
## 1522                                   6
## 1523                                   0
## 1524                                   0
## 1525                                2670
## 1526                                4153
## 1527                                1879
## 1528                                   *
## 1529                                   *
## 1530                                   *
## 1531                                   *
## 1532                                   7
## 1533                                   6
## 1534                                   *
## 1535                                   5
## 1536                                   *
## 1537                                   0
## 1538                                   *
## 1539                                   0
## 1540                                   0
## 1541                                   0
## 1542                                   0
## 1543                                  38
## 1544                                   0
## 1545                                  15
## 1546                                   9
## 1547                                   *
## 1548                                   0
## 1549                                   0
## 1550                                   0
## 1551                                   0
## 1552                                   0
## 1553                                   0
## 1554                                   0
## 1555                                   0
## 1556                                   0
## 1557                                   0
## 1558                                   0
## 1559                                   0
## 1560                                   0
## 1561                                   0
## 1562                                   0
## 1563                                   0
## 1564                                   0
## 1565                                   0
## 1566                                   0
## 1567                                   0
## 1568                                   0
## 1569                                   0
## 1570                                   0
## 1571                                   0
## 1572                                   0
## 1573                                   0
## 1574                                   0
## 1575                                   0
## 1576                                   0
## 1577                                   0
## 1578                                   0
## 1579                                   0
## 1580                                   0
## 1581                                 221
## 1582                                  82
## 1583                                 200
## 1584                                 102
## 1585                                 785
## 1586                                   0
## 1587                                  57
## 1588                                  46
## 1589                                  17
## 1590                                 168
## 1591                                 122
## 1592                                   6
## 1593                                  37
## 1594                                  28
## 1595                                  25
## 1596                                  11
## 1597                                  26
## 1598                                  72
## 1599                                  83
## 1600                                  99
## 1601                                  69
## 1602                                  26
## 1603                                  50
## 1604                                  46
## 1605                                  97
## 1606                                 341
## 1607                                  49
## 1608                                 183
## 1609                                   9
## 1610                                  50
## 1611                                  13
## 1612                                 271
## 1613                                  21
## 1614                                 380
## 1615                                 100
## 1616                                  67
## 1617                                   6
## 1618                                  42
## 1619                                  23
## 1620                                   *
## 1621                                   0
## 1622                                 415
## 1623                                 382
## 1624                                   0
## 1625                                 150
## 1626                                 469
## 1627                                 111
## 1628                                   0
## 1629                                   0
## 1630                                   0
## 1631                                  16
## 1632                                  53
## 1633                                  22
## 1634                                  35
## 1635                                  31
## 1636                                  50
## 1637                                   *
## 1638                                  15
## 1639                                   0
## 1640                                  55
## 1641                                   0
## 1642                                   0
## 1643                                   0
## 1644                                   0
## 1645                                   6
## 1646                                   *
## 1647                                   6
## 1648                                  20
## 1649                                   *
## 1650                                   *
## 1651                                   *
## 1652                                   0
## 1653                                 184
## 1654                                   *
## 1655                                   7
## 1656                                   0
## 1657                                 109
## 1658                                   8
## 1659                                   *
## 1660                                 110
## 1661                                  47
## 1662                                 412
## 1663                                  36
## 1664                                  52
## 1665                                 123
## 1666                                  23
## 1667                                   0
## 1668                                  59
## 1669                                   0
## 1670                                 314
## 1671                                  40
## 1672                                  67
## 1673                                   6
## 1674                                   0
## 1675                                  11
## 1676                                 111
## 1677                                  45
## 1678                                 136
## 1679                                 195
## 1680                                  39
## 1681                                  37
## 1682                                   0
## 1683                                  27
## 1684                                 311
## 1685                                 210
## 1686                                  50
## 1687                                  41
## 1688                                  45
## 1689                                   0
## 1690                                   0
## 1691                                   *
## 1692                                  26
## 1693                                  18
## 1694                                   *
## 1695                                   0
## 1696                                   *
## 1697                                   *
## 1698                                  25
## 1699                                  10
## 1700                                  25
## 1701                                   0
## 1702                                  22
## 1703                                   0
## 1704                                   0
## 1705                                  10
## 1706                                  16
## 1707                                   *
## 1708                                   *
## 1709                                   0
## 1710                                   0
## 1711                                   0
## 1712                                   0
## 1713                                   0
## 1714                                  87
## 1715                                   0
## 1716                                  47
## 1717                                   9
## 1718                                  45
## 1719                                   0
## 1720                                   0
## 1721                                   0
## 1722                                   0
## 1723                                   0
## 1724                                   *
## 1725                                   *
## 1726                                   *
## 1727                                   9
## 1728                                   *
## 1729                                   0
## 1730                                   0
## 1731                                   0
## 1732                                   0
## 1733                                  11
## 1734                                  11
## 1735                                  46
## 1736                                   *
## 1737                                 149
## 1738                                 133
## 1739                                 174
## 1740                                 220
## 1741                                 281
## 1742                                  25
## 1743                                   *
## 1744                                   *
## 1745                                  15
## 1746                                  26
## 1747                                   0
## 1748                                   0
## 1749                                   0
## 1750                                   *
## 1751                                  54
## 1752                                  16
## 1753                                   0
## 1754                                   *
## 1755                                   *
## 1756                                   *
## 1757                                   7
## 1758                                   *
## 1759                                   0
## 1760                                   *
## 1761                                   0
## 1762                                   0
## 1763                                   0
## 1764                                   0
## 1765                                   0
## 1766                                   0
## 1767                                   0
## 1768                                   0
## 1769                                   0
## 1770                                   0
## 1771                                   0
## 1772                                   0
## 1773                                   0
## 1774                                   0
## 1775                                   0
## 1776                                   0
## 1777                                   0
## 1778                                   0
## 1779                                   0
## 1780                                   0
## 1781                                   0
## 1782                                   0
## 1783                                   0
## 1784                                   0
## 1785                                   0
## 1786                                   0
## 1787                                   0
## 1788                                   0
## 1789                                  27
## 1790                                  79
## 1791                                  63
## 1792                                  57
## 1793                                  62
## 1794                                  24
## 1795                                  64
## 1796                                 114
## 1797                                 397
## 1798                                 243
## 1799                                  43
## 1800                                 106
## 1801                                 140
## 1802                                 324
## 1803                                  69
## 1804                                  71
## 1805                                 159
## 1806                                  93
## 1807                                  27
## 1808                                  41
## 1809                                  86
## 1810                                  21
## 1811                                 114
## 1812                                  87
## 1813                                 116
## 1814                                  73
## 1815                                 244
## 1816                                 469
## 1817                                 666
## 1818                                  76
## 1819                                 111
## 1820                                  85
## 1821                                  91
## 1822                                 364
## 1823                                 104
## 1824                                  61
## 1825                                  26
## 1826                                  67
## 1827                                  63
## 1828                                 172
## 1829                                 242
## 1830                                 104
## 1831                                  14
## 1832                                  19
## 1833                                 235
## 1834                                 101
## 1835                                  45
## 1836                                  10
## 1837                                  22
## 1838                                  15
## 1839                                  18
## 1840                                  54
## 1841                                 322
## 1842                                 545
## 1843                                 162
## 1844                                   8
## 1845                                   0
## 1846                                 117
## 1847                                 134
## 1848                                 907
## 1849                                  15
## 1850                                  31
## 1851                                  26
## 1852                                   7
## 1853                                   0
## 1854                                   6
## 1855                                   0
## 1856                                 102
## 1857                                   0
## 1858                                   0
## 1859                                   0
## 1860                                   0
## 1861                                   0
## 1862                                   0
## 1863                                   0
## 1864                                   0
## 1865                                  11
## 1866                                   0
## 1867                                  16
## 1868                                  20
## 1869                                  70
## 1870                                  43
## 1871                                 550
## 1872                                 202
## 1873                                  87
## 1874                                   0
## 1875                                   0
## 1876                                   0
## 1877                                  93
## 1878                                  22
## 1879                                   *
## 1880                                  47
## 1881                                  18
## 1882                                  25
## 1883                                 127
## 1884                                  30
## 1885                                   0
## 1886                                   0
## 1887                                   0
## 1888                                 254
## 1889                                   0
## 1890                                   0
## 1891                                   0
## 1892                                  24
## 1893                                   0
## 1894                                   7
## 1895                                   0
## 1896                                   0
## 1897                                   *
## 1898                                 133
## 1899                                   9
## 1900                                   0
## 1901                                   *
## 1902                                   0
## 1903                                  38
## 1904                                   0
## 1905                                   0
## 1906                                   0
## 1907                                   0
## 1908                                   0
## 1909                                   0
## 1910                                   0
## 1911                                   0
## 1912                                   0
## 1913                                   0
## 1914                                   0
## 1915                                   0
## 1916                                   0
## 1917                                   0
## 1918                                 559
## 1919                                 222
## 1920                                 535
## 1921                                 379
## 1922                                 104
## 1923                                  71
## 1924                                  21
## 1925                                   0
## 1926                                   0
## 1927                                   0
## 1928                                   0
## 1929                                   0
## 1930                                   0
## 1931                                   0
## 1932                                   0
## 1933                                   8
## 1934                                   0
## 1935                                   0
## 1936                                   0
## 1937                                   0
## 1938                                  43
## 1939                                   *
## 1940                                   0
## 1941                                   0
## 1942                                   0
## 1943                                   0
## 1944                                   *
## 1945                                   0
## 1946                                   0
## 1947                                   0
## 1948                                   0
## 1949                                   0
## 1950                                   0
## 1951                                   0
## 1952                                   0
## 1953                                 172
## 1954                                  53
## 1955                                 383
## 1956                                 459
## 1957                                 196
## 1958                                  13
## 1959                                 322
## 1960                                   *
## 1961                                 572
## 1962                                 189
## 1963                                 310
## 1964                                 334
## 1965                                  16
## 1966                                 378
## 1967                                 133
## 1968                                  48
## 1969                                 129
## 1970                                  91
## 1971                                  31
## 1972                                 144
## 1973                                  46
## 1974                                1452
## 1975                                  42
## 1976                                 100
## 1977                                 138
## 1978                                   7
## 1979                                1726
## 1980                                   *
## 1981                                 205
## 1982                                  23
## 1983                                 111
## 1984                                   5
## 1985                                  36
## 1986                                 280
## 1987                                  47
## 1988                                   0
## 1989                                 143
## 1990                                  32
## 1991                                 102
## 1992                                 137
## 1993                                  77
## 1994                                 475
## 1995                                   0
## 1996                                   0
## 1997                                 353
## 1998                                  47
## 1999                                1329
## 2000                                 160
## 2001                                 144
## 2002                                 139
## 2003                                  23
## 2004                                 112
## 2005                                 181
## 2006                                  42
## 2007                                 792
## 2008                                 261
## 2009                                 100
## 2010                                 136
## 2011                                   8
## 2012                                 284
## 2013                                  83
## 2014                                 375
## 2015                                 258
## 2016                                1798
## 2017                                1798
## 2018                                 141
## 2019                                   *
## 2020                                  59
## 2021                                   *
## 2022                                 189
## 2023                                 230
## 2024                                   5
## 2025                                 405
## 2026                                 405
## 2027                                   5
## 2028                                  12
## 2029                                   *
## 2030                                   5
## 2031                                  16
## 2032                                   9
## 2033                                  11
## 2034                                  30
## 2035                                  18
## 2036                                 502
## 2037                                 316
## 2038                                 326
## 2039                                 106
## 2040                                 108
## 2041                                  10
## 2042                                  68
## 2043                                 226
## 2044                                 522
## 2045                                  72
## 2046                                1018
## 2047                                 553
## 2048                                 193
## 2049                                  80
## 2050                                 382
## 2051                                 159
## 2052                                  48
## 2053                                 225
## 2054                                 595
## 2055                                   7
## 2056                                 132
## 2057                                  17
## 2058                                   6
## 2059                                 164
## 2060                                  32
## 2061                                   0
## 2062                                 202
## 2063                                   0
## 2064                                   0
## 2065                                   0
## 2066                                  84
## 2067                                   5
## 2068                                  51
## 2069                                 430
## 2070                                 137
## 2071                                 145
## 2072                                 317
## 2073                                  76
## 2074                                  96
## 2075                                  33
## 2076                                 322
## 2077                                   0
## 2078                                 129
## 2079                                  23
## 2080                                  47
## 2081                                 444
## 2082                                 106
## 2083                                 112
## 2084                                 119
## 2085                                 107
## 2086                                 285
## 2087                                  33
## 2088                                  91
## 2089                                  45
## 2090                                  24
## 2091                                  95
## 2092                                 302
## 2093                                  49
## 2094                                  93
## 2095                                  88
## 2096                                  45
## 2097                                  79
## 2098                                  71
## 2099                                 157
## 2100                                  43
## 2101                                  92
## 2102                                 122
## 2103                                  57
## 2104                                  29
## 2105                                  94
## 2106                                  31
## 2107                                  16
## 2108                                   *
## 2109                                   6
## 2110                                   0
## 2111                                   8
## 2112                                   0
## 2113                                   *
## 2114                                   0
## 2115                                   0
## 2116                                   *
## 2117                                   0
## 2118                                  19
## 2119                                   0
## 2120                                   0
## 2121                                  52
## 2122                                  12
## 2123                                   *
## 2124                                   0
## 2125                                   *
## 2126                                   0
## 2127                                  11
## 2128                                   0
## 2129                                   0
## 2130                                   0
## 2131                                   0
## 2132                                 783
## 2133                                 485
## 2134                                   0
## 2135                                   0
## 2136                                  59
## 2137                                  20
## 2138                                  25
## 2139                                  11
## 2140                                   0
## 2141                                  36
## 2142                                   9
## 2143                                  82
## 2144                                  79
## 2145                                   *
## 2146                                 220
## 2147                                   *
## 2148                                  46
## 2149                                  59
## 2150                                  63
## 2151                                 327
## 2152                                   0
## 2153                                 234
## 2154                                 150
## 2155                                 281
## 2156                                   *
## 2157                                 521
## 2158                                  91
## 2159                                 327
## 2160                                   0
## 2161                                 102
## 2162                                 187
## 2163                                 103
## 2164                                  47
## 2165                                   0
## 2166                                   0
## 2167                                  17
## 2168                                  63
## 2169                                 287
## 2170                                 142
## 2171                                   0
## 2172                                   0
## 2173                                 343
## 2174                                   0
## 2175                                   *
## 2176                                 537
## 2177                                  16
## 2178                                 408
## 2179                                 187
## 2180                                  10
## 2181                                  24
## 2182                                  63
## 2183                                 107
## 2184                                   *
## 2185                                   8
## 2186                                  43
## 2187                                   7
## 2188                                1155
## 2189                                  23
## 2190                                  24
## 2191                                   0
## 2192                                   9
## 2193                                   5
## 2194                                   5
## 2195                                   0
## 2196                                  20
## 2197                                   0
## 2198                                   0
## 2199                                   *
## 2200                                  29
## 2201                                   6
## 2202                                  15
## 2203                                  14
## 2204                                   8
## 2205                                   0
## 2206                                 110
## 2207                                 177
## 2208                                 428
## 2209                                 334
## 2210                                  77
## 2211                                   *
## 2212                                 163
## 2213                                  61
## 2214                                  82
## 2215                                   *
## 2216                                  16
## 2217                                  24
## 2218                                  24
## 2219                                  22
## 2220                                   *
## 2221                                   0
## 2222                                   0
## 2223                                   0
## 2224                                   0
## 2225                                   0
## 2226                                   0
## 2227                                   0
## 2228                                   0
## 2229                                   0
## 2230                                   0
## 2231                                   0
## 2232                                   0
## 2233                                   0
## 2234                                   0
## 2235                                  14
## 2236                                   *
## 2237                                   *
## 2238                                   0
## 2239                                   *
## 2240                                   *
## 2241                                   0
## 2242                                 146
## 2243                                 191
## 2244                                  19
## 2245                                 471
## 2246                                 626
## 2247                                   0
## 2248                                1726
## 2249                                 768
## 2250                                  78
## 2251                                 447
## 2252                                 191
## 2253                                  65
## 2254                                  33
## 2255                                 662
## 2256                                 210
## 2257                                   *
## 2258                                 138
## 2259                                 317
## 2260                                 796
## 2261                                  30
## 2262                                  33
## 2263                                 104
## 2264                                  65
## 2265                                 114
## 2266                                 283
## 2267                                  78
## 2268                                  55
## 2269                                  47
## 2270                                   *
## 2271                                 418
## 2272                                  83
## 2273                                 480
## 2274                                 227
## 2275                                  66
## 2276                                  70
## 2277                                  74
## 2278                                   *
## 2279                                  38
## 2280                                 165
## 2281                                  56
## 2282                                  21
## 2283                                 125
## 2284                                  61
## 2285                                  18
## 2286                                  35
## 2287                                  98
## 2288                                 172
## 2289                                   0
## 2290                                 591
## 2291                                  83
## 2292                                  54
## 2293                                  44
## 2294                                   *
## 2295                                  52
## 2296                                  10
## 2297                                   0
## 2298                                   0
## 2299                                   0
## 2300                                  69
## 2301                                 296
## 2302                                 177
## 2303                                  92
## 2304                                 145
## 2305                                 161
## 2306                                 205
## 2307                                 148
## 2308                                 130
## 2309                                 254
## 2310                                 406
## 2311                                   5
## 2312                                  93
## 2313                                  61
## 2314                                  69
## 2315                                   8
## 2316                                   5
## 2317                                   0
## 2318                                 174
## 2319                                 180
## 2320                                  23
## 2321                                 120
## 2322                                 401
## 2323                                 515
## 2324                                 147
## 2325                                 121
## 2326                                 857
## 2327                                 513
## 2328                                 629
## 2329                                  92
## 2330                                 150
## 2331                                 339
## 2332                                 133
## 2333                                 615
## 2334                                 311
## 2335                                  21
## 2336                                 202
## 2337                                 196
## 2338                                1566
## 2339                                   *
## 2340                                   7
## 2341                                 143
## 2342                                 129
## 2343                                 215
## 2344                                 618
## 2345                                   0
## 2346                                   0
## 2347                                  67
## 2348                                  42
## 2349                                  67
## 2350                                  44
## 2351                                 444
## 2352                                 239
## 2353                                 161
## 2354                                  54
## 2355                                   8
## 2356                                   7
## 2357                                   *
## 2358                                 131
## 2359                                  44
## 2360                                 126
## 2361                                 180
## 2362                                 370
## 2363                                  82
## 2364                                 191
## 2365                                  55
## 2366                                 103
## 2367                                  74
## 2368                                 130
## 2369                                  88
## 2370                                   0
## 2371                                   0
## 2372                                   0
## 2373                                   0
## 2374                                 567
## 2375                                 409
## 2376                                 200
## 2377                                   *
## 2378                                   0
## 2379                                  59
## 2380                                  30
## 2381                                   0
## 2382                                   *
## 2383                                 109
## 2384                                 196
## 2385                                   7
## 2386                                  20
## 2387                                   5
## 2388                                   *
## 2389                                  29
## 2390                                  19
## 2391                                  31
## 2392                                 140
## 2393                                  24
## 2394                                  32
## 2395                                   0
## 2396                                  58
## 2397                                   0
## 2398                                   0
## 2399                                   0
## 2400                                   0
## 2401                                  38
## 2402                                   *
## 2403                                   6
## 2404                                   9
## 2405                                 190
## 2406                                   0
## 2407                                   0
## 2408                                  51
## 2409                                  41
## 2410                                  88
## 2411                                   *
## 2412                                 650
## 2413                                  40
## 2414                                  24
## 2415                                   *
## 2416                                 189
## 2417                                  45
## 2418                                  17
## 2419                                  15
## 2420                                   5
## 2421                                  33
## 2422                                  48
## 2423                                   0
## 2424                                   0
## 2425                                  80
## 2426                                   9
## 2427                                  12
## 2428                                  52
## 2429                                   0
## 2430                                   0
## 2431                                   0
## 2432                                  15
## 2433                                   0
## 2434                                   0
## 2435                                   0
## 2436                                   0
## 2437                                   0
## 2438                                   0
## 2439                                   *
## 2440                                  11
## 2441                                   *
## 2442                                   *
## 2443                                   0
## 2444                                   6
## 2445                                 109
## 2446                                   0
## 2447                                   0
## 2448                                   0
## 2449                                   0
## 2450                                   0
## 2451                                 183
## 2452                                   0
## 2453                                   0
## 2454                                  22
## 2455                                  27
## 2456                                 239
## 2457                                 118
## 2458                                  56
## 2459                                  32
## 2460                                  26
## 2461                                  97
## 2462                                  12
## 2463                                  49
## 2464                                 194
## 2465                                  40
## 2466                                  35
## 2467                                  16
## 2468                                  28
## 2469                                   0
## 2470                                  55
## 2471                                  36
## 2472                                  13
## 2473                                  82
## 2474                                  99
## 2475                                  49
## 2476                                  45
## 2477                                  98
## 2478                                   0
## 2479                                   7
## 2480                                   0
## 2481                                 164
## 2482                                  33
## 2483                                  21
## 2484                                  20
## 2485                                 116
## 2486                                  99
## 2487                                  97
## 2488                                 385
## 2489                                 135
## 2490                                 260
## 2491                                 164
## 2492                                  24
## 2493                                 244
## 2494                                  43
## 2495                                  38
## 2496                                  38
## 2497                                 197
## 2498                                 258
## 2499                                  23
## 2500                                  71
## 2501                                 310
## 2502                                 355
## 2503                                 301
## 2504                                  63
## 2505                                 419
## 2506                                 487
## 2507                                 126
## 2508                                  94
## 2509                                 110
## 2510                                 195
## 2511                                  12
## 2512                                   8
## 2513                                   *
## 2514                                1030
## 2515                                  21
## 2516                                  88
## 2517                                  40
## 2518                                  11
## 2519                                  11
## 2520                                  30
## 2521                                  15
## 2522                                  25
## 2523                                 610
## 2524                                 200
## 2525                                 231
## 2526                                  13
## 2527                                  33
## 2528                                   0
## 2529                                 348
## 2530                                   *
## 2531                                   0
## 2532                                   5
## 2533                                   0
## 2534                                   *
## 2535                                  42
## 2536                                   0
## 2537                                  78
## 2538                                 120
## 2539                                   0
## 2540                                   0
## 2541                                  77
## 2542                                  24
## 2543                                 295
## 2544                                 100
## 2545                                 142
## 2546                                 180
## 2547                                   5
## 2548                                   *
## 2549                                   9
## 2550                                   *
## 2551                                   0
## 2552                                   *
## 2553                                   *
## 2554                                   *
## 2555                                   0
## 2556                                  12
## 2557                                  28
## 2558                                   *
## 2559                                   5
## 2560                                   9
## 2561                                   0
## 2562                                   6
## 2563                                   *
## 2564                                   0
## 2565                                  14
## 2566                                   0
## 2567                                   0
## 2568                                   0
## 2569                                   0
## 2570                                   0
## 2571                                   0
## 2572                                   0
## 2573                                   *
## 2574                                   0
## 2575                                   0
## 2576                                   0
## 2577                                   0
## 2578                                   0
## 2579                                  14
## 2580                                   0
## 2581                                  21
## 2582                                 137
## 2583                                 221
## 2584                                1254
## 2585                                 239
## 2586                                  50
## 2587                                 276
## 2588                                 110
## 2589                                  61
## 2590                                1331
## 2591                                  16
## 2592                                   0
## 2593                                   0
## 2594                                 198
## 2595                                 341
## 2596                                 145
## 2597                                  12
## 2598                                  26
## 2599                                   0
## 2600                                 514
## 2601                                   0
## 2602                                  54
## 2603                                 167
## 2604                                  12
## 2605                                   0
## 2606                                1140
## 2607                                  88
## 2608                                 289
## 2609                                  92
## 2610                                  21
## 2611                                  24
## 2612                                 141
## 2613                                 107
## 2614                                  96
## 2615                                 154
## 2616                                   *
## 2617                                  51
## 2618                                   *
## 2619                                  59
## 2620                                  54
## 2621                                 244
## 2622                                  47
## 2623                                 100
## 2624                                  75
## 2625                                  12
## 2626                                  43
## 2627                                  43
## 2628                                 147
## 2629                                 106
## 2630                                  66
## 2631                                 155
## 2632                                  90
## 2633                                  20
## 2634                                  41
## 2635                                  11
## 2636                                  12
## 2637                                  33
## 2638                                  78
## 2639                                  39
## 2640                                   0
## 2641                                   *
## 2642                                   0
## 2643                                   *
## 2644                                   0
## 2645                                   6
## 2646                                   *
## 2647                                   0
## 2648                                 156
## 2649                                   7
## 2650                                  35
## 2651                                  54
## 2652                                  83
## 2653                                   0
## 2654                                  52
## 2655                                  29
## 2656                                  34
## 2657                                 118
## 2658                                  44
## 2659                                 198
## 2660                                  76
## 2661                                 231
## 2662                                 267
## 2663                                 108
## 2664                                  15
## 2665                                  11
## 2666                                  82
## 2667                                  66
## 2668                                  31
## 2669                                  39
## 2670                                  48
## 2671                                  67
## 2672                                  59
## 2673                                  24
## 2674                                   8
## 2675                                  41
## 2676                                   6
## 2677                                 101
## 2678                                  12
## 2679                                  88
## 2680                                  18
## 2681                                  11
## 2682                                 192
## 2683                                  38
## 2684                                 324
## 2685                                 203
## 2686                                  10
## 2687                                  16
## 2688                                  45
## 2689                                  25
## 2690                                  17
## 2691                                 159
## 2692                                  73
## 2693                                  90
## 2694                                 132
## 2695                                  90
## 2696                                 152
## 2697                                 202
## 2698                                   8
## 2699                                  40
## 2700                                 146
## 2701                                  71
## 2702                                  43
## 2703                                 182
## 2704                                 375
## 2705                                 140
## 2706                                  20
## 2707                                 268
## 2708                                  88
## 2709                                 473
## 2710                                  35
## 2711                                  43
## 2712                                  52
## 2713                                  26
## 2714                                  30
## 2715                                  22
## 2716                                  74
## 2717                                  42
## 2718                                 296
## 2719                                  40
## 2720                                  38
## 2721                                  27
## 2722                                  21
## 2723                                   6
## 2724                                  53
## 2725                                  45
## 2726                                   6
## 2727                                  27
## 2728                                  51
## 2729                                 105
## 2730                                   9
## 2731                                   7
## 2732                                  91
## 2733                                  16
## 2734                                  35
## 2735                                  65
## 2736                                 349
## 2737                                  40
## 2738                                  28
## 2739                                  34
## 2740                                   0
## 2741                                  10
## 2742                                  19
## 2743                                   *
## 2744                                 768
## 2745                                  15
## 2746                                 338
## 2747                                   0
## 2748                                 145
## 2749                                 325
## 2750                                  37
## 2751                                 369
## 2752                                3513
## 2753                                 287
## 2754                                 278
## 2755                                 183
## 2756                                   0
## 2757                                  49
## 2758                                 149
## 2759                                   0
## 2760                                 543
## 2761                                 176
## 2762                                1009
## 2763                                  32
## 2764                                  78
## 2765                                 257
## 2766                                 115
## 2767                                 125
## 2768                                 121
## 2769                                 138
## 2770                                   0
## 2771                                   0
## 2772                                   0
## 2773                                   0
## 2774                                   0
## 2775                                   0
## 2776                                 103
## 2777                                 289
## 2778                                1081
## 2779                                 192
## 2780                                 235
## 2781                                  14
## 2782                                 473
## 2783                                   0
## 2784                                   0
## 2785                                   0
## 2786                                   0
## 2787                                   0
## 2788                                   0
## 2789                                   0
## 2790                                   0
## 2791                                   0
## 2792                                   0
## 2793                                   0
## 2794                                   0
## 2795                                   0
## 2796                                   0
## 2797                                   0
## 2798                                   0
## 2799                                   0
## 2800                                   0
## 2801                                   0
## 2802                                   0
## 2803                                   0
## 2804                                   0
## 2805                                 348
## 2806                                  38
## 2807                                  67
## 2808                                   8
## 2809                                   9
## 2810                                  47
## 2811                                  85
## 2812                                  17
## 2813                                  37
## 2814                                  15
## 2815                                   *
## 2816                                   0
## 2817                                  48
## 2818                                  16
## 2819                                 292
## 2820                                 391
## 2821                                  72
## 2822                                 419
## 2823                                 411
## 2824                                  48
## 2825                                 114
## 2826                                   *
## 2827                                   9
## 2828                                   6
## 2829                                  48
## 2830                                   0
## 2831                                   0
## 2832                                   0
## 2833                                  11
## 2834                                   *
## 2835                                 135
## 2836                                 136
## 2837                                 171
## 2838                                  20
## 2839                                  88
## 2840                                 123
## 2841                                 359
## 2842                                 289
## 2843                                  22
## 2844                                 152
## 2845                                 194
## 2846                                 646
## 2847                                1058
## 2848                                 487
## 2849                                   6
## 2850                                1097
## 2851                                 129
## 2852                                1165
## 2853                                 335
## 2854                                  89
## 2855                                 170
## 2856                                 754
## 2857                                 634
## 2858                                 784
## 2859                                 684
## 2860                                 916
## 2861                                 301
## 2862                                 268
## 2863                                 323
## 2864                                 411
## 2865                                  21
## 2866                                 494
## 2867                                 254
## 2868                                 195
## 2869                                 586
## 2870                                 237
## 2871                                 569
## 2872                                 218
## 2873                                 237
## 2874                                 195
## 2875                                 112
## 2876                                  58
## 2877                                 513
## 2878                                  48
## 2879                                  77
## 2880                                  65
## 2881                                  11
## 2882                                 109
## 2883                                  78
## 2884                                   *
## 2885                                  69
## 2886                                  31
## 2887                                  29
## 2888                                 271
## 2889                                   0
## 2890                                   0
## 2891                                 148
## 2892                                   0
## 2893                                   0
## 2894                                 122
## 2895                                   *
## 2896                                  31
## 2897                                  22
## 2898                                   0
## 2899                                   0
## 2900                                   0
## 2901                                 418
## 2902                                  17
## 2903                                  13
## 2904                                  43
## 2905                                 210
## 2906                                 100
## 2907                                  30
## 2908                                  69
## 2909                                   0
## 2910                                  40
## 2911                                  14
## 2912                                   0
## 2913                                  51
## 2914                                 142
## 2915                                  68
## 2916                                 352
## 2917                                  90
## 2918                                 137
## 2919                                  43
## 2920                                  97
## 2921                                  38
## 2922                                  11
## 2923                                  41
## 2924                                 340
## 2925                                  21
## 2926                                  65
## 2927                                  38
## 2928                                  39
## 2929                                 109
## 2930                                 104
## 2931                                  62
## 2932                                 114
## 2933                                 113
## 2934                                  86
## 2935                                 126
## 2936                                 121
## 2937                                  73
## 2938                                   0
## 2939                                   0
## 2940                                   0
## 2941                                   0
## 2942                                  99
## 2943                                  25
## 2944                                   0
## 2945                                   0
## 2946                                   0
## 2947                                   0
## 2948                                   0
## 2949                                 105
## 2950                                 412
## 2951                                 380
## 2952                                 427
## 2953                                 107
## 2954                                 101
## 2955                                  58
## 2956                                   0
## 2957                                  47
## 2958                                  24
## 2959                                 689
## 2960                                   0
## 2961                                   0
## 2962                                 219
## 2963                                 268
## 2964                                 142
## 2965                                  20
## 2966                                  52
## 2967                                   9
## 2968                                  15
## 2969                                  88
## 2970                                   0
## 2971                                   0
## 2972                                   0
## 2973                                   0
## 2974                                   0
## 2975                                  16
## 2976                                  31
## 2977                                   8
## 2978                                  12
## 2979                                  55
## 2980                                  12
## 2981                                  18
## 2982                                  49
## 2983                                  62
## 2984                                  84
## 2985                                  46
## 2986                                  13
## 2987                                  71
## 2988                                   0
## 2989                                   0
## 2990                                   0
## 2991                                   0
## 2992                                   0
## 2993                                   0
## 2994                                   0
## 2995                                   0
## 2996                                   0
## 2997                                   0
## 2998                                   0
## 2999                                   0
## 3000                                   0
## 3001                                   0
## 3002                                   0
## 3003                                   0
## 3004                                   0
## 3005                                   0
## 3006                                   0
## 3007                                   0
## 3008                                   0
## 3009                                   0
## 3010                                   0
## 3011                                   0
## 3012                                   0
## 3013                                   0
## 3014                                  48
## 3015                                   0
## 3016                                   0
## 3017                                   0
## 3018                                   0
## 3019                                   0
## 3020                                   0
## 3021                                   0
## 3022                                   0
## 3023                                   0
## 3024                                   0
## 3025                                   0
## 3026                                  72
## 3027                                 626
## 3028                                  59
## 3029                                 215
## 3030                                  59
## 3031                                  45
## 3032                                  45
## 3033                                  32
## 3034                                 382
## 3035                                  77
## 3036                                 380
## 3037                                  67
## 3038                                 200
## 3039                                 200
## 3040                                 368
## 3041                                 125
## 3042                                 139
## 3043                                 240
## 3044                                  18
## 3045                                  42
## 3046                                  20
## 3047                                 124
## 3048                                  77
## 3049                                  78
## 3050                                 254
## 3051                                 115
## 3052                                  38
## 3053                                   *
## 3054                                   *
## 3055                                   *
## 3056                                   0
## 3057                                   *
## 3058                                   *
## 3059                                   7
## 3060                                   0
## 3061                                   0
## 3062                                   0
## 3063                                   5
## 3064                                   0
## 3065                                   0
## 3066                                   *
## 3067                                   *
## 3068                                   *
## 3069                                   0
## 3070                                   *
## 3071                                   0
## 3072                                   0
## 3073                                   *
## 3074                                   0
## 3075                                   *
## 3076                                   *
## 3077                                   0
## 3078                                   *
## 3079                                   *
## 3080                                   0
## 3081                                   0
## 3082                                   0
## 3083                                   0
## 3084                                   0
## 3085                                   *
## 3086                                   0
## 3087                                   *
## 3088                                   0
## 3089                                   0
## 3090                                   0
## 3091                                   0
## 3092                                   *
## 3093                                   0
## 3094                                   *
## 3095                                   0
## 3096                                   0
## 3097                                   0
## 3098                                   0
## 3099                                   *
## 3100                                   0
## 3101                                   9
## 3102                                   0
## 3103                                   0
## 3104                                   *
## 3105                                   0
## 3106                                   0
## 3107                                   0
## 3108                                   0
## 3109                                   0
## 3110                                   0
## 3111                                   0
## 3112                                   0
## 3113                                   0
## 3114                                   0
## 3115                                   0
## 3116                                   0
## 3117                                   0
## 3118                                  12
## 3119                                   0
## 3120                                   5
## 3121                                   7
## 3122                                   0
## 3123                                   0
## 3124                                   0
## 3125                                   0
## 3126                                   0
## 3127                                   0
## 3128                                   0
## 3129                                   7
## 3130                                   0
## 3131                                   0
## 3132                                   *
## 3133                                  16
## 3134                                   8
## 3135                                   0
## 3136                                   0
## 3137                                 293
## 3138                                   5
## 3139                                   0
## 3140                                   *
## 3141                                   6
## 3142                                  36
## 3143                                  68
## 3144                                  41
## 3145                                  15
## 3146                                  36
## 3147                                 234
## 3148                                  38
## 3149                                  54
## 3150                                  17
## 3151                                  25
## 3152                                  44
## 3153                                  62
## 3154                                  59
## 3155                                  88
## 3156                                  17
## 3157                                  18
## 3158                                  10
## 3159                                  90
## 3160                                  10
## 3161                                  12
## 3162                                  43
## 3163                                  77
## 3164                                  37
## 3165                                  33
## 3166                                  37
## 3167                                  28
## 3168                                  14
## 3169                                  20
## 3170                                   0
## 3171                                  21
## 3172                                  34
## 3173                                  30
## 3174                                  43
## 3175                                  36
## 3176                                   0
## 3177                                   7
## 3178                                   0
## 3179                                   0
## 3180                                   0
## 3181                                   0
## 3182                                   0
## 3183                                   0
## 3184                                   0
## 3185                                 156
## 3186                                   5
## 3187                                 167
## 3188                                 225
## 3189                                   *
## 3190                                   9
## 3191                                  70
## 3192                                  27
## 3193                                 100
## 3194                                  38
## 3195                                  76
## 3196                                  15
## 3197                                  82
## 3198                                  30
## 3199                                   0
## 3200                                   *
## 3201                                  25
## 3202                                 135
## 3203                                  25
## 3204                                   9
## 3205                                  73
## 3206                                  58
## 3207                                   5
## 3208                                 106
## 3209                                  14
## 3210                                  40
## 3211                                  77
## 3212                                  76
## 3213                                  48
## 3214                                  73
## 3215                                 163
## 3216                                 111
## 3217                                  66
## 3218                                   0
## 3219                                   *
## 3220                                   7
## 3221                                   *
## 3222                                  88
## 3223                                  88
## 3224                                 214
## 3225                                  17
## 3226                                  38
## 3227                                 179
## 3228                                 134
## 3229                                 161
## 3230                                  91
## 3231                                 226
## 3232                                 104
## 3233                                 101
## 3234                                  75
## 3235                                   *
## 3236                                   0
## 3237                                   *
## 3238                                  66
## 3239                                  18
## 3240                                   6
## 3241                                   5
## 3242                                   *
## 3243                                   *
## 3244                                  63
## 3245                                 172
## 3246                                 123
## 3247                                  93
## 3248                                  95
## 3249                                  54
## 3250                                 142
## 3251                                 467
## 3252                                 299
## 3253                                 605
## 3254                                 274
## 3255                                   0
## 3256                                  24
## 3257                                  50
## 3258                                 187
## 3259                                   0
## 3260                                  45
## 3261                                 105
## 3262                                  89
## 3263                                 160
## 3264                                 626
## 3265                                  51
## 3266                                 114
## 3267                                 203
## 3268                                   6
## 3269                                  29
## 3270                                 498
## 3271                                 158
## 3272                                   0
## 3273                                 504
## 3274                                  38
## 3275                                  62
## 3276                                  93
## 3277                                  93
## 3278                                 512
## 3279                                  85
## 3280                                  31
## 3281                                  91
## 3282                                  42
## 3283                                   *
## 3284                                  36
## 3285                                  25
## 3286                                  39
## 3287                                  11
## 3288                                  19
## 3289                                   0
## 3290                                   0
## 3291                                  92
## 3292                                 195
## 3293                                   0
## 3294                                   0
## 3295                                  90
## 3296                                 475
## 3297                                  84
## 3298                                   6
## 3299                                  53
## 3300                                 233
## 3301                                  21
## 3302                                  75
## 3303                                  77
## 3304                                 117
## 3305                                  67
## 3306                                  43
## 3307                                 200
## 3308                                 139
## 3309                                  31
## 3310                                  17
## 3311                                   0
## 3312                                  63
## 3313                                  34
## 3314                                   *
## 3315                                   0
## 3316                                   *
## 3317                                   *
## 3318                                  71
## 3319                                   0
## 3320                                 106
## 3321                                  63
## 3322                                  57
## 3323                                 120
## 3324                                  52
## 3325                                  52
## 3326                                  68
## 3327                                  38
## 3328                                  31
## 3329                                   *
## 3330                                  18
## 3331                                  49
## 3332                                   *
## 3333                                   *
## 3334                                   0
## 3335                                   0
## 3336                                   0
## 3337                                   0
## 3338                                   0
## 3339                                   0
## 3340                                   0
## 3341                                 461
## 3342                                  48
## 3343                                 229
## 3344                                  79
## 3345                                  76
## 3346                                  44
## 3347                                  42
## 3348                                  63
## 3349                                  79
## 3350                                  19
## 3351                                  36
## 3352                                  17
## 3353                                  14
## 3354                                 173
## 3355                                  27
## 3356                                 166
## 3357                                 102
## 3358                                 301
## 3359                                 225
## 3360                                 228
## 3361                                 160
## 3362                                  50
## 3363                                 229
## 3364                                 140
## 3365                                 589
## 3366                                  28
## 3367                                 218
## 3368                                 527
## 3369                                  90
## 3370                                  84
## 3371                                 196
## 3372                                  47
## 3373                                 122
## 3374                                  65
## 3375                                  41
## 3376                                 463
## 3377                                 118
## 3378                                  62
## 3379                                 312
## 3380                                 198
## 3381                                 409
## 3382                                 392
## 3383                                  26
## 3384                                 158
## 3385                                 191
## 3386                                 118
## 3387                                   0
## 3388                                   *
## 3389                                  16
## 3390                                   7
## 3391                                   *
## 3392                                   0
## 3393                                 486
## 3394                                  92
## 3395                                1035
## 3396                                 256
## 3397                                 120
## 3398                                1311
## 3399                                 281
## 3400                                1179
## 3401                                 402
## 3402                                1637
## 3403                                 287
## 3404                                 315
## 3405                                 138
## 3406                                 101
## 3407                                 458
## 3408                                 931
## 3409                                 179
## 3410                                 118
## 3411                                 867
## 3412                                 287
## 3413                                 181
## 3414                                 357
## 3415                                 661
## 3416                                 223
## 3417                                 301
## 3418                                 210
## 3419                                 188
## 3420                                 265
## 3421                                 297
## 3422                                 430
## 3423                                 122
## 3424                                 268
## 3425                                1237
## 3426                                 255
## 3427                                 103
## 3428                                 464
## 3429                                 712
## 3430                                   0
## 3431                                   0
## 3432                                   0
## 3433                                  93
## 3434                                 271
## 3435                                 578
## 3436                                 478
## 3437                                  58
## 3438                                  35
## 3439                                   6
## 3440                                  41
## 3441                                 203
## 3442                                 223
## 3443                                 131
## 3444                                  60
## 3445                                 100
## 3446                                 135
## 3447                                  32
## 3448                                  88
## 3449                                  85
## 3450                                 250
## 3451                                 265
## 3452                                  85
## 3453                                  89
## 3454                                 297
## 3455                                 117
## 3456                                   *
## 3457                                   0
## 3458                                  56
## 3459                                   *
## 3460                                 142
## 3461                                  21
## 3462                                 175
## 3463                                   0
## 3464                                  22
## 3465                                  35
## 3466                                  19
## 3467                                 105
## 3468                                   0
## 3469                                   0
## 3470                                   0
## 3471                                  20
## 3472                                 451
## 3473                                  82
## 3474                                  37
## 3475                                  17
## 3476                                  34
## 3477                                   0
## 3478                                  53
## 3479                                   *
## 3480                                  21
## 3481                                  11
## 3482                                   0
## 3483                                   0
## 3484                                   0
## 3485                                   6
## 3486                                   0
## 3487                                   0
## 3488                                  19
## 3489                                  13
## 3490                                   0
## 3491                                   0
## 3492                                   0
## 3493                                   0
## 3494                                   0
## 3495                                   0
## 3496                                   0
## 3497                                   0
## 3498                                 120
## 3499                                   0
## 3500                                  11
## 3501                                   0
## 3502                                   0
## 3503                                   0
## 3504                                   0
## 3505                                   0
## 3506                                   0
## 3507                                   0
## 3508                                   0
## 3509                                   0
## 3510                                   0
## 3511                                   0
## 3512                                   0
## 3513                                   0
## 3514                                   0
## 3515                                   0
## 3516                                   0
## 3517                                   0
## 3518                                   0
## 3519                                   0
## 3520                                   0
## 3521                                   0
## 3522                                   0
## 3523                                   0
## 3524                                   0
## 3525                                   0
## 3526                                   0
## 3527                                   0
## 3528                                   0
## 3529                                   0
## 3530                                   0
## 3531                                  13
## 3532                                   5
## 3533                                   0
## 3534                                   0
## 3535                                   0
## 3536                                   *
## 3537                                   0
## 3538                                  71
## 3539                                   0
## 3540                                   0
## 3541                                   0
## 3542                                   0
## 3543                                   0
## 3544                                   0
## 3545                                   0
## 3546                                   *
## 3547                                   0
## 3548                                   0
## 3549                                   0
## 3550                                   0
## 3551                                   0
## 3552                                   0
## 3553                                   0
## 3554                                   0
## 3555                                   0
## 3556                                   0
## 3557                                   0
## 3558                                   0
## 3559                                   0
## 3560                                   0
## 3561                                   0
## 3562                                   0
## 3563                                   0
## 3564                                   0
## 3565                                   0
## 3566                                   *
## 3567                                   0
## 3568                                   0
## 3569                                   0
## 3570                                   0
## 3571                                   0
## 3572                                   0
## 3573                                  28
## 3574                                   0
## 3575                                6366
## 3576                                 858
## 3577                                 725
## 3578                                  41
## 3579                                 272
## 3580                                  10
## 3581                                 632
## 3582                                  18
## 3583                                  60
## 3584                                  92
## 3585                                  20
## 3586                                  24
## 3587                                 123
## 3588                                 149
## 3589                                  60
## 3590                                  30
## 3591                                  43
## 3592                                  18
## 3593                                   5
## 3594                                  20
## 3595                                   *
## 3596                                  65
## 3597                                  63
## 3598                                 116
## 3599                                  23
## 3600                                 113
## 3601                                   0
## 3602                                 243
## 3603                                  89
## 3604                                 183
## 3605                                  33
## 3606                                 142
## 3607                                 388
## 3608                                   *
## 3609                                  44
## 3610                                   0
## 3611                                   0
## 3612                                   0
## 3613                                 156
## 3614                                  42
## 3615                                 126
## 3616                                  63
## 3617                                  50
## 3618                                  47
## 3619                                  75
## 3620                                 127
## 3621                                  61
## 3622                                   0
## 3623                                  29
## 3624                                 158
## 3625                                  16
## 3626                                  40
## 3627                                   9
## 3628                                 101
## 3629                                  91
## 3630                                  54
## 3631                                   0
## 3632                                   0
## 3633                                 108
## 3634                                 203
## 3635                                 494
## 3636                                   0
## 3637                                   0
## 3638                                 469
## 3639                                 637
## 3640                                  37
## 3641                                   0
## 3642                                   7
## 3643                                 130
## 3644                                   0
## 3645                                   0
## 3646                                  38
## 3647                                  52
## 3648                                   0
## 3649                                   0
## 3650                                  15
## 3651                                   0
## 3652                                   0
## 3653                                   0
## 3654                                   *
## 3655                                2567
## 3656                                   *
## 3657                                   *
## 3658                                   *
## 3659                                 160
## 3660                                5436
## 3661                                   *
## 3662                                 143
## 3663                                   0
## 3664                                  74
## 3665                                  54
## 3666                                  63
## 3667                                   *
## 3668                                   *
## 3669                                  19
## 3670                                   0
## 3671                                   *
## 3672                                 451
## 3673                                   *
## 3674                                   *
## 3675                                   0
## 3676                                   0
## 3677                                  44
## 3678                                 299
## 3679                                   *
## 3680                                   *
## 3681                                   *
## 3682                                   *
## 3683                                   *
## 3684                                   *
## 3685                                  15
## 3686                                   *
## 3687                                 114
## 3688                                   *
## 3689                                   *
## 3690                                 402
## 3691                                 455
## 3692                                1274
## 3693                                 414
## 3694                                 276
## 3695                                 448
## 3696                                   *
## 3697                                   *
## 3698                                   *
## 3699                                1287
## 3700                                   0
## 3701                                 799
## 3702                                2758
## 3703                                1444
## 3704                                1153
## 3705                                1255
## 3706                                 317
## 3707                                  56
## 3708                                   *
## 3709                                   *
## 3710                                   *
## 3711                                   *
## 3712                                   *
## 3713                                   *
## 3714                                   *
## 3715                                   0
## 3716                                   *
## 3717                                   *
## 3718                                   0
## 3719                                   *
## 3720                                   *
## 3721                                   *
## 3722                                   *
## 3723                                  17
## 3724                                   0
## 3725                                   *
## 3726                                   *
## 3727                                   *
## 3728                                   *
## 3729                                   *
## 3730                                   *
## 3731                                   *
## 3732                                   *
## 3733                                   *
## 3734                                   *
## 3735                                 121
## 3736                                  41
## 3737                                   0
## 3738                                  29
## 3739                                 166
## 3740                                  10
## 3741                                   0
## 3742                                   0
## 3743                                   0
## 3744                                   0
## 3745                                 281
## 3746                                 104
## 3747                                  34
## 3748                                  74
## 3749                                 114
## 3750                                  18
## 3751                                   8
## 3752                                  55
## 3753                                  50
## 3754                                   9
## 3755                                  27
## 3756                                 123
## 3757                                  66
## 3758                                  17
## 3759                                  48
## 3760                                  33
## 3761                                  30
## 3762                                   7
## 3763                                  76
## 3764                                   0
## 3765                                   0
## 3766                                   0
## 3767                                 167
## 3768                                  63
## 3769                                  49
## 3770                                 483
## 3771                                 116
## 3772                                  29
## 3773                                   0
## 3774                                 120
## 3775                                  23
## 3776                                 154
## 3777                                  12
## 3778                                  85
## 3779                                  69
## 3780                                 383
## 3781                                 140
## 3782                                 358
## 3783                                 157
## 3784                                 136
## 3785                                  12
## 3786                                 115
## 3787                                 574
## 3788                                  55
## 3789                                 130
## 3790                                  29
## 3791                                  28
## 3792                                  42
## 3793                                  16
## 3794                                  24
## 3795                                  36
## 3796                                  49
## 3797                                  35
## 3798                                  13
## 3799                                   9
## 3800                                  10
## 3801                                 252
## 3802                                  98
## 3803                                 119
## 3804                                 167
## 3805                                 368
## 3806                                  48
## 3807                                 182
## 3808                                  13
## 3809                                  85
## 3810                                  96
## 3811                                  95
## 3812                                   *
## 3813                                 254
## 3814                                 309
## 3815                                  57
## 3816                                 239
## 3817                                 139
## 3818                                  56
## 3819                                 155
## 3820                                 402
## 3821                                 247
## 3822                                  63
## 3823                                  89
## 3824                                   0
## 3825                                  20
## 3826                                1471
## 3827                                   0
## 3828                                  71
## 3829                                   0
## 3830                                  13
## 3831                                   0
## 3832                                 147
## 3833                                  40
## 3834                                  47
## 3835                                  16
## 3836                                  13
## 3837                                   *
## 3838                                   8
## 3839                                  44
## 3840                                  79
## 3841                                  23
## 3842                                  74
## 3843                                 111
## 3844                                 655
## 3845                                 512
## 3846                                  42
## 3847                                  19
## 3848                                 178
## 3849                                  65
## 3850                                  14
## 3851                                 151
## 3852                                  34
## 3853                                  22
## 3854                                  12
## 3855                                 118
## 3856                                 118
## 3857                                 262
## 3858                                 240
## 3859                                  58
## 3860                                   *
## 3861                                   *
## 3862                                   0
## 3863                                 114
## 3864                                   0
## 3865                                   *
## 3866                                 203
## 3867                                 110
## 3868                                 160
## 3869                                 370
## 3870                                 265
## 3871                                  53
## 3872                                  51
## 3873                                 631
## 3874                                 441
## 3875                                 239
## 3876                                 734
## 3877                                1167
## 3878                                  11
## 3879                                 547
## 3880                                 101
## 3881                                 133
## 3882                                  85
## 3883                                  97
## 3884                                 195
## 3885                                  55
## 3886                                  52
## 3887                                  61
## 3888                                 133
## 3889                                  88
## 3890                                 257
## 3891                                  75
## 3892                                 220
## 3893                                  83
## 3894                                  67
## 3895                                 102
## 3896                                   0
## 3897                                  53
## 3898                                   *
## 3899                                  14
## 3900                                  28
## 3901                                   9
## 3902                                   8
## 3903                                  42
## 3904                                   0
## 3905                                 127
## 3906                                 343
## 3907                                   0
## 3908                                   0
## 3909                                   0
## 3910                                   0
## 3911                                   0
## 3912                                   0
## 3913                                   0
## 3914                                   0
## 3915                                   0
## 3916                                   0
## 3917                                   0
## 3918                                   0
## 3919                                   0
## 3920                                   0
## 3921                                   0
## 3922                                   0
## 3923                                   0
## 3924                                   0
## 3925                                   0
## 3926                                   0
## 3927                                   0
## 3928                                   0
## 3929                                   0
## 3930                                   0
## 3931                                   0
## 3932                                   0
## 3933                                   0
## 3934                                   0
## 3935                                   0
## 3936                                   0
## 3937                                   0
## 3938                                   0
## 3939                                   0
## 3940                                   0
## 3941                                   0
## 3942                                   0
## 3943                                   0
## 3944                                   0
## 3945                                   0
## 3946                                   0
## 3947                                   0
## 3948                                   0
## 3949                                   0
## 3950                                   0
## 3951                                   0
## 3952                                   0
## 3953                                   0
## 3954                                   0
## 3955                                   0
## 3956                                   0
## 3957                                   0
## 3958                                   0
## 3959                                   0
## 3960                                   0
## 3961                                   0
## 3962                                   0
## 3963                                   0
## 3964                                   0
## 3965                                   0
## 3966                                   0
## 3967                                   0
## 3968                                   0
## 3969                                   0
## 3970                                   0
## 3971                                   0
## 3972                                   0
## 3973                                   0
## 3974                                   0
## 3975                                   0
## 3976                                   0
## 3977                                   0
## 3978                                   0
## 3979                                   0
## 3980                                   0
## 3981                                   0
## 3982                                   0
## 3983                                   0
## 3984                                   0
## 3985                                   0
## 3986                                   0
## 3987                                   0
## 3988                                   0
## 3989                                   0
## 3990                                   0
## 3991                                   0
## 3992                                   0
## 3993                                   0
## 3994                                   0
## 3995                                   0
## 3996                                   0
## 3997                                   0
## 3998                                   0
## 3999                                   0
## 4000                                   0
## 4001                                   0
## 4002                                   0
## 4003                                   0
## 4004                                   0
## 4005                                   0
## 4006                                   0
## 4007                                   0
## 4008                                   0
## 4009                                   0
## 4010                                   0
## 4011                                   0
## 4012                                   0
## 4013                                   0
## 4014                                   0
## 4015                                   0
## 4016                                   0
## 4017                                   0
## 4018                                   0
## 4019                                   0
## 4020                                   0
## 4021                                   0
## 4022                                   0
## 4023                                   0
## 4024                                   0
## 4025                                   0
## 4026                                   0
## 4027                                   0
## 4028                                   0
## 4029                                   0
## 4030                                   0
## 4031                                   0
## 4032                                   *
## 4033                                   0
## 4034                                   0
## 4035                                   0
## 4036                                   0
## 4037                                   0
## 4038                                   0
## 4039                                   0
## 4040                                   0
## 4041                                   0
## 4042                                   0
## 4043                                   0
## 4044                                   0
## 4045                                   0
## 4046                                  15
## 4047                                  94
## 4048                                   0
## 4049                                   *
## 4050                                   0
## 4051                                   0
## 4052                                   0
## 4053                                   0
## 4054                                   0
## 4055                                   0
## 4056                                   0
## 4057                                   0
## 4058                                   0
## 4059                                   0
## 4060                                   0
## 4061                                   9
## 4062                                   9
## 4063                                  43
## 4064                                  17
## 4065                                   5
## 4066                                   *
## 4067                                   6
## 4068                                   0
## 4069                                   0
## 4070                                   0
## 4071                                   0
## 4072                                   0
## 4073                                   0
## 4074                                   0
## 4075                                   0
## 4076                                   0
## 4077                                   0
## 4078                                   0
## 4079                                   0
## 4080                                   0
## 4081                                   0
## 4082                                   0
## 4083                                   0
## 4084                                   0
## 4085                                   0
## 4086                                   0
## 4087                                   0
## 4088                                   0
## 4089                                   0
## 4090                                   0
## 4091                                   0
## 4092                                   0
## 4093                                   0
## 4094                                   0
## 4095                                   0
## 4096                                   0
## 4097                                   0
## 4098                                   0
## 4099                                   0
## 4100                                   0
## 4101                                1842
## 4102                                   0
## 4103                                   *
## 4104                                   0
## 4105                                  13
## 4106                                   0
## 4107                                   0
## 4108                                   0
## 4109                                   0
## 4110                                   *
## 4111                                   0
## 4112                                   *
## 4113                                   0
## 4114                                   0
## 4115                                   0
## 4116                                   0
## 4117                                   0
## 4118                                   0
## 4119                                 183
## 4120                                 165
## 4121                                  34
## 4122                                  28
## 4123                                   0
## 4124                                  15
## 4125                                 545
## 4126                                   5
## 4127                                 146
## 4128                                 133
## 4129                                  92
## 4130                                 197
## 4131                                  21
## 4132                                   *
## 4133                                   0
## 4134                                   0
## 4135                                   5
## 4136                                   0
## 4137                                   0
## 4138                                  16
## 4139                                 303
## 4140                                   0
## 4141                                   0
## 4142                                   0
## 4143                                   0
## 4144                                 428
## 4145                                 257
## 4146                                 975
## 4147                                 791
## 4148                                1112
## 4149                                 485
## 4150                                 228
## 4151                                 104
## 4152                                 277
## 4153                                 129
## 4154                                 127
## 4155                                   0
## 4156                                   0
## 4157                                   0
## 4158                                   0
## 4159                                  29
## 4160                                   0
## 4161                                   0
## 4162                                  55
## 4163                                   0
## 4164                                   0
## 4165                                   *
## 4166                                   0
## 4167                                   0
## 4168                                   0
## 4169                                   0
## 4170                                 147
## 4171                                  24
## 4172                                  90
## 4173                                  41
## 4174                                  85
## 4175                                  57
## 4176                                 138
## 4177                                 256
## 4178                                 540
## 4179                                  57
## 4180                                   0
## 4181                                   0
## 4182                                   0
## 4183                                   0
## 4184                                   0
## 4185                                   0
## 4186                                   0
## 4187                                   0
## 4188                                   0
## 4189                                   0
## 4190                                   0
## 4191                                   0
## 4192                                   0
## 4193                                   0
## 4194                                  23
## 4195                                   *
## 4196                                 181
## 4197                                  42
## 4198                                 183
## 4199                                  54
## 4200                                   0
## 4201                                   0
## 4202                                 396
## 4203                                 467
## 4204                                 557
## 4205                                 827
## 4206                                 336
## 4207                                  49
## 4208                                   0
## 4209                                   0
## 4210                                   0
## 4211                                   0
## 4212                                   0
## 4213                                   *
## 4214                                 140
## 4215                                   *
## 4216                                   *
## 4217                                 202
## 4218                                  84
## 4219                                  15
## 4220                                   7
## 4221                                  23
## 4222                                  12
## 4223                                   *
## 4224                                   0
## 4225                                   0
## 4226                                   0
## 4227                                   0
## 4228                                   0
## 4229                                   0
## 4230                                   0
## 4231                                   0
## 4232                                   0
## 4233                                   0
## 4234                                   0
## 4235                                   0
## 4236                                   0
## 4237                                   0
## 4238                                   0
## 4239                                1466
## 4240                                 125
## 4241                                 139
## 4242                                  14
## 4243                                   5
## 4244                                  80
## 4245                                  28
## 4246                                  13
## 4247                                   *
## 4248                                   0
## 4249                                   *
## 4250                                  26
## 4251                                  32
## 4252                                  32
## 4253                                   0
## 4254                                   0
## 4255                                   0
## 4256                                   0
## 4257                                   0
## 4258                                   0
## 4259                                   0
## 4260                                   0
## 4261                                   0
## 4262                                  41
## 4263                                  59
## 4264                                   *
## 4265                                  62
## 4266                                   0
## 4267                                   0
## 4268                                  69
## 4269                                   0
## 4270                                  11
## 4271                                   *
## 4272                                   0
## 4273                                   0
## 4274                                   0
## 4275                                   *
## 4276                                   0
## 4277                                   *
## 4278                                   0
## 4279                                   0
## 4280                                   0
## 4281                                   *
## 4282                                   *
## 4283                                   *
## 4284                                   0
## 4285                                   *
## 4286                                   0
## 4287                                   *
## 4288                                   0
## 4289                                   0
## 4290                                   0
## 4291                                   0
## 4292                                   0
## 4293                                   0
## 4294                                   0
## 4295                                   0
## 4296                                   0
## 4297                                   *
## 4298                                   0
## 4299                                   0
## 4300                                   *
## 4301                                   *
## 4302                                   *
## 4303                                   0
## 4304                                   0
## 4305                                   0
## 4306                                   0
## 4307                                   *
## 4308                                   0
## 4309                                   0
## 4310                                   *
## 4311                                   0
## 4312                                   *
## 4313                                   0
## 4314                                   0
## 4315                                   0
## 4316                                   0
## 4317                                   0
## 4318                                   0
## 4319                                   0
## 4320                                  15
## 4321                                  13
## 4322                                   8
## 4323                                 116
## 4324                                  50
## 4325                                   5
## 4326                                  26
## 4327                                   0
## 4328                                  28
## 4329                                   0
## 4330                                   0
## 4331                                   0
## 4332                                   0
## 4333                                   0
## 4334                                   0
## 4335                                   0
## 4336                                   0
## 4337                                   0
## 4338                                   0
## 4339                                   *
## 4340                                   0
## 4341                                   0
## 4342                                   0
## 4343                                   0
## 4344                                   0
## 4345                                   0
## 4346                                   0
## 4347                                   0
## 4348                                   0
## 4349                                   0
## 4350                                   0
## 4351                                   0
## 4352                                   0
## 4353                                   0
## 4354                                   0
## 4355                                   0
## 4356                                   0
## 4357                                   0
## 4358                                   0
## 4359                                   0
## 4360                                   0
## 4361                                   0
## 4362                                   0
## 4363                                   0
## 4364                                   0
## 4365                                   0
## 4366                                   0
## 4367                                   0
## 4368                                   0
## 4369                                   0
## 4370                                   0
## 4371                                   0
## 4372                                   0
## 4373                                   0
## 4374                                   0
## 4375                                   0
## 4376                                   0
## 4377                                   0
## 4378                                   0
## 4379                                   0
## 4380                                   0
## 4381                                   0
## 4382                                   0
## 4383                                   0
## 4384                                   0
## 4385                                   0
## 4386                                   0
## 4387                                   0
## 4388                                   0
## 4389                                   0
## 4390                                   0
## 4391                                   0
## 4392                                   0
## 4393                                   0
## 4394                                   0
## 4395                                   0
## 4396                                   0
## 4397                                   0
## 4398                                   0
## 4399                                   0
## 4400                                   0
## 4401                                   0
## 4402                                   0
## 4403                                   0
## 4404                                   0
## 4405                                   0
## 4406                                   0
## 4407                                   0
## 4408                                   0
## 4409                                   0
## 4410                                   0
## 4411                                   0
## 4412                                   0
## 4413                                   0
## 4414                                   0
## 4415                                   0
## 4416                                   0
## 4417                                   0
## 4418                                   0
## 4419                                   0
## 4420                                   0
## 4421                                   0
## 4422                                   0
## 4423                                   0
## 4424                                   0
## 4425                                   0
## 4426                                   0
## 4427                                   0
## 4428                                   0
## 4429                                   0
## 4430                                   0
## 4431                                   0
## 4432                                   0
## 4433                                   0
## 4434                                   0
## 4435                                   0
## 4436                                   0
## 4437                                   0
## 4438                                   0
## 4439                                   0
## 4440                                   0
## 4441                                   0
## 4442                                   0
## 4443                                   0
## 4444                                   0
## 4445                                   0
## 4446                                  85
## 4447                                  65
## 4448                                   0
## 4449                                  19
## 4450                                   *
## 4451                                   0
## 4452                                   0
## 4453                                   *
## 4454                                  14
## 4455                                   8
## 4456                                  20
## 4457                                   *
## 4458                                 140
## 4459                                   0
## 4460                                   0
## 4461                                   0
## 4462                                   0
## 4463                                   0
## 4464                                   0
## 4465                                   0
## 4466                                   0
## 4467                                   0
## 4468                                   0
## 4469                                   0
## 4470                                   0
## 4471                                   0
## 4472                                   0
## 4473                                   0
## 4474                                   0
## 4475                                   0
## 4476                                   0
## 4477                                   0
## 4478                                   0
## 4479                                   0
## 4480                                   0
## 4481                                   0
## 4482                                   0
## 4483                                   0
## 4484                                   0
## 4485                                   0
## 4486                                   0
## 4487                                   0
## 4488                                   0
## 4489                                   0
## 4490                                   0
## 4491                                   0
## 4492                                   0
## 4493                                   0
## 4494                                   0
## 4495                                   0
## 4496                                   0
## 4497                                   0
## 4498                                   0
## 4499                                   0
## 4500                                   0
## 4501                                   0
## 4502                                   0
## 4503                                   0
## 4504                                   0
## 4505                                   0
## 4506                                   0
## 4507                                   0
## 4508                                   0
## 4509                                   0
## 4510                                   0
## 4511                                   0
## 4512                                   0
## 4513                                   0
## 4514                                   0
## 4515                                   0
## 4516                                   0
## 4517                                   0
## 4518                                   0
## 4519                                   0
## 4520                                   0
## 4521                                   0
## 4522                                   0
## 4523                                   0
## 4524                                   0
## 4525                                   0
## 4526                                   0
## 4527                                   0
## 4528                                   0
## 4529                                   0
## 4530                                   0
## 4531                                   0
## 4532                                   0
## 4533                                   0
## 4534                                   0
## 4535                                   0
## 4536                                   0
## 4537                                   0
## 4538                                   0
## 4539                                   0
## 4540                                   0
## 4541                                   0
## 4542                                  25
## 4543                                  66
## 4544                                  13
## 4545                                   0
## 4546                                   0
## 4547                                   0
## 4548                                   0
## 4549                                   0
## 4550                                   0
## 4551                                   0
## 4552                                   0
## 4553                                   *
## 4554                                   0
## 4555                                   0
## 4556                                   0
## 4557                                   0
## 4558                                   *
## 4559                                   0
## 4560                                   0
## 4561                                   *
## 4562                                   0
## 4563                                   *
## 4564                                   0
## 4565                                   0
## 4566                                   0
## 4567                                   0
## 4568                                   0
## 4569                                   *
## 4570                                   0
## 4571                                   0
## 4572                                   0
## 4573                                   0
## 4574                                   0
## 4575                                   0
## 4576                                   0
## 4577                                   0
## 4578                                   0
## 4579                                   0
## 4580                                   0
## 4581                                   0
## 4582                                   0
## 4583                                   0
## 4584                                   0
## 4585                                   0
## 4586                                   0
## 4587                                   0
## 4588                                   0
## 4589                                   0
## 4590                                   0
## 4591                                   0
## 4592                                   0
## 4593                                   0
## 4594                                   0
## 4595                                   0
## 4596                                   0
## 4597                                   0
## 4598                                   0
## 4599                                   0
## 4600                                   0
## 4601                                   0
## 4602                                   *
## 4603                                   0
## 4604                                   0
## 4605                                   7
## 4606                                   *
## 4607                                   5
## 4608                                   *
## 4609                                   *
## 4610                                   *
## 4611                                   *
## 4612                                   *
## 4613                                   *
## 4614                                   0
## 4615                                   0
## 4616                                   0
## 4617                                   0
## 4618                                   0
## 4619                                   0
## 4620                                   0
## 4621                                   0
## 4622                                   0
## 4623                                  73
## 4624                                   0
## 4625                                  56
## 4626                                   5
## 4627                                  15
## 4628                                   *
## 4629                                 257
## 4630                                  53
## 4631                                   0
## 4632                                   0
## 4633                                  86
## 4634                                  15
## 4635                                   0
## 4636                                   0
## 4637                                   0
## 4638                                   *
## 4639                                   *
## 4640                                   *
## 4641                                   *
## 4642                                   *
## 4643                                   *
## 4644                                   *
## 4645                                   *
## 4646                                   5
## 4647                                   *
## 4648                                   *
## 4649                                   *
## 4650                                   *
## 4651                                   *
## 4652                                   *
## 4653                                   *
## 4654                                   *
## 4655                                   0
## 4656                                   *
## 4657                                   *
## 4658                                   *
## 4659                                   *
## 4660                                   *
## 4661                                  14
## 4662                                  10
## 4663                                   *
## 4664                                   *
## 4665                                   *
## 4666                                   *
## 4667                                   0
## 4668                                   *
## 4669                                   *
## 4670                                   0
## 4671                                   *
## 4672                                   *
## 4673                                   *
## 4674                                   *
## 4675                                   *
## 4676                                   *
## 4677                                   *
## 4678                                   *
## 4679                                   *
## 4680                                   *
## 4681                                   0
## 4682                                   0
## 4683                                   0
## 4684                                   0
## 4685                                   0
## 4686                                   0
## 4687                                   0
## 4688                                   0
## 4689                                   0
## 4690                                   0
## 4691                                   0
## 4692                                   0
## 4693                                   0
## 4694                                   0
## 4695                                   0
## 4696                                   0
## 4697                                  10
## 4698                                   9
## 4699                                   8
## 4700                                   0
## 4701                                   0
## 4702                                   0
## 4703                                   0
## 4704                                   0
## 4705                                   0
## 4706                                   0
## 4707                                   *
## 4708                                 309
## 4709                                 150
## 4710                                   0
## 4711                                   0
## 4712                                   0
## 4713                                  32
## 4714                                  61
## 4715                                  91
## 4716                                 158
## 4717                                   0
## 4718                                   0
## 4719                                   0
## 4720                                   0
## 4721                                   0
## 4722                                  14
## 4723                                  16
## 4724                                   0
## 4725                                   0
## 4726                                  37
## 4727                                  13
## 4728                                  53
## 4729                                   *
## 4730                                   *
## 4731                                   *
## 4732                                   *
## 4733                                   *
## 4734                                   *
## 4735                                   *
## 4736                                   *
## 4737                                   *
## 4738                                   0
## 4739                                 270
## 4740                                 311
## 4741                                   *
## 4742                                   0
## 4743                                   0
## 4744                                   0
## 4745                                   0
## 4746                                   0
## 4747                                   0
## 4748                                   0
## 4749                                   0
## 4750                                   0
## 4751                                   0
## 4752                                   0
## 4753                                   0
## 4754                                   0
## 4755                                   0
## 4756                                   0
## 4757                                   0
## 4758                                   0
## 4759                                   0
## 4760                                   0
## 4761                                   0
## 4762                                   0
## 4763                                   *
## 4764                                   0
## 4765                                   0
## 4766                                   0
## 4767                                   0
## 4768                                   0
## 4769                                   0
## 4770                                   0
## 4771                                   0
## 4772                                   0
## 4773                                   0
## 4774                                   0
## 4775                                   0
## 4776                                   0
## 4777                                   0
## 4778                                   0
## 4779                                   0
## 4780                                   *
## 4781                                   *
## 4782                                   0
## 4783                                   *
## 4784                                   *
## 4785                                   0
## 4786                                   *
## 4787                                   0
## 4788                                   *
## 4789                                   *
## 4790                                   *
## 4791                                   *
## 4792                                   *
## 4793                                   *
## 4794                                   0
## 4795                                   *
## 4796                                   *
## 4797                                   0
## 4798                                   *
## 4799                                   *
## 4800                                   *
## 4801                                   *
## 4802                                   *
## 4803                                   *
## 4804                                   *
## 4805                                   *
## 4806                                   *
## 4807                                   *
## 4808                                   0
## 4809                                   *
## 4810                                   *
## 4811                                   0
## 4812                                   0
## 4813                                   0
## 4814                                   0
## 4815                                   0
## 4816                                   0
## 4817                                   0
## 4818                                   0
## 4819                                 286
## 4820                                   *
## 4821                                  28
## 4822                                 151
## 4823                                   0
## 4824                                   0
## 4825                                   *
## 4826                                   0
## 4827                                   0
## 4828                                   0
## 4829                                   0
## 4830                                   0
## 4831                                   0
## 4832                                   0
## 4833                                   0
## 4834                                 387
## 4835                                 374
## 4836                                 267
## 4837                                  67
## 4838                                   0
## 4839                                 194
## 4840                                   *
## 4841                                  32
## 4842                                   *
## 4843                                  14
## 4844                                   0
## 4845                                  10
## 4846                                   9
## 4847                                   *
## 4848                                   *
## 4849                                   0
## 4850                                   0
## 4851                                   0
## 4852                                   0
## 4853                                   0
## 4854                                   0
## 4855                                   0
## 4856                                   0
## 4857                                  29
## 4858                                  25
## 4859                                  30
## 4860                                  25
## 4861                                   0
## 4862                                  40
## 4863                                   0
## 4864                                  67
## 4865                                  10
## 4866                                   0
## 4867                                   *
## 4868                                 559
## 4869                                   0
## 4870                                   0
## 4871                                  27
## 4872                                   7
## 4873                                   0
## 4874                                   0
## 4875                                   0
## 4876                                   0
## 4877                                   0
## 4878                                   0
## 4879                                   0
## 4880                                   0
## 4881                                   0
## 4882                                   0
## 4883                                   0
## 4884                                   0
## 4885                                   0
## 4886                                   0
## 4887                                  43
## 4888                                   *
## 4889                                   *
## 4890                                   0
## 4891                                   0
## 4892                                   0
## 4893                                   0
## 4894                                   0
## 4895                                  10
## 4896                                  17
## 4897                                   0
## 4898                                   *
## 4899                                   0
## 4900                                   0
## 4901                                   0
## 4902                                   *
## 4903                                   0
## 4904                                   0
## 4905                                   0
## 4906                                   0
## 4907                                   0
## 4908                                   0
## 4909                                   0
## 4910                                   0
## 4911                                   0
## 4912                                   0
## 4913                                   0
## 4914                                   0
## 4915                                   *
## 4916                                   *
## 4917                                   *
## 4918                                   0
## 4919                                   *
## 4920                                   *
## 4921                                   *
## 4922                                   *
## 4923                                   *
## 4924                                   0
## 4925                                   0
## 4926                                   *
## 4927                                   0
## 4928                                   0
## 4929                                   0
## 4930                                   0
## 4931                                   0
## 4932                                   0
## 4933                                   0
## 4934                                   0
## 4935                                   0
## 4936                                   0
## 4937                                   0
## 4938                                   0
## 4939                                   0
## 4940                                   0
## 4941                                   0
## 4942                                 109
## 4943                                   5
## 4944                                  58
## 4945                                  33
## 4946                                  32
## 4947                                   *
## 4948                                   0
## 4949                                   0
## 4950                                   0
## 4951                                   0
## 4952                                   0
## 4953                                   0
## 4954                                   0
## 4955                                   0
## 4956                                   0
## 4957                                   *
## 4958                                   0
## 4959                                   *
## 4960                                   *
## 4961                                   *
## 4962                                   7
## 4963                                   *
## 4964                                  16
## 4965                                   8
## 4966                                   *
## 4967                                  41
## 4968                                   0
## 4969                                  24
## 4970                                   0
## 4971                                   0
## 4972                                   0
## 4973                                   0
## 4974                                  61
## 4975                                   6
## 4976                                   *
## 4977                                  11
## 4978                                   5
## 4979                                   8
## 4980                                   *
## 4981                                   5
## 4982                                  12
## 4983                                   *
## 4984                                  15
## 4985                                   0
## 4986                                   0
## 4987                                   0
## 4988                                   0
## 4989                                   0
## 4990                                   0
## 4991                                   0
## 4992                                   0
## 4993                                   0
## 4994                                   0
## 4995                                   0
## 4996                                   0
## 4997                                   0
## 4998                                   0
## 4999                                   0
## 5000                                   0
## 5001                                   0
## 5002                                   0
## 5003                                   0
## 5004                                   0
## 5005                                   0
## 5006                                   0
## 5007                                   0
## 5008                                   0
## 5009                                   0
## 5010                                   0
## 5011                                   0
## 5012                                   0
## 5013                                   0
## 5014                                   0
## 5015                                   0
## 5016                                   0
## 5017                                   0
## 5018                                   0
## 5019                                   0
## 5020                                   6
## 5021                                   0
## 5022                                   0
## 5023                                   0
## 5024                                   0
## 5025                                   0
## 5026                                   0
## 5027                                   0
## 5028                                   0
## 5029                                   0
## 5030                                   0
## 5031                                   0
## 5032                                   0
## 5033                                  56
## 5034                                  36
## 5035                                  15
## 5036                                  42
## 5037                                  13
## 5038                                  23
## 5039                                  20
## 5040                                  12
## 5041                                   0
## 5042                                   *
## 5043                                   0
## 5044                                   0
## 5045                                   0
## 5046                                   0
## 5047                                   *
## 5048                                   0
## 5049                                 151
## 5050                                  45
## 5051                                 169
## 5052                                  98
## 5053                                   0
## 5054                                   0
## 5055                                   0
## 5056                                   0
## 5057                                  20
## 5058                                   0
## 5059                                   0
## 5060                                   0
## 5061                                   0
## 5062                                   0
## 5063                                 126
## 5064                                   0
## 5065                                   0
## 5066                                   0
## 5067                                   0
## 5068                                   0
## 5069                                   0
## 5070                                  28
## 5071                                   *
## 5072                                  32
## 5073                                   0
## 5074                                   0
## 5075                                  45
## 5076                                   0
## 5077                                   0
## 5078                                 151
## 5079                                 226
## 5080                                   0
## 5081                                   0
## 5082                                  25
## 5083                                   0
## 5084                                   0
## 5085                                   *
## 5086                                   0
## 5087                                   *
## 5088                                   0
## 5089                                   0
## 5090                                   0
## 5091                                   0
## 5092                                   0
## 5093                                   0
## 5094                                   0
## 5095                                   0
## 5096                                   0
## 5097                                   0
## 5098                                   0
## 5099                                   0
## 5100                                   0
## 5101                                   0
## 5102                                  17
## 5103                                  12
## 5104                                   6
## 5105                                   *
## 5106                                   0
## 5107                                  25
## 5108                                   0
## 5109                                   9
## 5110                                   0
## 5111                                   0
## 5112                                   0
## 5113                                   0
## 5114                                   0
## 5115                                   0
## 5116                                  42
## 5117                                  51
## 5118                                  23
## 5119                                  70
## 5120                                  18
## 5121                                 241
## 5122                                  16
## 5123                                  58
## 5124                                 231
## 5125                                 345
## 5126                                   0
## 5127                                   0
## 5128                                   0
## 5129                                  21
## 5130                                   0
## 5131                                   0
## 5132                                   0
## 5133                                   0
## 5134                                   0
## 5135                                   0
## 5136                                   0
## 5137                                   0
## 5138                                   0
## 5139                                   0
## 5140                                   0
## 5141                                   0
## 5142                                   0
## 5143                                   0
## 5144                                   0
## 5145                                   0
## 5146                                   0
## 5147                                   0
## 5148                                   0
## 5149                                   0
## 5150                                   0
## 5151                                   0
## 5152                                   *
## 5153                                   *
## 5154                                   *
## 5155                                   *
## 5156                                  36
## 5157                                   0
## 5158                                   0
## 5159                                   0
## 5160                                   0
## 5161                                   0
## 5162                                   0
## 5163                                   0
## 5164                                   0
## 5165                                   0
## 5166                                   0
## 5167                                   0
## 5168                                   0
## 5169                                   0
## 5170                                   0
## 5171                                   0
## 5172                                   0
## 5173                                   0
## 5174                                   0
## 5175                                   0
## 5176                                   0
## 5177                                   0
## 5178                                   0
## 5179                                   *
## 5180                                   *
## 5181                                   9
## 5182                                   *
## 5183                                   0
## 5184                                   0
## 5185                                   0
## 5186                                   0
## 5187                                   0
## 5188                                   0
## 5189                                   0
## 5190                                   0
## 5191                                   0
## 5192                                   0
## 5193                                   0
## 5194                                 123
## 5195                                   0
## 5196                                   0
## 5197                                   0
## 5198                                   0
## 5199                                   0
## 5200                                   0
## 5201                                   0
## 5202                                   0
## 5203                                   0
## 5204                                   0
## 5205                                   0
## 5206                                   0
## 5207                                   0
## 5208                                   0
## 5209                                   0
## 5210                                   0
## 5211                                   0
## 5212                                   0
## 5213                                   0
## 5214                                 327
## 5215                                  57
## 5216                                 208
## 5217                                   0
## 5218                                   6
## 5219                                  14
## 5220                                  64
## 5221                                   0
## 5222                                   0
## 5223                                   0
## 5224                                   0
## 5225                                   0
## 5226                                   0
## 5227                                   0
## 5228                                   0
## 5229                                   0
## 5230                                   0
## 5231                                   0
## 5232                                   0
## 5233                                   0
## 5234                                   0
## 5235                                   0
## 5236                                   0
## 5237                                   0
## 5238                                   0
## 5239                                   0
## 5240                                   0
## 5241                                   0
## 5242                                   0
## 5243                                   0
## 5244                                   0
## 5245                                   0
## 5246                                   0
## 5247                                   0
## 5248                                  23
## 5249                                   0
## 5250                                   0
## 5251                                   0
## 5252                                   0
## 5253                                   0
## 5254                                   0
## 5255                                   0
## 5256                                   0
## 5257                                   0
## 5258                                   0
## 5259                                   0
## 5260                                   0
## 5261                                   0
## 5262                                   0
## 5263                                   0
## 5264                                   0
## 5265                                   0
## 5266                                   0
## 5267                                   0
## 5268                                   0
## 5269                                   0
## 5270                                   0
## 5271                                  76
## 5272                                  14
## 5273                                   *
## 5274                                   0
## 5275                                   7
## 5276                                   0
## 5277                                   0
## 5278                                   0
## 5279                                   0
## 5280                                   0
## 5281                                   0
## 5282                                   0
## 5283                                  13
## 5284                                   0
## 5285                                   0
## 5286                                   *
## 5287                                   0
## 5288                                   0
## 5289                                   0
## 5290                                  15
## 5291                                   6
## 5292                                  17
## 5293                                   0
## 5294                                   0
## 5295                                   7
## 5296                                   *
## 5297                                   0
## 5298                                   *
## 5299                                   0
## 5300                                   0
## 5301                                   0
## 5302                                   0
## 5303                                  51
## 5304                                  13
## 5305                                   0
## 5306                                   *
## 5307                                   0
## 5308                                   0
## 5309                                   0
## 5310                                  29
## 5311                                   *
## 5312                                   0
## 5313                                   *
## 5314                                   0
## 5315                                   0
## 5316                                   0
## 5317                                   0
## 5318                                   0
## 5319                                   0
## 5320                                   *
## 5321                                   5
## 5322                                   *
## 5323                                   *
## 5324                                   *
## 5325                                  48
## 5326                                   0
## 5327                                   0
## 5328                                   0
## 5329                                   0
## 5330                                   0
## 5331                                   0
## 5332                                   0
## 5333                                   0
## 5334                                   0
## 5335                                   0
## 5336                                   0
## 5337                                   0
## 5338                                   0
## 5339                                   0
## 5340                                   0
## 5341                                   0
## 5342                                   0
## 5343                                   0
## 5344                                   0
## 5345                                   0
## 5346                                   0
## 5347                                   0
## 5348                                   0
## 5349                                   0
## 5350                                   0
## 5351                                   0
## 5352                                   0
## 5353                                   0
## 5354                                   0
## 5355                                  12
## 5356                                  13
## 5357                                   8
## 5358                                   0
## 5359                                 157
## 5360                                 206
## 5361                                 190
## 5362                                 410
## 5363                                 402
## 5364                                   5
## 5365                                   0
## 5366                                   0
## 5367                                   0
## 5368                                   0
## 5369                                   0
## 5370                                   0
## 5371                                   0
## 5372                                   0
## 5373                                   0
## 5374                                   0
## 5375                                   0
## 5376                                   0
## 5377                                   0
## 5378                                  42
## 5379                                   *
## 5380                                  47
## 5381                                   *
## 5382                                   0
## 5383                                   0
## 5384                                   *
## 5385                                   0
## 5386                                   *
## 5387                                   *
## 5388                                   *
## 5389                                   *
## 5390                                   0
## 5391                                   0
## 5392                                   0
## 5393                                   0
## 5394                                   0
## 5395                                   0
## 5396                                   9
## 5397                                   *
## 5398                                   0
## 5399                                   0
## 5400                                   0
## 5401                                   0
## 5402                                   0
## 5403                                   0
## 5404                                   0
## 5405                                   0
## 5406                                   0
## 5407                                   *
## 5408                                   *
## 5409                                   *
## 5410                                   0
## 5411                                   0
## 5412                                   0
## 5413                                   0
## 5414                                   0
## 5415                                   0
## 5416                                   0
## 5417                                   0
## 5418                                   0
## 5419                                   0
## 5420                                   0
## 5421                                   0
## 5422                                   0
## 5423                                   0
## 5424                                   0
## 5425                                   0
## 5426                                   0
## 5427                                   0
## 5428                                   0
## 5429                                   0
## 5430                                   0
## 5431                                   0
## 5432                                   0
## 5433                                   0
## 5434                                   0
## 5435                                   0
## 5436                                   *
## 5437                                   *
## 5438                                   0
## 5439                                   0
## 5440                                  11
## 5441                                   0
## 5442                                   *
## 5443                                   *
## 5444                                  13
## 5445                                   0
## 5446                                   0
## 5447                                   0
## 5448                                  14
## 5449                                  38
## 5450                                  81
## 5451                                   *
## 5452                                 192
## 5453                                   0
## 5454                                  36
## 5455                                   0
## 5456                                   0
## 5457                                   0
## 5458                                   *
## 5459                                   0
## 5460                                   *
## 5461                                   *
## 5462                                  88
## 5463                                  48
## 5464                                   0
## 5465                                   0
## 5466                                   0
## 5467                                   0
## 5468                                   0
## 5469                                   0
## 5470                                   0
## 5471                                   0
## 5472                                   0
## 5473                                   0
## 5474                                   0
## 5475                                   0
## 5476                                   0
## 5477                                   0
## 5478                                   0
## 5479                                   0
## 5480                                   0
## 5481                                   0
## 5482                                   0
## 5483                                   *
## 5484                                   0
## 5485                                   0
## 5486                                   0
## 5487                                   *
## 5488                                   0
## 5489                                  82
## 5490                                   *
## 5491                                   *
## 5492                                   5
## 5493                                   *
## 5494                                   5
## 5495                                  49
## 5496                                   *
## 5497                                   *
## 5498                                   *
## 5499                                   0
## 5500                                   *
## 5501                                   *
## 5502                                   *
## 5503                                   *
## 5504                                   *
## 5505                                   6
## 5506                                   7
## 5507                                   5
## 5508                                   0
## 5509                                  18
## 5510                                   *
## 5511                                   0
## 5512                                   0
## 5513                                  29
## 5514                                   0
## 5515                                   0
## 5516                                  14
## 5517                                  13
## 5518                                  22
## 5519                                   0
## 5520                                   7
## 5521                                   7
## 5522                                  11
## 5523                                   8
## 5524                                  32
## 5525                                  15
## 5526                                   0
## 5527                                   0
## 5528                                   0
## 5529                                   0
## 5530                                   0
## 5531                                   0
## 5532                                   0
## 5533                                   *
## 5534                                   0
## 5535                                   0
## 5536                                   0
## 5537                                   0
## 5538                                   0
## 5539                                 752
## 5540                                 222
## 5541                                   0
## 5542                                   0
## 5543                                  57
## 5544                                   0
## 5545                                   0
## 5546                                   0
## 5547                                 140
## 5548                                   9
## 5549                                   0
## 5550                                  35
## 5551                                   8
## 5552                                   6
## 5553                                   *
## 5554                                   0
## 5555                                   0
## 5556                                   0
## 5557                                   0
## 5558                                   0
## 5559                                   0
## 5560                                   0
## 5561                                   0
## 5562                                   0
## 5563                                   0
## 5564                                   0
## 5565                                   0
## 5566                                   0
## 5567                                   0
## 5568                                   0
## 5569                                   0
## 5570                                   0
## 5571                                   0
## 5572                                   0
## 5573                                   0
## 5574                                   0
## 5575                                   0
## 5576                                   0
## 5577                                   0
## 5578                                   0
## 5579                                   0
## 5580                                   0
## 5581                                   0
## 5582                                   0
## 5583                                   0
## 5584                                   0
## 5585                                   0
## 5586                                   0
## 5587                                   0
## 5588                                   0
## 5589                                   0
## 5590                                   0
## 5591                                   0
## 5592                                   0
## 5593                                   0
## 5594                                   0
## 5595                                   0
## 5596                                   0
## 5597                                   0
## 5598                                   0
## 5599                                   0
## 5600                                   0
## 5601                                   0
## 5602                                   0
## 5603                                   0
## 5604                                   0
## 5605                                   0
## 5606                                   0
## 5607                                   0
## 5608                                   0
## 5609                                   0
## 5610                                   0
## 5611                                   0
## 5612                                   0
## 5613                                   0
## 5614                                 189
## 5615                                   0
## 5616                                  61
## 5617                                   0
## 5618                                  92
## 5619                                   *
## 5620                                1138
## 5621                                   0
## 5622                                 121
## 5623                                   0
## 5624                                 131
## 5625                                   0
## 5626                                 397
## 5627                                   0
## 5628                                  68
## 5629                                   0
## 5630                                  86
## 5631                                   0
## 5632                                  34
## 5633                                   0
## 5634                                   0
## 5635                                   *
## 5636                                   0
## 5637                                   0
## 5638                                  12
## 5639                                   0
## 5640                                   0
## 5641                                   0
## 5642                                   0
## 5643                                   0
## 5644                                   0
## 5645                                   0
## 5646                                   8
## 5647                                   0
## 5648                                   0
## 5649                                   0
## 5650                                   0
## 5651                                   0
## 5652                                   0
## 5653                                   0
## 5654                                   0
## 5655                                   0
## 5656                                   0
## 5657                                   0
## 5658                                   0
## 5659                                   0
## 5660                                   0
## 5661                                   0
## 5662                                   0
## 5663                                   0
## 5664                                   0
## 5665                                   0
## 5666                                   0
## 5667                                   0
## 5668                                   0
## 5669                                   0
## 5670                                   0
## 5671                                   0
## 5672                                   0
## 5673                                   0
## 5674                                   0
## 5675                                   0
## 5676                                   0
## 5677                                  12
## 5678                                   0
## 5679                                   0
## 5680                                   0
## 5681                                  78
## 5682                                   0
## 5683                                   0
## 5684                                   0
## 5685                                   0
## 5686                                   0
## 5687                                   0
## 5688                                   *
## 5689                                   0
## 5690                                   *
## 5691                                   *
## 5692                                   0
## 5693                                   0
## 5694                                   0
## 5695                                   0
## 5696                                   0
## 5697                                   0
## 5698                                   0
## 5699                                   *
## 5700                                  23
## 5701                                   0
## 5702                                   0
## 5703                                1448
## 5704                                   0
## 5705                                 223
## 5706                                   0
## 5707                                   0
## 5708                                   0
## 5709                                   0
## 5710                                   0
## 5711                                   0
## 5712                                   0
## 5713                                   *
## 5714                                   9
## 5715                                   *
## 5716                                   0
## 5717                                   0
## 5718                                   0
## 5719                                   0
## 5720                                   0
## 5721                                   0
## 5722                                  13
## 5723                                   8
## 5724                                   0
## 5725                                   0
## 5726                                   *
## 5727                                   *
## 5728                                  25
## 5729                                   0
## 5730                                   0
## 5731                                   0
## 5732                                   0
## 5733                                   0
## 5734                                   0
## 5735                                   0
## 5736                                   0
## 5737                                   *
## 5738                                  10
## 5739                                   0
## 5740                                   0
## 5741                                   0
## 5742                                   0
## 5743                                   0
## 5744                                   9
## 5745                                  51
## 5746                                   8
## 5747                                  23
## 5748                                   0
## 5749                                   0
## 5750                                   0
## 5751                                   0
## 5752                                   0
## 5753                                   0
## 5754                                   0
## 5755                                   0
## 5756                                   0
## 5757                                   0
## 5758                                   0
## 5759                                   0
## 5760                                   0
## 5761                                   0
## 5762                                   0
## 5763                                   0
## 5764                                   0
## 5765                                   0
## 5766                                   0
## 5767                                   0
## 5768                                   0
## 5769                                   0
## 5770                                   0
## 5771                                   0
## 5772                                   0
## 5773                                   0
## 5774                                   0
## 5775                                   0
## 5776                                   0
## 5777                                   0
## 5778                                   0
## 5779                                   0
## 5780                                   0
## 5781                                   0
## 5782                                   0
## 5783                                   0
## 5784                                   0
## 5785                                   0
## 5786                                   0
## 5787                                   0
## 5788                                   0
## 5789                                   0
## 5790                                   0
## 5791                                   0
## 5792                                   0
## 5793                                   0
## 5794                                   0
## 5795                                   0
## 5796                                   0
## 5797                                   0
## 5798                                   0
## 5799                                   0
## 5800                                   0
## 5801                                   0
## 5802                                   0
## 5803                                   0
## 5804                                   0
## 5805                                   9
## 5806                                   0
## 5807                                   *
## 5808                                   0
## 5809                                   0
## 5810                                   0
## 5811                                   0
## 5812                                   0
## 5813                                   0
## 5814                                   0
## 5815                                   0
## 5816                                   0
## 5817                                   0
## 5818                                   0
## 5819                                 510
## 5820                                   0
## 5821                                   0
## 5822                                   0
## 5823                                   0
## 5824                                   0
## 5825                                   0
## 5826                                   0
## 5827                                   0
## 5828                                   0
## 5829                                   0
## 5830                                   0
## 5831                                   0
## 5832                                   0
## 5833                                   0
## 5834                                   0
## 5835                                   0
## 5836                                   0
## 5837                                   0
## 5838                                   0
## 5839                                   0
## 5840                                   0
## 5841                                   0
## 5842                                   0
## 5843                                   0
## 5844                                   0
## 5845                                   0
## 5846                                   0
## 5847                                   0
## 5848                                   0
## 5849                                   0
## 5850                                   0
## 5851                                   0
## 5852                                   0
## 5853                                   0
## 5854                                   0
## 5855                                   0
## 5856                                   0
## 5857                                   0
## 5858                                   0
## 5859                                   0
## 5860                                   0
## 5861                                   0
## 5862                                   0
## 5863                                   0
## 5864                                   0
## 5865                                  78
## 5866                                   0
## 5867                                   0
## 5868                                   *
## 5869                                   0
## 5870                                   0
## 5871                                   0
## 5872                                   0
## 5873                                   0
## 5874                                   *
## 5875                                   0
## 5876                                   0
## 5877                                 197
## 5878                                   0
## 5879                                   0
## 5880                                   0
## 5881                                   0
## 5882                                   0
## 5883                                   0
## 5884                                   0
## 5885                                   0
## 5886                                   0
## 5887                                   *
## 5888                                   0
## 5889                                   0
## 5890                                   0
## 5891                                   0
## 5892                                   0
## 5893                                   0
## 5894                                   0
## 5895                                   0
## 5896                                   0
## 5897                                   0
## 5898                                   0
## 5899                                   b
##      All.Student.Exiters..7.1.2018...6.30.2022.
## 1                                             0
## 2                                             0
## 3                                             0
## 4                                             0
## 5                                            33
## 6                                             0
## 7                                            16
## 8                                             8
## 9                                            25
## 10                                            *
## 11                                            5
## 12                                            *
## 13                                           50
## 14                                           20
## 15                                           40
## 16                                            6
## 17                                            7
## 18                                           75
## 19                                            0
## 20                                           18
## 21                                           76
## 22                                           40
## 23                                            *
## 24                                            0
## 25                                            *
## 26                                            *
## 27                                            *
## 28                                           64
## 29                                            0
## 30                                           13
## 31                                           15
## 32                                           12
## 33                                           28
## 34                                            *
## 35                                           36
## 36                                            *
## 37                                            9
## 38                                            *
## 39                                            *
## 40                                            0
## 41                                            *
## 42                                            *
## 43                                            0
## 44                                            *
## 45                                            *
## 46                                            *
## 47                                            0
## 48                                           89
## 49                                           26
## 50                                            *
## 51                                            0
## 52                                            0
## 53                                            *
## 54                                            *
## 55                                            0
## 56                                           11
## 57                                            5
## 58                                            0
## 59                                           12
## 60                                            0
## 61                                          581
## 62                                          609
## 63                                           74
## 64                                            *
## 65                                          228
## 66                                            0
## 67                                          182
## 68                                          310
## 69                                           63
## 70                                           32
## 71                                          131
## 72                                           16
## 73                                           41
## 74                                           69
## 75                                           12
## 76                                           15
## 77                                           29
## 78                                            5
## 79                                            0
## 80                                            *
## 81                                            0
## 82                                            0
## 83                                            0
## 84                                            0
## 85                                            *
## 86                                           39
## 87                                            *
## 88                                            0
## 89                                            0
## 90                                            0
## 91                                            *
## 92                                            *
## 93                                            *
## 94                                           14
## 95                                           21
## 96                                            *
## 97                                            0
## 98                                            *
## 99                                            0
## 100                                           *
## 101                                           *
## 102                                          40
## 103                                         113
## 104                                           0
## 105                                          64
## 106                                         131
## 107                                          26
## 108                                           7
## 109                                          20
## 110                                           *
## 111                                          15
## 112                                          12
## 113                                         364
## 114                                           0
## 115                                           *
## 116                                           *
## 117                                           *
## 118                                           5
## 119                                           7
## 120                                           *
## 121                                           *
## 122                                          21
## 123                                           0
## 124                                           *
## 125                                           *
## 126                                           0
## 127                                           9
## 128                                           0
## 129                                           0
## 130                                          11
## 131                                          79
## 132                                          16
## 133                                           *
## 134                                           0
## 135                                           0
## 136                                          13
## 137                                           *
## 138                                          41
## 139                                           0
## 140                                         261
## 141                                          15
## 142                                         153
## 143                                          88
## 144                                           0
## 145                                           0
## 146                                           0
## 147                                           0
## 148                                           0
## 149                                           8
## 150                                           7
## 151                                          13
## 152                                         435
## 153                                          41
## 154                                           0
## 155                                          34
## 156                                         404
## 157                                           0
## 158                                          13
## 159                                          17
## 160                                           0
## 161                                           0
## 162                                          48
## 163                                          17
## 164                                          77
## 165                                           0
## 166                                           *
## 167                                         155
## 168                                           0
## 169                                          35
## 170                                           *
## 171                                           *
## 172                                           *
## 173                                           *
## 174                                           *
## 175                                           *
## 176                                           0
## 177                                           0
## 178                                           *
## 179                                           *
## 180                                          11
## 181                                           0
## 182                                           0
## 183                                           7
## 184                                           *
## 185                                           0
## 186                                           0
## 187                                           *
## 188                                           *
## 189                                           *
## 190                                           0
## 191                                           *
## 192                                          12
## 193                                           6
## 194                                          58
## 195                                         175
## 196                                           0
## 197                                         138
## 198                                         232
## 199                                           0
## 200                                           0
## 201                                           *
## 202                                           0
## 203                                           0
## 204                                           0
## 205                                           0
## 206                                           0
## 207                                           9
## 208                                           0
## 209                                           0
## 210                                           0
## 211                                           0
## 212                                           0
## 213                                           0
## 214                                           0
## 215                                           0
## 216                                           0
## 217                                           0
## 218                                           *
## 219                                           *
## 220                                           0
## 221                                           0
## 222                                           0
## 223                                          14
## 224                                           *
## 225                                           0
## 226                                           0
## 227                                           0
## 228                                         348
## 229                                          45
## 230                                          57
## 231                                         168
## 232                                         124
## 233                                          43
## 234                                          26
## 235                                          15
## 236                                         402
## 237                                         120
## 238                                          15
## 239                                           *
## 240                                           *
## 241                                           *
## 242                                          69
## 243                                          46
## 244                                          30
## 245                                         174
## 246                                         118
## 247                                          74
## 248                                          93
## 249                                         151
## 250                                           0
## 251                                         178
## 252                                          34
## 253                                          50
## 254                                         155
## 255                                           0
## 256                                           0
## 257                                          62
## 258                                           0
## 259                                          34
## 260                                           0
## 261                                          62
## 262                                           0
## 263                                           0
## 264                                           0
## 265                                           0
## 266                                          70
## 267                                          60
## 268                                          56
## 269                                          26
## 270                                         321
## 271                                          93
## 272                                         490
## 273                                          89
## 274                                         153
## 275                                          83
## 276                                          53
## 277                                         190
## 278                                           0
## 279                                         168
## 280                                         780
## 281                                         121
## 282                                         368
## 283                                         418
## 284                                        2068
## 285                                         170
## 286                                         317
## 287                                         363
## 288                                         352
## 289                                           0
## 290                                           0
## 291                                           0
## 292                                           0
## 293                                           0
## 294                                         172
## 295                                          25
## 296                                           0
## 297                                          52
## 298                                           0
## 299                                          33
## 300                                           0
## 301                                           0
## 302                                           0
## 303                                           0
## 304                                           0
## 305                                           0
## 306                                           0
## 307                                           0
## 308                                           0
## 309                                           0
## 310                                           0
## 311                                         106
## 312                                          20
## 313                                           8
## 314                                          12
## 315                                          78
## 316                                          14
## 317                                         158
## 318                                         480
## 319                                          22
## 320                                          13
## 321                                          38
## 322                                          40
## 323                                          38
## 324                                          39
## 325                                          11
## 326                                          29
## 327                                           *
## 328                                           *
## 329                                           0
## 330                                          35
## 331                                          15
## 332                                           0
## 333                                          14
## 334                                          21
## 335                                          34
## 336                                          16
## 337                                          79
## 338                                           6
## 339                                           0
## 340                                           *
## 341                                           0
## 342                                           *
## 343                                          12
## 344                                          27
## 345                                           *
## 346                                           *
## 347                                           *
## 348                                           *
## 349                                           0
## 350                                          98
## 351                                           0
## 352                                           0
## 353                                           0
## 354                                           0
## 355                                           7
## 356                                           0
## 357                                          12
## 358                                           0
## 359                                           0
## 360                                           0
## 361                                           0
## 362                                           0
## 363                                           0
## 364                                           0
## 365                                           0
## 366                                           *
## 367                                           9
## 368                                           *
## 369                                           0
## 370                                           0
## 371                                           0
## 372                                           0
## 373                                           0
## 374                                           0
## 375                                           0
## 376                                           0
## 377                                           0
## 378                                           0
## 379                                          21
## 380                                          54
## 381                                         456
## 382                                          45
## 383                                          90
## 384                                          92
## 385                                          34
## 386                                         339
## 387                                         297
## 388                                           0
## 389                                           8
## 390                                           8
## 391                                           *
## 392                                          17
## 393                                          31
## 394                                          17
## 395                                          17
## 396                                          35
## 397                                          82
## 398                                          29
## 399                                          11
## 400                                           0
## 401                                           0
## 402                                         937
## 403                                         973
## 404                                         548
## 405                                           0
## 406                                           0
## 407                                          22
## 408                                          21
## 409                                         123
## 410                                          25
## 411                                          38
## 412                                          50
## 413                                         142
## 414                                         119
## 415                                         949
## 416                                           *
## 417                                         111
## 418                                          91
## 419                                         165
## 420                                          35
## 421                                          12
## 422                                          57
## 423                                         184
## 424                                          90
## 425                                          11
## 426                                          10
## 427                                          85
## 428                                          63
## 429                                          37
## 430                                         105
## 431                                          91
## 432                                         153
## 433                                         261
## 434                                         357
## 435                                         118
## 436                                           0
## 437                                          39
## 438                                         106
## 439                                           0
## 440                                          60
## 441                                          23
## 442                                           0
## 443                                         217
## 444                                          25
## 445                                          23
## 446                                          32
## 447                                         198
## 448                                         135
## 449                                         170
## 450                                          88
## 451                                          87
## 452                                          40
## 453                                          67
## 454                                          18
## 455                                          14
## 456                                          36
## 457                                          93
## 458                                         147
## 459                                         293
## 460                                         150
## 461                                          61
## 462                                         108
## 463                                          90
## 464                                         199
## 465                                          63
## 466                                          81
## 467                                          96
## 468                                          10
## 469                                          66
## 470                                         106
## 471                                         158
## 472                                          51
## 473                                          90
## 474                                          11
## 475                                         144
## 476                                         238
## 477                                          41
## 478                                          11
## 479                                           *
## 480                                          13
## 481                                         110
## 482                                         141
## 483                                          78
## 484                                          42
## 485                                          88
## 486                                           0
## 487                                         120
## 488                                          48
## 489                                          16
## 490                                           0
## 491                                           7
## 492                                          85
## 493                                          50
## 494                                           0
## 495                                           0
## 496                                           *
## 497                                          33
## 498                                           0
## 499                                           0
## 500                                           0
## 501                                          61
## 502                                           0
## 503                                         104
## 504                                           0
## 505                                           *
## 506                                           0
## 507                                           8
## 508                                          11
## 509                                          51
## 510                                           9
## 511                                           8
## 512                                           0
## 513                                           0
## 514                                           0
## 515                                           0
## 516                                          14
## 517                                           0
## 518                                           0
## 519                                           0
## 520                                           *
## 521                                           0
## 522                                          53
## 523                                           0
## 524                                           0
## 525                                           0
## 526                                           0
## 527                                           0
## 528                                           0
## 529                                           0
## 530                                           0
## 531                                           0
## 532                                           0
## 533                                           0
## 534                                           0
## 535                                           0
## 536                                           0
## 537                                           0
## 538                                           0
## 539                                           0
## 540                                           0
## 541                                           0
## 542                                           0
## 543                                           0
## 544                                           0
## 545                                           0
## 546                                           0
## 547                                           0
## 548                                           0
## 549                                           0
## 550                                           0
## 551                                           0
## 552                                           0
## 553                                           0
## 554                                           0
## 555                                           0
## 556                                           0
## 557                                           0
## 558                                          36
## 559                                          82
## 560                                         110
## 561                                          17
## 562                                         559
## 563                                          11
## 564                                           0
## 565                                         254
## 566                                          72
## 567                                           0
## 568                                         134
## 569                                         245
## 570                                          12
## 571                                         227
## 572                                         192
## 573                                         460
## 574                                          35
## 575                                         142
## 576                                           7
## 577                                         145
## 578                                          95
## 579                                          12
## 580                                         229
## 581                                         268
## 582                                         153
## 583                                         878
## 584                                         157
## 585                                          91
## 586                                          87
## 587                                           9
## 588                                          27
## 589                                          31
## 590                                          21
## 591                                           8
## 592                                        2567
## 593                                           0
## 594                                           0
## 595                                           0
## 596                                           0
## 597                                           0
## 598                                           0
## 599                                          22
## 600                                           0
## 601                                          86
## 602                                          22
## 603                                         580
## 604                                          25
## 605                                         238
## 606                                         105
## 607                                           6
## 608                                          12
## 609                                          61
## 610                                         105
## 611                                          63
## 612                                          45
## 613                                          23
## 614                                           0
## 615                                           0
## 616                                           0
## 617                                           0
## 618                                         697
## 619                                          18
## 620                                           0
## 621                                          16
## 622                                           *
## 623                                          27
## 624                                           0
## 625                                           0
## 626                                           *
## 627                                           0
## 628                                          17
## 629                                           0
## 630                                           7
## 631                                           *
## 632                                           0
## 633                                           0
## 634                                           *
## 635                                          37
## 636                                          24
## 637                                           *
## 638                                          59
## 639                                          63
## 640                                          86
## 641                                          70
## 642                                          38
## 643                                          21
## 644                                          20
## 645                                          23
## 646                                           0
## 647                                           0
## 648                                           0
## 649                                         841
## 650                                           0
## 651                                           0
## 652                                           0
## 653                                           0
## 654                                           0
## 655                                           0
## 656                                         261
## 657                                           *
## 658                                           0
## 659                                         129
## 660                                         252
## 661                                         268
## 662                                         150
## 663                                          71
## 664                                          75
## 665                                          68
## 666                                          69
## 667                                          18
## 668                                          38
## 669                                          46
## 670                                          10
## 671                                          18
## 672                                         247
## 673                                           8
## 674                                         107
## 675                                          23
## 676                                          93
## 677                                         302
## 678                                           *
## 679                                          12
## 680                                          26
## 681                                          18
## 682                                          17
## 683                                           9
## 684                                          12
## 685                                          17
## 686                                         108
## 687                                           0
## 688                                          29
## 689                                           8
## 690                                         129
## 691                                           0
## 692                                           0
## 693                                           0
## 694                                           0
## 695                                           0
## 696                                           0
## 697                                          23
## 698                                           0
## 699                                          11
## 700                                           8
## 701                                          34
## 702                                          17
## 703                                           0
## 704                                          14
## 705                                           8
## 706                                          15
## 707                                         149
## 708                                           6
## 709                                          35
## 710                                          21
## 711                                           6
## 712                                          76
## 713                                          53
## 714                                           *
## 715                                           *
## 716                                           0
## 717                                           *
## 718                                           6
## 719                                           *
## 720                                           *
## 721                                           *
## 722                                           0
## 723                                           0
## 724                                           *
## 725                                          11
## 726                                           *
## 727                                           7
## 728                                           0
## 729                                           0
## 730                                           0
## 731                                           0
## 732                                           0
## 733                                           0
## 734                                           0
## 735                                           0
## 736                                           0
## 737                                         123
## 738                                         370
## 739                                          94
## 740                                         470
## 741                                          96
## 742                                          69
## 743                                           0
## 744                                           0
## 745                                           0
## 746                                           0
## 747                                           0
## 748                                           0
## 749                                           0
## 750                                           0
## 751                                           0
## 752                                           0
## 753                                           0
## 754                                          20
## 755                                           0
## 756                                           0
## 757                                           0
## 758                                           0
## 759                                           0
## 760                                           0
## 761                                           0
## 762                                           0
## 763                                           0
## 764                                           0
## 765                                           0
## 766                                         167
## 767                                          54
## 768                                           0
## 769                                           6
## 770                                           7
## 771                                          67
## 772                                           0
## 773                                           0
## 774                                           0
## 775                                           6
## 776                                           0
## 777                                          39
## 778                                           0
## 779                                           0
## 780                                          55
## 781                                           *
## 782                                           0
## 783                                           7
## 784                                           0
## 785                                           0
## 786                                          28
## 787                                          16
## 788                                           0
## 789                                           0
## 790                                           0
## 791                                           0
## 792                                           0
## 793                                          25
## 794                                          16
## 795                                           0
## 796                                          10
## 797                                           0
## 798                                           9
## 799                                          17
## 800                                           0
## 801                                           0
## 802                                           0
## 803                                           9
## 804                                           0
## 805                                           0
## 806                                           0
## 807                                           0
## 808                                           0
## 809                                           0
## 810                                           0
## 811                                           0
## 812                                           0
## 813                                           *
## 814                                           0
## 815                                           0
## 816                                           0
## 817                                           0
## 818                                           0
## 819                                           0
## 820                                           0
## 821                                           0
## 822                                           0
## 823                                           0
## 824                                           0
## 825                                           0
## 826                                           0
## 827                                           9
## 828                                           0
## 829                                           0
## 830                                           *
## 831                                          21
## 832                                          14
## 833                                           0
## 834                                           0
## 835                                          13
## 836                                          23
## 837                                           8
## 838                                           8
## 839                                           0
## 840                                           0
## 841                                           0
## 842                                           *
## 843                                          11
## 844                                           0
## 845                                           *
## 846                                          20
## 847                                           *
## 848                                          54
## 849                                           *
## 850                                          17
## 851                                          16
## 852                                          60
## 853                                           0
## 854                                           *
## 855                                          26
## 856                                          16
## 857                                          17
## 858                                           0
## 859                                          12
## 860                                           *
## 861                                           0
## 862                                           0
## 863                                           0
## 864                                           0
## 865                                           0
## 866                                           0
## 867                                           0
## 868                                           *
## 869                                           0
## 870                                          34
## 871                                           0
## 872                                           0
## 873                                           0
## 874                                          22
## 875                                           0
## 876                                          12
## 877                                          10
## 878                                          12
## 879                                           0
## 880                                           0
## 881                                           0
## 882                                           0
## 883                                           0
## 884                                           0
## 885                                           0
## 886                                           0
## 887                                           0
## 888                                           0
## 889                                           0
## 890                                           0
## 891                                           0
## 892                                           0
## 893                                           0
## 894                                           0
## 895                                           0
## 896                                           0
## 897                                           0
## 898                                           0
## 899                                           0
## 900                                           0
## 901                                           0
## 902                                           0
## 903                                           0
## 904                                           0
## 905                                           0
## 906                                           0
## 907                                           0
## 908                                           0
## 909                                           0
## 910                                           0
## 911                                           0
## 912                                           0
## 913                                           0
## 914                                           0
## 915                                           0
## 916                                           0
## 917                                          15
## 918                                           0
## 919                                           0
## 920                                           0
## 921                                           0
## 922                                           0
## 923                                          25
## 924                                           0
## 925                                           0
## 926                                           0
## 927                                           0
## 928                                           0
## 929                                           0
## 930                                           0
## 931                                           0
## 932                                           0
## 933                                           0
## 934                                           0
## 935                                           0
## 936                                           0
## 937                                           0
## 938                                           0
## 939                                           0
## 940                                           0
## 941                                           0
## 942                                           0
## 943                                           0
## 944                                           0
## 945                                           0
## 946                                           0
## 947                                           0
## 948                                           0
## 949                                           0
## 950                                           0
## 951                                           0
## 952                                           0
## 953                                           0
## 954                                           0
## 955                                           0
## 956                                           0
## 957                                           0
## 958                                           0
## 959                                           0
## 960                                           0
## 961                                           0
## 962                                           0
## 963                                           0
## 964                                           0
## 965                                           0
## 966                                           0
## 967                                           0
## 968                                           0
## 969                                           0
## 970                                           0
## 971                                           0
## 972                                           0
## 973                                           0
## 974                                           0
## 975                                           0
## 976                                           0
## 977                                           0
## 978                                           0
## 979                                           0
## 980                                           0
## 981                                           0
## 982                                           0
## 983                                           0
## 984                                           0
## 985                                           0
## 986                                           0
## 987                                           0
## 988                                           0
## 989                                           0
## 990                                           0
## 991                                           0
## 992                                           0
## 993                                           0
## 994                                           0
## 995                                           0
## 996                                           0
## 997                                           0
## 998                                         757
## 999                                         257
## 1000                                          0
## 1001                                          0
## 1002                                          0
## 1003                                       2352
## 1004                                          0
## 1005                                          0
## 1006                                          0
## 1007                                          0
## 1008                                          0
## 1009                                          0
## 1010                                         39
## 1011                                         32
## 1012                                          *
## 1013                                         25
## 1014                                         53
## 1015                                         45
## 1016                                        163
## 1017                                          *
## 1018                                         93
## 1019                                         13
## 1020                                         12
## 1021                                        325
## 1022                                         78
## 1023                                         66
## 1024                                          *
## 1025                                        268
## 1026                                         99
## 1027                                        717
## 1028                                        109
## 1029                                        162
## 1030                                        555
## 1031                                        176
## 1032                                       1398
## 1033                                        164
## 1034                                        193
## 1035                                         18
## 1036                                        141
## 1037                                         14
## 1038                                        361
## 1039                                        206
## 1040                                        104
## 1041                                         45
## 1042                                         22
## 1043                                        353
## 1044                                         27
## 1045                                        437
## 1046                                          0
## 1047                                          6
## 1048                                          0
## 1049                                          0
## 1050                                          0
## 1051                                         35
## 1052                                          0
## 1053                                         26
## 1054                                         61
## 1055                                          *
## 1056                                          *
## 1057                                          0
## 1058                                          *
## 1059                                          0
## 1060                                          0
## 1061                                        169
## 1062                                          0
## 1063                                          0
## 1064                                          0
## 1065                                          0
## 1066                                         18
## 1067                                          *
## 1068                                         15
## 1069                                          0
## 1070                                          0
## 1071                                         14
## 1072                                          0
## 1073                                          0
## 1074                                          0
## 1075                                          0
## 1076                                          *
## 1077                                          *
## 1078                                          0
## 1079                                          0
## 1080                                          0
## 1081                                          0
## 1082                                          0
## 1083                                          0
## 1084                                          0
## 1085                                          0
## 1086                                          0
## 1087                                          0
## 1088                                          0
## 1089                                          0
## 1090                                          0
## 1091                                          0
## 1092                                          0
## 1093                                          0
## 1094                                          0
## 1095                                       1066
## 1096                                        104
## 1097                                        519
## 1098                                        206
## 1099                                        909
## 1100                                        138
## 1101                                        970
## 1102                                       1490
## 1103                                        180
## 1104                                        642
## 1105                                         66
## 1106                                        545
## 1107                                         78
## 1108                                        245
## 1109                                        103
## 1110                                         25
## 1111                                          0
## 1112                                          0
## 1113                                          0
## 1114                                          0
## 1115                                          0
## 1116                                       1615
## 1117                                        393
## 1118                                         55
## 1119                                        603
## 1120                                        164
## 1121                                         39
## 1122                                        273
## 1123                                          *
## 1124                                         21
## 1125                                         39
## 1126                                        105
## 1127                                         93
## 1128                                         97
## 1129                                         42
## 1130                                         51
## 1131                                         78
## 1132                                        121
## 1133                                        126
## 1134                                         69
## 1135                                          *
## 1136                                        156
## 1137                                         60
## 1138                                         68
## 1139                                        107
## 1140                                        253
## 1141                                          *
## 1142                                        125
## 1143                                          0
## 1144                                         42
## 1145                                         90
## 1146                                        512
## 1147                                          0
## 1148                                         66
## 1149                                         14
## 1150                                         31
## 1151                                         51
## 1152                                        121
## 1153                                        109
## 1154                                        345
## 1155                                          *
## 1156                                        115
## 1157                                         42
## 1158                                         57
## 1159                                         43
## 1160                                         91
## 1161                                          0
## 1162                                         48
## 1163                                         11
## 1164                                          8
## 1165                                          0
## 1166                                         82
## 1167                                          *
## 1168                                          5
## 1169                                          *
## 1170                                          *
## 1171                                          *
## 1172                                          *
## 1173                                         20
## 1174                                          0
## 1175                                          0
## 1176                                          0
## 1177                                          0
## 1178                                          0
## 1179                                          0
## 1180                                          0
## 1181                                          0
## 1182                                          0
## 1183                                          0
## 1184                                          0
## 1185                                          0
## 1186                                          0
## 1187                                          0
## 1188                                          0
## 1189                                          0
## 1190                                          0
## 1191                                          0
## 1192                                          0
## 1193                                          0
## 1194                                          0
## 1195                                          0
## 1196                                          0
## 1197                                          0
## 1198                                          0
## 1199                                          0
## 1200                                          0
## 1201                                          0
## 1202                                          0
## 1203                                          0
## 1204                                          0
## 1205                                          0
## 1206                                          0
## 1207                                          0
## 1208                                          0
## 1209                                          0
## 1210                                          0
## 1211                                          0
## 1212                                          0
## 1213                                          0
## 1214                                          0
## 1215                                          0
## 1216                                          0
## 1217                                          0
## 1218                                          0
## 1219                                          0
## 1220                                          0
## 1221                                          0
## 1222                                          0
## 1223                                          0
## 1224                                          0
## 1225                                          0
## 1226                                          0
## 1227                                          0
## 1228                                          0
## 1229                                          0
## 1230                                          0
## 1231                                          0
## 1232                                          0
## 1233                                          0
## 1234                                          0
## 1235                                          0
## 1236                                          0
## 1237                                          0
## 1238                                          0
## 1239                                          0
## 1240                                          0
## 1241                                          0
## 1242                                          0
## 1243                                          0
## 1244                                          0
## 1245                                          0
## 1246                                          0
## 1247                                          0
## 1248                                          0
## 1249                                          0
## 1250                                          0
## 1251                                          0
## 1252                                          0
## 1253                                          0
## 1254                                          0
## 1255                                          0
## 1256                                          0
## 1257                                          0
## 1258                                          0
## 1259                                          0
## 1260                                          0
## 1261                                          0
## 1262                                          0
## 1263                                          0
## 1264                                          0
## 1265                                          0
## 1266                                          0
## 1267                                          0
## 1268                                          0
## 1269                                          0
## 1270                                          0
## 1271                                          0
## 1272                                          0
## 1273                                          0
## 1274                                          0
## 1275                                          0
## 1276                                          0
## 1277                                         76
## 1278                                         18
## 1279                                         11
## 1280                                         60
## 1281                                         14
## 1282                                          *
## 1283                                         20
## 1284                                          *
## 1285                                        317
## 1286                                          *
## 1287                                         41
## 1288                                         22
## 1289                                         13
## 1290                                         49
## 1291                                         10
## 1292                                        148
## 1293                                         34
## 1294                                          *
## 1295                                         91
## 1296                                          0
## 1297                                         46
## 1298                                          7
## 1299                                        160
## 1300                                          0
## 1301                                         36
## 1302                                         14
## 1303                                         82
## 1304                                         42
## 1305                                        232
## 1306                                         17
## 1307                                         55
## 1308                                         15
## 1309                                          0
## 1310                                          *
## 1311                                        313
## 1312                                         36
## 1313                                         11
## 1314                                         11
## 1315                                         41
## 1316                                         23
## 1317                                          8
## 1318                                          *
## 1319                                         43
## 1320                                         49
## 1321                                          0
## 1322                                         51
## 1323                                          9
## 1324                                          0
## 1325                                          *
## 1326                                          *
## 1327                                        155
## 1328                                          5
## 1329                                          9
## 1330                                         33
## 1331                                         10
## 1332                                          *
## 1333                                          7
## 1334                                         40
## 1335                                         39
## 1336                                         21
## 1337                                          6
## 1338                                         22
## 1339                                          5
## 1340                                         16
## 1341                                         10
## 1342                                        160
## 1343                                          8
## 1344                                         26
## 1345                                         78
## 1346                                        112
## 1347                                          9
## 1348                                          6
## 1349                                        190
## 1350                                         11
## 1351                                         42
## 1352                                         18
## 1353                                          *
## 1354                                        518
## 1355                                          9
## 1356                                         23
## 1357                                          0
## 1358                                         24
## 1359                                         13
## 1360                                         10
## 1361                                         38
## 1362                                          7
## 1363                                          0
## 1364                                         70
## 1365                                          0
## 1366                                         59
## 1367                                         91
## 1368                                         71
## 1369                                         51
## 1370                                         47
## 1371                                         28
## 1372                                        267
## 1373                                          8
## 1374                                         53
## 1375                                          0
## 1376                                        121
## 1377                                         24
## 1378                                        131
## 1379                                         93
## 1380                                        121
## 1381                                         26
## 1382                                        113
## 1383                                        132
## 1384                                         15
## 1385                                          0
## 1386                                          0
## 1387                                        257
## 1388                                          0
## 1389                                          0
## 1390                                          8
## 1391                                          8
## 1392                                         54
## 1393                                        179
## 1394                                        143
## 1395                                         19
## 1396                                          0
## 1397                                         26
## 1398                                         21
## 1399                                          0
## 1400                                          0
## 1401                                         14
## 1402                                          0
## 1403                                         12
## 1404                                         69
## 1405                                          5
## 1406                                         41
## 1407                                          *
## 1408                                          0
## 1409                                         13
## 1410                                         15
## 1411                                          5
## 1412                                         12
## 1413                                         14
## 1414                                          0
## 1415                                        110
## 1416                                          0
## 1417                                         25
## 1418                                          *
## 1419                                         28
## 1420                                         22
## 1421                                          0
## 1422                                          0
## 1423                                         31
## 1424                                          9
## 1425                                         99
## 1426                                         56
## 1427                                          0
## 1428                                         15
## 1429                                          0
## 1430                                         57
## 1431                                          *
## 1432                                         11
## 1433                                         29
## 1434                                         37
## 1435                                         65
## 1436                                         39
## 1437                                          *
## 1438                                         11
## 1439                                         36
## 1440                                          *
## 1441                                          *
## 1442                                          8
## 1443                                          *
## 1444                                          *
## 1445                                          0
## 1446                                        154
## 1447                                          0
## 1448                                         13
## 1449                                          8
## 1450                                         41
## 1451                                          9
## 1452                                          0
## 1453                                          5
## 1454                                          *
## 1455                                         13
## 1456                                          *
## 1457                                          0
## 1458                                          0
## 1459                                          7
## 1460                                         81
## 1461                                          0
## 1462                                          *
## 1463                                         11
## 1464                                        149
## 1465                                          5
## 1466                                          0
## 1467                                         12
## 1468                                          0
## 1469                                          5
## 1470                                         13
## 1471                                          0
## 1472                                         14
## 1473                                         23
## 1474                                          0
## 1475                                          0
## 1476                                          5
## 1477                                         11
## 1478                                          0
## 1479                                          0
## 1480                                          5
## 1481                                          0
## 1482                                         30
## 1483                                        259
## 1484                                          0
## 1485                                         78
## 1486                                        607
## 1487                                         97
## 1488                                          0
## 1489                                        176
## 1490                                         42
## 1491                                          *
## 1492                                          0
## 1493                                          5
## 1494                                          0
## 1495                                        186
## 1496                                        224
## 1497                                         14
## 1498                                         83
## 1499                                         40
## 1500                                         52
## 1501                                         36
## 1502                                         38
## 1503                                         19
## 1504                                         38
## 1505                                         57
## 1506                                         14
## 1507                                          0
## 1508                                          0
## 1509                                         24
## 1510                                          0
## 1511                                         13
## 1512                                          0
## 1513                                          0
## 1514                                         23
## 1515                                          0
## 1516                                         19
## 1517                                         21
## 1518                                         19
## 1519                                        202
## 1520                                         30
## 1521                                          0
## 1522                                          0
## 1523                                          0
## 1524                                          0
## 1525                                       2175
## 1526                                       2981
## 1527                                        677
## 1528                                          *
## 1529                                          *
## 1530                                          *
## 1531                                          *
## 1532                                          7
## 1533                                          6
## 1534                                          *
## 1535                                          5
## 1536                                          *
## 1537                                          0
## 1538                                          *
## 1539                                          0
## 1540                                          0
## 1541                                          0
## 1542                                          0
## 1543                                         38
## 1544                                          0
## 1545                                         15
## 1546                                          9
## 1547                                          *
## 1548                                          0
## 1549                                          0
## 1550                                          0
## 1551                                          0
## 1552                                          0
## 1553                                          0
## 1554                                          0
## 1555                                          0
## 1556                                          0
## 1557                                          0
## 1558                                          0
## 1559                                          0
## 1560                                          0
## 1561                                          0
## 1562                                          0
## 1563                                          0
## 1564                                          0
## 1565                                          0
## 1566                                          0
## 1567                                          0
## 1568                                          0
## 1569                                          0
## 1570                                          0
## 1571                                          0
## 1572                                          0
## 1573                                          0
## 1574                                          0
## 1575                                          0
## 1576                                          0
## 1577                                          0
## 1578                                          0
## 1579                                          0
## 1580                                          0
## 1581                                        197
## 1582                                         72
## 1583                                        172
## 1584                                         89
## 1585                                        656
## 1586                                          0
## 1587                                         56
## 1588                                         44
## 1589                                         16
## 1590                                        142
## 1591                                        113
## 1592                                          6
## 1593                                         37
## 1594                                         21
## 1595                                         18
## 1596                                         11
## 1597                                         26
## 1598                                         64
## 1599                                         68
## 1600                                         86
## 1601                                         58
## 1602                                         26
## 1603                                         41
## 1604                                         43
## 1605                                         88
## 1606                                        298
## 1607                                         45
## 1608                                        161
## 1609                                          9
## 1610                                         46
## 1611                                         11
## 1612                                        229
## 1613                                         21
## 1614                                        298
## 1615                                         80
## 1616                                         51
## 1617                                          6
## 1618                                         35
## 1619                                         19
## 1620                                          *
## 1621                                          0
## 1622                                        224
## 1623                                        157
## 1624                                          0
## 1625                                        101
## 1626                                        243
## 1627                                         55
## 1628                                          0
## 1629                                          0
## 1630                                          0
## 1631                                         16
## 1632                                         20
## 1633                                         16
## 1634                                         18
## 1635                                         15
## 1636                                         35
## 1637                                          *
## 1638                                          9
## 1639                                          0
## 1640                                         35
## 1641                                          0
## 1642                                          0
## 1643                                          0
## 1644                                          0
## 1645                                          6
## 1646                                          *
## 1647                                          6
## 1648                                         17
## 1649                                          *
## 1650                                          *
## 1651                                          *
## 1652                                          0
## 1653                                        169
## 1654                                          *
## 1655                                          7
## 1656                                          0
## 1657                                         92
## 1658                                          7
## 1659                                          *
## 1660                                         82
## 1661                                         40
## 1662                                        371
## 1663                                         25
## 1664                                         43
## 1665                                        119
## 1666                                         21
## 1667                                          0
## 1668                                         51
## 1669                                          0
## 1670                                        277
## 1671                                         28
## 1672                                         52
## 1673                                          0
## 1674                                          0
## 1675                                          7
## 1676                                         63
## 1677                                         34
## 1678                                        106
## 1679                                        166
## 1680                                         39
## 1681                                         27
## 1682                                          0
## 1683                                         27
## 1684                                        293
## 1685                                        171
## 1686                                         50
## 1687                                         41
## 1688                                         45
## 1689                                          0
## 1690                                          0
## 1691                                          *
## 1692                                         16
## 1693                                         10
## 1694                                          0
## 1695                                          0
## 1696                                          0
## 1697                                          *
## 1698                                         20
## 1699                                          9
## 1700                                         24
## 1701                                          0
## 1702                                          0
## 1703                                          0
## 1704                                          0
## 1705                                         10
## 1706                                         16
## 1707                                          *
## 1708                                          *
## 1709                                          0
## 1710                                          0
## 1711                                          0
## 1712                                          0
## 1713                                          0
## 1714                                         69
## 1715                                          0
## 1716                                         44
## 1717                                          9
## 1718                                         30
## 1719                                          0
## 1720                                          0
## 1721                                          0
## 1722                                          0
## 1723                                          0
## 1724                                          *
## 1725                                          *
## 1726                                          *
## 1727                                          9
## 1728                                          *
## 1729                                          0
## 1730                                          0
## 1731                                          0
## 1732                                          0
## 1733                                         10
## 1734                                         10
## 1735                                         45
## 1736                                          *
## 1737                                        147
## 1738                                        128
## 1739                                        162
## 1740                                        205
## 1741                                        266
## 1742                                         21
## 1743                                          *
## 1744                                          *
## 1745                                         15
## 1746                                         26
## 1747                                          0
## 1748                                          0
## 1749                                          0
## 1750                                          *
## 1751                                         23
## 1752                                          5
## 1753                                          0
## 1754                                          *
## 1755                                          *
## 1756                                          0
## 1757                                          *
## 1758                                          *
## 1759                                          0
## 1760                                          0
## 1761                                          0
## 1762                                          0
## 1763                                          0
## 1764                                          0
## 1765                                          0
## 1766                                          0
## 1767                                          0
## 1768                                          0
## 1769                                          0
## 1770                                          0
## 1771                                          0
## 1772                                          0
## 1773                                          0
## 1774                                          0
## 1775                                          0
## 1776                                          0
## 1777                                          0
## 1778                                          0
## 1779                                          0
## 1780                                          0
## 1781                                          0
## 1782                                          0
## 1783                                          0
## 1784                                          0
## 1785                                          0
## 1786                                          0
## 1787                                          0
## 1788                                          0
## 1789                                         23
## 1790                                         65
## 1791                                         42
## 1792                                         37
## 1793                                         40
## 1794                                         20
## 1795                                         37
## 1796                                         73
## 1797                                        318
## 1798                                        123
## 1799                                         26
## 1800                                         52
## 1801                                         79
## 1802                                        222
## 1803                                         37
## 1804                                         59
## 1805                                        153
## 1806                                         43
## 1807                                         27
## 1808                                         23
## 1809                                         46
## 1810                                         11
## 1811                                         68
## 1812                                         54
## 1813                                         96
## 1814                                         34
## 1815                                        221
## 1816                                        308
## 1817                                        265
## 1818                                         38
## 1819                                         43
## 1820                                         21
## 1821                                         33
## 1822                                        143
## 1823                                         45
## 1824                                         12
## 1825                                          5
## 1826                                         20
## 1827                                         10
## 1828                                         65
## 1829                                        186
## 1830                                         72
## 1831                                          *
## 1832                                          5
## 1833                                        152
## 1834                                         47
## 1835                                         44
## 1836                                         10
## 1837                                         22
## 1838                                         15
## 1839                                         18
## 1840                                         49
## 1841                                        240
## 1842                                        333
## 1843                                        131
## 1844                                          6
## 1845                                          0
## 1846                                         78
## 1847                                         81
## 1848                                        561
## 1849                                         15
## 1850                                         22
## 1851                                         25
## 1852                                          7
## 1853                                          0
## 1854                                          6
## 1855                                          0
## 1856                                         89
## 1857                                          0
## 1858                                          0
## 1859                                          0
## 1860                                          0
## 1861                                          0
## 1862                                          0
## 1863                                          0
## 1864                                          0
## 1865                                         11
## 1866                                          0
## 1867                                         14
## 1868                                         19
## 1869                                         70
## 1870                                         39
## 1871                                        437
## 1872                                        159
## 1873                                         87
## 1874                                          0
## 1875                                          0
## 1876                                          0
## 1877                                         72
## 1878                                         21
## 1879                                          *
## 1880                                         40
## 1881                                         18
## 1882                                          6
## 1883                                        127
## 1884                                         29
## 1885                                          0
## 1886                                          0
## 1887                                          0
## 1888                                        219
## 1889                                          0
## 1890                                          0
## 1891                                          0
## 1892                                         14
## 1893                                          0
## 1894                                          7
## 1895                                          0
## 1896                                          0
## 1897                                          *
## 1898                                        115
## 1899                                          9
## 1900                                          0
## 1901                                          *
## 1902                                          0
## 1903                                         33
## 1904                                          0
## 1905                                          0
## 1906                                          0
## 1907                                          0
## 1908                                          0
## 1909                                          0
## 1910                                          0
## 1911                                          0
## 1912                                          0
## 1913                                          0
## 1914                                          0
## 1915                                          0
## 1916                                          0
## 1917                                          0
## 1918                                        434
## 1919                                        180
## 1920                                        418
## 1921                                        320
## 1922                                         98
## 1923                                          9
## 1924                                          *
## 1925                                          0
## 1926                                          0
## 1927                                          0
## 1928                                          0
## 1929                                          0
## 1930                                          0
## 1931                                          0
## 1932                                          0
## 1933                                          7
## 1934                                          0
## 1935                                          0
## 1936                                          0
## 1937                                          0
## 1938                                         21
## 1939                                          *
## 1940                                          0
## 1941                                          0
## 1942                                          0
## 1943                                          0
## 1944                                          *
## 1945                                          0
## 1946                                          0
## 1947                                          0
## 1948                                          0
## 1949                                          0
## 1950                                          0
## 1951                                          0
## 1952                                          0
## 1953                                        125
## 1954                                         36
## 1955                                        239
## 1956                                        382
## 1957                                        163
## 1958                                          5
## 1959                                        209
## 1960                                          *
## 1961                                        337
## 1962                                        154
## 1963                                        272
## 1964                                        306
## 1965                                          9
## 1966                                        213
## 1967                                         85
## 1968                                         41
## 1969                                         83
## 1970                                         56
## 1971                                         17
## 1972                                         99
## 1973                                         46
## 1974                                       1269
## 1975                                         42
## 1976                                         95
## 1977                                        138
## 1978                                          7
## 1979                                       1378
## 1980                                          *
## 1981                                        204
## 1982                                         23
## 1983                                        111
## 1984                                          *
## 1985                                         36
## 1986                                        268
## 1987                                         47
## 1988                                          0
## 1989                                         35
## 1990                                          9
## 1991                                         51
## 1992                                         74
## 1993                                         23
## 1994                                        142
## 1995                                          0
## 1996                                          0
## 1997                                        156
## 1998                                         19
## 1999                                        528
## 2000                                         50
## 2001                                         68
## 2002                                         37
## 2003                                          7
## 2004                                         55
## 2005                                         42
## 2006                                         15
## 2007                                        254
## 2008                                        122
## 2009                                         62
## 2010                                         26
## 2011                                          8
## 2012                                         83
## 2013                                         16
## 2014                                        353
## 2015                                        258
## 2016                                       1694
## 2017                                       1696
## 2018                                        120
## 2019                                          *
## 2020                                         59
## 2021                                          *
## 2022                                        189
## 2023                                        229
## 2024                                          5
## 2025                                        405
## 2026                                        405
## 2027                                          5
## 2028                                         12
## 2029                                          *
## 2030                                          5
## 2031                                         16
## 2032                                          9
## 2033                                          7
## 2034                                         17
## 2035                                         16
## 2036                                        363
## 2037                                        132
## 2038                                        187
## 2039                                         51
## 2040                                         54
## 2041                                          7
## 2042                                         68
## 2043                                        141
## 2044                                        331
## 2045                                         28
## 2046                                        677
## 2047                                        253
## 2048                                        121
## 2049                                         40
## 2050                                        181
## 2051                                         91
## 2052                                         19
## 2053                                         95
## 2054                                        342
## 2055                                          6
## 2056                                         47
## 2057                                         17
## 2058                                          *
## 2059                                         69
## 2060                                         28
## 2061                                          0
## 2062                                        185
## 2063                                          0
## 2064                                          0
## 2065                                          0
## 2066                                         72
## 2067                                          5
## 2068                                         26
## 2069                                        321
## 2070                                        105
## 2071                                        134
## 2072                                        300
## 2073                                         45
## 2074                                         44
## 2075                                         18
## 2076                                        158
## 2077                                          0
## 2078                                         89
## 2079                                         11
## 2080                                         38
## 2081                                        236
## 2082                                         61
## 2083                                         62
## 2084                                         60
## 2085                                         62
## 2086                                        249
## 2087                                         14
## 2088                                         67
## 2089                                         23
## 2090                                         13
## 2091                                         39
## 2092                                        182
## 2093                                         25
## 2094                                         56
## 2095                                         55
## 2096                                         23
## 2097                                         48
## 2098                                         54
## 2099                                        121
## 2100                                         23
## 2101                                         55
## 2102                                         68
## 2103                                         44
## 2104                                         24
## 2105                                         50
## 2106                                          9
## 2107                                          6
## 2108                                          *
## 2109                                          *
## 2110                                          0
## 2111                                          *
## 2112                                          0
## 2113                                          *
## 2114                                          0
## 2115                                          0
## 2116                                          0
## 2117                                          0
## 2118                                         10
## 2119                                          0
## 2120                                          0
## 2121                                         24
## 2122                                          9
## 2123                                          *
## 2124                                          0
## 2125                                          *
## 2126                                          0
## 2127                                          *
## 2128                                          0
## 2129                                          0
## 2130                                          0
## 2131                                          0
## 2132                                        536
## 2133                                        208
## 2134                                          0
## 2135                                          0
## 2136                                         59
## 2137                                         20
## 2138                                         25
## 2139                                         11
## 2140                                          0
## 2141                                         36
## 2142                                          9
## 2143                                         29
## 2144                                         52
## 2145                                          0
## 2146                                        148
## 2147                                          *
## 2148                                         22
## 2149                                         34
## 2150                                         14
## 2151                                        109
## 2152                                          0
## 2153                                        170
## 2154                                        102
## 2155                                        170
## 2156                                          0
## 2157                                        206
## 2158                                         55
## 2159                                        121
## 2160                                          0
## 2161                                         71
## 2162                                         54
## 2163                                         35
## 2164                                         40
## 2165                                          0
## 2166                                          0
## 2167                                          5
## 2168                                         49
## 2169                                        213
## 2170                                        138
## 2171                                          0
## 2172                                          0
## 2173                                        303
## 2174                                          0
## 2175                                          *
## 2176                                        475
## 2177                                          9
## 2178                                        332
## 2179                                        153
## 2180                                          9
## 2181                                         20
## 2182                                         34
## 2183                                         88
## 2184                                          *
## 2185                                          7
## 2186                                         43
## 2187                                          7
## 2188                                       1153
## 2189                                         14
## 2190                                          8
## 2191                                          0
## 2192                                          *
## 2193                                          *
## 2194                                          *
## 2195                                          0
## 2196                                          7
## 2197                                          0
## 2198                                          0
## 2199                                          *
## 2200                                         14
## 2201                                          *
## 2202                                          8
## 2203                                          5
## 2204                                          *
## 2205                                          0
## 2206                                         25
## 2207                                        118
## 2208                                        194
## 2209                                        331
## 2210                                         56
## 2211                                          *
## 2212                                        113
## 2213                                         61
## 2214                                         67
## 2215                                          *
## 2216                                         16
## 2217                                         24
## 2218                                         24
## 2219                                         22
## 2220                                          *
## 2221                                          0
## 2222                                          0
## 2223                                          0
## 2224                                          0
## 2225                                          0
## 2226                                          0
## 2227                                          0
## 2228                                          0
## 2229                                          0
## 2230                                          0
## 2231                                          0
## 2232                                          0
## 2233                                          0
## 2234                                          0
## 2235                                          9
## 2236                                          0
## 2237                                          *
## 2238                                          0
## 2239                                          *
## 2240                                          *
## 2241                                          0
## 2242                                        127
## 2243                                        189
## 2244                                         18
## 2245                                        455
## 2246                                        626
## 2247                                          0
## 2248                                       1131
## 2249                                        429
## 2250                                         59
## 2251                                        241
## 2252                                        109
## 2253                                         39
## 2254                                         22
## 2255                                        422
## 2256                                        118
## 2257                                          *
## 2258                                         96
## 2259                                        250
## 2260                                        502
## 2261                                         17
## 2262                                         22
## 2263                                         78
## 2264                                         44
## 2265                                         71
## 2266                                        153
## 2267                                         64
## 2268                                         41
## 2269                                         40
## 2270                                          *
## 2271                                        210
## 2272                                         52
## 2273                                        299
## 2274                                        116
## 2275                                         44
## 2276                                         64
## 2277                                         40
## 2278                                          0
## 2279                                         31
## 2280                                         95
## 2281                                         43
## 2282                                         14
## 2283                                         78
## 2284                                         58
## 2285                                         10
## 2286                                         34
## 2287                                         96
## 2288                                        167
## 2289                                          0
## 2290                                        379
## 2291                                         47
## 2292                                         27
## 2293                                          9
## 2294                                          *
## 2295                                         26
## 2296                                          *
## 2297                                          0
## 2298                                          0
## 2299                                          0
## 2300                                         15
## 2301                                         95
## 2302                                         53
## 2303                                         32
## 2304                                         44
## 2305                                         46
## 2306                                        100
## 2307                                         72
## 2308                                         42
## 2309                                         80
## 2310                                        266
## 2311                                          0
## 2312                                         43
## 2313                                         24
## 2314                                         23
## 2315                                          *
## 2316                                          *
## 2317                                          0
## 2318                                        119
## 2319                                         54
## 2320                                         16
## 2321                                         64
## 2322                                        215
## 2323                                        178
## 2324                                         50
## 2325                                         73
## 2326                                        314
## 2327                                        300
## 2328                                        297
## 2329                                         43
## 2330                                        108
## 2331                                        153
## 2332                                         87
## 2333                                        361
## 2334                                        109
## 2335                                         11
## 2336                                         91
## 2337                                         53
## 2338                                         13
## 2339                                          *
## 2340                                          0
## 2341                                        110
## 2342                                         98
## 2343                                         88
## 2344                                        485
## 2345                                          0
## 2346                                          0
## 2347                                         65
## 2348                                         27
## 2349                                         48
## 2350                                         37
## 2351                                        387
## 2352                                        209
## 2353                                        136
## 2354                                         50
## 2355                                          8
## 2356                                          5
## 2357                                          *
## 2358                                         54
## 2359                                         15
## 2360                                         55
## 2361                                        135
## 2362                                        199
## 2363                                          5
## 2364                                         18
## 2365                                         35
## 2366                                         66
## 2367                                         17
## 2368                                          7
## 2369                                         81
## 2370                                          0
## 2371                                          0
## 2372                                          0
## 2373                                          0
## 2374                                        450
## 2375                                        342
## 2376                                          *
## 2377                                          *
## 2378                                          0
## 2379                                          0
## 2380                                          *
## 2381                                          0
## 2382                                          *
## 2383                                          5
## 2384                                          6
## 2385                                          0
## 2386                                          *
## 2387                                          *
## 2388                                          *
## 2389                                          5
## 2390                                          7
## 2391                                         11
## 2392                                          *
## 2393                                         14
## 2394                                         16
## 2395                                          0
## 2396                                         28
## 2397                                          0
## 2398                                          0
## 2399                                          0
## 2400                                          0
## 2401                                          8
## 2402                                          *
## 2403                                          0
## 2404                                          *
## 2405                                         10
## 2406                                          0
## 2407                                          0
## 2408                                          *
## 2409                                          6
## 2410                                          0
## 2411                                          *
## 2412                                         13
## 2413                                         22
## 2414                                          6
## 2415                                          *
## 2416                                          8
## 2417                                         32
## 2418                                         12
## 2419                                          0
## 2420                                          *
## 2421                                          5
## 2422                                         48
## 2423                                          0
## 2424                                          0
## 2425                                         24
## 2426                                          *
## 2427                                          5
## 2428                                          8
## 2429                                          0
## 2430                                          0
## 2431                                          0
## 2432                                          0
## 2433                                          0
## 2434                                          0
## 2435                                          0
## 2436                                          0
## 2437                                          0
## 2438                                          0
## 2439                                          *
## 2440                                         11
## 2441                                          *
## 2442                                          *
## 2443                                          0
## 2444                                          6
## 2445                                        109
## 2446                                          0
## 2447                                          0
## 2448                                          0
## 2449                                          0
## 2450                                          0
## 2451                                        183
## 2452                                          0
## 2453                                          0
## 2454                                         22
## 2455                                         15
## 2456                                        137
## 2457                                         59
## 2458                                         56
## 2459                                          5
## 2460                                          7
## 2461                                         37
## 2462                                          5
## 2463                                         33
## 2464                                        134
## 2465                                         18
## 2466                                          6
## 2467                                          6
## 2468                                          8
## 2469                                          0
## 2470                                         29
## 2471                                         20
## 2472                                          *
## 2473                                         82
## 2474                                         71
## 2475                                         49
## 2476                                         33
## 2477                                         98
## 2478                                          0
## 2479                                          7
## 2480                                          0
## 2481                                         72
## 2482                                          *
## 2483                                          *
## 2484                                         10
## 2485                                         44
## 2486                                         25
## 2487                                         42
## 2488                                        223
## 2489                                          8
## 2490                                         79
## 2491                                         33
## 2492                                         10
## 2493                                        123
## 2494                                          5
## 2495                                         13
## 2496                                         13
## 2497                                         98
## 2498                                        168
## 2499                                         14
## 2500                                         12
## 2501                                        185
## 2502                                        294
## 2503                                        241
## 2504                                         63
## 2505                                        384
## 2506                                        401
## 2507                                        100
## 2508                                         94
## 2509                                         89
## 2510                                        157
## 2511                                          7
## 2512                                          8
## 2513                                          *
## 2514                                        722
## 2515                                         13
## 2516                                         72
## 2517                                         40
## 2518                                         11
## 2519                                         11
## 2520                                         30
## 2521                                         15
## 2522                                         22
## 2523                                        475
## 2524                                        195
## 2525                                        185
## 2526                                          7
## 2527                                         15
## 2528                                          0
## 2529                                        280
## 2530                                          *
## 2531                                          0
## 2532                                          5
## 2533                                          0
## 2534                                          0
## 2535                                         42
## 2536                                          0
## 2537                                         78
## 2538                                        108
## 2539                                          0
## 2540                                          0
## 2541                                         77
## 2542                                         20
## 2543                                        184
## 2544                                         55
## 2545                                        105
## 2546                                        105
## 2547                                          *
## 2548                                          *
## 2549                                          *
## 2550                                          *
## 2551                                          0
## 2552                                          *
## 2553                                          *
## 2554                                          *
## 2555                                          0
## 2556                                         10
## 2557                                         23
## 2558                                          *
## 2559                                          *
## 2560                                          9
## 2561                                          0
## 2562                                          6
## 2563                                          0
## 2564                                          0
## 2565                                         13
## 2566                                          0
## 2567                                          0
## 2568                                          0
## 2569                                          0
## 2570                                          0
## 2571                                          0
## 2572                                          0
## 2573                                          *
## 2574                                          0
## 2575                                          0
## 2576                                          0
## 2577                                          0
## 2578                                          0
## 2579                                         13
## 2580                                          0
## 2581                                         21
## 2582                                        106
## 2583                                        176
## 2584                                        901
## 2585                                        134
## 2586                                         50
## 2587                                        261
## 2588                                         75
## 2589                                         22
## 2590                                       1296
## 2591                                          0
## 2592                                          0
## 2593                                          0
## 2594                                         11
## 2595                                         51
## 2596                                         14
## 2597                                          *
## 2598                                          *
## 2599                                          0
## 2600                                         62
## 2601                                          0
## 2602                                         12
## 2603                                         28
## 2604                                          9
## 2605                                          0
## 2606                                        149
## 2607                                         20
## 2608                                         78
## 2609                                          *
## 2610                                          *
## 2611                                          7
## 2612                                         14
## 2613                                          5
## 2614                                         11
## 2615                                         47
## 2616                                          0
## 2617                                          6
## 2618                                          *
## 2619                                          *
## 2620                                          *
## 2621                                         22
## 2622                                         20
## 2623                                         27
## 2624                                         16
## 2625                                          *
## 2626                                          6
## 2627                                          *
## 2628                                         40
## 2629                                         12
## 2630                                          *
## 2631                                         44
## 2632                                          *
## 2633                                         12
## 2634                                          *
## 2635                                          *
## 2636                                          7
## 2637                                         13
## 2638                                         25
## 2639                                         38
## 2640                                          0
## 2641                                          *
## 2642                                          0
## 2643                                          *
## 2644                                          0
## 2645                                          *
## 2646                                          *
## 2647                                          0
## 2648                                        156
## 2649                                          7
## 2650                                         33
## 2651                                         41
## 2652                                         60
## 2653                                          0
## 2654                                         52
## 2655                                          5
## 2656                                          *
## 2657                                        116
## 2658                                          7
## 2659                                         23
## 2660                                          9
## 2661                                         20
## 2662                                         85
## 2663                                         48
## 2664                                          *
## 2665                                          *
## 2666                                          6
## 2667                                         10
## 2668                                          *
## 2669                                          7
## 2670                                         13
## 2671                                          9
## 2672                                          6
## 2673                                          *
## 2674                                          *
## 2675                                         28
## 2676                                          *
## 2677                                         53
## 2678                                          *
## 2679                                         11
## 2680                                          6
## 2681                                          *
## 2682                                        192
## 2683                                         38
## 2684                                         22
## 2685                                         26
## 2686                                          *
## 2687                                          *
## 2688                                         17
## 2689                                         10
## 2690                                          8
## 2691                                         70
## 2692                                         21
## 2693                                         71
## 2694                                         29
## 2695                                          9
## 2696                                        139
## 2697                                         22
## 2698                                          8
## 2699                                         40
## 2700                                         69
## 2701                                         71
## 2702                                          9
## 2703                                         24
## 2704                                         60
## 2705                                         28
## 2706                                          9
## 2707                                        249
## 2708                                         20
## 2709                                         36
## 2710                                          9
## 2711                                          6
## 2712                                         22
## 2713                                          *
## 2714                                          6
## 2715                                          7
## 2716                                         19
## 2717                                          *
## 2718                                         38
## 2719                                         10
## 2720                                         20
## 2721                                          5
## 2722                                         10
## 2723                                          *
## 2724                                         50
## 2725                                         15
## 2726                                          *
## 2727                                         11
## 2728                                         14
## 2729                                         97
## 2730                                          *
## 2731                                          *
## 2732                                         61
## 2733                                          5
## 2734                                         15
## 2735                                          8
## 2736                                        331
## 2737                                         14
## 2738                                         15
## 2739                                         26
## 2740                                          0
## 2741                                         10
## 2742                                         14
## 2743                                          *
## 2744                                        768
## 2745                                         15
## 2746                                        338
## 2747                                          0
## 2748                                        145
## 2749                                        325
## 2750                                         37
## 2751                                        369
## 2752                                       3513
## 2753                                        287
## 2754                                        278
## 2755                                        183
## 2756                                          0
## 2757                                         49
## 2758                                        149
## 2759                                          0
## 2760                                        543
## 2761                                        176
## 2762                                       1009
## 2763                                         32
## 2764                                         78
## 2765                                        257
## 2766                                        115
## 2767                                        125
## 2768                                        121
## 2769                                        138
## 2770                                          0
## 2771                                          0
## 2772                                          0
## 2773                                          0
## 2774                                          0
## 2775                                          0
## 2776                                        103
## 2777                                        289
## 2778                                       1081
## 2779                                        192
## 2780                                        235
## 2781                                         14
## 2782                                        473
## 2783                                          0
## 2784                                          0
## 2785                                          0
## 2786                                          0
## 2787                                          0
## 2788                                          0
## 2789                                          0
## 2790                                          0
## 2791                                          0
## 2792                                          0
## 2793                                          0
## 2794                                          0
## 2795                                          0
## 2796                                          0
## 2797                                          0
## 2798                                          0
## 2799                                          0
## 2800                                          0
## 2801                                          0
## 2802                                          0
## 2803                                          0
## 2804                                          0
## 2805                                        276
## 2806                                         26
## 2807                                         67
## 2808                                          8
## 2809                                          9
## 2810                                         45
## 2811                                         78
## 2812                                         13
## 2813                                         29
## 2814                                         13
## 2815                                          *
## 2816                                          0
## 2817                                         41
## 2818                                         16
## 2819                                        232
## 2820                                        334
## 2821                                         43
## 2822                                        319
## 2823                                        326
## 2824                                         39
## 2825                                         98
## 2826                                          *
## 2827                                          9
## 2828                                          6
## 2829                                         43
## 2830                                          0
## 2831                                          0
## 2832                                          0
## 2833                                         10
## 2834                                          *
## 2835                                        123
## 2836                                        115
## 2837                                        137
## 2838                                         20
## 2839                                         53
## 2840                                        112
## 2841                                        277
## 2842                                        253
## 2843                                         18
## 2844                                        113
## 2845                                        161
## 2846                                        470
## 2847                                        730
## 2848                                        382
## 2849                                          6
## 2850                                        796
## 2851                                        111
## 2852                                        990
## 2853                                        279
## 2854                                         70
## 2855                                        162
## 2856                                        580
## 2857                                        524
## 2858                                        635
## 2859                                        495
## 2860                                        725
## 2861                                        200
## 2862                                        223
## 2863                                        250
## 2864                                        370
## 2865                                         12
## 2866                                        409
## 2867                                        187
## 2868                                        145
## 2869                                        448
## 2870                                        193
## 2871                                        467
## 2872                                        167
## 2873                                        198
## 2874                                        164
## 2875                                         91
## 2876                                         36
## 2877                                        303
## 2878                                         38
## 2879                                         67
## 2880                                         31
## 2881                                          7
## 2882                                         62
## 2883                                         52
## 2884                                          *
## 2885                                         46
## 2886                                         30
## 2887                                         29
## 2888                                        257
## 2889                                          0
## 2890                                          0
## 2891                                        138
## 2892                                          0
## 2893                                          0
## 2894                                         97
## 2895                                          *
## 2896                                         27
## 2897                                         19
## 2898                                          0
## 2899                                          0
## 2900                                          0
## 2901                                        367
## 2902                                         17
## 2903                                          7
## 2904                                         40
## 2905                                        162
## 2906                                         86
## 2907                                         26
## 2908                                         67
## 2909                                          0
## 2910                                         35
## 2911                                         14
## 2912                                          0
## 2913                                         32
## 2914                                        141
## 2915                                         47
## 2916                                        313
## 2917                                         63
## 2918                                         88
## 2919                                         38
## 2920                                         96
## 2921                                         32
## 2922                                         10
## 2923                                         35
## 2924                                        335
## 2925                                         17
## 2926                                         60
## 2927                                         36
## 2928                                          6
## 2929                                         88
## 2930                                        103
## 2931                                         44
## 2932                                         73
## 2933                                         65
## 2934                                         83
## 2935                                         93
## 2936                                        117
## 2937                                         62
## 2938                                          0
## 2939                                          0
## 2940                                          0
## 2941                                          0
## 2942                                         93
## 2943                                         25
## 2944                                          0
## 2945                                          0
## 2946                                          0
## 2947                                          0
## 2948                                          0
## 2949                                         71
## 2950                                        252
## 2951                                        231
## 2952                                        148
## 2953                                         79
## 2954                                         89
## 2955                                         42
## 2956                                          0
## 2957                                         47
## 2958                                         21
## 2959                                        631
## 2960                                          0
## 2961                                          0
## 2962                                        210
## 2963                                        253
## 2964                                        132
## 2965                                         20
## 2966                                         13
## 2967                                          7
## 2968                                          0
## 2969                                          7
## 2970                                          0
## 2971                                          0
## 2972                                          0
## 2973                                          0
## 2974                                          0
## 2975                                          *
## 2976                                          6
## 2977                                          7
## 2978                                          *
## 2979                                          5
## 2980                                          0
## 2981                                          0
## 2982                                         13
## 2983                                         51
## 2984                                         33
## 2985                                         30
## 2986                                          7
## 2987                                          0
## 2988                                          0
## 2989                                          0
## 2990                                          0
## 2991                                          0
## 2992                                          0
## 2993                                          0
## 2994                                          0
## 2995                                          0
## 2996                                          0
## 2997                                          0
## 2998                                          0
## 2999                                          0
## 3000                                          0
## 3001                                          0
## 3002                                          0
## 3003                                          0
## 3004                                          0
## 3005                                          0
## 3006                                          0
## 3007                                          0
## 3008                                          0
## 3009                                          0
## 3010                                          0
## 3011                                          0
## 3012                                          0
## 3013                                          0
## 3014                                          0
## 3015                                          0
## 3016                                          0
## 3017                                          0
## 3018                                          0
## 3019                                          0
## 3020                                          0
## 3021                                          0
## 3022                                          0
## 3023                                          0
## 3024                                          0
## 3025                                          0
## 3026                                         36
## 3027                                        400
## 3028                                         45
## 3029                                        157
## 3030                                         33
## 3031                                         24
## 3032                                         23
## 3033                                         30
## 3034                                        304
## 3035                                         66
## 3036                                        251
## 3037                                         56
## 3038                                        148
## 3039                                        180
## 3040                                        220
## 3041                                         64
## 3042                                        106
## 3043                                        170
## 3044                                         14
## 3045                                         29
## 3046                                         18
## 3047                                         70
## 3048                                         55
## 3049                                         48
## 3050                                        188
## 3051                                         98
## 3052                                         25
## 3053                                          *
## 3054                                          *
## 3055                                          *
## 3056                                          0
## 3057                                          *
## 3058                                          *
## 3059                                          *
## 3060                                          0
## 3061                                          0
## 3062                                          0
## 3063                                          *
## 3064                                          0
## 3065                                          0
## 3066                                          0
## 3067                                          *
## 3068                                          *
## 3069                                          0
## 3070                                          0
## 3071                                          0
## 3072                                          0
## 3073                                          0
## 3074                                          0
## 3075                                          0
## 3076                                          0
## 3077                                          0
## 3078                                          *
## 3079                                          *
## 3080                                          0
## 3081                                          0
## 3082                                          0
## 3083                                          0
## 3084                                          0
## 3085                                          0
## 3086                                          0
## 3087                                          *
## 3088                                          0
## 3089                                          0
## 3090                                          0
## 3091                                          0
## 3092                                          *
## 3093                                          0
## 3094                                          *
## 3095                                          0
## 3096                                          0
## 3097                                          0
## 3098                                          0
## 3099                                          *
## 3100                                          0
## 3101                                          *
## 3102                                          0
## 3103                                          0
## 3104                                          *
## 3105                                          0
## 3106                                          0
## 3107                                          0
## 3108                                          0
## 3109                                          0
## 3110                                          0
## 3111                                          0
## 3112                                          0
## 3113                                          0
## 3114                                          0
## 3115                                          0
## 3116                                          0
## 3117                                          0
## 3118                                          0
## 3119                                          0
## 3120                                          *
## 3121                                          0
## 3122                                          0
## 3123                                          0
## 3124                                          0
## 3125                                          0
## 3126                                          0
## 3127                                          0
## 3128                                          0
## 3129                                          7
## 3130                                          0
## 3131                                          0
## 3132                                          *
## 3133                                         16
## 3134                                          8
## 3135                                          0
## 3136                                          0
## 3137                                        211
## 3138                                          *
## 3139                                          0
## 3140                                          *
## 3141                                          6
## 3142                                         27
## 3143                                         68
## 3144                                         38
## 3145                                         11
## 3146                                         36
## 3147                                        221
## 3148                                         36
## 3149                                         54
## 3150                                         17
## 3151                                         19
## 3152                                         36
## 3153                                         54
## 3154                                         55
## 3155                                         88
## 3156                                         16
## 3157                                         17
## 3158                                         10
## 3159                                         73
## 3160                                         10
## 3161                                         12
## 3162                                         38
## 3163                                         65
## 3164                                         31
## 3165                                         28
## 3166                                         30
## 3167                                         25
## 3168                                          9
## 3169                                         20
## 3170                                          0
## 3171                                         21
## 3172                                         27
## 3173                                         30
## 3174                                         31
## 3175                                         28
## 3176                                          0
## 3177                                          0
## 3178                                          0
## 3179                                          0
## 3180                                          0
## 3181                                          0
## 3182                                          0
## 3183                                          0
## 3184                                          0
## 3185                                         99
## 3186                                          *
## 3187                                        122
## 3188                                        195
## 3189                                          *
## 3190                                          8
## 3191                                         63
## 3192                                         10
## 3193                                         69
## 3194                                         18
## 3195                                         43
## 3196                                         12
## 3197                                         61
## 3198                                         21
## 3199                                          0
## 3200                                          0
## 3201                                          7
## 3202                                         90
## 3203                                         21
## 3204                                          9
## 3205                                         65
## 3206                                         38
## 3207                                          5
## 3208                                         90
## 3209                                         12
## 3210                                         40
## 3211                                         49
## 3212                                         51
## 3213                                         36
## 3214                                         49
## 3215                                        114
## 3216                                         85
## 3217                                         33
## 3218                                          0
## 3219                                          *
## 3220                                          5
## 3221                                          0
## 3222                                         57
## 3223                                         58
## 3224                                        137
## 3225                                         16
## 3226                                         29
## 3227                                        113
## 3228                                         93
## 3229                                        103
## 3230                                         40
## 3231                                        153
## 3232                                         68
## 3233                                         41
## 3234                                         47
## 3235                                          *
## 3236                                          0
## 3237                                          *
## 3238                                         51
## 3239                                         14
## 3240                                          6
## 3241                                          *
## 3242                                          *
## 3243                                          *
## 3244                                         39
## 3245                                        104
## 3246                                        104
## 3247                                         65
## 3248                                         63
## 3249                                         45
## 3250                                        102
## 3251                                        435
## 3252                                        183
## 3253                                        381
## 3254                                        197
## 3255                                          0
## 3256                                         16
## 3257                                         36
## 3258                                        121
## 3259                                          0
## 3260                                         38
## 3261                                         85
## 3262                                         82
## 3263                                        145
## 3264                                        533
## 3265                                         46
## 3266                                         78
## 3267                                        156
## 3268                                          6
## 3269                                         28
## 3270                                        416
## 3271                                        111
## 3272                                          0
## 3273                                        335
## 3274                                         36
## 3275                                         54
## 3276                                         74
## 3277                                         89
## 3278                                        263
## 3279                                         63
## 3280                                         18
## 3281                                         68
## 3282                                         23
## 3283                                          *
## 3284                                         29
## 3285                                         14
## 3286                                         32
## 3287                                          6
## 3288                                         13
## 3289                                          0
## 3290                                          0
## 3291                                         57
## 3292                                        110
## 3293                                          0
## 3294                                          0
## 3295                                         63
## 3296                                        332
## 3297                                         77
## 3298                                          6
## 3299                                         45
## 3300                                        163
## 3301                                         15
## 3302                                         55
## 3303                                         60
## 3304                                         83
## 3305                                         52
## 3306                                         30
## 3307                                        156
## 3308                                         82
## 3309                                         28
## 3310                                         15
## 3311                                          0
## 3312                                         47
## 3313                                         15
## 3314                                          *
## 3315                                          0
## 3316                                          *
## 3317                                          *
## 3318                                         41
## 3319                                          0
## 3320                                         68
## 3321                                         34
## 3322                                         47
## 3323                                         68
## 3324                                         36
## 3325                                         35
## 3326                                         47
## 3327                                         38
## 3328                                         23
## 3329                                          *
## 3330                                         12
## 3331                                         37
## 3332                                          *
## 3333                                          0
## 3334                                          0
## 3335                                          0
## 3336                                          0
## 3337                                          0
## 3338                                          0
## 3339                                          0
## 3340                                          0
## 3341                                        364
## 3342                                         45
## 3343                                        130
## 3344                                         52
## 3345                                         58
## 3346                                         31
## 3347                                         27
## 3348                                         37
## 3349                                         54
## 3350                                         16
## 3351                                         29
## 3352                                         15
## 3353                                         14
## 3354                                        102
## 3355                                         14
## 3356                                         89
## 3357                                         79
## 3358                                        202
## 3359                                        140
## 3360                                        172
## 3361                                        119
## 3362                                         34
## 3363                                        156
## 3364                                         86
## 3365                                        372
## 3366                                         14
## 3367                                        130
## 3368                                        335
## 3369                                         57
## 3370                                         64
## 3371                                        145
## 3372                                         35
## 3373                                         81
## 3374                                         58
## 3375                                         35
## 3376                                        356
## 3377                                         90
## 3378                                         37
## 3379                                        173
## 3380                                        134
## 3381                                        280
## 3382                                        236
## 3383                                         25
## 3384                                        125
## 3385                                        183
## 3386                                         58
## 3387                                          0
## 3388                                          *
## 3389                                          9
## 3390                                          6
## 3391                                          *
## 3392                                          0
## 3393                                        250
## 3394                                         64
## 3395                                        618
## 3396                                        195
## 3397                                         50
## 3398                                       1043
## 3399                                        227
## 3400                                        920
## 3401                                        236
## 3402                                       1247
## 3403                                        237
## 3404                                        228
## 3405                                         83
## 3406                                         70
## 3407                                        373
## 3408                                        718
## 3409                                        130
## 3410                                        118
## 3411                                        699
## 3412                                        170
## 3413                                        159
## 3414                                        277
## 3415                                        520
## 3416                                        180
## 3417                                        222
## 3418                                        101
## 3419                                         78
## 3420                                        113
## 3421                                        125
## 3422                                        208
## 3423                                        100
## 3424                                        138
## 3425                                        778
## 3426                                        184
## 3427                                         63
## 3428                                        194
## 3429                                        385
## 3430                                          0
## 3431                                          0
## 3432                                          0
## 3433                                         37
## 3434                                        171
## 3435                                        533
## 3436                                        415
## 3437                                         53
## 3438                                         25
## 3439                                          *
## 3440                                         16
## 3441                                         54
## 3442                                         92
## 3443                                         29
## 3444                                         21
## 3445                                         37
## 3446                                        102
## 3447                                         13
## 3448                                         31
## 3449                                         33
## 3450                                         93
## 3451                                        154
## 3452                                         54
## 3453                                         77
## 3454                                        149
## 3455                                         79
## 3456                                          *
## 3457                                          0
## 3458                                         56
## 3459                                          *
## 3460                                        137
## 3461                                         17
## 3462                                        170
## 3463                                          0
## 3464                                         21
## 3465                                         35
## 3466                                         19
## 3467                                         87
## 3468                                          0
## 3469                                          0
## 3470                                          0
## 3471                                         19
## 3472                                        352
## 3473                                         69
## 3474                                         37
## 3475                                         17
## 3476                                         20
## 3477                                          0
## 3478                                          7
## 3479                                          0
## 3480                                          7
## 3481                                          *
## 3482                                          0
## 3483                                          0
## 3484                                          0
## 3485                                          *
## 3486                                          0
## 3487                                          0
## 3488                                          5
## 3489                                          6
## 3490                                          0
## 3491                                          0
## 3492                                          0
## 3493                                          0
## 3494                                          0
## 3495                                          0
## 3496                                          0
## 3497                                          0
## 3498                                         13
## 3499                                          0
## 3500                                          *
## 3501                                          0
## 3502                                          0
## 3503                                          0
## 3504                                          0
## 3505                                          0
## 3506                                          0
## 3507                                          0
## 3508                                          0
## 3509                                          0
## 3510                                          0
## 3511                                          0
## 3512                                          0
## 3513                                          0
## 3514                                          0
## 3515                                          0
## 3516                                          0
## 3517                                          0
## 3518                                          0
## 3519                                          0
## 3520                                          0
## 3521                                          0
## 3522                                          0
## 3523                                          0
## 3524                                          0
## 3525                                          0
## 3526                                          0
## 3527                                          0
## 3528                                          0
## 3529                                          0
## 3530                                          0
## 3531                                         11
## 3532                                          *
## 3533                                          0
## 3534                                          0
## 3535                                          0
## 3536                                          *
## 3537                                          0
## 3538                                         19
## 3539                                          0
## 3540                                          0
## 3541                                          0
## 3542                                          0
## 3543                                          0
## 3544                                          0
## 3545                                          0
## 3546                                          *
## 3547                                          0
## 3548                                          0
## 3549                                          0
## 3550                                          0
## 3551                                          0
## 3552                                          0
## 3553                                          0
## 3554                                          0
## 3555                                          0
## 3556                                          0
## 3557                                          0
## 3558                                          0
## 3559                                          0
## 3560                                          0
## 3561                                          0
## 3562                                          0
## 3563                                          0
## 3564                                          0
## 3565                                          0
## 3566                                          0
## 3567                                          0
## 3568                                          0
## 3569                                          0
## 3570                                          0
## 3571                                          0
## 3572                                          0
## 3573                                          *
## 3574                                          0
## 3575                                       4385
## 3576                                        610
## 3577                                        400
## 3578                                          0
## 3579                                        173
## 3580                                         10
## 3581                                        571
## 3582                                         12
## 3583                                         30
## 3584                                         85
## 3585                                         17
## 3586                                         23
## 3587                                         99
## 3588                                        110
## 3589                                         56
## 3590                                         19
## 3591                                         42
## 3592                                         13
## 3593                                          *
## 3594                                         18
## 3595                                          *
## 3596                                         65
## 3597                                         60
## 3598                                         88
## 3599                                         19
## 3600                                         92
## 3601                                          0
## 3602                                        188
## 3603                                         87
## 3604                                        164
## 3605                                         30
## 3606                                        118
## 3607                                        369
## 3608                                          *
## 3609                                         32
## 3610                                          0
## 3611                                          0
## 3612                                          0
## 3613                                        140
## 3614                                         27
## 3615                                        126
## 3616                                         53
## 3617                                         46
## 3618                                         47
## 3619                                         74
## 3620                                        115
## 3621                                         52
## 3622                                          0
## 3623                                         18
## 3624                                        158
## 3625                                         16
## 3626                                         35
## 3627                                          7
## 3628                                         98
## 3629                                         91
## 3630                                         38
## 3631                                          0
## 3632                                          0
## 3633                                         40
## 3634                                        125
## 3635                                        168
## 3636                                          0
## 3637                                          0
## 3638                                        250
## 3639                                        271
## 3640                                         34
## 3641                                          0
## 3642                                          7
## 3643                                         97
## 3644                                          0
## 3645                                          0
## 3646                                         34
## 3647                                         51
## 3648                                          0
## 3649                                          0
## 3650                                         15
## 3651                                          0
## 3652                                          0
## 3653                                          0
## 3654                                          *
## 3655                                        743
## 3656                                          0
## 3657                                          *
## 3658                                          *
## 3659                                         43
## 3660                                       1637
## 3661                                          *
## 3662                                         50
## 3663                                          0
## 3664                                          7
## 3665                                          9
## 3666                                         11
## 3667                                          *
## 3668                                          *
## 3669                                          *
## 3670                                          0
## 3671                                          *
## 3672                                         98
## 3673                                          *
## 3674                                          *
## 3675                                          0
## 3676                                          0
## 3677                                         20
## 3678                                         75
## 3679                                          *
## 3680                                          *
## 3681                                          *
## 3682                                          *
## 3683                                          *
## 3684                                          *
## 3685                                          *
## 3686                                          *
## 3687                                         31
## 3688                                          *
## 3689                                          *
## 3690                                        195
## 3691                                        223
## 3692                                        611
## 3693                                        102
## 3694                                         91
## 3695                                        157
## 3696                                          *
## 3697                                          0
## 3698                                          *
## 3699                                        392
## 3700                                          0
## 3701                                        170
## 3702                                        648
## 3703                                        611
## 3704                                        512
## 3705                                        527
## 3706                                        144
## 3707                                         22
## 3708                                          *
## 3709                                          *
## 3710                                          *
## 3711                                          *
## 3712                                          *
## 3713                                          *
## 3714                                          *
## 3715                                          0
## 3716                                          0
## 3717                                          *
## 3718                                          0
## 3719                                          *
## 3720                                          *
## 3721                                          *
## 3722                                          *
## 3723                                         14
## 3724                                          0
## 3725                                          *
## 3726                                          *
## 3727                                          *
## 3728                                          *
## 3729                                          *
## 3730                                          *
## 3731                                          *
## 3732                                          *
## 3733                                          *
## 3734                                          *
## 3735                                        121
## 3736                                         41
## 3737                                          0
## 3738                                         29
## 3739                                        166
## 3740                                         10
## 3741                                          0
## 3742                                          0
## 3743                                          0
## 3744                                          0
## 3745                                        124
## 3746                                         23
## 3747                                         19
## 3748                                         37
## 3749                                         69
## 3750                                          0
## 3751                                          *
## 3752                                         15
## 3753                                         26
## 3754                                          *
## 3755                                         10
## 3756                                         46
## 3757                                         42
## 3758                                         15
## 3759                                         21
## 3760                                          *
## 3761                                          0
## 3762                                          *
## 3763                                         48
## 3764                                          0
## 3765                                          0
## 3766                                          0
## 3767                                        144
## 3768                                         46
## 3769                                         46
## 3770                                        374
## 3771                                         90
## 3772                                         20
## 3773                                          0
## 3774                                         89
## 3775                                         22
## 3776                                         88
## 3777                                          7
## 3778                                         56
## 3779                                         44
## 3780                                        236
## 3781                                         79
## 3782                                        225
## 3783                                        127
## 3784                                         58
## 3785                                          8
## 3786                                         62
## 3787                                        486
## 3788                                         35
## 3789                                         95
## 3790                                         29
## 3791                                         23
## 3792                                         37
## 3793                                         12
## 3794                                         24
## 3795                                         23
## 3796                                         28
## 3797                                         24
## 3798                                         13
## 3799                                          9
## 3800                                          6
## 3801                                        192
## 3802                                         76
## 3803                                         95
## 3804                                         16
## 3805                                        271
## 3806                                         29
## 3807                                        151
## 3808                                         11
## 3809                                         69
## 3810                                         84
## 3811                                         55
## 3812                                          *
## 3813                                         29
## 3814                                        232
## 3815                                         40
## 3816                                        165
## 3817                                         96
## 3818                                         49
## 3819                                         97
## 3820                                        246
## 3821                                        215
## 3822                                         44
## 3823                                         59
## 3824                                          0
## 3825                                         20
## 3826                                       1462
## 3827                                          0
## 3828                                         58
## 3829                                          0
## 3830                                         13
## 3831                                          0
## 3832                                        117
## 3833                                         34
## 3834                                         42
## 3835                                         15
## 3836                                          5
## 3837                                          0
## 3838                                          *
## 3839                                         40
## 3840                                         42
## 3841                                         23
## 3842                                         62
## 3843                                         28
## 3844                                        349
## 3845                                        124
## 3846                                          *
## 3847                                         19
## 3848                                        163
## 3849                                         21
## 3850                                          6
## 3851                                        105
## 3852                                         21
## 3853                                         19
## 3854                                          *
## 3855                                        109
## 3856                                         76
## 3857                                        176
## 3858                                         22
## 3859                                         58
## 3860                                          *
## 3861                                          *
## 3862                                          0
## 3863                                         78
## 3864                                          0
## 3865                                          *
## 3866                                        141
## 3867                                         66
## 3868                                        106
## 3869                                        268
## 3870                                        202
## 3871                                         53
## 3872                                         51
## 3873                                        464
## 3874                                        288
## 3875                                        142
## 3876                                        538
## 3877                                       1094
## 3878                                         11
## 3879                                        333
## 3880                                        101
## 3881                                        111
## 3882                                         71
## 3883                                         70
## 3884                                        161
## 3885                                         34
## 3886                                         33
## 3887                                         49
## 3888                                        132
## 3889                                         73
## 3890                                        209
## 3891                                         28
## 3892                                        169
## 3893                                         81
## 3894                                         42
## 3895                                         98
## 3896                                          0
## 3897                                         31
## 3898                                          0
## 3899                                         14
## 3900                                          0
## 3901                                          0
## 3902                                          0
## 3903                                          5
## 3904                                          0
## 3905                                        109
## 3906                                        334
## 3907                                          0
## 3908                                          0
## 3909                                          0
## 3910                                          0
## 3911                                          0
## 3912                                          0
## 3913                                          0
## 3914                                          0
## 3915                                          0
## 3916                                          0
## 3917                                          0
## 3918                                          0
## 3919                                          0
## 3920                                          0
## 3921                                          0
## 3922                                          0
## 3923                                          0
## 3924                                          0
## 3925                                          0
## 3926                                          0
## 3927                                          0
## 3928                                          0
## 3929                                          0
## 3930                                          0
## 3931                                          0
## 3932                                          0
## 3933                                          0
## 3934                                          0
## 3935                                          0
## 3936                                          0
## 3937                                          0
## 3938                                          0
## 3939                                          0
## 3940                                          0
## 3941                                          0
## 3942                                          0
## 3943                                          0
## 3944                                          0
## 3945                                          0
## 3946                                          0
## 3947                                          0
## 3948                                          0
## 3949                                          0
## 3950                                          0
## 3951                                          0
## 3952                                          0
## 3953                                          0
## 3954                                          0
## 3955                                          0
## 3956                                          0
## 3957                                          0
## 3958                                          0
## 3959                                          0
## 3960                                          0
## 3961                                          0
## 3962                                          0
## 3963                                          0
## 3964                                          0
## 3965                                          0
## 3966                                          0
## 3967                                          0
## 3968                                          0
## 3969                                          0
## 3970                                          0
## 3971                                          0
## 3972                                          0
## 3973                                          0
## 3974                                          0
## 3975                                          0
## 3976                                          0
## 3977                                          0
## 3978                                          0
## 3979                                          0
## 3980                                          0
## 3981                                          0
## 3982                                          0
## 3983                                          0
## 3984                                          0
## 3985                                          0
## 3986                                          0
## 3987                                          0
## 3988                                          0
## 3989                                          0
## 3990                                          0
## 3991                                          0
## 3992                                          0
## 3993                                          0
## 3994                                          0
## 3995                                          0
## 3996                                          0
## 3997                                          0
## 3998                                          0
## 3999                                          0
## 4000                                          0
## 4001                                          0
## 4002                                          0
## 4003                                          0
## 4004                                          0
## 4005                                          0
## 4006                                          0
## 4007                                          0
## 4008                                          0
## 4009                                          0
## 4010                                          0
## 4011                                          0
## 4012                                          0
## 4013                                          0
## 4014                                          0
## 4015                                          0
## 4016                                          0
## 4017                                          0
## 4018                                          0
## 4019                                          0
## 4020                                          0
## 4021                                          0
## 4022                                          0
## 4023                                          0
## 4024                                          0
## 4025                                          0
## 4026                                          0
## 4027                                          0
## 4028                                          0
## 4029                                          0
## 4030                                          0
## 4031                                          0
## 4032                                          *
## 4033                                          0
## 4034                                          0
## 4035                                          0
## 4036                                          0
## 4037                                          0
## 4038                                          0
## 4039                                          0
## 4040                                          0
## 4041                                          0
## 4042                                          0
## 4043                                          0
## 4044                                          0
## 4045                                          0
## 4046                                         15
## 4047                                         90
## 4048                                          0
## 4049                                          *
## 4050                                          0
## 4051                                          0
## 4052                                          0
## 4053                                          0
## 4054                                          0
## 4055                                          0
## 4056                                          0
## 4057                                          0
## 4058                                          0
## 4059                                          0
## 4060                                          0
## 4061                                          8
## 4062                                          6
## 4063                                         25
## 4064                                         13
## 4065                                          5
## 4066                                          *
## 4067                                          5
## 4068                                          0
## 4069                                          0
## 4070                                          0
## 4071                                          0
## 4072                                          0
## 4073                                          0
## 4074                                          0
## 4075                                          0
## 4076                                          0
## 4077                                          0
## 4078                                          0
## 4079                                          0
## 4080                                          0
## 4081                                          0
## 4082                                          0
## 4083                                          0
## 4084                                          0
## 4085                                          0
## 4086                                          0
## 4087                                          0
## 4088                                          0
## 4089                                          0
## 4090                                          0
## 4091                                          0
## 4092                                          0
## 4093                                          0
## 4094                                          0
## 4095                                          0
## 4096                                          0
## 4097                                          0
## 4098                                          0
## 4099                                          0
## 4100                                          0
## 4101                                       1512
## 4102                                          0
## 4103                                          *
## 4104                                          0
## 4105                                          9
## 4106                                          0
## 4107                                          0
## 4108                                          0
## 4109                                          0
## 4110                                          *
## 4111                                          0
## 4112                                          0
## 4113                                          0
## 4114                                          0
## 4115                                          0
## 4116                                          0
## 4117                                          0
## 4118                                          0
## 4119                                        183
## 4120                                        140
## 4121                                         32
## 4122                                         19
## 4123                                          0
## 4124                                         10
## 4125                                        500
## 4126                                          5
## 4127                                        140
## 4128                                        132
## 4129                                         78
## 4130                                        190
## 4131                                         21
## 4132                                          *
## 4133                                          0
## 4134                                          0
## 4135                                          5
## 4136                                          0
## 4137                                          0
## 4138                                         16
## 4139                                        199
## 4140                                          0
## 4141                                          0
## 4142                                          0
## 4143                                          0
## 4144                                        427
## 4145                                        218
## 4146                                        860
## 4147                                        610
## 4148                                        840
## 4149                                        361
## 4150                                        175
## 4151                                         52
## 4152                                        202
## 4153                                         66
## 4154                                         69
## 4155                                          0
## 4156                                          0
## 4157                                          0
## 4158                                          0
## 4159                                          0
## 4160                                          0
## 4161                                          0
## 4162                                         55
## 4163                                          0
## 4164                                          0
## 4165                                          *
## 4166                                          0
## 4167                                          0
## 4168                                          0
## 4169                                          0
## 4170                                        147
## 4171                                         24
## 4172                                         90
## 4173                                         41
## 4174                                         85
## 4175                                         48
## 4176                                        134
## 4177                                        211
## 4178                                        438
## 4179                                         57
## 4180                                          0
## 4181                                          0
## 4182                                          0
## 4183                                          0
## 4184                                          0
## 4185                                          0
## 4186                                          0
## 4187                                          0
## 4188                                          0
## 4189                                          0
## 4190                                          0
## 4191                                          0
## 4192                                          0
## 4193                                          0
## 4194                                         23
## 4195                                          *
## 4196                                        167
## 4197                                         37
## 4198                                        181
## 4199                                         31
## 4200                                          0
## 4201                                          0
## 4202                                        338
## 4203                                        388
## 4204                                        464
## 4205                                        693
## 4206                                        261
## 4207                                         46
## 4208                                          0
## 4209                                          0
## 4210                                          0
## 4211                                          0
## 4212                                          0
## 4213                                          *
## 4214                                        138
## 4215                                          *
## 4216                                          *
## 4217                                        195
## 4218                                         78
## 4219                                         15
## 4220                                          7
## 4221                                         21
## 4222                                         10
## 4223                                          *
## 4224                                          0
## 4225                                          0
## 4226                                          0
## 4227                                          0
## 4228                                          0
## 4229                                          0
## 4230                                          0
## 4231                                          0
## 4232                                          0
## 4233                                          0
## 4234                                          0
## 4235                                          0
## 4236                                          0
## 4237                                          0
## 4238                                          0
## 4239                                       1429
## 4240                                        116
## 4241                                        133
## 4242                                         14
## 4243                                          5
## 4244                                         72
## 4245                                         25
## 4246                                         12
## 4247                                          *
## 4248                                          0
## 4249                                          *
## 4250                                         26
## 4251                                         32
## 4252                                         32
## 4253                                          0
## 4254                                          0
## 4255                                          0
## 4256                                          0
## 4257                                          0
## 4258                                          0
## 4259                                          0
## 4260                                          0
## 4261                                          0
## 4262                                         24
## 4263                                         37
## 4264                                          *
## 4265                                         54
## 4266                                          0
## 4267                                          0
## 4268                                         69
## 4269                                          0
## 4270                                         11
## 4271                                          0
## 4272                                          0
## 4273                                          0
## 4274                                          0
## 4275                                          *
## 4276                                          0
## 4277                                          *
## 4278                                          0
## 4279                                          0
## 4280                                          0
## 4281                                          *
## 4282                                          *
## 4283                                          *
## 4284                                          0
## 4285                                          *
## 4286                                          0
## 4287                                          *
## 4288                                          0
## 4289                                          0
## 4290                                          0
## 4291                                          0
## 4292                                          0
## 4293                                          0
## 4294                                          0
## 4295                                          0
## 4296                                          0
## 4297                                          0
## 4298                                          0
## 4299                                          0
## 4300                                          *
## 4301                                          *
## 4302                                          0
## 4303                                          0
## 4304                                          0
## 4305                                          0
## 4306                                          0
## 4307                                          *
## 4308                                          0
## 4309                                          0
## 4310                                          *
## 4311                                          0
## 4312                                          *
## 4313                                          0
## 4314                                          0
## 4315                                          0
## 4316                                          0
## 4317                                          0
## 4318                                          0
## 4319                                          0
## 4320                                         14
## 4321                                         11
## 4322                                          8
## 4323                                        110
## 4324                                         47
## 4325                                          5
## 4326                                         20
## 4327                                          0
## 4328                                         25
## 4329                                          0
## 4330                                          0
## 4331                                          0
## 4332                                          0
## 4333                                          0
## 4334                                          0
## 4335                                          0
## 4336                                          0
## 4337                                          0
## 4338                                          0
## 4339                                          0
## 4340                                          0
## 4341                                          0
## 4342                                          0
## 4343                                          0
## 4344                                          0
## 4345                                          0
## 4346                                          0
## 4347                                          0
## 4348                                          0
## 4349                                          0
## 4350                                          0
## 4351                                          0
## 4352                                          0
## 4353                                          0
## 4354                                          0
## 4355                                          0
## 4356                                          0
## 4357                                          0
## 4358                                          0
## 4359                                          0
## 4360                                          0
## 4361                                          0
## 4362                                          0
## 4363                                          0
## 4364                                          0
## 4365                                          0
## 4366                                          0
## 4367                                          0
## 4368                                          0
## 4369                                          0
## 4370                                          0
## 4371                                          0
## 4372                                          0
## 4373                                          0
## 4374                                          0
## 4375                                          0
## 4376                                          0
## 4377                                          0
## 4378                                          0
## 4379                                          0
## 4380                                          0
## 4381                                          0
## 4382                                          0
## 4383                                          0
## 4384                                          0
## 4385                                          0
## 4386                                          0
## 4387                                          0
## 4388                                          0
## 4389                                          0
## 4390                                          0
## 4391                                          0
## 4392                                          0
## 4393                                          0
## 4394                                          0
## 4395                                          0
## 4396                                          0
## 4397                                          0
## 4398                                          0
## 4399                                          0
## 4400                                          0
## 4401                                          0
## 4402                                          0
## 4403                                          0
## 4404                                          0
## 4405                                          0
## 4406                                          0
## 4407                                          0
## 4408                                          0
## 4409                                          0
## 4410                                          0
## 4411                                          0
## 4412                                          0
## 4413                                          0
## 4414                                          0
## 4415                                          0
## 4416                                          0
## 4417                                          0
## 4418                                          0
## 4419                                          0
## 4420                                          0
## 4421                                          0
## 4422                                          0
## 4423                                          0
## 4424                                          0
## 4425                                          0
## 4426                                          0
## 4427                                          0
## 4428                                          0
## 4429                                          0
## 4430                                          0
## 4431                                          0
## 4432                                          0
## 4433                                          0
## 4434                                          0
## 4435                                          0
## 4436                                          0
## 4437                                          0
## 4438                                          0
## 4439                                          0
## 4440                                          0
## 4441                                          0
## 4442                                          0
## 4443                                          0
## 4444                                          0
## 4445                                          0
## 4446                                         82
## 4447                                         63
## 4448                                          0
## 4449                                         16
## 4450                                          *
## 4451                                          0
## 4452                                          0
## 4453                                          *
## 4454                                         14
## 4455                                          8
## 4456                                         19
## 4457                                          *
## 4458                                        134
## 4459                                          0
## 4460                                          0
## 4461                                          0
## 4462                                          0
## 4463                                          0
## 4464                                          0
## 4465                                          0
## 4466                                          0
## 4467                                          0
## 4468                                          0
## 4469                                          0
## 4470                                          0
## 4471                                          0
## 4472                                          0
## 4473                                          0
## 4474                                          0
## 4475                                          0
## 4476                                          0
## 4477                                          0
## 4478                                          0
## 4479                                          0
## 4480                                          0
## 4481                                          0
## 4482                                          0
## 4483                                          0
## 4484                                          0
## 4485                                          0
## 4486                                          0
## 4487                                          0
## 4488                                          0
## 4489                                          0
## 4490                                          0
## 4491                                          0
## 4492                                          0
## 4493                                          0
## 4494                                          0
## 4495                                          0
## 4496                                          0
## 4497                                          0
## 4498                                          0
## 4499                                          0
## 4500                                          0
## 4501                                          0
## 4502                                          0
## 4503                                          0
## 4504                                          0
## 4505                                          0
## 4506                                          0
## 4507                                          0
## 4508                                          0
## 4509                                          0
## 4510                                          0
## 4511                                          0
## 4512                                          0
## 4513                                          0
## 4514                                          0
## 4515                                          0
## 4516                                          0
## 4517                                          0
## 4518                                          0
## 4519                                          0
## 4520                                          0
## 4521                                          0
## 4522                                          0
## 4523                                          0
## 4524                                          0
## 4525                                          0
## 4526                                          0
## 4527                                          0
## 4528                                          0
## 4529                                          0
## 4530                                          0
## 4531                                          0
## 4532                                          0
## 4533                                          0
## 4534                                          0
## 4535                                          0
## 4536                                          0
## 4537                                          0
## 4538                                          0
## 4539                                          0
## 4540                                          0
## 4541                                          0
## 4542                                         19
## 4543                                         48
## 4544                                         13
## 4545                                          0
## 4546                                          0
## 4547                                          0
## 4548                                          0
## 4549                                          0
## 4550                                          0
## 4551                                          0
## 4552                                          0
## 4553                                          *
## 4554                                          0
## 4555                                          0
## 4556                                          0
## 4557                                          0
## 4558                                          0
## 4559                                          0
## 4560                                          0
## 4561                                          0
## 4562                                          0
## 4563                                          *
## 4564                                          0
## 4565                                          0
## 4566                                          0
## 4567                                          0
## 4568                                          0
## 4569                                          0
## 4570                                          0
## 4571                                          0
## 4572                                          0
## 4573                                          0
## 4574                                          0
## 4575                                          0
## 4576                                          0
## 4577                                          0
## 4578                                          0
## 4579                                          0
## 4580                                          0
## 4581                                          0
## 4582                                          0
## 4583                                          0
## 4584                                          0
## 4585                                          0
## 4586                                          0
## 4587                                          0
## 4588                                          0
## 4589                                          0
## 4590                                          0
## 4591                                          0
## 4592                                          0
## 4593                                          0
## 4594                                          0
## 4595                                          0
## 4596                                          0
## 4597                                          0
## 4598                                          0
## 4599                                          0
## 4600                                          0
## 4601                                          0
## 4602                                          0
## 4603                                          0
## 4604                                          0
## 4605                                          5
## 4606                                          0
## 4607                                          *
## 4608                                          0
## 4609                                          0
## 4610                                          *
## 4611                                          *
## 4612                                          0
## 4613                                          0
## 4614                                          0
## 4615                                          0
## 4616                                          0
## 4617                                          0
## 4618                                          0
## 4619                                          0
## 4620                                          0
## 4621                                          0
## 4622                                          0
## 4623                                         73
## 4624                                          0
## 4625                                         37
## 4626                                          5
## 4627                                         14
## 4628                                          *
## 4629                                        206
## 4630                                         34
## 4631                                          0
## 4632                                          0
## 4633                                         50
## 4634                                         12
## 4635                                          0
## 4636                                          0
## 4637                                          0
## 4638                                          *
## 4639                                          *
## 4640                                          0
## 4641                                          *
## 4642                                          0
## 4643                                          *
## 4644                                          *
## 4645                                          *
## 4646                                          *
## 4647                                          *
## 4648                                          *
## 4649                                          *
## 4650                                          *
## 4651                                          *
## 4652                                          *
## 4653                                          *
## 4654                                          *
## 4655                                          0
## 4656                                          *
## 4657                                          *
## 4658                                          *
## 4659                                          *
## 4660                                          *
## 4661                                         14
## 4662                                          9
## 4663                                          *
## 4664                                          *
## 4665                                          *
## 4666                                          0
## 4667                                          0
## 4668                                          *
## 4669                                          *
## 4670                                          0
## 4671                                          *
## 4672                                          *
## 4673                                          *
## 4674                                          *
## 4675                                          *
## 4676                                          *
## 4677                                          *
## 4678                                          *
## 4679                                          *
## 4680                                          *
## 4681                                          0
## 4682                                          0
## 4683                                          0
## 4684                                          0
## 4685                                          0
## 4686                                          0
## 4687                                          0
## 4688                                          0
## 4689                                          0
## 4690                                          0
## 4691                                          0
## 4692                                          0
## 4693                                          0
## 4694                                          0
## 4695                                          0
## 4696                                          0
## 4697                                          6
## 4698                                          0
## 4699                                          7
## 4700                                          0
## 4701                                          0
## 4702                                          0
## 4703                                          0
## 4704                                          0
## 4705                                          0
## 4706                                          0
## 4707                                          *
## 4708                                        273
## 4709                                        150
## 4710                                          0
## 4711                                          0
## 4712                                          0
## 4713                                         10
## 4714                                         16
## 4715                                         35
## 4716                                         51
## 4717                                          0
## 4718                                          0
## 4719                                          0
## 4720                                          0
## 4721                                          0
## 4722                                          *
## 4723                                          5
## 4724                                          0
## 4725                                          0
## 4726                                          9
## 4727                                          *
## 4728                                          6
## 4729                                          *
## 4730                                          *
## 4731                                          *
## 4732                                          *
## 4733                                          *
## 4734                                          *
## 4735                                          *
## 4736                                          *
## 4737                                          *
## 4738                                          0
## 4739                                        137
## 4740                                        203
## 4741                                          *
## 4742                                          0
## 4743                                          0
## 4744                                          0
## 4745                                          0
## 4746                                          0
## 4747                                          0
## 4748                                          0
## 4749                                          0
## 4750                                          0
## 4751                                          0
## 4752                                          0
## 4753                                          0
## 4754                                          0
## 4755                                          0
## 4756                                          0
## 4757                                          0
## 4758                                          0
## 4759                                          0
## 4760                                          0
## 4761                                          0
## 4762                                          0
## 4763                                          *
## 4764                                          0
## 4765                                          0
## 4766                                          0
## 4767                                          0
## 4768                                          0
## 4769                                          0
## 4770                                          0
## 4771                                          0
## 4772                                          0
## 4773                                          0
## 4774                                          0
## 4775                                          0
## 4776                                          0
## 4777                                          0
## 4778                                          0
## 4779                                          0
## 4780                                          *
## 4781                                          *
## 4782                                          0
## 4783                                          *
## 4784                                          *
## 4785                                          0
## 4786                                          *
## 4787                                          0
## 4788                                          *
## 4789                                          *
## 4790                                          *
## 4791                                          *
## 4792                                          0
## 4793                                          *
## 4794                                          0
## 4795                                          *
## 4796                                          *
## 4797                                          0
## 4798                                          *
## 4799                                          *
## 4800                                          *
## 4801                                          *
## 4802                                          *
## 4803                                          *
## 4804                                          *
## 4805                                          *
## 4806                                          0
## 4807                                          *
## 4808                                          0
## 4809                                          *
## 4810                                          *
## 4811                                          0
## 4812                                          0
## 4813                                          0
## 4814                                          0
## 4815                                          0
## 4816                                          0
## 4817                                          0
## 4818                                          0
## 4819                                        233
## 4820                                          *
## 4821                                         28
## 4822                                        151
## 4823                                          0
## 4824                                          0
## 4825                                          *
## 4826                                          0
## 4827                                          0
## 4828                                          0
## 4829                                          0
## 4830                                          0
## 4831                                          0
## 4832                                          0
## 4833                                          0
## 4834                                        304
## 4835                                        329
## 4836                                        202
## 4837                                         30
## 4838                                          0
## 4839                                        105
## 4840                                          *
## 4841                                         21
## 4842                                          *
## 4843                                         10
## 4844                                          0
## 4845                                          5
## 4846                                          7
## 4847                                          *
## 4848                                          *
## 4849                                          0
## 4850                                          0
## 4851                                          0
## 4852                                          0
## 4853                                          0
## 4854                                          0
## 4855                                          0
## 4856                                          0
## 4857                                         15
## 4858                                          5
## 4859                                         19
## 4860                                         11
## 4861                                          0
## 4862                                          7
## 4863                                          0
## 4864                                         17
## 4865                                          8
## 4866                                          0
## 4867                                          *
## 4868                                        506
## 4869                                          0
## 4870                                          0
## 4871                                         27
## 4872                                          0
## 4873                                          0
## 4874                                          0
## 4875                                          0
## 4876                                          0
## 4877                                          0
## 4878                                          0
## 4879                                          0
## 4880                                          0
## 4881                                          0
## 4882                                          0
## 4883                                          0
## 4884                                          0
## 4885                                          0
## 4886                                          0
## 4887                                         43
## 4888                                          *
## 4889                                          *
## 4890                                          0
## 4891                                          0
## 4892                                          0
## 4893                                          0
## 4894                                          0
## 4895                                         10
## 4896                                         17
## 4897                                          0
## 4898                                          *
## 4899                                          0
## 4900                                          0
## 4901                                          0
## 4902                                          0
## 4903                                          0
## 4904                                          0
## 4905                                          0
## 4906                                          0
## 4907                                          0
## 4908                                          0
## 4909                                          0
## 4910                                          0
## 4911                                          0
## 4912                                          0
## 4913                                          0
## 4914                                          0
## 4915                                          *
## 4916                                          *
## 4917                                          *
## 4918                                          0
## 4919                                          *
## 4920                                          *
## 4921                                          *
## 4922                                          *
## 4923                                          0
## 4924                                          0
## 4925                                          0
## 4926                                          *
## 4927                                          0
## 4928                                          0
## 4929                                          0
## 4930                                          0
## 4931                                          0
## 4932                                          0
## 4933                                          0
## 4934                                          0
## 4935                                          0
## 4936                                          0
## 4937                                          0
## 4938                                          0
## 4939                                          0
## 4940                                          0
## 4941                                          0
## 4942                                        101
## 4943                                          *
## 4944                                         48
## 4945                                         23
## 4946                                         32
## 4947                                          *
## 4948                                          0
## 4949                                          0
## 4950                                          0
## 4951                                          0
## 4952                                          0
## 4953                                          0
## 4954                                          0
## 4955                                          0
## 4956                                          0
## 4957                                          *
## 4958                                          0
## 4959                                          *
## 4960                                          *
## 4961                                          *
## 4962                                          7
## 4963                                          *
## 4964                                         16
## 4965                                          8
## 4966                                          *
## 4967                                         41
## 4968                                          0
## 4969                                         24
## 4970                                          0
## 4971                                          0
## 4972                                          0
## 4973                                          0
## 4974                                         61
## 4975                                          6
## 4976                                          *
## 4977                                         11
## 4978                                          5
## 4979                                          8
## 4980                                          *
## 4981                                          5
## 4982                                         12
## 4983                                          *
## 4984                                         14
## 4985                                          0
## 4986                                          0
## 4987                                          0
## 4988                                          0
## 4989                                          0
## 4990                                          0
## 4991                                          0
## 4992                                          0
## 4993                                          0
## 4994                                          0
## 4995                                          0
## 4996                                          0
## 4997                                          0
## 4998                                          0
## 4999                                          0
## 5000                                          0
## 5001                                          0
## 5002                                          0
## 5003                                          0
## 5004                                          0
## 5005                                          0
## 5006                                          0
## 5007                                          0
## 5008                                          0
## 5009                                          0
## 5010                                          0
## 5011                                          0
## 5012                                          0
## 5013                                          0
## 5014                                          0
## 5015                                          0
## 5016                                          0
## 5017                                          0
## 5018                                          0
## 5019                                          0
## 5020                                          6
## 5021                                          0
## 5022                                          0
## 5023                                          0
## 5024                                          0
## 5025                                          0
## 5026                                          0
## 5027                                          0
## 5028                                          0
## 5029                                          0
## 5030                                          0
## 5031                                          0
## 5032                                          0
## 5033                                         24
## 5034                                         29
## 5035                                          8
## 5036                                         31
## 5037                                          8
## 5038                                         18
## 5039                                         15
## 5040                                          5
## 5041                                          0
## 5042                                          *
## 5043                                          0
## 5044                                          0
## 5045                                          0
## 5046                                          0
## 5047                                          *
## 5048                                          0
## 5049                                        115
## 5050                                         38
## 5051                                         45
## 5052                                         87
## 5053                                          0
## 5054                                          0
## 5055                                          0
## 5056                                          0
## 5057                                         15
## 5058                                          0
## 5059                                          0
## 5060                                          0
## 5061                                          0
## 5062                                          0
## 5063                                         73
## 5064                                          0
## 5065                                          0
## 5066                                          0
## 5067                                          0
## 5068                                          0
## 5069                                          0
## 5070                                         28
## 5071                                          *
## 5072                                         32
## 5073                                          0
## 5074                                          0
## 5075                                         43
## 5076                                          0
## 5077                                          0
## 5078                                        109
## 5079                                        164
## 5080                                          0
## 5081                                          0
## 5082                                         25
## 5083                                          0
## 5084                                          0
## 5085                                          0
## 5086                                          0
## 5087                                          0
## 5088                                          0
## 5089                                          0
## 5090                                          0
## 5091                                          0
## 5092                                          0
## 5093                                          0
## 5094                                          0
## 5095                                          0
## 5096                                          0
## 5097                                          0
## 5098                                          0
## 5099                                          0
## 5100                                          0
## 5101                                          0
## 5102                                         17
## 5103                                         11
## 5104                                          5
## 5105                                          *
## 5106                                          0
## 5107                                         19
## 5108                                          0
## 5109                                          9
## 5110                                          0
## 5111                                          0
## 5112                                          0
## 5113                                          0
## 5114                                          0
## 5115                                          0
## 5116                                         25
## 5117                                         39
## 5118                                         20
## 5119                                         69
## 5120                                         17
## 5121                                        235
## 5122                                         14
## 5123                                         48
## 5124                                        224
## 5125                                        336
## 5126                                          0
## 5127                                          0
## 5128                                          0
## 5129                                         21
## 5130                                          0
## 5131                                          0
## 5132                                          0
## 5133                                          0
## 5134                                          0
## 5135                                          0
## 5136                                          0
## 5137                                          0
## 5138                                          0
## 5139                                          0
## 5140                                          0
## 5141                                          0
## 5142                                          0
## 5143                                          0
## 5144                                          0
## 5145                                          0
## 5146                                          0
## 5147                                          0
## 5148                                          0
## 5149                                          0
## 5150                                          0
## 5151                                          0
## 5152                                          *
## 5153                                          0
## 5154                                          0
## 5155                                          *
## 5156                                         30
## 5157                                          0
## 5158                                          0
## 5159                                          0
## 5160                                          0
## 5161                                          0
## 5162                                          0
## 5163                                          0
## 5164                                          0
## 5165                                          0
## 5166                                          0
## 5167                                          0
## 5168                                          0
## 5169                                          0
## 5170                                          0
## 5171                                          0
## 5172                                          0
## 5173                                          0
## 5174                                          0
## 5175                                          0
## 5176                                          0
## 5177                                          0
## 5178                                          0
## 5179                                          0
## 5180                                          *
## 5181                                          *
## 5182                                          0
## 5183                                          0
## 5184                                          0
## 5185                                          0
## 5186                                          0
## 5187                                          0
## 5188                                          0
## 5189                                          0
## 5190                                          0
## 5191                                          0
## 5192                                          0
## 5193                                          0
## 5194                                        123
## 5195                                          0
## 5196                                          0
## 5197                                          0
## 5198                                          0
## 5199                                          0
## 5200                                          0
## 5201                                          0
## 5202                                          0
## 5203                                          0
## 5204                                          0
## 5205                                          0
## 5206                                          0
## 5207                                          0
## 5208                                          0
## 5209                                          0
## 5210                                          0
## 5211                                          0
## 5212                                          0
## 5213                                          0
## 5214                                        240
## 5215                                         13
## 5216                                        106
## 5217                                          0
## 5218                                          6
## 5219                                         14
## 5220                                         32
## 5221                                          0
## 5222                                          0
## 5223                                          0
## 5224                                          0
## 5225                                          0
## 5226                                          0
## 5227                                          0
## 5228                                          0
## 5229                                          0
## 5230                                          0
## 5231                                          0
## 5232                                          0
## 5233                                          0
## 5234                                          0
## 5235                                          0
## 5236                                          0
## 5237                                          0
## 5238                                          0
## 5239                                          0
## 5240                                          0
## 5241                                          0
## 5242                                          0
## 5243                                          0
## 5244                                          0
## 5245                                          0
## 5246                                          0
## 5247                                          0
## 5248                                         23
## 5249                                          0
## 5250                                          0
## 5251                                          0
## 5252                                          0
## 5253                                          0
## 5254                                          0
## 5255                                          0
## 5256                                          0
## 5257                                          0
## 5258                                          0
## 5259                                          0
## 5260                                          0
## 5261                                          0
## 5262                                          0
## 5263                                          0
## 5264                                          0
## 5265                                          0
## 5266                                          0
## 5267                                          0
## 5268                                          0
## 5269                                          0
## 5270                                          0
## 5271                                         54
## 5272                                          6
## 5273                                          0
## 5274                                          0
## 5275                                          7
## 5276                                          0
## 5277                                          0
## 5278                                          0
## 5279                                          0
## 5280                                          0
## 5281                                          0
## 5282                                          0
## 5283                                         13
## 5284                                          0
## 5285                                          0
## 5286                                          *
## 5287                                          0
## 5288                                          0
## 5289                                          0
## 5290                                         13
## 5291                                          6
## 5292                                         14
## 5293                                          0
## 5294                                          0
## 5295                                          *
## 5296                                          *
## 5297                                          0
## 5298                                          *
## 5299                                          0
## 5300                                          0
## 5301                                          0
## 5302                                          0
## 5303                                         49
## 5304                                         13
## 5305                                          0
## 5306                                          *
## 5307                                          0
## 5308                                          0
## 5309                                          0
## 5310                                         29
## 5311                                          *
## 5312                                          0
## 5313                                          0
## 5314                                          0
## 5315                                          0
## 5316                                          0
## 5317                                          0
## 5318                                          0
## 5319                                          0
## 5320                                          0
## 5321                                          5
## 5322                                          *
## 5323                                          *
## 5324                                          0
## 5325                                         30
## 5326                                          0
## 5327                                          0
## 5328                                          0
## 5329                                          0
## 5330                                          0
## 5331                                          0
## 5332                                          0
## 5333                                          0
## 5334                                          0
## 5335                                          0
## 5336                                          0
## 5337                                          0
## 5338                                          0
## 5339                                          0
## 5340                                          0
## 5341                                          0
## 5342                                          0
## 5343                                          0
## 5344                                          0
## 5345                                          0
## 5346                                          0
## 5347                                          0
## 5348                                          0
## 5349                                          0
## 5350                                          0
## 5351                                          0
## 5352                                          0
## 5353                                          0
## 5354                                          0
## 5355                                         12
## 5356                                         13
## 5357                                          8
## 5358                                          0
## 5359                                        113
## 5360                                        165
## 5361                                         86
## 5362                                        128
## 5363                                         75
## 5364                                          5
## 5365                                          0
## 5366                                          0
## 5367                                          0
## 5368                                          0
## 5369                                          0
## 5370                                          0
## 5371                                          0
## 5372                                          0
## 5373                                          0
## 5374                                          0
## 5375                                          0
## 5376                                          0
## 5377                                          0
## 5378                                         32
## 5379                                          *
## 5380                                         36
## 5381                                          *
## 5382                                          0
## 5383                                          0
## 5384                                          *
## 5385                                          0
## 5386                                          *
## 5387                                          *
## 5388                                          *
## 5389                                          *
## 5390                                          0
## 5391                                          0
## 5392                                          0
## 5393                                          0
## 5394                                          0
## 5395                                          0
## 5396                                          8
## 5397                                          *
## 5398                                          0
## 5399                                          0
## 5400                                          0
## 5401                                          0
## 5402                                          0
## 5403                                          0
## 5404                                          0
## 5405                                          0
## 5406                                          0
## 5407                                          *
## 5408                                          *
## 5409                                          *
## 5410                                          0
## 5411                                          0
## 5412                                          0
## 5413                                          0
## 5414                                          0
## 5415                                          0
## 5416                                          0
## 5417                                          0
## 5418                                          0
## 5419                                          0
## 5420                                          0
## 5421                                          0
## 5422                                          0
## 5423                                          0
## 5424                                          0
## 5425                                          0
## 5426                                          0
## 5427                                          0
## 5428                                          0
## 5429                                          0
## 5430                                          0
## 5431                                          0
## 5432                                          0
## 5433                                          0
## 5434                                          0
## 5435                                          0
## 5436                                          0
## 5437                                          0
## 5438                                          0
## 5439                                          0
## 5440                                         11
## 5441                                          0
## 5442                                          *
## 5443                                          *
## 5444                                         11
## 5445                                          0
## 5446                                          0
## 5447                                          0
## 5448                                         12
## 5449                                         36
## 5450                                         53
## 5451                                          *
## 5452                                        150
## 5453                                          0
## 5454                                         35
## 5455                                          0
## 5456                                          0
## 5457                                          0
## 5458                                          *
## 5459                                          0
## 5460                                          *
## 5461                                          *
## 5462                                         70
## 5463                                         37
## 5464                                          0
## 5465                                          0
## 5466                                          0
## 5467                                          0
## 5468                                          0
## 5469                                          0
## 5470                                          0
## 5471                                          0
## 5472                                          0
## 5473                                          0
## 5474                                          0
## 5475                                          0
## 5476                                          0
## 5477                                          0
## 5478                                          0
## 5479                                          0
## 5480                                          0
## 5481                                          0
## 5482                                          0
## 5483                                          0
## 5484                                          0
## 5485                                          0
## 5486                                          0
## 5487                                          *
## 5488                                          0
## 5489                                         43
## 5490                                          *
## 5491                                          *
## 5492                                          *
## 5493                                          *
## 5494                                          *
## 5495                                         23
## 5496                                          *
## 5497                                          *
## 5498                                          *
## 5499                                          0
## 5500                                          0
## 5501                                          *
## 5502                                          *
## 5503                                          0
## 5504                                          *
## 5505                                          *
## 5506                                          *
## 5507                                          *
## 5508                                          0
## 5509                                         14
## 5510                                          *
## 5511                                          0
## 5512                                          0
## 5513                                         15
## 5514                                          0
## 5515                                          0
## 5516                                         14
## 5517                                         13
## 5518                                         15
## 5519                                          0
## 5520                                          7
## 5521                                          *
## 5522                                          9
## 5523                                          8
## 5524                                         24
## 5525                                         14
## 5526                                          0
## 5527                                          0
## 5528                                          0
## 5529                                          0
## 5530                                          0
## 5531                                          0
## 5532                                          0
## 5533                                          0
## 5534                                          0
## 5535                                          0
## 5536                                          0
## 5537                                          0
## 5538                                          0
## 5539                                        683
## 5540                                        192
## 5541                                          0
## 5542                                          0
## 5543                                         36
## 5544                                          0
## 5545                                          0
## 5546                                          0
## 5547                                         96
## 5548                                          0
## 5549                                          0
## 5550                                         18
## 5551                                          *
## 5552                                          6
## 5553                                          *
## 5554                                          0
## 5555                                          0
## 5556                                          0
## 5557                                          0
## 5558                                          0
## 5559                                          0
## 5560                                          0
## 5561                                          0
## 5562                                          0
## 5563                                          0
## 5564                                          0
## 5565                                          0
## 5566                                          0
## 5567                                          0
## 5568                                          0
## 5569                                          0
## 5570                                          0
## 5571                                          0
## 5572                                          0
## 5573                                          0
## 5574                                          0
## 5575                                          0
## 5576                                          0
## 5577                                          0
## 5578                                          0
## 5579                                          0
## 5580                                          0
## 5581                                          0
## 5582                                          0
## 5583                                          0
## 5584                                          0
## 5585                                          0
## 5586                                          0
## 5587                                          0
## 5588                                          0
## 5589                                          0
## 5590                                          0
## 5591                                          0
## 5592                                          0
## 5593                                          0
## 5594                                          0
## 5595                                          0
## 5596                                          0
## 5597                                          0
## 5598                                          0
## 5599                                          0
## 5600                                          0
## 5601                                          0
## 5602                                          0
## 5603                                          0
## 5604                                          0
## 5605                                          0
## 5606                                          0
## 5607                                          0
## 5608                                          0
## 5609                                          0
## 5610                                          0
## 5611                                          0
## 5612                                          0
## 5613                                          0
## 5614                                        180
## 5615                                          0
## 5616                                         61
## 5617                                          0
## 5618                                         72
## 5619                                          *
## 5620                                       1132
## 5621                                          0
## 5622                                        121
## 5623                                          0
## 5624                                        108
## 5625                                          0
## 5626                                        393
## 5627                                          0
## 5628                                         68
## 5629                                          0
## 5630                                         62
## 5631                                          0
## 5632                                         33
## 5633                                          0
## 5634                                          0
## 5635                                          *
## 5636                                          0
## 5637                                          0
## 5638                                          8
## 5639                                          0
## 5640                                          0
## 5641                                          0
## 5642                                          0
## 5643                                          0
## 5644                                          0
## 5645                                          0
## 5646                                          8
## 5647                                          0
## 5648                                          0
## 5649                                          0
## 5650                                          0
## 5651                                          0
## 5652                                          0
## 5653                                          0
## 5654                                          0
## 5655                                          0
## 5656                                          0
## 5657                                          0
## 5658                                          0
## 5659                                          0
## 5660                                          0
## 5661                                          0
## 5662                                          0
## 5663                                          0
## 5664                                          0
## 5665                                          0
## 5666                                          0
## 5667                                          0
## 5668                                          0
## 5669                                          0
## 5670                                          0
## 5671                                          0
## 5672                                          0
## 5673                                          0
## 5674                                          0
## 5675                                          0
## 5676                                          0
## 5677                                          *
## 5678                                          0
## 5679                                          0
## 5680                                          0
## 5681                                         41
## 5682                                          0
## 5683                                          0
## 5684                                          0
## 5685                                          0
## 5686                                          0
## 5687                                          0
## 5688                                          *
## 5689                                          0
## 5690                                          0
## 5691                                          0
## 5692                                          0
## 5693                                          0
## 5694                                          0
## 5695                                          0
## 5696                                          0
## 5697                                          0
## 5698                                          0
## 5699                                          0
## 5700                                          *
## 5701                                          0
## 5702                                          0
## 5703                                       1304
## 5704                                          0
## 5705                                        208
## 5706                                          0
## 5707                                          0
## 5708                                          0
## 5709                                          0
## 5710                                          0
## 5711                                          0
## 5712                                          0
## 5713                                          *
## 5714                                          8
## 5715                                          *
## 5716                                          0
## 5717                                          0
## 5718                                          0
## 5719                                          0
## 5720                                          0
## 5721                                          0
## 5722                                         13
## 5723                                          7
## 5724                                          0
## 5725                                          0
## 5726                                          *
## 5727                                          *
## 5728                                          *
## 5729                                          0
## 5730                                          0
## 5731                                          0
## 5732                                          0
## 5733                                          0
## 5734                                          0
## 5735                                          0
## 5736                                          0
## 5737                                          0
## 5738                                          5
## 5739                                          0
## 5740                                          0
## 5741                                          0
## 5742                                          0
## 5743                                          0
## 5744                                          8
## 5745                                         38
## 5746                                          6
## 5747                                         16
## 5748                                          0
## 5749                                          0
## 5750                                          0
## 5751                                          0
## 5752                                          0
## 5753                                          0
## 5754                                          0
## 5755                                          0
## 5756                                          0
## 5757                                          0
## 5758                                          0
## 5759                                          0
## 5760                                          0
## 5761                                          0
## 5762                                          0
## 5763                                          0
## 5764                                          0
## 5765                                          0
## 5766                                          0
## 5767                                          0
## 5768                                          0
## 5769                                          0
## 5770                                          0
## 5771                                          0
## 5772                                          0
## 5773                                          0
## 5774                                          0
## 5775                                          0
## 5776                                          0
## 5777                                          0
## 5778                                          0
## 5779                                          0
## 5780                                          0
## 5781                                          0
## 5782                                          0
## 5783                                          0
## 5784                                          0
## 5785                                          0
## 5786                                          0
## 5787                                          0
## 5788                                          0
## 5789                                          0
## 5790                                          0
## 5791                                          0
## 5792                                          0
## 5793                                          0
## 5794                                          0
## 5795                                          0
## 5796                                          0
## 5797                                          0
## 5798                                          0
## 5799                                          0
## 5800                                          0
## 5801                                          0
## 5802                                          0
## 5803                                          0
## 5804                                          0
## 5805                                          0
## 5806                                          0
## 5807                                          0
## 5808                                          0
## 5809                                          0
## 5810                                          0
## 5811                                          0
## 5812                                          0
## 5813                                          0
## 5814                                          0
## 5815                                          0
## 5816                                          0
## 5817                                          0
## 5818                                          0
## 5819                                        254
## 5820                                          0
## 5821                                          0
## 5822                                          0
## 5823                                          0
## 5824                                          0
## 5825                                          0
## 5826                                          0
## 5827                                          0
## 5828                                          0
## 5829                                          0
## 5830                                          0
## 5831                                          0
## 5832                                          0
## 5833                                          0
## 5834                                          0
## 5835                                          0
## 5836                                          0
## 5837                                          0
## 5838                                          0
## 5839                                          0
## 5840                                          0
## 5841                                          0
## 5842                                          0
## 5843                                          0
## 5844                                          0
## 5845                                          0
## 5846                                          0
## 5847                                          0
## 5848                                          0
## 5849                                          0
## 5850                                          0
## 5851                                          0
## 5852                                          0
## 5853                                          0
## 5854                                          0
## 5855                                          0
## 5856                                          0
## 5857                                          0
## 5858                                          0
## 5859                                          0
## 5860                                          0
## 5861                                          0
## 5862                                          0
## 5863                                          0
## 5864                                          0
## 5865                                          0
## 5866                                          0
## 5867                                          0
## 5868                                          0
## 5869                                          0
## 5870                                          0
## 5871                                          0
## 5872                                          0
## 5873                                          0
## 5874                                          0
## 5875                                          0
## 5876                                          0
## 5877                                        157
## 5878                                          0
## 5879                                          0
## 5880                                          0
## 5881                                          0
## 5882                                          0
## 5883                                          0
## 5884                                          0
## 5885                                          0
## 5886                                          0
## 5887                                          *
## 5888                                          0
## 5889                                          0
## 5890                                          0
## 5891                                          0
## 5892                                          0
## 5893                                          0
## 5894                                          0
## 5895                                          0
## 5896                                          0
## 5897                                          0
## 5898                                          0
## 5899                                       <NA>
##      All.Students.Successfully.Completed.Program.7.1.2018...6.30.2022.
## 1                                                                    0
## 2                                                                    0
## 3                                                                    0
## 4                                                                    0
## 5                                                                   28
## 6                                                                    0
## 7                                                                    *
## 8                                                                    *
## 9                                                                    *
## 10                                                                   0
## 11                                                                   0
## 12                                                                   0
## 13                                                                   9
## 14                                                                   0
## 15                                                                   *
## 16                                                                   0
## 17                                                                   0
## 18                                                                   *
## 19                                                                   0
## 20                                                                   *
## 21                                                                  27
## 22                                                                   5
## 23                                                                   0
## 24                                                                   0
## 25                                                                   0
## 26                                                                   0
## 27                                                                   0
## 28                                                                   9
## 29                                                                   0
## 30                                                                   0
## 31                                                                   9
## 32                                                                   0
## 33                                                                   0
## 34                                                                   0
## 35                                                                   *
## 36                                                                   0
## 37                                                                   0
## 38                                                                   0
## 39                                                                   0
## 40                                                                   0
## 41                                                                   0
## 42                                                                   *
## 43                                                                   0
## 44                                                                   0
## 45                                                                   0
## 46                                                                   0
## 47                                                                   0
## 48                                                                  38
## 49                                                                   8
## 50                                                                   0
## 51                                                                   0
## 52                                                                   0
## 53                                                                   0
## 54                                                                   0
## 55                                                                   0
## 56                                                                   5
## 57                                                                   0
## 58                                                                   0
## 59                                                                   *
## 60                                                                   0
## 61                                                                  55
## 62                                                                 227
## 63                                                                  22
## 64                                                                   *
## 65                                                                  37
## 66                                                                   0
## 67                                                                  15
## 68                                                                  77
## 69                                                                   0
## 70                                                                   *
## 71                                                                  46
## 72                                                                   *
## 73                                                                   6
## 74                                                                  25
## 75                                                                   0
## 76                                                                   *
## 77                                                                   9
## 78                                                                   0
## 79                                                                   0
## 80                                                                   0
## 81                                                                   0
## 82                                                                   0
## 83                                                                   0
## 84                                                                   0
## 85                                                                   0
## 86                                                                   9
## 87                                                                   0
## 88                                                                   0
## 89                                                                   0
## 90                                                                   0
## 91                                                                   *
## 92                                                                   0
## 93                                                                   0
## 94                                                                   *
## 95                                                                  16
## 96                                                                   0
## 97                                                                   0
## 98                                                                   0
## 99                                                                   0
## 100                                                                  *
## 101                                                                  *
## 102                                                                  6
## 103                                                                 22
## 104                                                                  0
## 105                                                                 23
## 106                                                                 27
## 107                                                                 10
## 108                                                                  *
## 109                                                                  9
## 110                                                                  0
## 111                                                                  5
## 112                                                                  0
## 113                                                                352
## 114                                                                  0
## 115                                                                  *
## 116                                                                  *
## 117                                                                  *
## 118                                                                  *
## 119                                                                  6
## 120                                                                  *
## 121                                                                  *
## 122                                                                 18
## 123                                                                  0
## 124                                                                  *
## 125                                                                  *
## 126                                                                  0
## 127                                                                  9
## 128                                                                  0
## 129                                                                  0
## 130                                                                  8
## 131                                                                 63
## 132                                                                  9
## 133                                                                  *
## 134                                                                  0
## 135                                                                  0
## 136                                                                 11
## 137                                                                  0
## 138                                                                 25
## 139                                                                  0
## 140                                                                128
## 141                                                                 11
## 142                                                                119
## 143                                                                 24
## 144                                                                  0
## 145                                                                  0
## 146                                                                  0
## 147                                                                  0
## 148                                                                  0
## 149                                                                  8
## 150                                                                  7
## 151                                                                 12
## 152                                                                426
## 153                                                                 31
## 154                                                                  0
## 155                                                                 34
## 156                                                                373
## 157                                                                  0
## 158                                                                 13
## 159                                                                 17
## 160                                                                  0
## 161                                                                  0
## 162                                                                 32
## 163                                                                 17
## 164                                                                 65
## 165                                                                  0
## 166                                                                  *
## 167                                                                142
## 168                                                                  0
## 169                                                                 23
## 170                                                                  *
## 171                                                                  *
## 172                                                                  *
## 173                                                                  *
## 174                                                                  *
## 175                                                                  *
## 176                                                                  0
## 177                                                                  0
## 178                                                                  *
## 179                                                                  *
## 180                                                                 11
## 181                                                                  0
## 182                                                                  0
## 183                                                                  5
## 184                                                                  0
## 185                                                                  0
## 186                                                                  0
## 187                                                                  *
## 188                                                                  *
## 189                                                                  *
## 190                                                                  0
## 191                                                                  *
## 192                                                                  8
## 193                                                                  *
## 194                                                                 49
## 195                                                                154
## 196                                                                  0
## 197                                                                 84
## 198                                                                218
## 199                                                                  0
## 200                                                                  0
## 201                                                                  *
## 202                                                                  0
## 203                                                                  0
## 204                                                                  0
## 205                                                                  0
## 206                                                                  0
## 207                                                                  9
## 208                                                                  0
## 209                                                                  0
## 210                                                                  0
## 211                                                                  0
## 212                                                                  0
## 213                                                                  0
## 214                                                                  0
## 215                                                                  0
## 216                                                                  0
## 217                                                                  0
## 218                                                                  *
## 219                                                                  *
## 220                                                                  0
## 221                                                                  0
## 222                                                                  0
## 223                                                                 14
## 224                                                                  *
## 225                                                                  0
## 226                                                                  0
## 227                                                                  0
## 228                                                                207
## 229                                                                  9
## 230                                                                 40
## 231                                                                 72
## 232                                                                 42
## 233                                                                 43
## 234                                                                 24
## 235                                                                 15
## 236                                                                142
## 237                                                                105
## 238                                                                  5
## 239                                                                  *
## 240                                                                  *
## 241                                                                  *
## 242                                                                  6
## 243                                                                  7
## 244                                                                  7
## 245                                                                 10
## 246                                                                 29
## 247                                                                 10
## 248                                                                 37
## 249                                                                 43
## 250                                                                  0
## 251                                                                 58
## 252                                                                  0
## 253                                                                  0
## 254                                                                 30
## 255                                                                  0
## 256                                                                  0
## 257                                                                 36
## 258                                                                  0
## 259                                                                  8
## 260                                                                  0
## 261                                                                  *
## 262                                                                  0
## 263                                                                  0
## 264                                                                  0
## 265                                                                  0
## 266                                                                  *
## 267                                                                 25
## 268                                                                 22
## 269                                                                  0
## 270                                                                  *
## 271                                                                 16
## 272                                                                 26
## 273                                                                  0
## 274                                                                 10
## 275                                                                 12
## 276                                                                  8
## 277                                                                 22
## 278                                                                  0
## 279                                                                 90
## 280                                                                122
## 281                                                                  *
## 282                                                                 40
## 283                                                                 19
## 284                                                                 23
## 285                                                                  7
## 286                                                                  5
## 287                                                                  *
## 288                                                                130
## 289                                                                  0
## 290                                                                  0
## 291                                                                  0
## 292                                                                  0
## 293                                                                  0
## 294                                                                  5
## 295                                                                  7
## 296                                                                  0
## 297                                                                 21
## 298                                                                  0
## 299                                                                 17
## 300                                                                  0
## 301                                                                  0
## 302                                                                  0
## 303                                                                  0
## 304                                                                  0
## 305                                                                  0
## 306                                                                  0
## 307                                                                  0
## 308                                                                  0
## 309                                                                  0
## 310                                                                  0
## 311                                                                 97
## 312                                                                 19
## 313                                                                  8
## 314                                                                 12
## 315                                                                 78
## 316                                                                 14
## 317                                                                130
## 318                                                                448
## 319                                                                 22
## 320                                                                 13
## 321                                                                 38
## 322                                                                 35
## 323                                                                 38
## 324                                                                 39
## 325                                                                 11
## 326                                                                 29
## 327                                                                  *
## 328                                                                  *
## 329                                                                  0
## 330                                                                 35
## 331                                                                 15
## 332                                                                  0
## 333                                                                 14
## 334                                                                 21
## 335                                                                 34
## 336                                                                 16
## 337                                                                 73
## 338                                                                  6
## 339                                                                  0
## 340                                                                  *
## 341                                                                  0
## 342                                                                  *
## 343                                                                 12
## 344                                                                 27
## 345                                                                  *
## 346                                                                  *
## 347                                                                  *
## 348                                                                  *
## 349                                                                  0
## 350                                                                 79
## 351                                                                  0
## 352                                                                  0
## 353                                                                  0
## 354                                                                  0
## 355                                                                  7
## 356                                                                  0
## 357                                                                 12
## 358                                                                  0
## 359                                                                  0
## 360                                                                  0
## 361                                                                  0
## 362                                                                  0
## 363                                                                  0
## 364                                                                  0
## 365                                                                  0
## 366                                                                  *
## 367                                                                  9
## 368                                                                  *
## 369                                                                  0
## 370                                                                  0
## 371                                                                  0
## 372                                                                  0
## 373                                                                  0
## 374                                                                  0
## 375                                                                  0
## 376                                                                  0
## 377                                                                  0
## 378                                                                  0
## 379                                                                 16
## 380                                                                 41
## 381                                                                349
## 382                                                                 33
## 383                                                                 85
## 384                                                                 70
## 385                                                                 27
## 386                                                                300
## 387                                                                217
## 388                                                                  0
## 389                                                                  *
## 390                                                                  7
## 391                                                                  *
## 392                                                                  7
## 393                                                                 19
## 394                                                                 11
## 395                                                                  6
## 396                                                                 13
## 397                                                                 42
## 398                                                                 13
## 399                                                                  7
## 400                                                                  0
## 401                                                                  0
## 402                                                                937
## 403                                                                973
## 404                                                                548
## 405                                                                  0
## 406                                                                  0
## 407                                                                 19
## 408                                                                 20
## 409                                                                108
## 410                                                                 23
## 411                                                                 38
## 412                                                                 33
## 413                                                                132
## 414                                                                 69
## 415                                                                712
## 416                                                                  0
## 417                                                                  8
## 418                                                                 90
## 419                                                                 33
## 420                                                                  9
## 421                                                                 12
## 422                                                                 31
## 423                                                                161
## 424                                                                 78
## 425                                                                  *
## 426                                                                  *
## 427                                                                 50
## 428                                                                 37
## 429                                                                 18
## 430                                                                 55
## 431                                                                 48
## 432                                                                118
## 433                                                                188
## 434                                                                328
## 435                                                                 89
## 436                                                                  0
## 437                                                                 38
## 438                                                                100
## 439                                                                  0
## 440                                                                 53
## 441                                                                 22
## 442                                                                  0
## 443                                                                117
## 444                                                                 25
## 445                                                                 20
## 446                                                                 31
## 447                                                                194
## 448                                                                 90
## 449                                                                156
## 450                                                                 80
## 451                                                                 58
## 452                                                                 37
## 453                                                                 47
## 454                                                                 18
## 455                                                                 14
## 456                                                                 35
## 457                                                                 15
## 458                                                                 41
## 459                                                                205
## 460                                                                 30
## 461                                                                 10
## 462                                                                 44
## 463                                                                 29
## 464                                                                 82
## 465                                                                 19
## 466                                                                 39
## 467                                                                 25
## 468                                                                 10
## 469                                                                 66
## 470                                                                 80
## 471                                                                 31
## 472                                                                 32
## 473                                                                 38
## 474                                                                 11
## 475                                                                 66
## 476                                                                169
## 477                                                                 41
## 478                                                                 10
## 479                                                                  *
## 480                                                                 12
## 481                                                                104
## 482                                                                124
## 483                                                                 64
## 484                                                                 38
## 485                                                                 79
## 486                                                                  0
## 487                                                                 97
## 488                                                                 46
## 489                                                                 12
## 490                                                                  0
## 491                                                                  7
## 492                                                                 78
## 493                                                                 39
## 494                                                                  0
## 495                                                                  0
## 496                                                                  *
## 497                                                                 30
## 498                                                                  0
## 499                                                                  0
## 500                                                                  0
## 501                                                                 61
## 502                                                                  0
## 503                                                                103
## 504                                                                  0
## 505                                                                  0
## 506                                                                  0
## 507                                                                  8
## 508                                                                 11
## 509                                                                 39
## 510                                                                  8
## 511                                                                  8
## 512                                                                  0
## 513                                                                  0
## 514                                                                  0
## 515                                                                  0
## 516                                                                 14
## 517                                                                  0
## 518                                                                  0
## 519                                                                  0
## 520                                                                  *
## 521                                                                  0
## 522                                                                 50
## 523                                                                  0
## 524                                                                  0
## 525                                                                  0
## 526                                                                  0
## 527                                                                  0
## 528                                                                  0
## 529                                                                  0
## 530                                                                  0
## 531                                                                  0
## 532                                                                  0
## 533                                                                  0
## 534                                                                  0
## 535                                                                  0
## 536                                                                  0
## 537                                                                  0
## 538                                                                  0
## 539                                                                  0
## 540                                                                  0
## 541                                                                  0
## 542                                                                  0
## 543                                                                  0
## 544                                                                  0
## 545                                                                  0
## 546                                                                  0
## 547                                                                  0
## 548                                                                  0
## 549                                                                  0
## 550                                                                  0
## 551                                                                  0
## 552                                                                  0
## 553                                                                  0
## 554                                                                  0
## 555                                                                  0
## 556                                                                  0
## 557                                                                  0
## 558                                                                 33
## 559                                                                 44
## 560                                                                 97
## 561                                                                 15
## 562                                                                517
## 563                                                                 10
## 564                                                                  0
## 565                                                                 94
## 566                                                                 22
## 567                                                                  0
## 568                                                                 16
## 569                                                                 35
## 570                                                                 11
## 571                                                                193
## 572                                                                192
## 573                                                                344
## 574                                                                  *
## 575                                                                 22
## 576                                                                  *
## 577                                                                124
## 578                                                                 43
## 579                                                                 12
## 580                                                                 16
## 581                                                                 43
## 582                                                                 75
## 583                                                                566
## 584                                                                126
## 585                                                                  *
## 586                                                                  7
## 587                                                                  *
## 588                                                                 21
## 589                                                                  *
## 590                                                                  0
## 591                                                                  0
## 592                                                               1567
## 593                                                                  0
## 594                                                                  0
## 595                                                                  0
## 596                                                                  0
## 597                                                                  0
## 598                                                                  0
## 599                                                                 20
## 600                                                                  0
## 601                                                                 19
## 602                                                                 11
## 603                                                                255
## 604                                                                 10
## 605                                                                 40
## 606                                                                 16
## 607                                                                  *
## 608                                                                  *
## 609                                                                 44
## 610                                                                 15
## 611                                                                  *
## 612                                                                 20
## 613                                                                  *
## 614                                                                  0
## 615                                                                  0
## 616                                                                  0
## 617                                                                  0
## 618                                                                662
## 619                                                                 16
## 620                                                                  0
## 621                                                                 12
## 622                                                                  *
## 623                                                                 26
## 624                                                                  0
## 625                                                                  0
## 626                                                                  *
## 627                                                                  0
## 628                                                                 17
## 629                                                                  0
## 630                                                                  6
## 631                                                                  0
## 632                                                                  0
## 633                                                                  0
## 634                                                                  *
## 635                                                                 32
## 636                                                                 21
## 637                                                                  *
## 638                                                                 45
## 639                                                                 53
## 640                                                                 64
## 641                                                                 43
## 642                                                                 29
## 643                                                                 21
## 644                                                                 18
## 645                                                                 13
## 646                                                                  0
## 647                                                                  0
## 648                                                                  0
## 649                                                                623
## 650                                                                  0
## 651                                                                  0
## 652                                                                  0
## 653                                                                  0
## 654                                                                  0
## 655                                                                  0
## 656                                                                184
## 657                                                                  0
## 658                                                                  0
## 659                                                                 41
## 660                                                                187
## 661                                                                239
## 662                                                                 74
## 663                                                                 32
## 664                                                                 46
## 665                                                                 62
## 666                                                                 39
## 667                                                                 16
## 668                                                                 25
## 669                                                                  *
## 670                                                                  9
## 671                                                                 16
## 672                                                                144
## 673                                                                  *
## 674                                                                 92
## 675                                                                 21
## 676                                                                 41
## 677                                                                302
## 678                                                                  *
## 679                                                                 12
## 680                                                                 26
## 681                                                                 18
## 682                                                                 17
## 683                                                                  6
## 684                                                                  6
## 685                                                                 17
## 686                                                                 97
## 687                                                                  0
## 688                                                                 28
## 689                                                                  7
## 690                                                                129
## 691                                                                  0
## 692                                                                  0
## 693                                                                  0
## 694                                                                  0
## 695                                                                  0
## 696                                                                  0
## 697                                                                 22
## 698                                                                  0
## 699                                                                  6
## 700                                                                  7
## 701                                                                 25
## 702                                                                 15
## 703                                                                  0
## 704                                                                 10
## 705                                                                  8
## 706                                                                 12
## 707                                                                129
## 708                                                                  6
## 709                                                                 22
## 710                                                                 20
## 711                                                                  6
## 712                                                                 56
## 713                                                                 48
## 714                                                                  *
## 715                                                                  *
## 716                                                                  0
## 717                                                                  *
## 718                                                                  6
## 719                                                                  *
## 720                                                                  *
## 721                                                                  *
## 722                                                                  0
## 723                                                                  0
## 724                                                                  *
## 725                                                                  *
## 726                                                                  *
## 727                                                                  7
## 728                                                                  0
## 729                                                                  0
## 730                                                                  0
## 731                                                                  0
## 732                                                                  0
## 733                                                                  0
## 734                                                                  0
## 735                                                                  0
## 736                                                                  0
## 737                                                                117
## 738                                                                327
## 739                                                                 84
## 740                                                                464
## 741                                                                 84
## 742                                                                 67
## 743                                                                  0
## 744                                                                  0
## 745                                                                  0
## 746                                                                  0
## 747                                                                  0
## 748                                                                  0
## 749                                                                  0
## 750                                                                  0
## 751                                                                  0
## 752                                                                  0
## 753                                                                  0
## 754                                                                 20
## 755                                                                  0
## 756                                                                  0
## 757                                                                  0
## 758                                                                  0
## 759                                                                  0
## 760                                                                  0
## 761                                                                  0
## 762                                                                  0
## 763                                                                  0
## 764                                                                  0
## 765                                                                  0
## 766                                                                138
## 767                                                                 34
## 768                                                                  0
## 769                                                                  *
## 770                                                                  7
## 771                                                                 52
## 772                                                                  0
## 773                                                                  0
## 774                                                                  0
## 775                                                                  0
## 776                                                                  0
## 777                                                                  5
## 778                                                                  0
## 779                                                                  0
## 780                                                                 30
## 781                                                                  *
## 782                                                                  0
## 783                                                                  6
## 784                                                                  0
## 785                                                                  0
## 786                                                                 22
## 787                                                                 12
## 788                                                                  0
## 789                                                                  0
## 790                                                                  0
## 791                                                                  0
## 792                                                                  0
## 793                                                                 21
## 794                                                                 16
## 795                                                                  0
## 796                                                                  *
## 797                                                                  0
## 798                                                                  8
## 799                                                                 17
## 800                                                                  0
## 801                                                                  0
## 802                                                                  0
## 803                                                                  7
## 804                                                                  0
## 805                                                                  0
## 806                                                                  0
## 807                                                                  0
## 808                                                                  0
## 809                                                                  0
## 810                                                                  0
## 811                                                                  0
## 812                                                                  0
## 813                                                                  *
## 814                                                                  0
## 815                                                                  0
## 816                                                                  0
## 817                                                                  0
## 818                                                                  0
## 819                                                                  0
## 820                                                                  0
## 821                                                                  0
## 822                                                                  0
## 823                                                                  0
## 824                                                                  0
## 825                                                                  0
## 826                                                                  0
## 827                                                                  *
## 828                                                                  0
## 829                                                                  0
## 830                                                                  0
## 831                                                                 18
## 832                                                                  *
## 833                                                                  0
## 834                                                                  0
## 835                                                                  *
## 836                                                                 18
## 837                                                                  *
## 838                                                                  5
## 839                                                                  0
## 840                                                                  0
## 841                                                                  0
## 842                                                                  *
## 843                                                                  5
## 844                                                                  0
## 845                                                                  *
## 846                                                                 18
## 847                                                                  *
## 848                                                                 54
## 849                                                                  0
## 850                                                                 14
## 851                                                                  7
## 852                                                                 53
## 853                                                                  0
## 854                                                                  *
## 855                                                                  6
## 856                                                                  *
## 857                                                                 17
## 858                                                                  0
## 859                                                                 11
## 860                                                                  *
## 861                                                                  0
## 862                                                                  0
## 863                                                                  0
## 864                                                                  0
## 865                                                                  0
## 866                                                                  0
## 867                                                                  0
## 868                                                                  *
## 869                                                                  0
## 870                                                                 27
## 871                                                                  0
## 872                                                                  0
## 873                                                                  0
## 874                                                                  *
## 875                                                                  0
## 876                                                                  8
## 877                                                                 10
## 878                                                                  8
## 879                                                                  0
## 880                                                                  0
## 881                                                                  0
## 882                                                                  0
## 883                                                                  0
## 884                                                                  0
## 885                                                                  0
## 886                                                                  0
## 887                                                                  0
## 888                                                                  0
## 889                                                                  0
## 890                                                                  0
## 891                                                                  0
## 892                                                                  0
## 893                                                                  0
## 894                                                                  0
## 895                                                                  0
## 896                                                                  0
## 897                                                                  0
## 898                                                                  0
## 899                                                                  0
## 900                                                                  0
## 901                                                                  0
## 902                                                                  0
## 903                                                                  0
## 904                                                                  0
## 905                                                                  0
## 906                                                                  0
## 907                                                                  0
## 908                                                                  0
## 909                                                                  0
## 910                                                                  0
## 911                                                                  0
## 912                                                                  0
## 913                                                                  0
## 914                                                                  0
## 915                                                                  0
## 916                                                                  0
## 917                                                                  5
## 918                                                                  0
## 919                                                                  0
## 920                                                                  0
## 921                                                                  0
## 922                                                                  0
## 923                                                                 15
## 924                                                                  0
## 925                                                                  0
## 926                                                                  0
## 927                                                                  0
## 928                                                                  0
## 929                                                                  0
## 930                                                                  0
## 931                                                                  0
## 932                                                                  0
## 933                                                                  0
## 934                                                                  0
## 935                                                                  0
## 936                                                                  0
## 937                                                                  0
## 938                                                                  0
## 939                                                                  0
## 940                                                                  0
## 941                                                                  0
## 942                                                                  0
## 943                                                                  0
## 944                                                                  0
## 945                                                                  0
## 946                                                                  0
## 947                                                                  0
## 948                                                                  0
## 949                                                                  0
## 950                                                                  0
## 951                                                                  0
## 952                                                                  0
## 953                                                                  0
## 954                                                                  0
## 955                                                                  0
## 956                                                                  0
## 957                                                                  0
## 958                                                                  0
## 959                                                                  0
## 960                                                                  0
## 961                                                                  0
## 962                                                                  0
## 963                                                                  0
## 964                                                                  0
## 965                                                                  0
## 966                                                                  0
## 967                                                                  0
## 968                                                                  0
## 969                                                                  0
## 970                                                                  0
## 971                                                                  0
## 972                                                                  0
## 973                                                                  0
## 974                                                                  0
## 975                                                                  0
## 976                                                                  0
## 977                                                                  0
## 978                                                                  0
## 979                                                                  0
## 980                                                                  0
## 981                                                                  0
## 982                                                                  0
## 983                                                                  0
## 984                                                                  0
## 985                                                                  0
## 986                                                                  0
## 987                                                                  0
## 988                                                                  0
## 989                                                                  0
## 990                                                                  0
## 991                                                                  0
## 992                                                                  0
## 993                                                                  0
## 994                                                                  0
## 995                                                                  0
## 996                                                                  0
## 997                                                                  0
## 998                                                                655
## 999                                                                225
## 1000                                                                 0
## 1001                                                                 0
## 1002                                                                 0
## 1003                                                              1587
## 1004                                                                 0
## 1005                                                                 0
## 1006                                                                 0
## 1007                                                                 0
## 1008                                                                 0
## 1009                                                                 0
## 1010                                                                37
## 1011                                                                25
## 1012                                                                 0
## 1013                                                                11
## 1014                                                                15
## 1015                                                                32
## 1016                                                                87
## 1017                                                                 *
## 1018                                                                16
## 1019                                                                 0
## 1020                                                                10
## 1021                                                               190
## 1022                                                                59
## 1023                                                                 7
## 1024                                                                 *
## 1025                                                               158
## 1026                                                                75
## 1027                                                               349
## 1028                                                                48
## 1029                                                               156
## 1030                                                                76
## 1031                                                                26
## 1032                                                               363
## 1033                                                                13
## 1034                                                                42
## 1035                                                                12
## 1036                                                                17
## 1037                                                                 *
## 1038                                                                39
## 1039                                                                42
## 1040                                                                52
## 1041                                                                 *
## 1042                                                                 *
## 1043                                                                24
## 1044                                                                11
## 1045                                                               437
## 1046                                                                 0
## 1047                                                                 6
## 1048                                                                 0
## 1049                                                                 0
## 1050                                                                 0
## 1051                                                                32
## 1052                                                                 0
## 1053                                                                25
## 1054                                                                58
## 1055                                                                 *
## 1056                                                                 *
## 1057                                                                 0
## 1058                                                                 *
## 1059                                                                 0
## 1060                                                                 0
## 1061                                                               144
## 1062                                                                 0
## 1063                                                                 0
## 1064                                                                 0
## 1065                                                                 0
## 1066                                                                14
## 1067                                                                 *
## 1068                                                                15
## 1069                                                                 0
## 1070                                                                 0
## 1071                                                                14
## 1072                                                                 0
## 1073                                                                 0
## 1074                                                                 0
## 1075                                                                 0
## 1076                                                                 *
## 1077                                                                 *
## 1078                                                                 0
## 1079                                                                 0
## 1080                                                                 0
## 1081                                                                 0
## 1082                                                                 0
## 1083                                                                 0
## 1084                                                                 0
## 1085                                                                 0
## 1086                                                                 0
## 1087                                                                 0
## 1088                                                                 0
## 1089                                                                 0
## 1090                                                                 0
## 1091                                                                 0
## 1092                                                                 0
## 1093                                                                 0
## 1094                                                                 0
## 1095                                                               645
## 1096                                                                67
## 1097                                                               332
## 1098                                                               127
## 1099                                                               462
## 1100                                                                48
## 1101                                                               638
## 1102                                                               888
## 1103                                                               101
## 1104                                                               402
## 1105                                                                45
## 1106                                                               372
## 1107                                                                52
## 1108                                                               119
## 1109                                                                57
## 1110                                                                10
## 1111                                                                 0
## 1112                                                                 0
## 1113                                                                 0
## 1114                                                                 0
## 1115                                                                 0
## 1116                                                              1540
## 1117                                                               339
## 1118                                                                44
## 1119                                                               496
## 1120                                                               110
## 1121                                                                18
## 1122                                                                97
## 1123                                                                 0
## 1124                                                                 6
## 1125                                                                26
## 1126                                                                86
## 1127                                                                33
## 1128                                                                76
## 1129                                                                25
## 1130                                                                21
## 1131                                                                51
## 1132                                                                40
## 1133                                                               108
## 1134                                                                24
## 1135                                                                 0
## 1136                                                                57
## 1137                                                                42
## 1138                                                                48
## 1139                                                                80
## 1140                                                               164
## 1141                                                                 0
## 1142                                                                39
## 1143                                                                 0
## 1144                                                                22
## 1145                                                                29
## 1146                                                               109
## 1147                                                                 0
## 1148                                                                46
## 1149                                                                 7
## 1150                                                                24
## 1151                                                                39
## 1152                                                                20
## 1153                                                                34
## 1154                                                                43
## 1155                                                                 0
## 1156                                                                82
## 1157                                                                 6
## 1158                                                                41
## 1159                                                                31
## 1160                                                                91
## 1161                                                                 0
## 1162                                                                34
## 1163                                                                 9
## 1164                                                                 8
## 1165                                                                 0
## 1166                                                                47
## 1167                                                                 *
## 1168                                                                 5
## 1169                                                                 *
## 1170                                                                 *
## 1171                                                                 *
## 1172                                                                 *
## 1173                                                                18
## 1174                                                                 0
## 1175                                                                 0
## 1176                                                                 0
## 1177                                                                 0
## 1178                                                                 0
## 1179                                                                 0
## 1180                                                                 0
## 1181                                                                 0
## 1182                                                                 0
## 1183                                                                 0
## 1184                                                                 0
## 1185                                                                 0
## 1186                                                                 0
## 1187                                                                 0
## 1188                                                                 0
## 1189                                                                 0
## 1190                                                                 0
## 1191                                                                 0
## 1192                                                                 0
## 1193                                                                 0
## 1194                                                                 0
## 1195                                                                 0
## 1196                                                                 0
## 1197                                                                 0
## 1198                                                                 0
## 1199                                                                 0
## 1200                                                                 0
## 1201                                                                 0
## 1202                                                                 0
## 1203                                                                 0
## 1204                                                                 0
## 1205                                                                 0
## 1206                                                                 0
## 1207                                                                 0
## 1208                                                                 0
## 1209                                                                 0
## 1210                                                                 0
## 1211                                                                 0
## 1212                                                                 0
## 1213                                                                 0
## 1214                                                                 0
## 1215                                                                 0
## 1216                                                                 0
## 1217                                                                 0
## 1218                                                                 0
## 1219                                                                 0
## 1220                                                                 0
## 1221                                                                 0
## 1222                                                                 0
## 1223                                                                 0
## 1224                                                                 0
## 1225                                                                 0
## 1226                                                                 0
## 1227                                                                 0
## 1228                                                                 0
## 1229                                                                 0
## 1230                                                                 0
## 1231                                                                 0
## 1232                                                                 0
## 1233                                                                 0
## 1234                                                                 0
## 1235                                                                 0
## 1236                                                                 0
## 1237                                                                 0
## 1238                                                                 0
## 1239                                                                 0
## 1240                                                                 0
## 1241                                                                 0
## 1242                                                                 0
## 1243                                                                 0
## 1244                                                                 0
## 1245                                                                 0
## 1246                                                                 0
## 1247                                                                 0
## 1248                                                                 0
## 1249                                                                 0
## 1250                                                                 0
## 1251                                                                 0
## 1252                                                                 0
## 1253                                                                 0
## 1254                                                                 0
## 1255                                                                 0
## 1256                                                                 0
## 1257                                                                 0
## 1258                                                                 0
## 1259                                                                 0
## 1260                                                                 0
## 1261                                                                 0
## 1262                                                                 0
## 1263                                                                 0
## 1264                                                                 0
## 1265                                                                 0
## 1266                                                                 0
## 1267                                                                 0
## 1268                                                                 0
## 1269                                                                 0
## 1270                                                                 0
## 1271                                                                 0
## 1272                                                                 0
## 1273                                                                 0
## 1274                                                                 0
## 1275                                                                 0
## 1276                                                                 0
## 1277                                                                 *
## 1278                                                                 9
## 1279                                                                 *
## 1280                                                                52
## 1281                                                                 0
## 1282                                                                 0
## 1283                                                                 *
## 1284                                                                 *
## 1285                                                                41
## 1286                                                                 *
## 1287                                                                 *
## 1288                                                                 *
## 1289                                                                 6
## 1290                                                                 *
## 1291                                                                 *
## 1292                                                               148
## 1293                                                                20
## 1294                                                                 0
## 1295                                                                91
## 1296                                                                 0
## 1297                                                                20
## 1298                                                                 *
## 1299                                                               160
## 1300                                                                 0
## 1301                                                                 0
## 1302                                                                 *
## 1303                                                                25
## 1304                                                                 7
## 1305                                                               232
## 1306                                                                 *
## 1307                                                                 *
## 1308                                                                 9
## 1309                                                                 0
## 1310                                                                 *
## 1311                                                               301
## 1312                                                                 8
## 1313                                                                 *
## 1314                                                                 5
## 1315                                                                28
## 1316                                                                 *
## 1317                                                                 *
## 1318                                                                 *
## 1319                                                                11
## 1320                                                                 *
## 1321                                                                 0
## 1322                                                                12
## 1323                                                                 *
## 1324                                                                 0
## 1325                                                                 *
## 1326                                                                 0
## 1327                                                                88
## 1328                                                                 *
## 1329                                                                 *
## 1330                                                                 9
## 1331                                                                 *
## 1332                                                                 0
## 1333                                                                 *
## 1334                                                                 6
## 1335                                                                10
## 1336                                                                 *
## 1337                                                                 0
## 1338                                                                20
## 1339                                                                 *
## 1340                                                                15
## 1341                                                                 *
## 1342                                                                16
## 1343                                                                 *
## 1344                                                                22
## 1345                                                                60
## 1346                                                                23
## 1347                                                                 5
## 1348                                                                 0
## 1349                                                               165
## 1350                                                                11
## 1351                                                                 5
## 1352                                                                 7
## 1353                                                                 *
## 1354                                                                13
## 1355                                                                 *
## 1356                                                                 0
## 1357                                                                 0
## 1358                                                                11
## 1359                                                                 9
## 1360                                                                 9
## 1361                                                                 *
## 1362                                                                 0
## 1363                                                                 0
## 1364                                                                70
## 1365                                                                 0
## 1366                                                                58
## 1367                                                                91
## 1368                                                                71
## 1369                                                                51
## 1370                                                                46
## 1371                                                                28
## 1372                                                               267
## 1373                                                                 6
## 1374                                                                53
## 1375                                                                 0
## 1376                                                               121
## 1377                                                                24
## 1378                                                               131
## 1379                                                                93
## 1380                                                               121
## 1381                                                                26
## 1382                                                               101
## 1383                                                               124
## 1384                                                                15
## 1385                                                                 0
## 1386                                                                 0
## 1387                                                               190
## 1388                                                                 0
## 1389                                                                 0
## 1390                                                                 8
## 1391                                                                 8
## 1392                                                                38
## 1393                                                               158
## 1394                                                                97
## 1395                                                                 9
## 1396                                                                 0
## 1397                                                                18
## 1398                                                                21
## 1399                                                                 0
## 1400                                                                 0
## 1401                                                                14
## 1402                                                                 0
## 1403                                                                12
## 1404                                                                69
## 1405                                                                 5
## 1406                                                                41
## 1407                                                                 *
## 1408                                                                 0
## 1409                                                                13
## 1410                                                                15
## 1411                                                                 5
## 1412                                                                12
## 1413                                                                14
## 1414                                                                 0
## 1415                                                               110
## 1416                                                                 0
## 1417                                                                25
## 1418                                                                 *
## 1419                                                                28
## 1420                                                                22
## 1421                                                                 0
## 1422                                                                 0
## 1423                                                                31
## 1424                                                                 9
## 1425                                                                99
## 1426                                                                56
## 1427                                                                 0
## 1428                                                                15
## 1429                                                                 0
## 1430                                                                57
## 1431                                                                 *
## 1432                                                                11
## 1433                                                                29
## 1434                                                                37
## 1435                                                                65
## 1436                                                                39
## 1437                                                                 *
## 1438                                                                11
## 1439                                                                36
## 1440                                                                 *
## 1441                                                                 *
## 1442                                                                 8
## 1443                                                                 *
## 1444                                                                 *
## 1445                                                                 0
## 1446                                                               154
## 1447                                                                 0
## 1448                                                                13
## 1449                                                                 8
## 1450                                                                41
## 1451                                                                 9
## 1452                                                                 0
## 1453                                                                 5
## 1454                                                                 *
## 1455                                                                13
## 1456                                                                 *
## 1457                                                                 0
## 1458                                                                 0
## 1459                                                                 7
## 1460                                                                81
## 1461                                                                 0
## 1462                                                                 *
## 1463                                                                11
## 1464                                                               149
## 1465                                                                 5
## 1466                                                                 0
## 1467                                                                12
## 1468                                                                 0
## 1469                                                                 5
## 1470                                                                13
## 1471                                                                 0
## 1472                                                                14
## 1473                                                                23
## 1474                                                                 0
## 1475                                                                 0
## 1476                                                                 5
## 1477                                                                11
## 1478                                                                 0
## 1479                                                                 0
## 1480                                                                 5
## 1481                                                                 0
## 1482                                                                30
## 1483                                                               259
## 1484                                                                 0
## 1485                                                                70
## 1486                                                               595
## 1487                                                                95
## 1488                                                                 0
## 1489                                                               125
## 1490                                                                37
## 1491                                                                 *
## 1492                                                                 0
## 1493                                                                 *
## 1494                                                                 0
## 1495                                                               113
## 1496                                                               142
## 1497                                                                14
## 1498                                                                45
## 1499                                                                40
## 1500                                                                32
## 1501                                                                28
## 1502                                                                38
## 1503                                                                19
## 1504                                                                38
## 1505                                                                57
## 1506                                                                14
## 1507                                                                 0
## 1508                                                                 0
## 1509                                                                17
## 1510                                                                 0
## 1511                                                                11
## 1512                                                                 0
## 1513                                                                 0
## 1514                                                                10
## 1515                                                                 0
## 1516                                                                 7
## 1517                                                                15
## 1518                                                                10
## 1519                                                               202
## 1520                                                                30
## 1521                                                                 0
## 1522                                                                 0
## 1523                                                                 0
## 1524                                                                 0
## 1525                                                              1525
## 1526                                                              1922
## 1527                                                               300
## 1528                                                                 *
## 1529                                                                 *
## 1530                                                                 *
## 1531                                                                 *
## 1532                                                                 7
## 1533                                                                 5
## 1534                                                                 *
## 1535                                                                 5
## 1536                                                                 *
## 1537                                                                 0
## 1538                                                                 *
## 1539                                                                 0
## 1540                                                                 0
## 1541                                                                 0
## 1542                                                                 0
## 1543                                                                36
## 1544                                                                 0
## 1545                                                                14
## 1546                                                                 9
## 1547                                                                 *
## 1548                                                                 0
## 1549                                                                 0
## 1550                                                                 0
## 1551                                                                 0
## 1552                                                                 0
## 1553                                                                 0
## 1554                                                                 0
## 1555                                                                 0
## 1556                                                                 0
## 1557                                                                 0
## 1558                                                                 0
## 1559                                                                 0
## 1560                                                                 0
## 1561                                                                 0
## 1562                                                                 0
## 1563                                                                 0
## 1564                                                                 0
## 1565                                                                 0
## 1566                                                                 0
## 1567                                                                 0
## 1568                                                                 0
## 1569                                                                 0
## 1570                                                                 0
## 1571                                                                 0
## 1572                                                                 0
## 1573                                                                 0
## 1574                                                                 0
## 1575                                                                 0
## 1576                                                                 0
## 1577                                                                 0
## 1578                                                                 0
## 1579                                                                 0
## 1580                                                                 0
## 1581                                                               153
## 1582                                                                50
## 1583                                                               149
## 1584                                                                76
## 1585                                                               351
## 1586                                                                 0
## 1587                                                                 7
## 1588                                                                14
## 1589                                                                 5
## 1590                                                               135
## 1591                                                                23
## 1592                                                                 0
## 1593                                                                18
## 1594                                                                 8
## 1595                                                                 5
## 1596                                                                 *
## 1597                                                                 *
## 1598                                                                 *
## 1599                                                                59
## 1600                                                                37
## 1601                                                                53
## 1602                                                                 *
## 1603                                                                14
## 1604                                                                19
## 1605                                                                19
## 1606                                                                38
## 1607                                                                10
## 1608                                                                26
## 1609                                                                 *
## 1610                                                                10
## 1611                                                                 *
## 1612                                                               129
## 1613                                                                14
## 1614                                                               158
## 1615                                                                77
## 1616                                                                 8
## 1617                                                                 *
## 1618                                                                 8
## 1619                                                                19
## 1620                                                                 *
## 1621                                                                 0
## 1622                                                               118
## 1623                                                                80
## 1624                                                                 0
## 1625                                                                56
## 1626                                                               165
## 1627                                                                33
## 1628                                                                 0
## 1629                                                                 0
## 1630                                                                 0
## 1631                                                                10
## 1632                                                                11
## 1633                                                                14
## 1634                                                                 6
## 1635                                                                14
## 1636                                                                27
## 1637                                                                 *
## 1638                                                                 *
## 1639                                                                 0
## 1640                                                                27
## 1641                                                                 0
## 1642                                                                 0
## 1643                                                                 0
## 1644                                                                 0
## 1645                                                                 *
## 1646                                                                 *
## 1647                                                                 *
## 1648                                                                 *
## 1649                                                                 *
## 1650                                                                 0
## 1651                                                                 0
## 1652                                                                 0
## 1653                                                               169
## 1654                                                                 *
## 1655                                                                 *
## 1656                                                                 0
## 1657                                                                65
## 1658                                                                 *
## 1659                                                                 *
## 1660                                                                63
## 1661                                                                24
## 1662                                                               370
## 1663                                                                 7
## 1664                                                                 *
## 1665                                                                86
## 1666                                                                21
## 1667                                                                 0
## 1668                                                                51
## 1669                                                                 0
## 1670                                                               255
## 1671                                                                 *
## 1672                                                                34
## 1673                                                                 0
## 1674                                                                 0
## 1675                                                                 *
## 1676                                                                53
## 1677                                                                28
## 1678                                                                76
## 1679                                                               103
## 1680                                                                38
## 1681                                                                20
## 1682                                                                 0
## 1683                                                                 *
## 1684                                                               284
## 1685                                                                59
## 1686                                                                49
## 1687                                                                19
## 1688                                                                16
## 1689                                                                 0
## 1690                                                                 0
## 1691                                                                 *
## 1692                                                                16
## 1693                                                                 7
## 1694                                                                 0
## 1695                                                                 0
## 1696                                                                 0
## 1697                                                                 0
## 1698                                                                18
## 1699                                                                 9
## 1700                                                                24
## 1701                                                                 0
## 1702                                                                 0
## 1703                                                                 0
## 1704                                                                 0
## 1705                                                                10
## 1706                                                                16
## 1707                                                                 *
## 1708                                                                 *
## 1709                                                                 0
## 1710                                                                 0
## 1711                                                                 0
## 1712                                                                 0
## 1713                                                                 0
## 1714                                                                58
## 1715                                                                 0
## 1716                                                                35
## 1717                                                                 9
## 1718                                                                28
## 1719                                                                 0
## 1720                                                                 0
## 1721                                                                 0
## 1722                                                                 0
## 1723                                                                 0
## 1724                                                                 *
## 1725                                                                 *
## 1726                                                                 *
## 1727                                                                 9
## 1728                                                                 *
## 1729                                                                 0
## 1730                                                                 0
## 1731                                                                 0
## 1732                                                                 0
## 1733                                                                 9
## 1734                                                                 9
## 1735                                                                44
## 1736                                                                 *
## 1737                                                               138
## 1738                                                               122
## 1739                                                               145
## 1740                                                               189
## 1741                                                               237
## 1742                                                                15
## 1743                                                                 *
## 1744                                                                 *
## 1745                                                                15
## 1746                                                                25
## 1747                                                                 0
## 1748                                                                 0
## 1749                                                                 0
## 1750                                                                 *
## 1751                                                                23
## 1752                                                                 5
## 1753                                                                 0
## 1754                                                                 0
## 1755                                                                 *
## 1756                                                                 0
## 1757                                                                 *
## 1758                                                                 *
## 1759                                                                 0
## 1760                                                                 0
## 1761                                                                 0
## 1762                                                                 0
## 1763                                                                 0
## 1764                                                                 0
## 1765                                                                 0
## 1766                                                                 0
## 1767                                                                 0
## 1768                                                                 0
## 1769                                                                 0
## 1770                                                                 0
## 1771                                                                 0
## 1772                                                                 0
## 1773                                                                 0
## 1774                                                                 0
## 1775                                                                 0
## 1776                                                                 0
## 1777                                                                 0
## 1778                                                                 0
## 1779                                                                 0
## 1780                                                                 0
## 1781                                                                 0
## 1782                                                                 0
## 1783                                                                 0
## 1784                                                                 0
## 1785                                                                 0
## 1786                                                                 0
## 1787                                                                 0
## 1788                                                                 0
## 1789                                                                18
## 1790                                                                52
## 1791                                                                15
## 1792                                                                17
## 1793                                                                19
## 1794                                                                 5
## 1795                                                                16
## 1796                                                                21
## 1797                                                               244
## 1798                                                                74
## 1799                                                                13
## 1800                                                                33
## 1801                                                                19
## 1802                                                               175
## 1803                                                                 7
## 1804                                                                42
## 1805                                                               137
## 1806                                                                14
## 1807                                                                24
## 1808                                                                 7
## 1809                                                                15
## 1810                                                                 *
## 1811                                                                32
## 1812                                                                26
## 1813                                                                92
## 1814                                                                24
## 1815                                                               208
## 1816                                                               232
## 1817                                                               166
## 1818                                                                 *
## 1819                                                                20
## 1820                                                                 *
## 1821                                                                29
## 1822                                                                32
## 1823                                                                16
## 1824                                                                 5
## 1825                                                                 *
## 1826                                                                11
## 1827                                                                 *
## 1828                                                                22
## 1829                                                               152
## 1830                                                                44
## 1831                                                                 0
## 1832                                                                 *
## 1833                                                               123
## 1834                                                                44
## 1835                                                                35
## 1836                                                                 9
## 1837                                                                22
## 1838                                                                12
## 1839                                                                18
## 1840                                                                42
## 1841                                                               139
## 1842                                                               198
## 1843                                                               127
## 1844                                                                 6
## 1845                                                                 0
## 1846                                                                24
## 1847                                                                24
## 1848                                                               237
## 1849                                                                15
## 1850                                                                16
## 1851                                                                21
## 1852                                                                 6
## 1853                                                                 0
## 1854                                                                 6
## 1855                                                                 0
## 1856                                                                82
## 1857                                                                 0
## 1858                                                                 0
## 1859                                                                 0
## 1860                                                                 0
## 1861                                                                 0
## 1862                                                                 0
## 1863                                                                 0
## 1864                                                                 0
## 1865                                                                10
## 1866                                                                 0
## 1867                                                                13
## 1868                                                                 7
## 1869                                                                70
## 1870                                                                13
## 1871                                                               304
## 1872                                                               111
## 1873                                                                87
## 1874                                                                 0
## 1875                                                                 0
## 1876                                                                 0
## 1877                                                                38
## 1878                                                                15
## 1879                                                                 *
## 1880                                                                 8
## 1881                                                                18
## 1882                                                                 6
## 1883                                                               127
## 1884                                                                14
## 1885                                                                 0
## 1886                                                                 0
## 1887                                                                 0
## 1888                                                               163
## 1889                                                                 0
## 1890                                                                 0
## 1891                                                                 0
## 1892                                                                 8
## 1893                                                                 0
## 1894                                                                 6
## 1895                                                                 0
## 1896                                                                 0
## 1897                                                                 *
## 1898                                                                90
## 1899                                                                 7
## 1900                                                                 0
## 1901                                                                 *
## 1902                                                                 0
## 1903                                                                32
## 1904                                                                 0
## 1905                                                                 0
## 1906                                                                 0
## 1907                                                                 0
## 1908                                                                 0
## 1909                                                                 0
## 1910                                                                 0
## 1911                                                                 0
## 1912                                                                 0
## 1913                                                                 0
## 1914                                                                 0
## 1915                                                                 0
## 1916                                                                 0
## 1917                                                                 0
## 1918                                                               342
## 1919                                                               146
## 1920                                                               345
## 1921                                                               248
## 1922                                                                70
## 1923                                                                 6
## 1924                                                                 0
## 1925                                                                 0
## 1926                                                                 0
## 1927                                                                 0
## 1928                                                                 0
## 1929                                                                 0
## 1930                                                                 0
## 1931                                                                 0
## 1932                                                                 0
## 1933                                                                 7
## 1934                                                                 0
## 1935                                                                 0
## 1936                                                                 0
## 1937                                                                 0
## 1938                                                                21
## 1939                                                                 *
## 1940                                                                 0
## 1941                                                                 0
## 1942                                                                 0
## 1943                                                                 0
## 1944                                                                 *
## 1945                                                                 0
## 1946                                                                 0
## 1947                                                                 0
## 1948                                                                 0
## 1949                                                                 0
## 1950                                                                 0
## 1951                                                                 0
## 1952                                                                 0
## 1953                                                                33
## 1954                                                                20
## 1955                                                               163
## 1956                                                               362
## 1957                                                               101
## 1958                                                                 0
## 1959                                                               155
## 1960                                                                 *
## 1961                                                               127
## 1962                                                               142
## 1963                                                               243
## 1964                                                               282
## 1965                                                                 *
## 1966                                                               140
## 1967                                                                31
## 1968                                                                22
## 1969                                                                32
## 1970                                                                32
## 1971                                                                 8
## 1972                                                                62
## 1973                                                                42
## 1974                                                              1059
## 1975                                                                40
## 1976                                                                84
## 1977                                                               117
## 1978                                                                 7
## 1979                                                              1256
## 1980                                                                 *
## 1981                                                               191
## 1982                                                                21
## 1983                                                               100
## 1984                                                                 *
## 1985                                                                29
## 1986                                                               247
## 1987                                                                45
## 1988                                                                 0
## 1989                                                                14
## 1990                                                                 8
## 1991                                                                23
## 1992                                                                47
## 1993                                                                18
## 1994                                                                46
## 1995                                                                 0
## 1996                                                                 0
## 1997                                                               122
## 1998                                                                 *
## 1999                                                               334
## 2000                                                                11
## 2001                                                                51
## 2002                                                                22
## 2003                                                                 *
## 2004                                                                23
## 2005                                                                18
## 2006                                                                 5
## 2007                                                               154
## 2008                                                                79
## 2009                                                                37
## 2010                                                                12
## 2011                                                                 8
## 2012                                                                61
## 2013                                                                 5
## 2014                                                               262
## 2015                                                               239
## 2016                                                              1564
## 2017                                                              1625
## 2018                                                               107
## 2019                                                                 *
## 2020                                                                59
## 2021                                                                 *
## 2022                                                               189
## 2023                                                               228
## 2024                                                                 5
## 2025                                                               405
## 2026                                                               403
## 2027                                                                 5
## 2028                                                                12
## 2029                                                                 *
## 2030                                                                 5
## 2031                                                                16
## 2032                                                                 9
## 2033                                                                 6
## 2034                                                                17
## 2035                                                                16
## 2036                                                               300
## 2037                                                                43
## 2038                                                                15
## 2039                                                                 5
## 2040                                                                38
## 2041                                                                 0
## 2042                                                                68
## 2043                                                               122
## 2044                                                                44
## 2045                                                                15
## 2046                                                                78
## 2047                                                                99
## 2048                                                                96
## 2049                                                                 *
## 2050                                                               141
## 2051                                                                 8
## 2052                                                                 6
## 2053                                                                27
## 2054                                                                84
## 2055                                                                 *
## 2056                                                                41
## 2057                                                                 *
## 2058                                                                 0
## 2059                                                                12
## 2060                                                                 *
## 2061                                                                 0
## 2062                                                               153
## 2063                                                                 0
## 2064                                                                 0
## 2065                                                                 0
## 2066                                                                67
## 2067                                                                 5
## 2068                                                                26
## 2069                                                               211
## 2070                                                                66
## 2071                                                                93
## 2072                                                               252
## 2073                                                                14
## 2074                                                                18
## 2075                                                                 *
## 2076                                                               119
## 2077                                                                 0
## 2078                                                                57
## 2079                                                                 *
## 2080                                                                11
## 2081                                                                43
## 2082                                                                20
## 2083                                                                15
## 2084                                                                33
## 2085                                                                28
## 2086                                                               224
## 2087                                                                 *
## 2088                                                                20
## 2089                                                                 *
## 2090                                                                 7
## 2091                                                                10
## 2092                                                                81
## 2093                                                                 5
## 2094                                                                 5
## 2095                                                                21
## 2096                                                                 5
## 2097                                                                 *
## 2098                                                                52
## 2099                                                                96
## 2100                                                                 *
## 2101                                                                17
## 2102                                                                18
## 2103                                                                40
## 2104                                                                20
## 2105                                                                30
## 2106                                                                 *
## 2107                                                                 *
## 2108                                                                 0
## 2109                                                                 *
## 2110                                                                 0
## 2111                                                                 0
## 2112                                                                 0
## 2113                                                                 0
## 2114                                                                 0
## 2115                                                                 0
## 2116                                                                 0
## 2117                                                                 0
## 2118                                                                 7
## 2119                                                                 0
## 2120                                                                 0
## 2121                                                                 *
## 2122                                                                 7
## 2123                                                                 *
## 2124                                                                 0
## 2125                                                                 0
## 2126                                                                 0
## 2127                                                                 0
## 2128                                                                 0
## 2129                                                                 0
## 2130                                                                 0
## 2131                                                                 0
## 2132                                                               392
## 2133                                                               182
## 2134                                                                 0
## 2135                                                                 0
## 2136                                                                59
## 2137                                                                20
## 2138                                                                25
## 2139                                                                11
## 2140                                                                 0
## 2141                                                                36
## 2142                                                                 9
## 2143                                                                13
## 2144                                                                36
## 2145                                                                 0
## 2146                                                               130
## 2147                                                                 0
## 2148                                                                14
## 2149                                                                24
## 2150                                                                13
## 2151                                                                59
## 2152                                                                 0
## 2153                                                               155
## 2154                                                                80
## 2155                                                                87
## 2156                                                                 0
## 2157                                                                27
## 2158                                                                34
## 2159                                                                36
## 2160                                                                 0
## 2161                                                                52
## 2162                                                                15
## 2163                                                                18
## 2164                                                                39
## 2165                                                                 0
## 2166                                                                 0
## 2167                                                                 5
## 2168                                                                44
## 2169                                                               213
## 2170                                                               138
## 2171                                                                 0
## 2172                                                                 0
## 2173                                                               299
## 2174                                                                 0
## 2175                                                                 *
## 2176                                                               441
## 2177                                                                 9
## 2178                                                               264
## 2179                                                                94
## 2180                                                                 8
## 2181                                                                17
## 2182                                                                26
## 2183                                                                87
## 2184                                                                 *
## 2185                                                                 5
## 2186                                                                43
## 2187                                                                 6
## 2188                                                               896
## 2189                                                                 0
## 2190                                                                 *
## 2191                                                                 0
## 2192                                                                 0
## 2193                                                                 0
## 2194                                                                 *
## 2195                                                                 0
## 2196                                                                 0
## 2197                                                                 0
## 2198                                                                 0
## 2199                                                                 0
## 2200                                                                 *
## 2201                                                                 0
## 2202                                                                 *
## 2203                                                                 *
## 2204                                                                 0
## 2205                                                                 0
## 2206                                                                20
## 2207                                                               104
## 2208                                                               159
## 2209                                                               284
## 2210                                                                44
## 2211                                                                 *
## 2212                                                                90
## 2213                                                                61
## 2214                                                                67
## 2215                                                                 *
## 2216                                                                16
## 2217                                                                24
## 2218                                                                24
## 2219                                                                22
## 2220                                                                 *
## 2221                                                                 0
## 2222                                                                 0
## 2223                                                                 0
## 2224                                                                 0
## 2225                                                                 0
## 2226                                                                 0
## 2227                                                                 0
## 2228                                                                 0
## 2229                                                                 0
## 2230                                                                 0
## 2231                                                                 0
## 2232                                                                 0
## 2233                                                                 0
## 2234                                                                 0
## 2235                                                                 9
## 2236                                                                 0
## 2237                                                                 *
## 2238                                                                 0
## 2239                                                                 *
## 2240                                                                 *
## 2241                                                                 0
## 2242                                                               102
## 2243                                                               150
## 2244                                                                17
## 2245                                                               399
## 2246                                                               573
## 2247                                                                 0
## 2248                                                                27
## 2249                                                                11
## 2250                                                                29
## 2251                                                                 5
## 2252                                                                 9
## 2253                                                                 *
## 2254                                                                 *
## 2255                                                                89
## 2256                                                                21
## 2257                                                                 *
## 2258                                                                19
## 2259                                                                96
## 2260                                                                90
## 2261                                                                 *
## 2262                                                                 *
## 2263                                                                26
## 2264                                                                40
## 2265                                                                 0
## 2266                                                                 0
## 2267                                                                33
## 2268                                                                28
## 2269                                                                31
## 2270                                                                 0
## 2271                                                                16
## 2272                                                                 *
## 2273                                                                12
## 2274                                                                 *
## 2275                                                                 *
## 2276                                                                57
## 2277                                                                 0
## 2278                                                                 0
## 2279                                                                 *
## 2280                                                                 6
## 2281                                                                 7
## 2282                                                                 *
## 2283                                                                 *
## 2284                                                                56
## 2285                                                                10
## 2286                                                                34
## 2287                                                                96
## 2288                                                               162
## 2289                                                                 0
## 2290                                                                 *
## 2291                                                                 0
## 2292                                                                 *
## 2293                                                                 0
## 2294                                                                 0
## 2295                                                                14
## 2296                                                                 0
## 2297                                                                 0
## 2298                                                                 0
## 2299                                                                 0
## 2300                                                                 *
## 2301                                                                55
## 2302                                                                44
## 2303                                                                14
## 2304                                                                16
## 2305                                                                 7
## 2306                                                                82
## 2307                                                                65
## 2308                                                                18
## 2309                                                                18
## 2310                                                               223
## 2311                                                                 0
## 2312                                                                33
## 2313                                                                16
## 2314                                                                 *
## 2315                                                                 0
## 2316                                                                 *
## 2317                                                                 0
## 2318                                                               109
## 2319                                                                42
## 2320                                                                 *
## 2321                                                                48
## 2322                                                               169
## 2323                                                               102
## 2324                                                                31
## 2325                                                                57
## 2326                                                               107
## 2327                                                               216
## 2328                                                                48
## 2329                                                                11
## 2330                                                                98
## 2331                                                               126
## 2332                                                                53
## 2333                                                               285
## 2334                                                                22
## 2335                                                                 9
## 2336                                                                37
## 2337                                                                30
## 2338                                                                 0
## 2339                                                                 0
## 2340                                                                 0
## 2341                                                                68
## 2342                                                                64
## 2343                                                                31
## 2344                                                               437
## 2345                                                                 0
## 2346                                                                 0
## 2347                                                                58
## 2348                                                                 0
## 2349                                                                34
## 2350                                                                16
## 2351                                                               375
## 2352                                                               154
## 2353                                                                91
## 2354                                                                 6
## 2355                                                                 *
## 2356                                                                 0
## 2357                                                                 0
## 2358                                                                54
## 2359                                                                15
## 2360                                                                55
## 2361                                                                76
## 2362                                                               154
## 2363                                                                 5
## 2364                                                                18
## 2365                                                                26
## 2366                                                                56
## 2367                                                                17
## 2368                                                                 7
## 2369                                                                75
## 2370                                                                 0
## 2371                                                                 0
## 2372                                                                 0
## 2373                                                                 0
## 2374                                                               366
## 2375                                                               288
## 2376                                                                 *
## 2377                                                                 *
## 2378                                                                 0
## 2379                                                                 0
## 2380                                                                 *
## 2381                                                                 0
## 2382                                                                 *
## 2383                                                                 5
## 2384                                                                 6
## 2385                                                                 0
## 2386                                                                 *
## 2387                                                                 *
## 2388                                                                 *
## 2389                                                                 5
## 2390                                                                 7
## 2391                                                                11
## 2392                                                                 *
## 2393                                                                14
## 2394                                                                16
## 2395                                                                 0
## 2396                                                                28
## 2397                                                                 0
## 2398                                                                 0
## 2399                                                                 0
## 2400                                                                 0
## 2401                                                                 8
## 2402                                                                 *
## 2403                                                                 0
## 2404                                                                 *
## 2405                                                                10
## 2406                                                                 0
## 2407                                                                 0
## 2408                                                                 *
## 2409                                                                 6
## 2410                                                                 0
## 2411                                                                 *
## 2412                                                                13
## 2413                                                                22
## 2414                                                                 6
## 2415                                                                 *
## 2416                                                                 8
## 2417                                                                32
## 2418                                                                12
## 2419                                                                 0
## 2420                                                                 *
## 2421                                                                 5
## 2422                                                                48
## 2423                                                                 0
## 2424                                                                 0
## 2425                                                                24
## 2426                                                                 *
## 2427                                                                 5
## 2428                                                                 8
## 2429                                                                 0
## 2430                                                                 0
## 2431                                                                 0
## 2432                                                                 0
## 2433                                                                 0
## 2434                                                                 0
## 2435                                                                 0
## 2436                                                                 0
## 2437                                                                 0
## 2438                                                                 0
## 2439                                                                 *
## 2440                                                                11
## 2441                                                                 *
## 2442                                                                 *
## 2443                                                                 0
## 2444                                                                 6
## 2445                                                               109
## 2446                                                                 0
## 2447                                                                 0
## 2448                                                                 0
## 2449                                                                 0
## 2450                                                                 0
## 2451                                                               183
## 2452                                                                 0
## 2453                                                                 0
## 2454                                                                19
## 2455                                                                12
## 2456                                                               137
## 2457                                                                57
## 2458                                                                56
## 2459                                                                 5
## 2460                                                                 6
## 2461                                                                37
## 2462                                                                 5
## 2463                                                                33
## 2464                                                               130
## 2465                                                                18
## 2466                                                                 6
## 2467                                                                 5
## 2468                                                                 7
## 2469                                                                 0
## 2470                                                                29
## 2471                                                                20
## 2472                                                                 *
## 2473                                                                81
## 2474                                                                71
## 2475                                                                46
## 2476                                                                33
## 2477                                                                93
## 2478                                                                 0
## 2479                                                                 7
## 2480                                                                 0
## 2481                                                                66
## 2482                                                                 *
## 2483                                                                 *
## 2484                                                                10
## 2485                                                                34
## 2486                                                                25
## 2487                                                                33
## 2488                                                               172
## 2489                                                                 8
## 2490                                                                56
## 2491                                                                20
## 2492                                                                 6
## 2493                                                               103
## 2494                                                                 5
## 2495                                                                13
## 2496                                                                 6
## 2497                                                                98
## 2498                                                               150
## 2499                                                                12
## 2500                                                                 5
## 2501                                                               185
## 2502                                                               287
## 2503                                                               164
## 2504                                                                43
## 2505                                                               231
## 2506                                                               267
## 2507                                                                63
## 2508                                                                94
## 2509                                                                75
## 2510                                                               126
## 2511                                                                 5
## 2512                                                                 7
## 2513                                                                 *
## 2514                                                               377
## 2515                                                                 9
## 2516                                                                66
## 2517                                                                29
## 2518                                                                 6
## 2519                                                                 6
## 2520                                                                30
## 2521                                                                15
## 2522                                                                21
## 2523                                                               276
## 2524                                                               185
## 2525                                                               108
## 2526                                                                 *
## 2527                                                                10
## 2528                                                                 0
## 2529                                                               198
## 2530                                                                 *
## 2531                                                                 0
## 2532                                                                 5
## 2533                                                                 0
## 2534                                                                 0
## 2535                                                                26
## 2536                                                                 0
## 2537                                                                78
## 2538                                                                68
## 2539                                                                 0
## 2540                                                                 0
## 2541                                                                77
## 2542                                                                20
## 2543                                                               102
## 2544                                                                38
## 2545                                                                75
## 2546                                                                65
## 2547                                                                 *
## 2548                                                                 *
## 2549                                                                 *
## 2550                                                                 *
## 2551                                                                 0
## 2552                                                                 *
## 2553                                                                 *
## 2554                                                                 *
## 2555                                                                 0
## 2556                                                                 8
## 2557                                                                16
## 2558                                                                 *
## 2559                                                                 *
## 2560                                                                 9
## 2561                                                                 0
## 2562                                                                 5
## 2563                                                                 0
## 2564                                                                 0
## 2565                                                                13
## 2566                                                                 0
## 2567                                                                 0
## 2568                                                                 0
## 2569                                                                 0
## 2570                                                                 0
## 2571                                                                 0
## 2572                                                                 0
## 2573                                                                 *
## 2574                                                                 0
## 2575                                                                 0
## 2576                                                                 0
## 2577                                                                 0
## 2578                                                                 0
## 2579                                                                13
## 2580                                                                 0
## 2581                                                                18
## 2582                                                                91
## 2583                                                               129
## 2584                                                               609
## 2585                                                               118
## 2586                                                                30
## 2587                                                               204
## 2588                                                                55
## 2589                                                                14
## 2590                                                              1117
## 2591                                                                 0
## 2592                                                                 0
## 2593                                                                 0
## 2594                                                                11
## 2595                                                                51
## 2596                                                                14
## 2597                                                                 *
## 2598                                                                 *
## 2599                                                                 0
## 2600                                                                62
## 2601                                                                 0
## 2602                                                                12
## 2603                                                                28
## 2604                                                                 9
## 2605                                                                 0
## 2606                                                               149
## 2607                                                                20
## 2608                                                                78
## 2609                                                                 *
## 2610                                                                 *
## 2611                                                                 7
## 2612                                                                14
## 2613                                                                 5
## 2614                                                                11
## 2615                                                                47
## 2616                                                                 0
## 2617                                                                 6
## 2618                                                                 *
## 2619                                                                 *
## 2620                                                                 *
## 2621                                                                22
## 2622                                                                20
## 2623                                                                27
## 2624                                                                16
## 2625                                                                 *
## 2626                                                                 6
## 2627                                                                 *
## 2628                                                                40
## 2629                                                                12
## 2630                                                                 *
## 2631                                                                44
## 2632                                                                 *
## 2633                                                                12
## 2634                                                                 *
## 2635                                                                 *
## 2636                                                                 7
## 2637                                                                13
## 2638                                                                25
## 2639                                                                38
## 2640                                                                 0
## 2641                                                                 *
## 2642                                                                 0
## 2643                                                                 *
## 2644                                                                 0
## 2645                                                                 *
## 2646                                                                 *
## 2647                                                                 0
## 2648                                                               156
## 2649                                                                 7
## 2650                                                                29
## 2651                                                                28
## 2652                                                                36
## 2653                                                                 0
## 2654                                                                52
## 2655                                                                 5
## 2656                                                                 *
## 2657                                                               116
## 2658                                                                 7
## 2659                                                                22
## 2660                                                                 9
## 2661                                                                17
## 2662                                                                84
## 2663                                                                48
## 2664                                                                 *
## 2665                                                                 *
## 2666                                                                 6
## 2667                                                                10
## 2668                                                                 *
## 2669                                                                 7
## 2670                                                                13
## 2671                                                                 9
## 2672                                                                 6
## 2673                                                                 *
## 2674                                                                 *
## 2675                                                                28
## 2676                                                                 *
## 2677                                                                53
## 2678                                                                 *
## 2679                                                                11
## 2680                                                                 6
## 2681                                                                 *
## 2682                                                               190
## 2683                                                                38
## 2684                                                                19
## 2685                                                                24
## 2686                                                                 *
## 2687                                                                 *
## 2688                                                                17
## 2689                                                                10
## 2690                                                                 8
## 2691                                                                70
## 2692                                                                21
## 2693                                                                60
## 2694                                                                29
## 2695                                                                 9
## 2696                                                               130
## 2697                                                                22
## 2698                                                                 8
## 2699                                                                33
## 2700                                                                69
## 2701                                                                70
## 2702                                                                 9
## 2703                                                                22
## 2704                                                                60
## 2705                                                                28
## 2706                                                                 9
## 2707                                                               239
## 2708                                                                20
## 2709                                                                32
## 2710                                                                 9
## 2711                                                                 6
## 2712                                                                22
## 2713                                                                 *
## 2714                                                                 6
## 2715                                                                 7
## 2716                                                                19
## 2717                                                                 *
## 2718                                                                38
## 2719                                                                10
## 2720                                                                20
## 2721                                                                 5
## 2722                                                                10
## 2723                                                                 *
## 2724                                                                24
## 2725                                                                15
## 2726                                                                 *
## 2727                                                                11
## 2728                                                                14
## 2729                                                                96
## 2730                                                                 *
## 2731                                                                 *
## 2732                                                                55
## 2733                                                                 5
## 2734                                                                15
## 2735                                                                 8
## 2736                                                               331
## 2737                                                                14
## 2738                                                                15
## 2739                                                                26
## 2740                                                                 0
## 2741                                                                 8
## 2742                                                                14
## 2743                                                                 *
## 2744                                                                 8
## 2745                                                                15
## 2746                                                                70
## 2747                                                                 0
## 2748                                                                13
## 2749                                                                61
## 2750                                                                 *
## 2751                                                               126
## 2752                                                               172
## 2753                                                                93
## 2754                                                               165
## 2755                                                                13
## 2756                                                                 0
## 2757                                                                 6
## 2758                                                                53
## 2759                                                                 0
## 2760                                                                35
## 2761                                                                18
## 2762                                                               305
## 2763                                                                26
## 2764                                                                13
## 2765                                                                18
## 2766                                                                13
## 2767                                                                24
## 2768                                                                69
## 2769                                                                24
## 2770                                                                 0
## 2771                                                                 0
## 2772                                                                 0
## 2773                                                                 0
## 2774                                                                 0
## 2775                                                                 0
## 2776                                                                 8
## 2777                                                                62
## 2778                                                               156
## 2779                                                                 7
## 2780                                                                 *
## 2781                                                                 *
## 2782                                                                21
## 2783                                                                 0
## 2784                                                                 0
## 2785                                                                 0
## 2786                                                                 0
## 2787                                                                 0
## 2788                                                                 0
## 2789                                                                 0
## 2790                                                                 0
## 2791                                                                 0
## 2792                                                                 0
## 2793                                                                 0
## 2794                                                                 0
## 2795                                                                 0
## 2796                                                                 0
## 2797                                                                 0
## 2798                                                                 0
## 2799                                                                 0
## 2800                                                                 0
## 2801                                                                 0
## 2802                                                                 0
## 2803                                                                 0
## 2804                                                                 0
## 2805                                                               209
## 2806                                                                21
## 2807                                                                59
## 2808                                                                 6
## 2809                                                                 9
## 2810                                                                35
## 2811                                                                63
## 2812                                                                 9
## 2813                                                                20
## 2814                                                                12
## 2815                                                                 *
## 2816                                                                 0
## 2817                                                                33
## 2818                                                                10
## 2819                                                               162
## 2820                                                               273
## 2821                                                                30
## 2822                                                               241
## 2823                                                               247
## 2824                                                                38
## 2825                                                                98
## 2826                                                                 *
## 2827                                                                 9
## 2828                                                                 6
## 2829                                                                42
## 2830                                                                 0
## 2831                                                                 0
## 2832                                                                 0
## 2833                                                                10
## 2834                                                                 *
## 2835                                                                75
## 2836                                                                62
## 2837                                                                90
## 2838                                                                14
## 2839                                                                32
## 2840                                                                66
## 2841                                                               193
## 2842                                                               172
## 2843                                                                11
## 2844                                                                59
## 2845                                                                85
## 2846                                                               330
## 2847                                                               531
## 2848                                                               243
## 2849                                                                 *
## 2850                                                               656
## 2851                                                                72
## 2852                                                               621
## 2853                                                               173
## 2854                                                                40
## 2855                                                               151
## 2856                                                               481
## 2857                                                               430
## 2858                                                               359
## 2859                                                               338
## 2860                                                               355
## 2861                                                                96
## 2862                                                               168
## 2863                                                               140
## 2864                                                               353
## 2865                                                                 *
## 2866                                                               291
## 2867                                                               132
## 2868                                                               100
## 2869                                                               310
## 2870                                                               152
## 2871                                                               365
## 2872                                                               138
## 2873                                                               118
## 2874                                                                80
## 2875                                                                89
## 2876                                                                12
## 2877                                                               125
## 2878                                                                22
## 2879                                                                67
## 2880                                                                 7
## 2881                                                                 *
## 2882                                                                39
## 2883                                                                29
## 2884                                                                 *
## 2885                                                                15
## 2886                                                                29
## 2887                                                                27
## 2888                                                               246
## 2889                                                                 0
## 2890                                                                 0
## 2891                                                               133
## 2892                                                                 0
## 2893                                                                 0
## 2894                                                                80
## 2895                                                                 *
## 2896                                                                18
## 2897                                                                18
## 2898                                                                 0
## 2899                                                                 0
## 2900                                                                 0
## 2901                                                               317
## 2902                                                                 9
## 2903                                                                 *
## 2904                                                                29
## 2905                                                               157
## 2906                                                                81
## 2907                                                                24
## 2908                                                                45
## 2909                                                                 0
## 2910                                                                34
## 2911                                                                 *
## 2912                                                                 0
## 2913                                                                 5
## 2914                                                               122
## 2915                                                                 *
## 2916                                                               164
## 2917                                                                13
## 2918                                                                16
## 2919                                                                 5
## 2920                                                                66
## 2921                                                                 9
## 2922                                                                 8
## 2923                                                                15
## 2924                                                               274
## 2925                                                                 5
## 2926                                                                53
## 2927                                                                17
## 2928                                                                 0
## 2929                                                                83
## 2930                                                                85
## 2931                                                                40
## 2932                                                                 *
## 2933                                                                 *
## 2934                                                                72
## 2935                                                                17
## 2936                                                               113
## 2937                                                                47
## 2938                                                                 0
## 2939                                                                 0
## 2940                                                                 0
## 2941                                                                 0
## 2942                                                                37
## 2943                                                                24
## 2944                                                                 0
## 2945                                                                 0
## 2946                                                                 0
## 2947                                                                 0
## 2948                                                                 0
## 2949                                                                24
## 2950                                                               118
## 2951                                                                63
## 2952                                                                49
## 2953                                                                52
## 2954                                                                86
## 2955                                                                41
## 2956                                                                 0
## 2957                                                                44
## 2958                                                                13
## 2959                                                               608
## 2960                                                                 0
## 2961                                                                 0
## 2962                                                               210
## 2963                                                               253
## 2964                                                               132
## 2965                                                                20
## 2966                                                                13
## 2967                                                                 7
## 2968                                                                 0
## 2969                                                                 7
## 2970                                                                 0
## 2971                                                                 0
## 2972                                                                 0
## 2973                                                                 0
## 2974                                                                 0
## 2975                                                                 *
## 2976                                                                 6
## 2977                                                                 7
## 2978                                                                 *
## 2979                                                                 5
## 2980                                                                 0
## 2981                                                                 0
## 2982                                                                13
## 2983                                                                51
## 2984                                                                33
## 2985                                                                30
## 2986                                                                 7
## 2987                                                                 0
## 2988                                                                 0
## 2989                                                                 0
## 2990                                                                 0
## 2991                                                                 0
## 2992                                                                 0
## 2993                                                                 0
## 2994                                                                 0
## 2995                                                                 0
## 2996                                                                 0
## 2997                                                                 0
## 2998                                                                 0
## 2999                                                                 0
## 3000                                                                 0
## 3001                                                                 0
## 3002                                                                 0
## 3003                                                                 0
## 3004                                                                 0
## 3005                                                                 0
## 3006                                                                 0
## 3007                                                                 0
## 3008                                                                 0
## 3009                                                                 0
## 3010                                                                 0
## 3011                                                                 0
## 3012                                                                 0
## 3013                                                                 0
## 3014                                                                 0
## 3015                                                                 0
## 3016                                                                 0
## 3017                                                                 0
## 3018                                                                 0
## 3019                                                                 0
## 3020                                                                 0
## 3021                                                                 0
## 3022                                                                 0
## 3023                                                                 0
## 3024                                                                 0
## 3025                                                                 0
## 3026                                                                33
## 3027                                                               293
## 3028                                                                32
## 3029                                                               119
## 3030                                                                25
## 3031                                                                22
## 3032                                                                21
## 3033                                                                27
## 3034                                                               279
## 3035                                                                64
## 3036                                                               241
## 3037                                                                47
## 3038                                                                78
## 3039                                                               167
## 3040                                                               158
## 3041                                                                28
## 3042                                                                95
## 3043                                                                76
## 3044                                                                12
## 3045                                                                13
## 3046                                                                 9
## 3047                                                                32
## 3048                                                                47
## 3049                                                                24
## 3050                                                               140
## 3051                                                                80
## 3052                                                                12
## 3053                                                                 *
## 3054                                                                 *
## 3055                                                                 0
## 3056                                                                 0
## 3057                                                                 *
## 3058                                                                 *
## 3059                                                                 *
## 3060                                                                 0
## 3061                                                                 0
## 3062                                                                 0
## 3063                                                                 *
## 3064                                                                 0
## 3065                                                                 0
## 3066                                                                 0
## 3067                                                                 *
## 3068                                                                 *
## 3069                                                                 0
## 3070                                                                 0
## 3071                                                                 0
## 3072                                                                 0
## 3073                                                                 0
## 3074                                                                 0
## 3075                                                                 0
## 3076                                                                 0
## 3077                                                                 0
## 3078                                                                 *
## 3079                                                                 0
## 3080                                                                 0
## 3081                                                                 0
## 3082                                                                 0
## 3083                                                                 0
## 3084                                                                 0
## 3085                                                                 0
## 3086                                                                 0
## 3087                                                                 0
## 3088                                                                 0
## 3089                                                                 0
## 3090                                                                 0
## 3091                                                                 0
## 3092                                                                 *
## 3093                                                                 0
## 3094                                                                 0
## 3095                                                                 0
## 3096                                                                 0
## 3097                                                                 0
## 3098                                                                 0
## 3099                                                                 *
## 3100                                                                 0
## 3101                                                                 *
## 3102                                                                 0
## 3103                                                                 0
## 3104                                                                 0
## 3105                                                                 0
## 3106                                                                 0
## 3107                                                                 0
## 3108                                                                 0
## 3109                                                                 0
## 3110                                                                 0
## 3111                                                                 0
## 3112                                                                 0
## 3113                                                                 0
## 3114                                                                 0
## 3115                                                                 0
## 3116                                                                 0
## 3117                                                                 0
## 3118                                                                 0
## 3119                                                                 0
## 3120                                                                 0
## 3121                                                                 0
## 3122                                                                 0
## 3123                                                                 0
## 3124                                                                 0
## 3125                                                                 0
## 3126                                                                 0
## 3127                                                                 0
## 3128                                                                 0
## 3129                                                                 7
## 3130                                                                 0
## 3131                                                                 0
## 3132                                                                 *
## 3133                                                                16
## 3134                                                                 8
## 3135                                                                 0
## 3136                                                                 0
## 3137                                                               149
## 3138                                                                 *
## 3139                                                                 0
## 3140                                                                 *
## 3141                                                                 5
## 3142                                                                17
## 3143                                                                68
## 3144                                                                29
## 3145                                                                 9
## 3146                                                                25
## 3147                                                               111
## 3148                                                                31
## 3149                                                                54
## 3150                                                                17
## 3151                                                                19
## 3152                                                                19
## 3153                                                                25
## 3154                                                                20
## 3155                                                                79
## 3156                                                                 5
## 3157                                                                 *
## 3158                                                                10
## 3159                                                                60
## 3160                                                                10
## 3161                                                                12
## 3162                                                                24
## 3163                                                                28
## 3164                                                                15
## 3165                                                                17
## 3166                                                                24
## 3167                                                                15
## 3168                                                                 0
## 3169                                                                20
## 3170                                                                 0
## 3171                                                                21
## 3172                                                                16
## 3173                                                                26
## 3174                                                                31
## 3175                                                                27
## 3176                                                                 0
## 3177                                                                 0
## 3178                                                                 0
## 3179                                                                 0
## 3180                                                                 0
## 3181                                                                 0
## 3182                                                                 0
## 3183                                                                 0
## 3184                                                                 0
## 3185                                                                 9
## 3186                                                                 0
## 3187                                                                19
## 3188                                                                32
## 3189                                                                 0
## 3190                                                                 *
## 3191                                                                16
## 3192                                                                 7
## 3193                                                                17
## 3194                                                                14
## 3195                                                                17
## 3196                                                                 *
## 3197                                                                17
## 3198                                                                 *
## 3199                                                                 0
## 3200                                                                 0
## 3201                                                                 *
## 3202                                                                22
## 3203                                                                 *
## 3204                                                                 0
## 3205                                                                16
## 3206                                                                 8
## 3207                                                                 0
## 3208                                                                15
## 3209                                                                10
## 3210                                                                13
## 3211                                                                 *
## 3212                                                                 7
## 3213                                                                15
## 3214                                                                11
## 3215                                                                16
## 3216                                                                 8
## 3217                                                                 5
## 3218                                                                 0
## 3219                                                                 0
## 3220                                                                 *
## 3221                                                                 0
## 3222                                                                20
## 3223                                                                44
## 3224                                                               105
## 3225                                                                 8
## 3226                                                                 9
## 3227                                                                24
## 3228                                                                31
## 3229                                                                31
## 3230                                                                11
## 3231                                                                52
## 3232                                                                18
## 3233                                                                17
## 3234                                                                34
## 3235                                                                 *
## 3236                                                                 0
## 3237                                                                 *
## 3238                                                                17
## 3239                                                                 *
## 3240                                                                 *
## 3241                                                                 *
## 3242                                                                 0
## 3243                                                                 0
## 3244                                                                39
## 3245                                                                 *
## 3246                                                                19
## 3247                                                                10
## 3248                                                                13
## 3249                                                                11
## 3250                                                                22
## 3251                                                                36
## 3252                                                                58
## 3253                                                                79
## 3254                                                                39
## 3255                                                                 0
## 3256                                                                 *
## 3257                                                                 *
## 3258                                                                21
## 3259                                                                 0
## 3260                                                                12
## 3261                                                                21
## 3262                                                                43
## 3263                                                                19
## 3264                                                                71
## 3265                                                                 *
## 3266                                                                20
## 3267                                                                38
## 3268                                                                 6
## 3269                                                                 *
## 3270                                                               416
## 3271                                                                47
## 3272                                                                 0
## 3273                                                                82
## 3274                                                                 5
## 3275                                                                 8
## 3276                                                                73
## 3277                                                                 8
## 3278                                                                19
## 3279                                                                35
## 3280                                                                 6
## 3281                                                                18
## 3282                                                                13
## 3283                                                                 0
## 3284                                                                 7
## 3285                                                                 *
## 3286                                                                14
## 3287                                                                 *
## 3288                                                                 *
## 3289                                                                 0
## 3290                                                                 0
## 3291                                                                 5
## 3292                                                                79
## 3293                                                                 0
## 3294                                                                 0
## 3295                                                                17
## 3296                                                               187
## 3297                                                                 5
## 3298                                                                 0
## 3299                                                                 *
## 3300                                                                21
## 3301                                                                11
## 3302                                                                13
## 3303                                                                 *
## 3304                                                                15
## 3305                                                                 9
## 3306                                                                 5
## 3307                                                                33
## 3308                                                                 8
## 3309                                                                 *
## 3310                                                                 *
## 3311                                                                 0
## 3312                                                                23
## 3313                                                                11
## 3314                                                                 0
## 3315                                                                 0
## 3316                                                                 *
## 3317                                                                 0
## 3318                                                                41
## 3319                                                                 0
## 3320                                                                15
## 3321                                                                 9
## 3322                                                                17
## 3323                                                                28
## 3324                                                                 *
## 3325                                                                 9
## 3326                                                                26
## 3327                                                                 *
## 3328                                                                15
## 3329                                                                 *
## 3330                                                                 8
## 3331                                                                25
## 3332                                                                 0
## 3333                                                                 0
## 3334                                                                 0
## 3335                                                                 0
## 3336                                                                 0
## 3337                                                                 0
## 3338                                                                 0
## 3339                                                                 0
## 3340                                                                 0
## 3341                                                                55
## 3342                                                                 0
## 3343                                                                34
## 3344                                                                 *
## 3345                                                                27
## 3346                                                                18
## 3347                                                                 *
## 3348                                                                 8
## 3349                                                                 7
## 3350                                                                 0
## 3351                                                                 *
## 3352                                                                 *
## 3353                                                                 *
## 3354                                                                33
## 3355                                                                 8
## 3356                                                                40
## 3357                                                                29
## 3358                                                                64
## 3359                                                                70
## 3360                                                                28
## 3361                                                                23
## 3362                                                                 9
## 3363                                                                97
## 3364                                                                24
## 3365                                                               119
## 3366                                                                 5
## 3367                                                                52
## 3368                                                               117
## 3369                                                                20
## 3370                                                                33
## 3371                                                                19
## 3372                                                                19
## 3373                                                                32
## 3374                                                                18
## 3375                                                                10
## 3376                                                                47
## 3377                                                                23
## 3378                                                                11
## 3379                                                                67
## 3380                                                                16
## 3381                                                               206
## 3382                                                                72
## 3383                                                                 5
## 3384                                                                55
## 3385                                                                23
## 3386                                                                36
## 3387                                                                 0
## 3388                                                                 *
## 3389                                                                 6
## 3390                                                                 *
## 3391                                                                 *
## 3392                                                                 0
## 3393                                                               221
## 3394                                                                58
## 3395                                                               387
## 3396                                                               137
## 3397                                                                33
## 3398                                                               760
## 3399                                                               124
## 3400                                                               608
## 3401                                                               121
## 3402                                                               890
## 3403                                                               175
## 3404                                                               169
## 3405                                                                52
## 3406                                                                48
## 3407                                                               310
## 3408                                                               550
## 3409                                                                95
## 3410                                                                84
## 3411                                                               477
## 3412                                                                42
## 3413                                                               109
## 3414                                                               232
## 3415                                                               390
## 3416                                                               142
## 3417                                                               153
## 3418                                                                30
## 3419                                                                36
## 3420                                                                39
## 3421                                                                46
## 3422                                                                84
## 3423                                                                62
## 3424                                                                43
## 3425                                                               291
## 3426                                                               139
## 3427                                                                40
## 3428                                                                48
## 3429                                                               227
## 3430                                                                 0
## 3431                                                                 0
## 3432                                                                 0
## 3433                                                                23
## 3434                                                               135
## 3435                                                               523
## 3436                                                               407
## 3437                                                                33
## 3438                                                                14
## 3439                                                                 0
## 3440                                                                 9
## 3441                                                                20
## 3442                                                                58
## 3443                                                                 9
## 3444                                                                12
## 3445                                                                13
## 3446                                                                96
## 3447                                                                 9
## 3448                                                                17
## 3449                                                                23
## 3450                                                                32
## 3451                                                               111
## 3452                                                                45
## 3453                                                                64
## 3454                                                                20
## 3455                                                                62
## 3456                                                                 0
## 3457                                                                 0
## 3458                                                                56
## 3459                                                                 *
## 3460                                                               131
## 3461                                                                16
## 3462                                                               166
## 3463                                                                 0
## 3464                                                                 5
## 3465                                                                33
## 3466                                                                14
## 3467                                                                54
## 3468                                                                 0
## 3469                                                                 0
## 3470                                                                 0
## 3471                                                                12
## 3472                                                               206
## 3473                                                                30
## 3474                                                                28
## 3475                                                                13
## 3476                                                                16
## 3477                                                                 0
## 3478                                                                 0
## 3479                                                                 0
## 3480                                                                 0
## 3481                                                                 0
## 3482                                                                 0
## 3483                                                                 0
## 3484                                                                 0
## 3485                                                                 *
## 3486                                                                 0
## 3487                                                                 0
## 3488                                                                 *
## 3489                                                                 *
## 3490                                                                 0
## 3491                                                                 0
## 3492                                                                 0
## 3493                                                                 0
## 3494                                                                 0
## 3495                                                                 0
## 3496                                                                 0
## 3497                                                                 0
## 3498                                                                 0
## 3499                                                                 0
## 3500                                                                 0
## 3501                                                                 0
## 3502                                                                 0
## 3503                                                                 0
## 3504                                                                 0
## 3505                                                                 0
## 3506                                                                 0
## 3507                                                                 0
## 3508                                                                 0
## 3509                                                                 0
## 3510                                                                 0
## 3511                                                                 0
## 3512                                                                 0
## 3513                                                                 0
## 3514                                                                 0
## 3515                                                                 0
## 3516                                                                 0
## 3517                                                                 0
## 3518                                                                 0
## 3519                                                                 0
## 3520                                                                 0
## 3521                                                                 0
## 3522                                                                 0
## 3523                                                                 0
## 3524                                                                 0
## 3525                                                                 0
## 3526                                                                 0
## 3527                                                                 0
## 3528                                                                 0
## 3529                                                                 0
## 3530                                                                 0
## 3531                                                                11
## 3532                                                                 *
## 3533                                                                 0
## 3534                                                                 0
## 3535                                                                 0
## 3536                                                                 *
## 3537                                                                 0
## 3538                                                                 9
## 3539                                                                 0
## 3540                                                                 0
## 3541                                                                 0
## 3542                                                                 0
## 3543                                                                 0
## 3544                                                                 0
## 3545                                                                 0
## 3546                                                                 *
## 3547                                                                 0
## 3548                                                                 0
## 3549                                                                 0
## 3550                                                                 0
## 3551                                                                 0
## 3552                                                                 0
## 3553                                                                 0
## 3554                                                                 0
## 3555                                                                 0
## 3556                                                                 0
## 3557                                                                 0
## 3558                                                                 0
## 3559                                                                 0
## 3560                                                                 0
## 3561                                                                 0
## 3562                                                                 0
## 3563                                                                 0
## 3564                                                                 0
## 3565                                                                 0
## 3566                                                                 0
## 3567                                                                 0
## 3568                                                                 0
## 3569                                                                 0
## 3570                                                                 0
## 3571                                                                 0
## 3572                                                                 0
## 3573                                                                 0
## 3574                                                                 0
## 3575                                                              2757
## 3576                                                               484
## 3577                                                               233
## 3578                                                                 0
## 3579                                                               136
## 3580                                                                10
## 3581                                                               244
## 3582                                                                 *
## 3583                                                                 *
## 3584                                                                46
## 3585                                                                 6
## 3586                                                                 7
## 3587                                                                10
## 3588                                                                26
## 3589                                                                24
## 3590                                                                 *
## 3591                                                                 0
## 3592                                                                 7
## 3593                                                                 *
## 3594                                                                 7
## 3595                                                                 *
## 3596                                                                32
## 3597                                                                47
## 3598                                                                39
## 3599                                                                 9
## 3600                                                                17
## 3601                                                                 0
## 3602                                                                23
## 3603                                                                59
## 3604                                                                56
## 3605                                                                 8
## 3606                                                                32
## 3607                                                               163
## 3608                                                                 0
## 3609                                                                12
## 3610                                                                 0
## 3611                                                                 0
## 3612                                                                 0
## 3613                                                                33
## 3614                                                                12
## 3615                                                               125
## 3616                                                                28
## 3617                                                                25
## 3618                                                                35
## 3619                                                                43
## 3620                                                                22
## 3621                                                                13
## 3622                                                                 0
## 3623                                                                 *
## 3624                                                               151
## 3625                                                                16
## 3626                                                                 5
## 3627                                                                 *
## 3628                                                                50
## 3629                                                                83
## 3630                                                                34
## 3631                                                                 0
## 3632                                                                 0
## 3633                                                                36
## 3634                                                               124
## 3635                                                                86
## 3636                                                                 0
## 3637                                                                 0
## 3638                                                               200
## 3639                                                               239
## 3640                                                                29
## 3641                                                                 0
## 3642                                                                 0
## 3643                                                                94
## 3644                                                                 0
## 3645                                                                 0
## 3646                                                                33
## 3647                                                                49
## 3648                                                                 0
## 3649                                                                 0
## 3650                                                                15
## 3651                                                                 0
## 3652                                                                 0
## 3653                                                                 0
## 3654                                                                 *
## 3655                                                               617
## 3656                                                                 0
## 3657                                                                 *
## 3658                                                                 *
## 3659                                                                31
## 3660                                                              1324
## 3661                                                                 0
## 3662                                                                47
## 3663                                                                 0
## 3664                                                                 7
## 3665                                                                 6
## 3666                                                                 8
## 3667                                                                 *
## 3668                                                                 *
## 3669                                                                 *
## 3670                                                                 0
## 3671                                                                 *
## 3672                                                                92
## 3673                                                                 *
## 3674                                                                 *
## 3675                                                                 0
## 3676                                                                 0
## 3677                                                                19
## 3678                                                                65
## 3679                                                                 *
## 3680                                                                 *
## 3681                                                                 *
## 3682                                                                 *
## 3683                                                                 *
## 3684                                                                 *
## 3685                                                                 *
## 3686                                                                 *
## 3687                                                                29
## 3688                                                                 *
## 3689                                                                 *
## 3690                                                               182
## 3691                                                               211
## 3692                                                               570
## 3693                                                                80
## 3694                                                                79
## 3695                                                               144
## 3696                                                                 *
## 3697                                                                 0
## 3698                                                                 *
## 3699                                                               322
## 3700                                                                 0
## 3701                                                               112
## 3702                                                               482
## 3703                                                               522
## 3704                                                               446
## 3705                                                               430
## 3706                                                               119
## 3707                                                                21
## 3708                                                                 *
## 3709                                                                 *
## 3710                                                                 *
## 3711                                                                 *
## 3712                                                                 *
## 3713                                                                 *
## 3714                                                                 *
## 3715                                                                 0
## 3716                                                                 0
## 3717                                                                 *
## 3718                                                                 0
## 3719                                                                 *
## 3720                                                                 *
## 3721                                                                 *
## 3722                                                                 *
## 3723                                                                14
## 3724                                                                 0
## 3725                                                                 *
## 3726                                                                 *
## 3727                                                                 *
## 3728                                                                 *
## 3729                                                                 *
## 3730                                                                 *
## 3731                                                                 *
## 3732                                                                 *
## 3733                                                                 *
## 3734                                                                 *
## 3735                                                               118
## 3736                                                                34
## 3737                                                                 0
## 3738                                                                26
## 3739                                                               125
## 3740                                                                 9
## 3741                                                                 0
## 3742                                                                 0
## 3743                                                                 0
## 3744                                                                 0
## 3745                                                                25
## 3746                                                                 *
## 3747                                                                12
## 3748                                                                13
## 3749                                                                48
## 3750                                                                 0
## 3751                                                                 0
## 3752                                                                 *
## 3753                                                                13
## 3754                                                                 *
## 3755                                                                 5
## 3756                                                                25
## 3757                                                                29
## 3758                                                                15
## 3759                                                                12
## 3760                                                                 *
## 3761                                                                 0
## 3762                                                                 *
## 3763                                                                25
## 3764                                                                 0
## 3765                                                                 0
## 3766                                                                 0
## 3767                                                               111
## 3768                                                                30
## 3769                                                                37
## 3770                                                               205
## 3771                                                                66
## 3772                                                                15
## 3773                                                                 0
## 3774                                                                41
## 3775                                                                 9
## 3776                                                                30
## 3777                                                                 7
## 3778                                                                32
## 3779                                                                16
## 3780                                                               171
## 3781                                                                54
## 3782                                                               175
## 3783                                                                27
## 3784                                                                24
## 3785                                                                 7
## 3786                                                                 *
## 3787                                                               348
## 3788                                                                22
## 3789                                                                69
## 3790                                                                13
## 3791                                                                19
## 3792                                                                18
## 3793                                                                 9
## 3794                                                                20
## 3795                                                                13
## 3796                                                                23
## 3797                                                                11
## 3798                                                                 7
## 3799                                                                 9
## 3800                                                                 6
## 3801                                                               140
## 3802                                                                 8
## 3803                                                                36
## 3804                                                                16
## 3805                                                               134
## 3806                                                                 8
## 3807                                                                81
## 3808                                                                 *
## 3809                                                                32
## 3810                                                                12
## 3811                                                                42
## 3812                                                                 *
## 3813                                                                28
## 3814                                                                88
## 3815                                                                27
## 3816                                                               137
## 3817                                                                30
## 3818                                                                 0
## 3819                                                                78
## 3820                                                               188
## 3821                                                               214
## 3822                                                                28
## 3823                                                                42
## 3824                                                                 0
## 3825                                                                17
## 3826                                                              1392
## 3827                                                                 0
## 3828                                                                53
## 3829                                                                 0
## 3830                                                                11
## 3831                                                                 0
## 3832                                                                96
## 3833                                                                25
## 3834                                                                33
## 3835                                                                15
## 3836                                                                 *
## 3837                                                                 0
## 3838                                                                 0
## 3839                                                                38
## 3840                                                                42
## 3841                                                                17
## 3842                                                                44
## 3843                                                                11
## 3844                                                               327
## 3845                                                                15
## 3846                                                                 *
## 3847                                                                 7
## 3848                                                               152
## 3849                                                                 8
## 3850                                                                 *
## 3851                                                               103
## 3852                                                                10
## 3853                                                                10
## 3854                                                                 0
## 3855                                                                89
## 3856                                                                63
## 3857                                                               153
## 3858                                                                17
## 3859                                                                28
## 3860                                                                 *
## 3861                                                                 0
## 3862                                                                 0
## 3863                                                                50
## 3864                                                                 0
## 3865                                                                 *
## 3866                                                               106
## 3867                                                                51
## 3868                                                                53
## 3869                                                               171
## 3870                                                               136
## 3871                                                                51
## 3872                                                                43
## 3873                                                               307
## 3874                                                               189
## 3875                                                                53
## 3876                                                               379
## 3877                                                              1029
## 3878                                                                10
## 3879                                                               193
## 3880                                                                87
## 3881                                                               111
## 3882                                                                55
## 3883                                                                62
## 3884                                                               121
## 3885                                                                20
## 3886                                                                20
## 3887                                                                36
## 3888                                                               108
## 3889                                                                62
## 3890                                                               134
## 3891                                                                14
## 3892                                                               115
## 3893                                                                61
## 3894                                                                33
## 3895                                                                93
## 3896                                                                 0
## 3897                                                                20
## 3898                                                                 0
## 3899                                                                 7
## 3900                                                                 0
## 3901                                                                 0
## 3902                                                                 0
## 3903                                                                 *
## 3904                                                                 0
## 3905                                                               109
## 3906                                                               333
## 3907                                                                 0
## 3908                                                                 0
## 3909                                                                 0
## 3910                                                                 0
## 3911                                                                 0
## 3912                                                                 0
## 3913                                                                 0
## 3914                                                                 0
## 3915                                                                 0
## 3916                                                                 0
## 3917                                                                 0
## 3918                                                                 0
## 3919                                                                 0
## 3920                                                                 0
## 3921                                                                 0
## 3922                                                                 0
## 3923                                                                 0
## 3924                                                                 0
## 3925                                                                 0
## 3926                                                                 0
## 3927                                                                 0
## 3928                                                                 0
## 3929                                                                 0
## 3930                                                                 0
## 3931                                                                 0
## 3932                                                                 0
## 3933                                                                 0
## 3934                                                                 0
## 3935                                                                 0
## 3936                                                                 0
## 3937                                                                 0
## 3938                                                                 0
## 3939                                                                 0
## 3940                                                                 0
## 3941                                                                 0
## 3942                                                                 0
## 3943                                                                 0
## 3944                                                                 0
## 3945                                                                 0
## 3946                                                                 0
## 3947                                                                 0
## 3948                                                                 0
## 3949                                                                 0
## 3950                                                                 0
## 3951                                                                 0
## 3952                                                                 0
## 3953                                                                 0
## 3954                                                                 0
## 3955                                                                 0
## 3956                                                                 0
## 3957                                                                 0
## 3958                                                                 0
## 3959                                                                 0
## 3960                                                                 0
## 3961                                                                 0
## 3962                                                                 0
## 3963                                                                 0
## 3964                                                                 0
## 3965                                                                 0
## 3966                                                                 0
## 3967                                                                 0
## 3968                                                                 0
## 3969                                                                 0
## 3970                                                                 0
## 3971                                                                 0
## 3972                                                                 0
## 3973                                                                 0
## 3974                                                                 0
## 3975                                                                 0
## 3976                                                                 0
## 3977                                                                 0
## 3978                                                                 0
## 3979                                                                 0
## 3980                                                                 0
## 3981                                                                 0
## 3982                                                                 0
## 3983                                                                 0
## 3984                                                                 0
## 3985                                                                 0
## 3986                                                                 0
## 3987                                                                 0
## 3988                                                                 0
## 3989                                                                 0
## 3990                                                                 0
## 3991                                                                 0
## 3992                                                                 0
## 3993                                                                 0
## 3994                                                                 0
## 3995                                                                 0
## 3996                                                                 0
## 3997                                                                 0
## 3998                                                                 0
## 3999                                                                 0
## 4000                                                                 0
## 4001                                                                 0
## 4002                                                                 0
## 4003                                                                 0
## 4004                                                                 0
## 4005                                                                 0
## 4006                                                                 0
## 4007                                                                 0
## 4008                                                                 0
## 4009                                                                 0
## 4010                                                                 0
## 4011                                                                 0
## 4012                                                                 0
## 4013                                                                 0
## 4014                                                                 0
## 4015                                                                 0
## 4016                                                                 0
## 4017                                                                 0
## 4018                                                                 0
## 4019                                                                 0
## 4020                                                                 0
## 4021                                                                 0
## 4022                                                                 0
## 4023                                                                 0
## 4024                                                                 0
## 4025                                                                 0
## 4026                                                                 0
## 4027                                                                 0
## 4028                                                                 0
## 4029                                                                 0
## 4030                                                                 0
## 4031                                                                 0
## 4032                                                                 *
## 4033                                                                 0
## 4034                                                                 0
## 4035                                                                 0
## 4036                                                                 0
## 4037                                                                 0
## 4038                                                                 0
## 4039                                                                 0
## 4040                                                                 0
## 4041                                                                 0
## 4042                                                                 0
## 4043                                                                 0
## 4044                                                                 0
## 4045                                                                 0
## 4046                                                                15
## 4047                                                                67
## 4048                                                                 0
## 4049                                                                 *
## 4050                                                                 0
## 4051                                                                 0
## 4052                                                                 0
## 4053                                                                 0
## 4054                                                                 0
## 4055                                                                 0
## 4056                                                                 0
## 4057                                                                 0
## 4058                                                                 0
## 4059                                                                 0
## 4060                                                                 0
## 4061                                                                 8
## 4062                                                                 6
## 4063                                                                20
## 4064                                                                10
## 4065                                                                 *
## 4066                                                                 *
## 4067                                                                 5
## 4068                                                                 0
## 4069                                                                 0
## 4070                                                                 0
## 4071                                                                 0
## 4072                                                                 0
## 4073                                                                 0
## 4074                                                                 0
## 4075                                                                 0
## 4076                                                                 0
## 4077                                                                 0
## 4078                                                                 0
## 4079                                                                 0
## 4080                                                                 0
## 4081                                                                 0
## 4082                                                                 0
## 4083                                                                 0
## 4084                                                                 0
## 4085                                                                 0
## 4086                                                                 0
## 4087                                                                 0
## 4088                                                                 0
## 4089                                                                 0
## 4090                                                                 0
## 4091                                                                 0
## 4092                                                                 0
## 4093                                                                 0
## 4094                                                                 0
## 4095                                                                 0
## 4096                                                                 0
## 4097                                                                 0
## 4098                                                                 0
## 4099                                                                 0
## 4100                                                                 0
## 4101                                                              1234
## 4102                                                                 0
## 4103                                                                 *
## 4104                                                                 0
## 4105                                                                 9
## 4106                                                                 0
## 4107                                                                 0
## 4108                                                                 0
## 4109                                                                 0
## 4110                                                                 *
## 4111                                                                 0
## 4112                                                                 0
## 4113                                                                 0
## 4114                                                                 0
## 4115                                                                 0
## 4116                                                                 0
## 4117                                                                 0
## 4118                                                                 0
## 4119                                                               183
## 4120                                                               140
## 4121                                                                31
## 4122                                                                18
## 4123                                                                 0
## 4124                                                                 9
## 4125                                                               500
## 4126                                                                 5
## 4127                                                               123
## 4128                                                               127
## 4129                                                                55
## 4130                                                               180
## 4131                                                                16
## 4132                                                                 *
## 4133                                                                 0
## 4134                                                                 0
## 4135                                                                 *
## 4136                                                                 0
## 4137                                                                 0
## 4138                                                                15
## 4139                                                               145
## 4140                                                                 0
## 4141                                                                 0
## 4142                                                                 0
## 4143                                                                 0
## 4144                                                               277
## 4145                                                               154
## 4146                                                               631
## 4147                                                               341
## 4148                                                               539
## 4149                                                               295
## 4150                                                               125
## 4151                                                                45
## 4152                                                               135
## 4153                                                                39
## 4154                                                                61
## 4155                                                                 0
## 4156                                                                 0
## 4157                                                                 0
## 4158                                                                 0
## 4159                                                                 0
## 4160                                                                 0
## 4161                                                                 0
## 4162                                                                54
## 4163                                                                 0
## 4164                                                                 0
## 4165                                                                 *
## 4166                                                                 0
## 4167                                                                 0
## 4168                                                                 0
## 4169                                                                 0
## 4170                                                               135
## 4171                                                                24
## 4172                                                                85
## 4173                                                                41
## 4174                                                                77
## 4175                                                                35
## 4176                                                               121
## 4177                                                               156
## 4178                                                               298
## 4179                                                                26
## 4180                                                                 0
## 4181                                                                 0
## 4182                                                                 0
## 4183                                                                 0
## 4184                                                                 0
## 4185                                                                 0
## 4186                                                                 0
## 4187                                                                 0
## 4188                                                                 0
## 4189                                                                 0
## 4190                                                                 0
## 4191                                                                 0
## 4192                                                                 0
## 4193                                                                 0
## 4194                                                                23
## 4195                                                                 *
## 4196                                                               162
## 4197                                                                37
## 4198                                                               172
## 4199                                                                31
## 4200                                                                 0
## 4201                                                                 0
## 4202                                                               332
## 4203                                                               291
## 4204                                                               310
## 4205                                                               428
## 4206                                                               173
## 4207                                                                39
## 4208                                                                 0
## 4209                                                                 0
## 4210                                                                 0
## 4211                                                                 0
## 4212                                                                 0
## 4213                                                                 *
## 4214                                                               138
## 4215                                                                 *
## 4216                                                                 *
## 4217                                                               195
## 4218                                                                78
## 4219                                                                15
## 4220                                                                 7
## 4221                                                                21
## 4222                                                                10
## 4223                                                                 *
## 4224                                                                 0
## 4225                                                                 0
## 4226                                                                 0
## 4227                                                                 0
## 4228                                                                 0
## 4229                                                                 0
## 4230                                                                 0
## 4231                                                                 0
## 4232                                                                 0
## 4233                                                                 0
## 4234                                                                 0
## 4235                                                                 0
## 4236                                                                 0
## 4237                                                                 0
## 4238                                                                 0
## 4239                                                              1143
## 4240                                                               105
## 4241                                                               126
## 4242                                                                14
## 4243                                                                 5
## 4244                                                                67
## 4245                                                                21
## 4246                                                                12
## 4247                                                                 *
## 4248                                                                 0
## 4249                                                                 *
## 4250                                                                 8
## 4251                                                                29
## 4252                                                                31
## 4253                                                                 0
## 4254                                                                 0
## 4255                                                                 0
## 4256                                                                 0
## 4257                                                                 0
## 4258                                                                 0
## 4259                                                                 0
## 4260                                                                 0
## 4261                                                                 0
## 4262                                                                18
## 4263                                                                32
## 4264                                                                 *
## 4265                                                                54
## 4266                                                                 0
## 4267                                                                 0
## 4268                                                                18
## 4269                                                                 0
## 4270                                                                 7
## 4271                                                                 0
## 4272                                                                 0
## 4273                                                                 0
## 4274                                                                 0
## 4275                                                                 *
## 4276                                                                 0
## 4277                                                                 *
## 4278                                                                 0
## 4279                                                                 0
## 4280                                                                 0
## 4281                                                                 *
## 4282                                                                 *
## 4283                                                                 *
## 4284                                                                 0
## 4285                                                                 *
## 4286                                                                 0
## 4287                                                                 *
## 4288                                                                 0
## 4289                                                                 0
## 4290                                                                 0
## 4291                                                                 0
## 4292                                                                 0
## 4293                                                                 0
## 4294                                                                 0
## 4295                                                                 0
## 4296                                                                 0
## 4297                                                                 0
## 4298                                                                 0
## 4299                                                                 0
## 4300                                                                 *
## 4301                                                                 *
## 4302                                                                 0
## 4303                                                                 0
## 4304                                                                 0
## 4305                                                                 0
## 4306                                                                 0
## 4307                                                                 *
## 4308                                                                 0
## 4309                                                                 0
## 4310                                                                 *
## 4311                                                                 0
## 4312                                                                 *
## 4313                                                                 0
## 4314                                                                 0
## 4315                                                                 0
## 4316                                                                 0
## 4317                                                                 0
## 4318                                                                 0
## 4319                                                                 0
## 4320                                                                 6
## 4321                                                                 5
## 4322                                                                 8
## 4323                                                                83
## 4324                                                                36
## 4325                                                                 *
## 4326                                                                11
## 4327                                                                 0
## 4328                                                                19
## 4329                                                                 0
## 4330                                                                 0
## 4331                                                                 0
## 4332                                                                 0
## 4333                                                                 0
## 4334                                                                 0
## 4335                                                                 0
## 4336                                                                 0
## 4337                                                                 0
## 4338                                                                 0
## 4339                                                                 0
## 4340                                                                 0
## 4341                                                                 0
## 4342                                                                 0
## 4343                                                                 0
## 4344                                                                 0
## 4345                                                                 0
## 4346                                                                 0
## 4347                                                                 0
## 4348                                                                 0
## 4349                                                                 0
## 4350                                                                 0
## 4351                                                                 0
## 4352                                                                 0
## 4353                                                                 0
## 4354                                                                 0
## 4355                                                                 0
## 4356                                                                 0
## 4357                                                                 0
## 4358                                                                 0
## 4359                                                                 0
## 4360                                                                 0
## 4361                                                                 0
## 4362                                                                 0
## 4363                                                                 0
## 4364                                                                 0
## 4365                                                                 0
## 4366                                                                 0
## 4367                                                                 0
## 4368                                                                 0
## 4369                                                                 0
## 4370                                                                 0
## 4371                                                                 0
## 4372                                                                 0
## 4373                                                                 0
## 4374                                                                 0
## 4375                                                                 0
## 4376                                                                 0
## 4377                                                                 0
## 4378                                                                 0
## 4379                                                                 0
## 4380                                                                 0
## 4381                                                                 0
## 4382                                                                 0
## 4383                                                                 0
## 4384                                                                 0
## 4385                                                                 0
## 4386                                                                 0
## 4387                                                                 0
## 4388                                                                 0
## 4389                                                                 0
## 4390                                                                 0
## 4391                                                                 0
## 4392                                                                 0
## 4393                                                                 0
## 4394                                                                 0
## 4395                                                                 0
## 4396                                                                 0
## 4397                                                                 0
## 4398                                                                 0
## 4399                                                                 0
## 4400                                                                 0
## 4401                                                                 0
## 4402                                                                 0
## 4403                                                                 0
## 4404                                                                 0
## 4405                                                                 0
## 4406                                                                 0
## 4407                                                                 0
## 4408                                                                 0
## 4409                                                                 0
## 4410                                                                 0
## 4411                                                                 0
## 4412                                                                 0
## 4413                                                                 0
## 4414                                                                 0
## 4415                                                                 0
## 4416                                                                 0
## 4417                                                                 0
## 4418                                                                 0
## 4419                                                                 0
## 4420                                                                 0
## 4421                                                                 0
## 4422                                                                 0
## 4423                                                                 0
## 4424                                                                 0
## 4425                                                                 0
## 4426                                                                 0
## 4427                                                                 0
## 4428                                                                 0
## 4429                                                                 0
## 4430                                                                 0
## 4431                                                                 0
## 4432                                                                 0
## 4433                                                                 0
## 4434                                                                 0
## 4435                                                                 0
## 4436                                                                 0
## 4437                                                                 0
## 4438                                                                 0
## 4439                                                                 0
## 4440                                                                 0
## 4441                                                                 0
## 4442                                                                 0
## 4443                                                                 0
## 4444                                                                 0
## 4445                                                                 0
## 4446                                                                82
## 4447                                                                63
## 4448                                                                 0
## 4449                                                                16
## 4450                                                                 *
## 4451                                                                 0
## 4452                                                                 0
## 4453                                                                 *
## 4454                                                                14
## 4455                                                                 8
## 4456                                                                19
## 4457                                                                 *
## 4458                                                               134
## 4459                                                                 0
## 4460                                                                 0
## 4461                                                                 0
## 4462                                                                 0
## 4463                                                                 0
## 4464                                                                 0
## 4465                                                                 0
## 4466                                                                 0
## 4467                                                                 0
## 4468                                                                 0
## 4469                                                                 0
## 4470                                                                 0
## 4471                                                                 0
## 4472                                                                 0
## 4473                                                                 0
## 4474                                                                 0
## 4475                                                                 0
## 4476                                                                 0
## 4477                                                                 0
## 4478                                                                 0
## 4479                                                                 0
## 4480                                                                 0
## 4481                                                                 0
## 4482                                                                 0
## 4483                                                                 0
## 4484                                                                 0
## 4485                                                                 0
## 4486                                                                 0
## 4487                                                                 0
## 4488                                                                 0
## 4489                                                                 0
## 4490                                                                 0
## 4491                                                                 0
## 4492                                                                 0
## 4493                                                                 0
## 4494                                                                 0
## 4495                                                                 0
## 4496                                                                 0
## 4497                                                                 0
## 4498                                                                 0
## 4499                                                                 0
## 4500                                                                 0
## 4501                                                                 0
## 4502                                                                 0
## 4503                                                                 0
## 4504                                                                 0
## 4505                                                                 0
## 4506                                                                 0
## 4507                                                                 0
## 4508                                                                 0
## 4509                                                                 0
## 4510                                                                 0
## 4511                                                                 0
## 4512                                                                 0
## 4513                                                                 0
## 4514                                                                 0
## 4515                                                                 0
## 4516                                                                 0
## 4517                                                                 0
## 4518                                                                 0
## 4519                                                                 0
## 4520                                                                 0
## 4521                                                                 0
## 4522                                                                 0
## 4523                                                                 0
## 4524                                                                 0
## 4525                                                                 0
## 4526                                                                 0
## 4527                                                                 0
## 4528                                                                 0
## 4529                                                                 0
## 4530                                                                 0
## 4531                                                                 0
## 4532                                                                 0
## 4533                                                                 0
## 4534                                                                 0
## 4535                                                                 0
## 4536                                                                 0
## 4537                                                                 0
## 4538                                                                 0
## 4539                                                                 0
## 4540                                                                 0
## 4541                                                                 0
## 4542                                                                19
## 4543                                                                46
## 4544                                                                12
## 4545                                                                 0
## 4546                                                                 0
## 4547                                                                 0
## 4548                                                                 0
## 4549                                                                 0
## 4550                                                                 0
## 4551                                                                 0
## 4552                                                                 0
## 4553                                                                 *
## 4554                                                                 0
## 4555                                                                 0
## 4556                                                                 0
## 4557                                                                 0
## 4558                                                                 0
## 4559                                                                 0
## 4560                                                                 0
## 4561                                                                 0
## 4562                                                                 0
## 4563                                                                 *
## 4564                                                                 0
## 4565                                                                 0
## 4566                                                                 0
## 4567                                                                 0
## 4568                                                                 0
## 4569                                                                 0
## 4570                                                                 0
## 4571                                                                 0
## 4572                                                                 0
## 4573                                                                 0
## 4574                                                                 0
## 4575                                                                 0
## 4576                                                                 0
## 4577                                                                 0
## 4578                                                                 0
## 4579                                                                 0
## 4580                                                                 0
## 4581                                                                 0
## 4582                                                                 0
## 4583                                                                 0
## 4584                                                                 0
## 4585                                                                 0
## 4586                                                                 0
## 4587                                                                 0
## 4588                                                                 0
## 4589                                                                 0
## 4590                                                                 0
## 4591                                                                 0
## 4592                                                                 0
## 4593                                                                 0
## 4594                                                                 0
## 4595                                                                 0
## 4596                                                                 0
## 4597                                                                 0
## 4598                                                                 0
## 4599                                                                 0
## 4600                                                                 0
## 4601                                                                 0
## 4602                                                                 0
## 4603                                                                 0
## 4604                                                                 0
## 4605                                                                 *
## 4606                                                                 0
## 4607                                                                 *
## 4608                                                                 0
## 4609                                                                 0
## 4610                                                                 *
## 4611                                                                 *
## 4612                                                                 0
## 4613                                                                 0
## 4614                                                                 0
## 4615                                                                 0
## 4616                                                                 0
## 4617                                                                 0
## 4618                                                                 0
## 4619                                                                 0
## 4620                                                                 0
## 4621                                                                 0
## 4622                                                                 0
## 4623                                                                70
## 4624                                                                 0
## 4625                                                                25
## 4626                                                                 *
## 4627                                                                14
## 4628                                                                 0
## 4629                                                               169
## 4630                                                                34
## 4631                                                                 0
## 4632                                                                 0
## 4633                                                                38
## 4634                                                                12
## 4635                                                                 0
## 4636                                                                 0
## 4637                                                                 0
## 4638                                                                 0
## 4639                                                                 *
## 4640                                                                 0
## 4641                                                                 0
## 4642                                                                 0
## 4643                                                                 0
## 4644                                                                 *
## 4645                                                                 0
## 4646                                                                 *
## 4647                                                                 *
## 4648                                                                 *
## 4649                                                                 *
## 4650                                                                 *
## 4651                                                                 *
## 4652                                                                 0
## 4653                                                                 0
## 4654                                                                 0
## 4655                                                                 0
## 4656                                                                 0
## 4657                                                                 *
## 4658                                                                 *
## 4659                                                                 *
## 4660                                                                 *
## 4661                                                                10
## 4662                                                                 *
## 4663                                                                 *
## 4664                                                                 *
## 4665                                                                 *
## 4666                                                                 0
## 4667                                                                 0
## 4668                                                                 *
## 4669                                                                 *
## 4670                                                                 0
## 4671                                                                 *
## 4672                                                                 *
## 4673                                                                 *
## 4674                                                                 *
## 4675                                                                 *
## 4676                                                                 0
## 4677                                                                 *
## 4678                                                                 *
## 4679                                                                 0
## 4680                                                                 *
## 4681                                                                 0
## 4682                                                                 0
## 4683                                                                 0
## 4684                                                                 0
## 4685                                                                 0
## 4686                                                                 0
## 4687                                                                 0
## 4688                                                                 0
## 4689                                                                 0
## 4690                                                                 0
## 4691                                                                 0
## 4692                                                                 0
## 4693                                                                 0
## 4694                                                                 0
## 4695                                                                 0
## 4696                                                                 0
## 4697                                                                 6
## 4698                                                                 0
## 4699                                                                 7
## 4700                                                                 0
## 4701                                                                 0
## 4702                                                                 0
## 4703                                                                 0
## 4704                                                                 0
## 4705                                                                 0
## 4706                                                                 0
## 4707                                                                 *
## 4708                                                               268
## 4709                                                               144
## 4710                                                                 0
## 4711                                                                 0
## 4712                                                                 0
## 4713                                                                 0
## 4714                                                                 *
## 4715                                                                 *
## 4716                                                                18
## 4717                                                                 0
## 4718                                                                 0
## 4719                                                                 0
## 4720                                                                 0
## 4721                                                                 0
## 4722                                                                 *
## 4723                                                                 0
## 4724                                                                 0
## 4725                                                                 0
## 4726                                                                 *
## 4727                                                                 0
## 4728                                                                 0
## 4729                                                                 0
## 4730                                                                 0
## 4731                                                                 *
## 4732                                                                 *
## 4733                                                                 *
## 4734                                                                 *
## 4735                                                                 *
## 4736                                                                 *
## 4737                                                                 *
## 4738                                                                 0
## 4739                                                               100
## 4740                                                               157
## 4741                                                                 *
## 4742                                                                 0
## 4743                                                                 0
## 4744                                                                 0
## 4745                                                                 0
## 4746                                                                 0
## 4747                                                                 0
## 4748                                                                 0
## 4749                                                                 0
## 4750                                                                 0
## 4751                                                                 0
## 4752                                                                 0
## 4753                                                                 0
## 4754                                                                 0
## 4755                                                                 0
## 4756                                                                 0
## 4757                                                                 0
## 4758                                                                 0
## 4759                                                                 0
## 4760                                                                 0
## 4761                                                                 0
## 4762                                                                 0
## 4763                                                                 0
## 4764                                                                 0
## 4765                                                                 0
## 4766                                                                 0
## 4767                                                                 0
## 4768                                                                 0
## 4769                                                                 0
## 4770                                                                 0
## 4771                                                                 0
## 4772                                                                 0
## 4773                                                                 0
## 4774                                                                 0
## 4775                                                                 0
## 4776                                                                 0
## 4777                                                                 0
## 4778                                                                 0
## 4779                                                                 0
## 4780                                                                 0
## 4781                                                                 0
## 4782                                                                 0
## 4783                                                                 *
## 4784                                                                 0
## 4785                                                                 0
## 4786                                                                 *
## 4787                                                                 0
## 4788                                                                 *
## 4789                                                                 *
## 4790                                                                 *
## 4791                                                                 *
## 4792                                                                 0
## 4793                                                                 *
## 4794                                                                 0
## 4795                                                                 *
## 4796                                                                 *
## 4797                                                                 0
## 4798                                                                 0
## 4799                                                                 *
## 4800                                                                 *
## 4801                                                                 *
## 4802                                                                 0
## 4803                                                                 *
## 4804                                                                 *
## 4805                                                                 *
## 4806                                                                 0
## 4807                                                                 *
## 4808                                                                 0
## 4809                                                                 *
## 4810                                                                 *
## 4811                                                                 0
## 4812                                                                 0
## 4813                                                                 0
## 4814                                                                 0
## 4815                                                                 0
## 4816                                                                 0
## 4817                                                                 0
## 4818                                                                 0
## 4819                                                               230
## 4820                                                                 *
## 4821                                                                28
## 4822                                                               106
## 4823                                                                 0
## 4824                                                                 0
## 4825                                                                 *
## 4826                                                                 0
## 4827                                                                 0
## 4828                                                                 0
## 4829                                                                 0
## 4830                                                                 0
## 4831                                                                 0
## 4832                                                                 0
## 4833                                                                 0
## 4834                                                               219
## 4835                                                               225
## 4836                                                               141
## 4837                                                                17
## 4838                                                                 0
## 4839                                                                56
## 4840                                                                 *
## 4841                                                                10
## 4842                                                                 *
## 4843                                                                10
## 4844                                                                 0
## 4845                                                                 5
## 4846                                                                 7
## 4847                                                                 0
## 4848                                                                 0
## 4849                                                                 0
## 4850                                                                 0
## 4851                                                                 0
## 4852                                                                 0
## 4853                                                                 0
## 4854                                                                 0
## 4855                                                                 0
## 4856                                                                 0
## 4857                                                                13
## 4858                                                                 5
## 4859                                                                15
## 4860                                                                11
## 4861                                                                 0
## 4862                                                                 *
## 4863                                                                 0
## 4864                                                                 *
## 4865                                                                 6
## 4866                                                                 0
## 4867                                                                 *
## 4868                                                               457
## 4869                                                                 0
## 4870                                                                 0
## 4871                                                                21
## 4872                                                                 0
## 4873                                                                 0
## 4874                                                                 0
## 4875                                                                 0
## 4876                                                                 0
## 4877                                                                 0
## 4878                                                                 0
## 4879                                                                 0
## 4880                                                                 0
## 4881                                                                 0
## 4882                                                                 0
## 4883                                                                 0
## 4884                                                                 0
## 4885                                                                 0
## 4886                                                                 0
## 4887                                                                38
## 4888                                                                 *
## 4889                                                                 *
## 4890                                                                 0
## 4891                                                                 0
## 4892                                                                 0
## 4893                                                                 0
## 4894                                                                 0
## 4895                                                                 9
## 4896                                                                13
## 4897                                                                 0
## 4898                                                                 *
## 4899                                                                 0
## 4900                                                                 0
## 4901                                                                 0
## 4902                                                                 0
## 4903                                                                 0
## 4904                                                                 0
## 4905                                                                 0
## 4906                                                                 0
## 4907                                                                 0
## 4908                                                                 0
## 4909                                                                 0
## 4910                                                                 0
## 4911                                                                 0
## 4912                                                                 0
## 4913                                                                 0
## 4914                                                                 0
## 4915                                                                 *
## 4916                                                                 *
## 4917                                                                 *
## 4918                                                                 0
## 4919                                                                 *
## 4920                                                                 *
## 4921                                                                 *
## 4922                                                                 *
## 4923                                                                 0
## 4924                                                                 0
## 4925                                                                 0
## 4926                                                                 *
## 4927                                                                 0
## 4928                                                                 0
## 4929                                                                 0
## 4930                                                                 0
## 4931                                                                 0
## 4932                                                                 0
## 4933                                                                 0
## 4934                                                                 0
## 4935                                                                 0
## 4936                                                                 0
## 4937                                                                 0
## 4938                                                                 0
## 4939                                                                 0
## 4940                                                                 0
## 4941                                                                 0
## 4942                                                                96
## 4943                                                                 *
## 4944                                                                45
## 4945                                                                23
## 4946                                                                32
## 4947                                                                 *
## 4948                                                                 0
## 4949                                                                 0
## 4950                                                                 0
## 4951                                                                 0
## 4952                                                                 0
## 4953                                                                 0
## 4954                                                                 0
## 4955                                                                 0
## 4956                                                                 0
## 4957                                                                 *
## 4958                                                                 0
## 4959                                                                 *
## 4960                                                                 *
## 4961                                                                 *
## 4962                                                                 7
## 4963                                                                 *
## 4964                                                                14
## 4965                                                                 6
## 4966                                                                 *
## 4967                                                                37
## 4968                                                                 0
## 4969                                                                18
## 4970                                                                 0
## 4971                                                                 0
## 4972                                                                 0
## 4973                                                                 0
## 4974                                                                57
## 4975                                                                 *
## 4976                                                                 *
## 4977                                                                11
## 4978                                                                 *
## 4979                                                                 7
## 4980                                                                 *
## 4981                                                                 *
## 4982                                                                10
## 4983                                                                 *
## 4984                                                                13
## 4985                                                                 0
## 4986                                                                 0
## 4987                                                                 0
## 4988                                                                 0
## 4989                                                                 0
## 4990                                                                 0
## 4991                                                                 0
## 4992                                                                 0
## 4993                                                                 0
## 4994                                                                 0
## 4995                                                                 0
## 4996                                                                 0
## 4997                                                                 0
## 4998                                                                 0
## 4999                                                                 0
## 5000                                                                 0
## 5001                                                                 0
## 5002                                                                 0
## 5003                                                                 0
## 5004                                                                 0
## 5005                                                                 0
## 5006                                                                 0
## 5007                                                                 0
## 5008                                                                 0
## 5009                                                                 0
## 5010                                                                 0
## 5011                                                                 0
## 5012                                                                 0
## 5013                                                                 0
## 5014                                                                 0
## 5015                                                                 0
## 5016                                                                 0
## 5017                                                                 0
## 5018                                                                 0
## 5019                                                                 0
## 5020                                                                 6
## 5021                                                                 0
## 5022                                                                 0
## 5023                                                                 0
## 5024                                                                 0
## 5025                                                                 0
## 5026                                                                 0
## 5027                                                                 0
## 5028                                                                 0
## 5029                                                                 0
## 5030                                                                 0
## 5031                                                                 0
## 5032                                                                 0
## 5033                                                                24
## 5034                                                                29
## 5035                                                                 8
## 5036                                                                28
## 5037                                                                 7
## 5038                                                                14
## 5039                                                                13
## 5040                                                                 *
## 5041                                                                 0
## 5042                                                                 *
## 5043                                                                 0
## 5044                                                                 0
## 5045                                                                 0
## 5046                                                                 0
## 5047                                                                 *
## 5048                                                                 0
## 5049                                                                96
## 5050                                                                37
## 5051                                                                45
## 5052                                                                82
## 5053                                                                 0
## 5054                                                                 0
## 5055                                                                 0
## 5056                                                                 0
## 5057                                                                15
## 5058                                                                 0
## 5059                                                                 0
## 5060                                                                 0
## 5061                                                                 0
## 5062                                                                 0
## 5063                                                                56
## 5064                                                                 0
## 5065                                                                 0
## 5066                                                                 0
## 5067                                                                 0
## 5068                                                                 0
## 5069                                                                 0
## 5070                                                                22
## 5071                                                                 *
## 5072                                                                27
## 5073                                                                 0
## 5074                                                                 0
## 5075                                                                33
## 5076                                                                 0
## 5077                                                                 0
## 5078                                                                96
## 5079                                                               156
## 5080                                                                 0
## 5081                                                                 0
## 5082                                                                23
## 5083                                                                 0
## 5084                                                                 0
## 5085                                                                 0
## 5086                                                                 0
## 5087                                                                 0
## 5088                                                                 0
## 5089                                                                 0
## 5090                                                                 0
## 5091                                                                 0
## 5092                                                                 0
## 5093                                                                 0
## 5094                                                                 0
## 5095                                                                 0
## 5096                                                                 0
## 5097                                                                 0
## 5098                                                                 0
## 5099                                                                 0
## 5100                                                                 0
## 5101                                                                 0
## 5102                                                                17
## 5103                                                                10
## 5104                                                                 5
## 5105                                                                 *
## 5106                                                                 0
## 5107                                                                18
## 5108                                                                 0
## 5109                                                                 9
## 5110                                                                 0
## 5111                                                                 0
## 5112                                                                 0
## 5113                                                                 0
## 5114                                                                 0
## 5115                                                                 0
## 5116                                                                22
## 5117                                                                36
## 5118                                                                19
## 5119                                                                67
## 5120                                                                17
## 5121                                                               212
## 5122                                                                12
## 5123                                                                43
## 5124                                                               201
## 5125                                                               329
## 5126                                                                 0
## 5127                                                                 0
## 5128                                                                 0
## 5129                                                                18
## 5130                                                                 0
## 5131                                                                 0
## 5132                                                                 0
## 5133                                                                 0
## 5134                                                                 0
## 5135                                                                 0
## 5136                                                                 0
## 5137                                                                 0
## 5138                                                                 0
## 5139                                                                 0
## 5140                                                                 0
## 5141                                                                 0
## 5142                                                                 0
## 5143                                                                 0
## 5144                                                                 0
## 5145                                                                 0
## 5146                                                                 0
## 5147                                                                 0
## 5148                                                                 0
## 5149                                                                 0
## 5150                                                                 0
## 5151                                                                 0
## 5152                                                                 0
## 5153                                                                 0
## 5154                                                                 0
## 5155                                                                 *
## 5156                                                                24
## 5157                                                                 0
## 5158                                                                 0
## 5159                                                                 0
## 5160                                                                 0
## 5161                                                                 0
## 5162                                                                 0
## 5163                                                                 0
## 5164                                                                 0
## 5165                                                                 0
## 5166                                                                 0
## 5167                                                                 0
## 5168                                                                 0
## 5169                                                                 0
## 5170                                                                 0
## 5171                                                                 0
## 5172                                                                 0
## 5173                                                                 0
## 5174                                                                 0
## 5175                                                                 0
## 5176                                                                 0
## 5177                                                                 0
## 5178                                                                 0
## 5179                                                                 0
## 5180                                                                 *
## 5181                                                                 0
## 5182                                                                 0
## 5183                                                                 0
## 5184                                                                 0
## 5185                                                                 0
## 5186                                                                 0
## 5187                                                                 0
## 5188                                                                 0
## 5189                                                                 0
## 5190                                                                 0
## 5191                                                                 0
## 5192                                                                 0
## 5193                                                                 0
## 5194                                                               123
## 5195                                                                 0
## 5196                                                                 0
## 5197                                                                 0
## 5198                                                                 0
## 5199                                                                 0
## 5200                                                                 0
## 5201                                                                 0
## 5202                                                                 0
## 5203                                                                 0
## 5204                                                                 0
## 5205                                                                 0
## 5206                                                                 0
## 5207                                                                 0
## 5208                                                                 0
## 5209                                                                 0
## 5210                                                                 0
## 5211                                                                 0
## 5212                                                                 0
## 5213                                                                 0
## 5214                                                               178
## 5215                                                                 *
## 5216                                                                68
## 5217                                                                 0
## 5218                                                                 6
## 5219                                                                13
## 5220                                                                30
## 5221                                                                 0
## 5222                                                                 0
## 5223                                                                 0
## 5224                                                                 0
## 5225                                                                 0
## 5226                                                                 0
## 5227                                                                 0
## 5228                                                                 0
## 5229                                                                 0
## 5230                                                                 0
## 5231                                                                 0
## 5232                                                                 0
## 5233                                                                 0
## 5234                                                                 0
## 5235                                                                 0
## 5236                                                                 0
## 5237                                                                 0
## 5238                                                                 0
## 5239                                                                 0
## 5240                                                                 0
## 5241                                                                 0
## 5242                                                                 0
## 5243                                                                 0
## 5244                                                                 0
## 5245                                                                 0
## 5246                                                                 0
## 5247                                                                 0
## 5248                                                                19
## 5249                                                                 0
## 5250                                                                 0
## 5251                                                                 0
## 5252                                                                 0
## 5253                                                                 0
## 5254                                                                 0
## 5255                                                                 0
## 5256                                                                 0
## 5257                                                                 0
## 5258                                                                 0
## 5259                                                                 0
## 5260                                                                 0
## 5261                                                                 0
## 5262                                                                 0
## 5263                                                                 0
## 5264                                                                 0
## 5265                                                                 0
## 5266                                                                 0
## 5267                                                                 0
## 5268                                                                 0
## 5269                                                                 0
## 5270                                                                 0
## 5271                                                                54
## 5272                                                                 6
## 5273                                                                 0
## 5274                                                                 0
## 5275                                                                 *
## 5276                                                                 0
## 5277                                                                 0
## 5278                                                                 0
## 5279                                                                 0
## 5280                                                                 0
## 5281                                                                 0
## 5282                                                                 0
## 5283                                                                13
## 5284                                                                 0
## 5285                                                                 0
## 5286                                                                 *
## 5287                                                                 0
## 5288                                                                 0
## 5289                                                                 0
## 5290                                                                13
## 5291                                                                 6
## 5292                                                                13
## 5293                                                                 0
## 5294                                                                 0
## 5295                                                                 *
## 5296                                                                 *
## 5297                                                                 0
## 5298                                                                 *
## 5299                                                                 0
## 5300                                                                 0
## 5301                                                                 0
## 5302                                                                 0
## 5303                                                                45
## 5304                                                                13
## 5305                                                                 0
## 5306                                                                 *
## 5307                                                                 0
## 5308                                                                 0
## 5309                                                                 0
## 5310                                                                29
## 5311                                                                 *
## 5312                                                                 0
## 5313                                                                 0
## 5314                                                                 0
## 5315                                                                 0
## 5316                                                                 0
## 5317                                                                 0
## 5318                                                                 0
## 5319                                                                 0
## 5320                                                                 0
## 5321                                                                 5
## 5322                                                                 0
## 5323                                                                 *
## 5324                                                                 0
## 5325                                                                25
## 5326                                                                 0
## 5327                                                                 0
## 5328                                                                 0
## 5329                                                                 0
## 5330                                                                 0
## 5331                                                                 0
## 5332                                                                 0
## 5333                                                                 0
## 5334                                                                 0
## 5335                                                                 0
## 5336                                                                 0
## 5337                                                                 0
## 5338                                                                 0
## 5339                                                                 0
## 5340                                                                 0
## 5341                                                                 0
## 5342                                                                 0
## 5343                                                                 0
## 5344                                                                 0
## 5345                                                                 0
## 5346                                                                 0
## 5347                                                                 0
## 5348                                                                 0
## 5349                                                                 0
## 5350                                                                 0
## 5351                                                                 0
## 5352                                                                 0
## 5353                                                                 0
## 5354                                                                 0
## 5355                                                                12
## 5356                                                                13
## 5357                                                                 8
## 5358                                                                 0
## 5359                                                               113
## 5360                                                               165
## 5361                                                                35
## 5362                                                                32
## 5363                                                                 0
## 5364                                                                 0
## 5365                                                                 0
## 5366                                                                 0
## 5367                                                                 0
## 5368                                                                 0
## 5369                                                                 0
## 5370                                                                 0
## 5371                                                                 0
## 5372                                                                 0
## 5373                                                                 0
## 5374                                                                 0
## 5375                                                                 0
## 5376                                                                 0
## 5377                                                                 0
## 5378                                                                32
## 5379                                                                 *
## 5380                                                                36
## 5381                                                                 *
## 5382                                                                 0
## 5383                                                                 0
## 5384                                                                 *
## 5385                                                                 0
## 5386                                                                 *
## 5387                                                                 *
## 5388                                                                 *
## 5389                                                                 *
## 5390                                                                 0
## 5391                                                                 0
## 5392                                                                 0
## 5393                                                                 0
## 5394                                                                 0
## 5395                                                                 0
## 5396                                                                 7
## 5397                                                                 *
## 5398                                                                 0
## 5399                                                                 0
## 5400                                                                 0
## 5401                                                                 0
## 5402                                                                 0
## 5403                                                                 0
## 5404                                                                 0
## 5405                                                                 0
## 5406                                                                 0
## 5407                                                                 *
## 5408                                                                 *
## 5409                                                                 *
## 5410                                                                 0
## 5411                                                                 0
## 5412                                                                 0
## 5413                                                                 0
## 5414                                                                 0
## 5415                                                                 0
## 5416                                                                 0
## 5417                                                                 0
## 5418                                                                 0
## 5419                                                                 0
## 5420                                                                 0
## 5421                                                                 0
## 5422                                                                 0
## 5423                                                                 0
## 5424                                                                 0
## 5425                                                                 0
## 5426                                                                 0
## 5427                                                                 0
## 5428                                                                 0
## 5429                                                                 0
## 5430                                                                 0
## 5431                                                                 0
## 5432                                                                 0
## 5433                                                                 0
## 5434                                                                 0
## 5435                                                                 0
## 5436                                                                 0
## 5437                                                                 0
## 5438                                                                 0
## 5439                                                                 0
## 5440                                                                10
## 5441                                                                 0
## 5442                                                                 *
## 5443                                                                 *
## 5444                                                                10
## 5445                                                                 0
## 5446                                                                 0
## 5447                                                                 0
## 5448                                                                10
## 5449                                                                28
## 5450                                                                49
## 5451                                                                 *
## 5452                                                               134
## 5453                                                                 0
## 5454                                                                30
## 5455                                                                 0
## 5456                                                                 0
## 5457                                                                 0
## 5458                                                                 *
## 5459                                                                 0
## 5460                                                                 *
## 5461                                                                 *
## 5462                                                                69
## 5463                                                                31
## 5464                                                                 0
## 5465                                                                 0
## 5466                                                                 0
## 5467                                                                 0
## 5468                                                                 0
## 5469                                                                 0
## 5470                                                                 0
## 5471                                                                 0
## 5472                                                                 0
## 5473                                                                 0
## 5474                                                                 0
## 5475                                                                 0
## 5476                                                                 0
## 5477                                                                 0
## 5478                                                                 0
## 5479                                                                 0
## 5480                                                                 0
## 5481                                                                 0
## 5482                                                                 0
## 5483                                                                 0
## 5484                                                                 0
## 5485                                                                 0
## 5486                                                                 0
## 5487                                                                 *
## 5488                                                                 0
## 5489                                                                28
## 5490                                                                 *
## 5491                                                                 *
## 5492                                                                 *
## 5493                                                                 *
## 5494                                                                 *
## 5495                                                                14
## 5496                                                                 *
## 5497                                                                 *
## 5498                                                                 *
## 5499                                                                 0
## 5500                                                                 0
## 5501                                                                 0
## 5502                                                                 *
## 5503                                                                 0
## 5504                                                                 *
## 5505                                                                 *
## 5506                                                                 *
## 5507                                                                 *
## 5508                                                                 0
## 5509                                                                11
## 5510                                                                 *
## 5511                                                                 0
## 5512                                                                 0
## 5513                                                                14
## 5514                                                                 0
## 5515                                                                 0
## 5516                                                                13
## 5517                                                                13
## 5518                                                                13
## 5519                                                                 0
## 5520                                                                 6
## 5521                                                                 *
## 5522                                                                 7
## 5523                                                                 5
## 5524                                                                18
## 5525                                                                14
## 5526                                                                 0
## 5527                                                                 0
## 5528                                                                 0
## 5529                                                                 0
## 5530                                                                 0
## 5531                                                                 0
## 5532                                                                 0
## 5533                                                                 0
## 5534                                                                 0
## 5535                                                                 0
## 5536                                                                 0
## 5537                                                                 0
## 5538                                                                 0
## 5539                                                               314
## 5540                                                                41
## 5541                                                                 0
## 5542                                                                 0
## 5543                                                                21
## 5544                                                                 0
## 5545                                                                 0
## 5546                                                                 0
## 5547                                                                96
## 5548                                                                 0
## 5549                                                                 0
## 5550                                                                11
## 5551                                                                 *
## 5552                                                                 6
## 5553                                                                 *
## 5554                                                                 0
## 5555                                                                 0
## 5556                                                                 0
## 5557                                                                 0
## 5558                                                                 0
## 5559                                                                 0
## 5560                                                                 0
## 5561                                                                 0
## 5562                                                                 0
## 5563                                                                 0
## 5564                                                                 0
## 5565                                                                 0
## 5566                                                                 0
## 5567                                                                 0
## 5568                                                                 0
## 5569                                                                 0
## 5570                                                                 0
## 5571                                                                 0
## 5572                                                                 0
## 5573                                                                 0
## 5574                                                                 0
## 5575                                                                 0
## 5576                                                                 0
## 5577                                                                 0
## 5578                                                                 0
## 5579                                                                 0
## 5580                                                                 0
## 5581                                                                 0
## 5582                                                                 0
## 5583                                                                 0
## 5584                                                                 0
## 5585                                                                 0
## 5586                                                                 0
## 5587                                                                 0
## 5588                                                                 0
## 5589                                                                 0
## 5590                                                                 0
## 5591                                                                 0
## 5592                                                                 0
## 5593                                                                 0
## 5594                                                                 0
## 5595                                                                 0
## 5596                                                                 0
## 5597                                                                 0
## 5598                                                                 0
## 5599                                                                 0
## 5600                                                                 0
## 5601                                                                 0
## 5602                                                                 0
## 5603                                                                 0
## 5604                                                                 0
## 5605                                                                 0
## 5606                                                                 0
## 5607                                                                 0
## 5608                                                                 0
## 5609                                                                 0
## 5610                                                                 0
## 5611                                                                 0
## 5612                                                                 0
## 5613                                                                 0
## 5614                                                               120
## 5615                                                                 0
## 5616                                                                39
## 5617                                                                 0
## 5618                                                                 *
## 5619                                                                 0
## 5620                                                               805
## 5621                                                                 0
## 5622                                                                77
## 5623                                                                 0
## 5624                                                                12
## 5625                                                                 0
## 5626                                                               199
## 5627                                                                 0
## 5628                                                                43
## 5629                                                                 0
## 5630                                                                11
## 5631                                                                 0
## 5632                                                                22
## 5633                                                                 0
## 5634                                                                 0
## 5635                                                                 0
## 5636                                                                 0
## 5637                                                                 0
## 5638                                                                 *
## 5639                                                                 0
## 5640                                                                 0
## 5641                                                                 0
## 5642                                                                 0
## 5643                                                                 0
## 5644                                                                 0
## 5645                                                                 0
## 5646                                                                 6
## 5647                                                                 0
## 5648                                                                 0
## 5649                                                                 0
## 5650                                                                 0
## 5651                                                                 0
## 5652                                                                 0
## 5653                                                                 0
## 5654                                                                 0
## 5655                                                                 0
## 5656                                                                 0
## 5657                                                                 0
## 5658                                                                 0
## 5659                                                                 0
## 5660                                                                 0
## 5661                                                                 0
## 5662                                                                 0
## 5663                                                                 0
## 5664                                                                 0
## 5665                                                                 0
## 5666                                                                 0
## 5667                                                                 0
## 5668                                                                 0
## 5669                                                                 0
## 5670                                                                 0
## 5671                                                                 0
## 5672                                                                 0
## 5673                                                                 0
## 5674                                                                 0
## 5675                                                                 0
## 5676                                                                 0
## 5677                                                                 *
## 5678                                                                 0
## 5679                                                                 0
## 5680                                                                 0
## 5681                                                                41
## 5682                                                                 0
## 5683                                                                 0
## 5684                                                                 0
## 5685                                                                 0
## 5686                                                                 0
## 5687                                                                 0
## 5688                                                                 *
## 5689                                                                 0
## 5690                                                                 0
## 5691                                                                 0
## 5692                                                                 0
## 5693                                                                 0
## 5694                                                                 0
## 5695                                                                 0
## 5696                                                                 0
## 5697                                                                 0
## 5698                                                                 0
## 5699                                                                 0
## 5700                                                                 *
## 5701                                                                 0
## 5702                                                                 0
## 5703                                                              1160
## 5704                                                                 0
## 5705                                                               195
## 5706                                                                 0
## 5707                                                                 0
## 5708                                                                 0
## 5709                                                                 0
## 5710                                                                 0
## 5711                                                                 0
## 5712                                                                 0
## 5713                                                                 *
## 5714                                                                 8
## 5715                                                                 *
## 5716                                                                 0
## 5717                                                                 0
## 5718                                                                 0
## 5719                                                                 0
## 5720                                                                 0
## 5721                                                                 0
## 5722                                                                13
## 5723                                                                 7
## 5724                                                                 0
## 5725                                                                 0
## 5726                                                                 *
## 5727                                                                 *
## 5728                                                                 0
## 5729                                                                 0
## 5730                                                                 0
## 5731                                                                 0
## 5732                                                                 0
## 5733                                                                 0
## 5734                                                                 0
## 5735                                                                 0
## 5736                                                                 0
## 5737                                                                 0
## 5738                                                                 5
## 5739                                                                 0
## 5740                                                                 0
## 5741                                                                 0
## 5742                                                                 0
## 5743                                                                 0
## 5744                                                                 8
## 5745                                                                33
## 5746                                                                 6
## 5747                                                                15
## 5748                                                                 0
## 5749                                                                 0
## 5750                                                                 0
## 5751                                                                 0
## 5752                                                                 0
## 5753                                                                 0
## 5754                                                                 0
## 5755                                                                 0
## 5756                                                                 0
## 5757                                                                 0
## 5758                                                                 0
## 5759                                                                 0
## 5760                                                                 0
## 5761                                                                 0
## 5762                                                                 0
## 5763                                                                 0
## 5764                                                                 0
## 5765                                                                 0
## 5766                                                                 0
## 5767                                                                 0
## 5768                                                                 0
## 5769                                                                 0
## 5770                                                                 0
## 5771                                                                 0
## 5772                                                                 0
## 5773                                                                 0
## 5774                                                                 0
## 5775                                                                 0
## 5776                                                                 0
## 5777                                                                 0
## 5778                                                                 0
## 5779                                                                 0
## 5780                                                                 0
## 5781                                                                 0
## 5782                                                                 0
## 5783                                                                 0
## 5784                                                                 0
## 5785                                                                 0
## 5786                                                                 0
## 5787                                                                 0
## 5788                                                                 0
## 5789                                                                 0
## 5790                                                                 0
## 5791                                                                 0
## 5792                                                                 0
## 5793                                                                 0
## 5794                                                                 0
## 5795                                                                 0
## 5796                                                                 0
## 5797                                                                 0
## 5798                                                                 0
## 5799                                                                 0
## 5800                                                                 0
## 5801                                                                 0
## 5802                                                                 0
## 5803                                                                 0
## 5804                                                                 0
## 5805                                                                 0
## 5806                                                                 0
## 5807                                                                 0
## 5808                                                                 0
## 5809                                                                 0
## 5810                                                                 0
## 5811                                                                 0
## 5812                                                                 0
## 5813                                                                 0
## 5814                                                                 0
## 5815                                                                 0
## 5816                                                                 0
## 5817                                                                 0
## 5818                                                                 0
## 5819                                                               162
## 5820                                                                 0
## 5821                                                                 0
## 5822                                                                 0
## 5823                                                                 0
## 5824                                                                 0
## 5825                                                                 0
## 5826                                                                 0
## 5827                                                                 0
## 5828                                                                 0
## 5829                                                                 0
## 5830                                                                 0
## 5831                                                                 0
## 5832                                                                 0
## 5833                                                                 0
## 5834                                                                 0
## 5835                                                                 0
## 5836                                                                 0
## 5837                                                                 0
## 5838                                                                 0
## 5839                                                                 0
## 5840                                                                 0
## 5841                                                                 0
## 5842                                                                 0
## 5843                                                                 0
## 5844                                                                 0
## 5845                                                                 0
## 5846                                                                 0
## 5847                                                                 0
## 5848                                                                 0
## 5849                                                                 0
## 5850                                                                 0
## 5851                                                                 0
## 5852                                                                 0
## 5853                                                                 0
## 5854                                                                 0
## 5855                                                                 0
## 5856                                                                 0
## 5857                                                                 0
## 5858                                                                 0
## 5859                                                                 0
## 5860                                                                 0
## 5861                                                                 0
## 5862                                                                 0
## 5863                                                                 0
## 5864                                                                 0
## 5865                                                                 0
## 5866                                                                 0
## 5867                                                                 0
## 5868                                                                 0
## 5869                                                                 0
## 5870                                                                 0
## 5871                                                                 0
## 5872                                                                 0
## 5873                                                                 0
## 5874                                                                 0
## 5875                                                                 0
## 5876                                                                 0
## 5877                                                               147
## 5878                                                                 0
## 5879                                                                 0
## 5880                                                                 0
## 5881                                                                 0
## 5882                                                                 0
## 5883                                                                 0
## 5884                                                                 0
## 5885                                                                 0
## 5886                                                                 0
## 5887                                                                 *
## 5888                                                                 0
## 5889                                                                 0
## 5890                                                                 0
## 5891                                                                 0
## 5892                                                                 0
## 5893                                                                 0
## 5894                                                                 0
## 5895                                                                 0
## 5896                                                                 0
## 5897                                                                 0
## 5898                                                                 0
## 5899                                                              <NA>
##      All.Students.Percent.Successfully.Completed Percent.Received.Credential
## 1                                             NA                          NA
## 2                                             NA                          NA
## 3                                             NA                          NA
## 4                                             NA                          NA
## 5                            0.84850000000000003                           0
## 6                                             NA                          NA
## 7                                              *                           *
## 8                                              *                           *
## 9                                              *                           *
## 10                                             *                           *
## 11                                             0                           *
## 12                                             *                          NA
## 13                           0.17999999999999999                           *
## 14                                             0                           0
## 15                                             *                           *
## 16                                             0                           *
## 17                                             0                           0
## 18                                             *                           *
## 19                                            NA                          NA
## 20                                             *                           *
## 21                                        0.3553                           0
## 22                                         0.125                           *
## 23                                             *                           *
## 24                                            NA                          NA
## 25                                             *                          NA
## 26                                             *                          NA
## 27                                             *                           *
## 28                                        0.1406                           0
## 29                                            NA                          NA
## 30                                             0                           0
## 31                           0.59999999999999998                           *
## 32                                             0                           0
## 33                                             0                           0
## 34                                             *                          NA
## 35                                             *                           0
## 36                                             *                          NA
## 37                                             0                           *
## 38                                             *                           *
## 39                                             *                          NA
## 40                                            NA                          NA
## 41                                             *                           *
## 42                                             *                           *
## 43                                            NA                          NA
## 44                                             *                          NA
## 45                                             *                          NA
## 46                                             *                          NA
## 47                                            NA                          NA
## 48                           0.42699999999999999                           0
## 49                           0.30769999999999997                           *
## 50                                             *                           *
## 51                                            NA                          NA
## 52                                            NA                          NA
## 53                                             *                          NA
## 54                                             *                          NA
## 55                                            NA                          NA
## 56                           0.45450000000000002                           *
## 57                                             0                           *
## 58                                            NA                          NA
## 59                                             *                           *
## 60                                            NA                          NA
## 61                          0.094700000000000006                           0
## 62                           0.37269999999999998                           0
## 63                           0.29730000000000001                           0
## 64                                             *                           *
## 65                                        0.1623                           0
## 66                                            NA                          NA
## 67                          0.082400000000000001                           0
## 68                           0.24840000000000001                           0
## 69                                             0                           0
## 70                                             *                           *
## 71                           0.35110000000000002                           0
## 72                                             *                           *
## 73                           0.14630000000000001                           *
## 74                           0.36230000000000001                           0
## 75                                             0                           0
## 76                                             *                           0
## 77                           0.31030000000000002                           0
## 78                                             0                           *
## 79                                            NA                          NA
## 80                                             *                           *
## 81                                            NA                          NA
## 82                                            NA                          NA
## 83                                            NA                          NA
## 84                                            NA                          NA
## 85                                             *                          NA
## 86                           0.23080000000000001                           0
## 87                                             *                          NA
## 88                                            NA                          NA
## 89                                            NA                          NA
## 90                                            NA                          NA
## 91                                             *                          NA
## 92                                             *                          NA
## 93                                             *                           *
## 94                                             *                           *
## 95                           0.76190000000000002                           0
## 96                                             *                           *
## 97                                            NA                          NA
## 98                                             *                           *
## 99                                            NA                          NA
## 100                                            *                           *
## 101                                            *                           *
## 102                          0.14999999999999999                           0
## 103                          0.19470000000000001                           0
## 104                                           NA                          NA
## 105                                       0.3594                           0
## 106                          0.20610000000000001                           0
## 107                                       0.3846                           *
## 108                                            *                           *
## 109                          0.45000000000000001                           *
## 110                                            *                           *
## 111                          0.33329999999999999                           *
## 112                                            0                           *
## 113                          0.96699999999999997                           0
## 114                                           NA                          NA
## 115                                            *                           *
## 116                                            *                           *
## 117                                            *                           *
## 118                                            *                           *
## 119                          0.85709999999999997                           *
## 120                                            *                           *
## 121                                            *                           *
## 122                          0.85709999999999997                           *
## 123                                           NA                          NA
## 124                                            *                           *
## 125                                            *                           *
## 126                                           NA                          NA
## 127                                            1                           0
## 128                                           NA                          NA
## 129                                           NA                          NA
## 130                          0.72729999999999995                           0
## 131                          0.79749999999999999                           0
## 132                                       0.5625                           0
## 133                                            *                           *
## 134                                           NA                          NA
## 135                                           NA                          NA
## 136                          0.84619999999999995                           0
## 137                                            *                           *
## 138                          0.60980000000000001                           0
## 139                                           NA                          NA
## 140                                       0.4904                           0
## 141                          0.73329999999999995                           0
## 142                          0.77780000000000005                           0
## 143                                       0.2727                           0
## 144                                           NA                          NA
## 145                                           NA                          NA
## 146                                           NA                          NA
## 147                                           NA                          NA
## 148                                           NA                          NA
## 149                                            1                           0
## 150                                            1                           0
## 151                          0.92310000000000003                           0
## 152                          0.97929999999999995                           0
## 153                          0.75609999999999999                          NA
## 154                                           NA                          NA
## 155                                            1                           0
## 156                          0.92330000000000001                           0
## 157                                           NA                          NA
## 158                                            1                           0
## 159                                            1                           0
## 160                                           NA                          NA
## 161                                           NA                          NA
## 162                          0.66669999999999996                           0
## 163                                            1                           0
## 164                          0.84419999999999995                           0
## 165                                           NA                          NA
## 166                                            *                           *
## 167                          0.91610000000000003                           *
## 168                                           NA                          NA
## 169                          0.65710000000000002                           0
## 170                                            *                           *
## 171                                            *                           *
## 172                                            *                           *
## 173                                            *                           *
## 174                                            *                           *
## 175                                            *                           *
## 176                                           NA                          NA
## 177                                           NA                          NA
## 178                                            *                           *
## 179                                            *                           *
## 180                                            1                           0
## 181                                           NA                          NA
## 182                                           NA                          NA
## 183                          0.71430000000000005                           0
## 184                                            *                           *
## 185                                           NA                          NA
## 186                                           NA                          NA
## 187                                            *                           *
## 188                                            *                           *
## 189                                            *                           *
## 190                                           NA                          NA
## 191                                            *                           *
## 192                          0.66669999999999996                           *
## 193                                            *                           *
## 194                                       0.8448                           0
## 195                                         0.88                           0
## 196                                           NA                          NA
## 197                          0.60870000000000002                           0
## 198                          0.93969999999999998                           0
## 199                                           NA                          NA
## 200                                           NA                          NA
## 201                                            *                          NA
## 202                                           NA                          NA
## 203                                           NA                          NA
## 204                                           NA                          NA
## 205                                           NA                          NA
## 206                                           NA                          NA
## 207                                            1                           0
## 208                                           NA                          NA
## 209                                           NA                          NA
## 210                                           NA                          NA
## 211                                           NA                          NA
## 212                                           NA                          NA
## 213                                           NA                          NA
## 214                                           NA                          NA
## 215                                           NA                          NA
## 216                                           NA                          NA
## 217                                           NA                          NA
## 218                                            *                           *
## 219                                            *                          NA
## 220                                           NA                          NA
## 221                                           NA                          NA
## 222                                           NA                          NA
## 223                                            1                           *
## 224                                            *                           *
## 225                                           NA                          NA
## 226                                           NA                          NA
## 227                                           NA                          NA
## 228                                       0.5948                           0
## 229                          0.20000000000000001                           0
## 230                          0.70179999999999998                           0
## 231                          0.42859999999999998                           0
## 232                                       0.3387                           0
## 233                                            1                           0
## 234                          0.92310000000000003                           0
## 235                                            1                           0
## 236                          0.35320000000000001                           0
## 237                                        0.875                           0
## 238                          0.33329999999999999                           *
## 239                                            *                          NA
## 240                                            *                          NA
## 241                                            *                          NA
## 242                         0.086999999999999994                           *
## 243                                       0.1522                           0
## 244                          0.23330000000000001                           0
## 245                         0.057500000000000002                           0
## 246                          0.24579999999999999                           0
## 247                                       0.1351                           0
## 248                          0.39779999999999999                           0
## 249                                       0.2848                           0
## 250                                           NA                          NA
## 251                          0.32579999999999998                           0
## 252                                            0                           0
## 253                                            0                           0
## 254                          0.19350000000000001                           0
## 255                                           NA                          NA
## 256                                           NA                          NA
## 257                                       0.5806                           0
## 258                                           NA                          NA
## 259                          0.23530000000000001                           0
## 260                                           NA                          NA
## 261                                            *                           *
## 262                                           NA                          NA
## 263                                           NA                          NA
## 264                                           NA                          NA
## 265                                           NA                          NA
## 266                                            *                           *
## 267                          0.41670000000000001                           0
## 268                          0.39290000000000003                           0
## 269                                            0                           0
## 270                                            *                           *
## 271                          0.17199999999999999                           0
## 272                         0.053100000000000001                           0
## 273                                            0                           0
## 274                                       0.0654                           0
## 275                          0.14460000000000001                           0
## 276                          0.15090000000000001                           *
## 277                                       0.1158                           0
## 278                                           NA                          NA
## 279                          0.53569999999999995                           0
## 280                          0.15640000000000001                           0
## 281                                            *                           *
## 282                                       0.1087                           0
## 283                         0.045499999999999999                           0
## 284                                       0.0111                           *
## 285                         0.041200000000000001                           0
## 286                         0.015800000000000002                           *
## 287                                            *                           *
## 288                          0.36930000000000002                           0
## 289                                           NA                          NA
## 290                                           NA                          NA
## 291                                           NA                          NA
## 292                                           NA                          NA
## 293                                           NA                          NA
## 294                         0.029100000000000001                           0
## 295                          0.28000000000000003                           0
## 296                                           NA                          NA
## 297                          0.40379999999999999                           0
## 298                                           NA                          NA
## 299                          0.51519999999999999                           0
## 300                                           NA                          NA
## 301                                           NA                          NA
## 302                                           NA                          NA
## 303                                           NA                          NA
## 304                                           NA                          NA
## 305                                           NA                          NA
## 306                                           NA                          NA
## 307                                           NA                          NA
## 308                                           NA                          NA
## 309                                           NA                          NA
## 310                                           NA                          NA
## 311                          0.91510000000000002                           0
## 312                          0.94999999999999996                           0
## 313                                            1                           *
## 314                                            1                           0
## 315                                            1                           0
## 316                                            1                           0
## 317                          0.82279999999999998                           0
## 318                          0.93330000000000002                           0
## 319                                            1                           0
## 320                                            1                           0
## 321                                            1                           0
## 322                                        0.875                           0
## 323                                            1                           0
## 324                                            1                           0
## 325                                            1                           0
## 326                                            1                           0
## 327                                            *                           *
## 328                                            *                           *
## 329                                           NA                          NA
## 330                                            1                           0
## 331                                            1                           0
## 332                                           NA                          NA
## 333                                            1                           0
## 334                                            1                           0
## 335                                            1                           0
## 336                                            1                           0
## 337                          0.92410000000000003                           0
## 338                                            1                           0
## 339                                           NA                          NA
## 340                                            *                           *
## 341                                           NA                          NA
## 342                                            *                           *
## 343                                            1                           *
## 344                                            1                           0
## 345                                            *                           *
## 346                                            *                           *
## 347                                            *                           *
## 348                                            *                           *
## 349                                           NA                          NA
## 350                          0.80610000000000004                           0
## 351                                           NA                          NA
## 352                                           NA                          NA
## 353                                           NA                          NA
## 354                                           NA                          NA
## 355                                            1                           *
## 356                                           NA                          NA
## 357                                            1                          NA
## 358                                           NA                          NA
## 359                                           NA                          NA
## 360                                           NA                          NA
## 361                                           NA                          NA
## 362                                           NA                          NA
## 363                                           NA                          NA
## 364                                           NA                          NA
## 365                                           NA                          NA
## 366                                            *                           *
## 367                                            1                           0
## 368                                            *                           *
## 369                                           NA                          NA
## 370                                           NA                          NA
## 371                                           NA                          NA
## 372                                           NA                          NA
## 373                                           NA                          NA
## 374                                           NA                          NA
## 375                                           NA                          NA
## 376                                           NA                          NA
## 377                                           NA                          NA
## 378                                           NA                          NA
## 379                          0.76190000000000002                           0
## 380                          0.75929999999999997                           0
## 381                          0.76539999999999997                           0
## 382                          0.73329999999999995                           0
## 383                          0.94440000000000002                           0
## 384                          0.76090000000000002                           0
## 385                          0.79410000000000003                           0
## 386                          0.88500000000000001                           0
## 387                          0.73060000000000003                           0
## 388                                           NA                          NA
## 389                                            *                           *
## 390                                        0.875                           0
## 391                                            *                           *
## 392                                       0.4118                           0
## 393                                       0.6129                           0
## 394                          0.64710000000000001                           0
## 395                          0.35289999999999999                           *
## 396                          0.37140000000000001                           0
## 397                          0.51219999999999999                           0
## 398                          0.44829999999999998                           0
## 399                          0.63639999999999997                           0
## 400                                           NA                          NA
## 401                                           NA                          NA
## 402                                            1                           0
## 403                                            1                           0
## 404                                            1                           0
## 405                                           NA                          NA
## 406                                           NA                          NA
## 407                          0.86360000000000003                           0
## 408                          0.95240000000000002                           0
## 409                                        0.878                           0
## 410                          0.92000000000000004                           0
## 411                                            1                           0
## 412                          0.66000000000000003                           0
## 413                          0.92959999999999998                           0
## 414                          0.57979999999999998                           0
## 415                          0.75029999999999997                           0
## 416                                            *                           *
## 417                         0.072099999999999997                           *
## 418                          0.98899999999999999                           0
## 419                          0.20000000000000001                           0
## 420                                       0.2571                           *
## 421                                            1                           0
## 422                          0.54390000000000005                           0
## 423                                        0.875                           0
## 424                          0.86670000000000003                           0
## 425                                            *                           *
## 426                                            *                           0
## 427                          0.58819999999999995                           0
## 428                          0.58730000000000004                           0
## 429                          0.48649999999999999                           0
## 430                          0.52380000000000004                           0
## 431                          0.52749999999999997                           0
## 432                                       0.7712                           0
## 433                          0.72030000000000005                           0
## 434                          0.91879999999999995                           0
## 435                          0.75419999999999998                           0
## 436                                           NA                          NA
## 437                          0.97440000000000004                           0
## 438                          0.94340000000000002                           0
## 439                                           NA                          NA
## 440                          0.88329999999999997                           0
## 441                          0.95650000000000002                           0
## 442                                           NA                          NA
## 443                          0.53920000000000001                           0
## 444                                            1                           0
## 445                          0.86960000000000004                           0
## 446                          0.96879999999999999                           0
## 447                                       0.9798                           0
## 448                          0.66669999999999996                           0
## 449                          0.91759999999999997                           0
## 450                          0.90910000000000002                           0
## 451                          0.66669999999999996                           0
## 452                          0.92500000000000004                           0
## 453                          0.70150000000000001                           0
## 454                                            1                           0
## 455                                            1                           0
## 456                          0.97219999999999995                           0
## 457                                       0.1613                           0
## 458                          0.27889999999999998                           0
## 459                          0.69969999999999999                           0
## 460                          0.20000000000000001                           0
## 461                          0.16389999999999999                           0
## 462                          0.40739999999999998                           0
## 463                          0.32219999999999999                           0
## 464                          0.41210000000000002                           0
## 465                          0.30159999999999998                           0
## 466                          0.48149999999999998                           0
## 467                          0.26040000000000002                           0
## 468                                            1                           0
## 469                                            1                           0
## 470                          0.75470000000000004                           0
## 471                          0.19620000000000001                           0
## 472                          0.62749999999999995                           0
## 473                          0.42220000000000002                           0
## 474                                            1                           0
## 475                          0.45829999999999999                           0
## 476                          0.71009999999999995                           0
## 477                                            1                           0
## 478                          0.90910000000000002                           0
## 479                                            *                           *
## 480                          0.92310000000000003                           0
## 481                          0.94550000000000001                           0
## 482                          0.87939999999999996                           0
## 483                          0.82050000000000001                           0
## 484                          0.90480000000000005                           0
## 485                          0.89770000000000005                           0
## 486                                           NA                          NA
## 487                          0.80830000000000002                           0
## 488                          0.95830000000000004                           0
## 489                                         0.75                           0
## 490                                           NA                          NA
## 491                                            1                           0
## 492                          0.91759999999999997                           0
## 493                          0.78000000000000003                           0
## 494                                           NA                          NA
## 495                                           NA                          NA
## 496                                            *                           *
## 497                          0.90910000000000002                           0
## 498                                           NA                          NA
## 499                                           NA                          NA
## 500                                           NA                          NA
## 501                                            1                           0
## 502                                           NA                          NA
## 503                          0.99039999999999995                           0
## 504                                           NA                          NA
## 505                                            *                           *
## 506                                           NA                          NA
## 507                                            1                           *
## 508                                            1                           0
## 509                          0.76470000000000005                           *
## 510                          0.88890000000000002                           *
## 511                                            1                           *
## 512                                           NA                          NA
## 513                                           NA                          NA
## 514                                           NA                          NA
## 515                                           NA                          NA
## 516                                            1                           *
## 517                                           NA                          NA
## 518                                           NA                          NA
## 519                                           NA                          NA
## 520                                            *                          NA
## 521                                           NA                          NA
## 522                          0.94340000000000002                           0
## 523                                           NA                          NA
## 524                                           NA                          NA
## 525                                           NA                          NA
## 526                                           NA                          NA
## 527                                           NA                          NA
## 528                                           NA                          NA
## 529                                           NA                          NA
## 530                                           NA                          NA
## 531                                           NA                          NA
## 532                                           NA                          NA
## 533                                           NA                          NA
## 534                                           NA                          NA
## 535                                           NA                          NA
## 536                                           NA                          NA
## 537                                           NA                          NA
## 538                                           NA                          NA
## 539                                           NA                          NA
## 540                                           NA                          NA
## 541                                           NA                          NA
## 542                                           NA                          NA
## 543                                           NA                          NA
## 544                                           NA                          NA
## 545                                           NA                          NA
## 546                                           NA                          NA
## 547                                           NA                          NA
## 548                                           NA                          NA
## 549                                           NA                          NA
## 550                                           NA                          NA
## 551                                           NA                          NA
## 552                                           NA                          NA
## 553                                           NA                          NA
## 554                                           NA                          NA
## 555                                           NA                          NA
## 556                                           NA                          NA
## 557                                           NA                          NA
## 558                          0.91669999999999996                           0
## 559                          0.53659999999999997                           0
## 560                          0.88180000000000003                           0
## 561                          0.88239999999999996                           0
## 562                          0.92490000000000006                           0
## 563                          0.90910000000000002                           0
## 564                                           NA                          NA
## 565                          0.37009999999999998                           0
## 566                          0.30559999999999998                           0
## 567                                           NA                          NA
## 568                          0.11940000000000001                           0
## 569                                       0.1429                           0
## 570                          0.91669999999999996                           0
## 571                          0.85019999999999996                           0
## 572                                            1                           0
## 573                          0.74780000000000002                           0
## 574                                            *                           *
## 575                          0.15490000000000001                           0
## 576                                            *                           *
## 577                          0.85519999999999996                           0
## 578                                       0.4526                           0
## 579                                            1                           *
## 580                         0.069900000000000004                           0
## 581                          0.16039999999999999                           0
## 582                          0.49020000000000002                           0
## 583                          0.64459999999999995                           0
## 584                          0.80249999999999999                           0
## 585                                            *                           *
## 586                         0.080500000000000002                           0
## 587                                            *                           *
## 588                          0.77780000000000005                           0
## 589                                            *                           *
## 590                                            0                           0
## 591                                            0                           0
## 592                          0.61040000000000005                           0
## 593                                           NA                          NA
## 594                                           NA                          NA
## 595                                           NA                          NA
## 596                                           NA                          NA
## 597                                           NA                          NA
## 598                                           NA                          NA
## 599                          0.90910000000000002                           *
## 600                                           NA                          NA
## 601                          0.22090000000000001                           0
## 602                                          0.5                           0
## 603                          0.43969999999999998                           0
## 604                          0.40000000000000002                           0
## 605                                       0.1681                           0
## 606                          0.15240000000000001                           0
## 607                                            *                           *
## 608                                            *                           *
## 609                          0.72130000000000005                           0
## 610                                       0.1429                           0
## 611                                            *                           *
## 612                          0.44440000000000002                           0
## 613                                            *                           *
## 614                                           NA                          NA
## 615                                           NA                          NA
## 616                                           NA                          NA
## 617                                           NA                          NA
## 618                          0.94979999999999998                           0
## 619                          0.88890000000000002                           0
## 620                                           NA                          NA
## 621                                         0.75                           0
## 622                                            *                           *
## 623                          0.96299999999999997                           0
## 624                                           NA                          NA
## 625                                           NA                          NA
## 626                                            *                           *
## 627                                           NA                          NA
## 628                                            1                           0
## 629                                           NA                          NA
## 630                          0.85709999999999997                           0
## 631                                            *                          NA
## 632                                           NA                          NA
## 633                                           NA                          NA
## 634                                            *                          NA
## 635                                       0.8649                           0
## 636                                        0.875                           *
## 637                                            *                           *
## 638                          0.76270000000000004                           0
## 639                          0.84130000000000005                           0
## 640                          0.74419999999999997                           0
## 641                          0.61429999999999996                           0
## 642                          0.76319999999999999                           0
## 643                                            1                           0
## 644                          0.90000000000000002                           0
## 645                          0.56520000000000004                           0
## 646                                           NA                          NA
## 647                                           NA                          NA
## 648                                           NA                          NA
## 649                          0.74080000000000001                           0
## 650                                           NA                          NA
## 651                                           NA                          NA
## 652                                           NA                          NA
## 653                                           NA                          NA
## 654                                           NA                          NA
## 655                                           NA                          NA
## 656                          0.70499999999999996                           0
## 657                                            *                          NA
## 658                                           NA                          NA
## 659                          0.31780000000000003                           0
## 660                          0.74209999999999998                           0
## 661                          0.89180000000000004                           0
## 662                          0.49330000000000002                           0
## 663                          0.45069999999999999                           *
## 664                          0.61329999999999996                           0
## 665                          0.91180000000000005                           0
## 666                          0.56520000000000004                           *
## 667                          0.88890000000000002                           *
## 668                          0.65790000000000004                           *
## 669                                            *                           0
## 670                          0.90000000000000002                           *
## 671                          0.88890000000000002                           *
## 672                          0.58299999999999996                           0
## 673                                            *                           *
## 674                          0.85980000000000001                           0
## 675                          0.91300000000000003                          NA
## 676                          0.44090000000000001                           0
## 677                                            1                           0
## 678                                            *                           *
## 679                                            1                           0
## 680                                            1                           0
## 681                                            1                           0
## 682                                            1                           0
## 683                          0.66669999999999996                           0
## 684                                          0.5                           0
## 685                                            1                           0
## 686                          0.89810000000000001                           0
## 687                                           NA                          NA
## 688                          0.96550000000000002                           0
## 689                                        0.875                           0
## 690                                            1                           0
## 691                                           NA                          NA
## 692                                           NA                          NA
## 693                                           NA                          NA
## 694                                           NA                          NA
## 695                                           NA                          NA
## 696                                           NA                          NA
## 697                          0.95650000000000002                           0
## 698                                           NA                          NA
## 699                          0.54549999999999998                           0
## 700                                        0.875                           0
## 701                          0.73529999999999995                           0
## 702                          0.88239999999999996                           0
## 703                                           NA                          NA
## 704                          0.71430000000000005                           0
## 705                                            1                           0
## 706                          0.80000000000000004                           0
## 707                          0.86580000000000001                           0
## 708                                            1                           0
## 709                          0.62860000000000005                           0
## 710                          0.95240000000000002                           0
## 711                                            1                           0
## 712                          0.73680000000000001                           0
## 713                          0.90569999999999995                           0
## 714                                            *                           *
## 715                                            *                           *
## 716                                           NA                          NA
## 717                                            *                           *
## 718                                            1                           0
## 719                                            *                           *
## 720                                            *                           *
## 721                                            *                           *
## 722                                           NA                          NA
## 723                                           NA                          NA
## 724                                            *                           *
## 725                                            *                           *
## 726                                            *                           *
## 727                                            1                           0
## 728                                           NA                          NA
## 729                                           NA                          NA
## 730                                           NA                          NA
## 731                                           NA                          NA
## 732                                           NA                          NA
## 733                                           NA                          NA
## 734                                           NA                          NA
## 735                                           NA                          NA
## 736                                           NA                          NA
## 737                          0.95120000000000005                           0
## 738                          0.88380000000000003                           0
## 739                          0.89359999999999995                           0
## 740                          0.98719999999999997                           0
## 741                                        0.875                           0
## 742                          0.97099999999999997                          NA
## 743                                           NA                          NA
## 744                                           NA                          NA
## 745                                           NA                          NA
## 746                                           NA                          NA
## 747                                           NA                          NA
## 748                                           NA                          NA
## 749                                           NA                          NA
## 750                                           NA                          NA
## 751                                           NA                          NA
## 752                                           NA                          NA
## 753                                           NA                          NA
## 754                                            1                           0
## 755                                           NA                          NA
## 756                                           NA                          NA
## 757                                           NA                          NA
## 758                                           NA                          NA
## 759                                           NA                          NA
## 760                                           NA                          NA
## 761                                           NA                          NA
## 762                                           NA                          NA
## 763                                           NA                          NA
## 764                                           NA                          NA
## 765                                           NA                          NA
## 766                          0.82630000000000003                           0
## 767                          0.62960000000000005                           0
## 768                                           NA                          NA
## 769                                            *                           0
## 770                                            1                           0
## 771                          0.77610000000000001                           0
## 772                                           NA                          NA
## 773                                           NA                          NA
## 774                                           NA                          NA
## 775                                            0                           0
## 776                                           NA                          NA
## 777                          0.12820000000000001                           0
## 778                                           NA                          NA
## 779                                           NA                          NA
## 780                          0.54549999999999998                           0
## 781                                            *                           *
## 782                                           NA                          NA
## 783                          0.85709999999999997                           0
## 784                                           NA                          NA
## 785                                           NA                          NA
## 786                          0.78569999999999995                           0
## 787                                         0.75                           0
## 788                                           NA                          NA
## 789                                           NA                          NA
## 790                                           NA                          NA
## 791                                           NA                          NA
## 792                                           NA                          NA
## 793                          0.83999999999999997                           0
## 794                                            1                           0
## 795                                           NA                          NA
## 796                                            *                           0
## 797                                           NA                          NA
## 798                          0.88890000000000002                           0
## 799                                            1                           0
## 800                                           NA                          NA
## 801                                           NA                          NA
## 802                                           NA                          NA
## 803                          0.77780000000000005                           0
## 804                                           NA                          NA
## 805                                           NA                          NA
## 806                                           NA                          NA
## 807                                           NA                          NA
## 808                                           NA                          NA
## 809                                           NA                          NA
## 810                                           NA                          NA
## 811                                           NA                          NA
## 812                                           NA                          NA
## 813                                            *                           *
## 814                                           NA                          NA
## 815                                           NA                          NA
## 816                                           NA                          NA
## 817                                           NA                          NA
## 818                                           NA                          NA
## 819                                           NA                          NA
## 820                                           NA                          NA
## 821                                           NA                          NA
## 822                                           NA                          NA
## 823                                           NA                          NA
## 824                                           NA                          NA
## 825                                           NA                          NA
## 826                                           NA                          NA
## 827                                            *                           0
## 828                                           NA                          NA
## 829                                           NA                          NA
## 830                                            *                           *
## 831                          0.85709999999999997                           0
## 832                                            *                           0
## 833                                           NA                          NA
## 834                                           NA                          NA
## 835                                            *                           0
## 836                          0.78259999999999996                           0
## 837                                            *                           0
## 838                                        0.625                           0
## 839                                           NA                          NA
## 840                                           NA                          NA
## 841                                           NA                          NA
## 842                                            *                           *
## 843                          0.45450000000000002                           0
## 844                                           NA                          NA
## 845                                            *                           *
## 846                          0.90000000000000002                           0
## 847                                            *                           *
## 848                                            1                           0
## 849                                            *                           *
## 850                          0.82350000000000001                           0
## 851                                       0.4375                           0
## 852                          0.88329999999999997                           0
## 853                                           NA                          NA
## 854                                            *                           *
## 855                          0.23080000000000001                           0
## 856                                            *                           0
## 857                                            1                           0
## 858                                           NA                          NA
## 859                          0.91669999999999996                           0
## 860                                            *                           *
## 861                                           NA                          NA
## 862                                           NA                          NA
## 863                                           NA                          NA
## 864                                           NA                          NA
## 865                                           NA                          NA
## 866                                           NA                          NA
## 867                                           NA                          NA
## 868                                            *                           *
## 869                                           NA                          NA
## 870                          0.79410000000000003                           0
## 871                                           NA                          NA
## 872                                           NA                          NA
## 873                                           NA                          NA
## 874                                            *                           0
## 875                                           NA                          NA
## 876                          0.66669999999999996                           0
## 877                                            1                           0
## 878                          0.66669999999999996                           0
## 879                                           NA                          NA
## 880                                           NA                          NA
## 881                                           NA                          NA
## 882                                           NA                          NA
## 883                                           NA                          NA
## 884                                           NA                          NA
## 885                                           NA                          NA
## 886                                           NA                          NA
## 887                                           NA                          NA
## 888                                           NA                          NA
## 889                                           NA                          NA
## 890                                           NA                          NA
## 891                                           NA                          NA
## 892                                           NA                          NA
## 893                                           NA                          NA
## 894                                           NA                          NA
## 895                                           NA                          NA
## 896                                           NA                          NA
## 897                                           NA                          NA
## 898                                           NA                          NA
## 899                                           NA                          NA
## 900                                           NA                          NA
## 901                                           NA                          NA
## 902                                           NA                          NA
## 903                                           NA                          NA
## 904                                           NA                          NA
## 905                                           NA                          NA
## 906                                           NA                          NA
## 907                                           NA                          NA
## 908                                           NA                          NA
## 909                                           NA                          NA
## 910                                           NA                          NA
## 911                                           NA                          NA
## 912                                           NA                          NA
## 913                                           NA                          NA
## 914                                           NA                          NA
## 915                                           NA                          NA
## 916                                           NA                          NA
## 917                          0.33329999999999999                           0
## 918                                           NA                          NA
## 919                                           NA                          NA
## 920                                           NA                          NA
## 921                                           NA                          NA
## 922                                           NA                          NA
## 923                          0.59999999999999998                           0
## 924                                           NA                          NA
## 925                                           NA                          NA
## 926                                           NA                          NA
## 927                                           NA                          NA
## 928                                           NA                          NA
## 929                                           NA                          NA
## 930                                           NA                          NA
## 931                                           NA                          NA
## 932                                           NA                          NA
## 933                                           NA                          NA
## 934                                           NA                          NA
## 935                                           NA                          NA
## 936                                           NA                          NA
## 937                                           NA                          NA
## 938                                           NA                          NA
## 939                                           NA                          NA
## 940                                           NA                          NA
## 941                                           NA                          NA
## 942                                           NA                          NA
## 943                                           NA                          NA
## 944                                           NA                          NA
## 945                                           NA                          NA
## 946                                           NA                          NA
## 947                                           NA                          NA
## 948                                           NA                          NA
## 949                                           NA                          NA
## 950                                           NA                          NA
## 951                                           NA                          NA
## 952                                           NA                          NA
## 953                                           NA                          NA
## 954                                           NA                          NA
## 955                                           NA                          NA
## 956                                           NA                          NA
## 957                                           NA                          NA
## 958                                           NA                          NA
## 959                                           NA                          NA
## 960                                           NA                          NA
## 961                                           NA                          NA
## 962                                           NA                          NA
## 963                                           NA                          NA
## 964                                           NA                          NA
## 965                                           NA                          NA
## 966                                           NA                          NA
## 967                                           NA                          NA
## 968                                           NA                          NA
## 969                                           NA                          NA
## 970                                           NA                          NA
## 971                                           NA                          NA
## 972                                           NA                          NA
## 973                                           NA                          NA
## 974                                           NA                          NA
## 975                                           NA                          NA
## 976                                           NA                          NA
## 977                                           NA                          NA
## 978                                           NA                          NA
## 979                                           NA                          NA
## 980                                           NA                          NA
## 981                                           NA                          NA
## 982                                           NA                          NA
## 983                                           NA                          NA
## 984                                           NA                          NA
## 985                                           NA                          NA
## 986                                           NA                          NA
## 987                                           NA                          NA
## 988                                           NA                          NA
## 989                                           NA                          NA
## 990                                           NA                          NA
## 991                                           NA                          NA
## 992                                           NA                          NA
## 993                                           NA                          NA
## 994                                           NA                          NA
## 995                                           NA                          NA
## 996                                           NA                          NA
## 997                                           NA                          NA
## 998                          0.86529999999999996                           0
## 999                          0.87549999999999994                           0
## 1000                                          NA                          NA
## 1001                                          NA                          NA
## 1002                                          NA                          NA
## 1003                         0.67469999999999997                           0
## 1004                                          NA                          NA
## 1005                                          NA                          NA
## 1006                                          NA                          NA
## 1007                                          NA                          NA
## 1008                                          NA                          NA
## 1009                                          NA                          NA
## 1010                         0.94869999999999999                           0
## 1011                         0.78129999999999999                           0
## 1012                                           *                           *
## 1013                                        0.44                           0
## 1014                         0.28299999999999997                           *
## 1015                         0.71109999999999995                           0
## 1016                         0.53369999999999995                           0
## 1017                                           *                           *
## 1018                         0.17199999999999999                           0
## 1019                                           0                           0
## 1020                         0.83330000000000004                           0
## 1021                         0.58460000000000001                           0
## 1022                         0.75639999999999996                           0
## 1023                                      0.1061                           0
## 1024                                           *                           *
## 1025                         0.58960000000000001                           0
## 1026                         0.75760000000000005                           0
## 1027                         0.48680000000000001                           0
## 1028                         0.44040000000000001                           0
## 1029                         0.96299999999999997                           0
## 1030                         0.13689999999999999                           0
## 1031                                      0.1477                           0
## 1032                         0.25969999999999999                           0
## 1033                        0.079299999999999995                           0
## 1034                         0.21759999999999999                           0
## 1035                         0.66669999999999996                           *
## 1036                                      0.1206                           *
## 1037                                           *                           *
## 1038                                       0.108                           0
## 1039                                      0.2039                           0
## 1040                                         0.5                           0
## 1041                                           *                           0
## 1042                                           *                           0
## 1043                        0.068000000000000005                           0
## 1044                         0.40739999999999998                           0
## 1045                                           1                           0
## 1046                                          NA                          NA
## 1047                                           1                           0
## 1048                                          NA                          NA
## 1049                                          NA                          NA
## 1050                                          NA                          NA
## 1051                                      0.9143                           0
## 1052                                          NA                          NA
## 1053                         0.96150000000000002                           0
## 1054                         0.95079999999999998                           0
## 1055                                           *                           *
## 1056                                           *                           *
## 1057                                          NA                          NA
## 1058                                           *                           *
## 1059                                          NA                          NA
## 1060                                          NA                          NA
## 1061                         0.85209999999999997                           0
## 1062                                          NA                          NA
## 1063                                          NA                          NA
## 1064                                          NA                          NA
## 1065                                          NA                          NA
## 1066                         0.77780000000000005                           0
## 1067                                           *                           *
## 1068                                           1                           0
## 1069                                          NA                          NA
## 1070                                          NA                          NA
## 1071                                           1                           0
## 1072                                          NA                          NA
## 1073                                          NA                          NA
## 1074                                          NA                          NA
## 1075                                          NA                          NA
## 1076                                           *                           *
## 1077                                           *                           *
## 1078                                          NA                          NA
## 1079                                          NA                          NA
## 1080                                          NA                          NA
## 1081                                          NA                          NA
## 1082                                          NA                          NA
## 1083                                          NA                          NA
## 1084                                          NA                          NA
## 1085                                          NA                          NA
## 1086                                          NA                          NA
## 1087                                          NA                          NA
## 1088                                          NA                          NA
## 1089                                          NA                          NA
## 1090                                          NA                          NA
## 1091                                          NA                          NA
## 1092                                          NA                          NA
## 1093                                          NA                          NA
## 1094                                          NA                          NA
## 1095                         0.60509999999999997                           0
## 1096                         0.64419999999999999                           0
## 1097                         0.63970000000000005                           0
## 1098                         0.61650000000000005                           0
## 1099                         0.50829999999999997                           0
## 1100                                      0.3478                           0
## 1101                         0.65769999999999995                           0
## 1102                         0.59599999999999997                           0
## 1103                         0.56110000000000004                           0
## 1104                         0.62619999999999998                           0
## 1105                         0.68179999999999996                           0
## 1106                         0.68259999999999998                           0
## 1107                         0.66669999999999996                           0
## 1108                         0.48570000000000002                           0
## 1109                                      0.5534                           0
## 1110                         0.40000000000000002                           0
## 1111                                          NA                          NA
## 1112                                          NA                          NA
## 1113                                          NA                          NA
## 1114                                          NA                          NA
## 1115                                          NA                          NA
## 1116                                      0.9536                           0
## 1117                         0.86260000000000003                           0
## 1118                         0.80000000000000004                           0
## 1119                                      0.8226                           0
## 1120                         0.67069999999999996                           0
## 1121                         0.46150000000000002                           0
## 1122                                      0.3553                           0
## 1123                                           *                           *
## 1124                         0.28570000000000001                           0
## 1125                         0.66669999999999996                           0
## 1126                         0.81899999999999995                           0
## 1127                                      0.3548                           0
## 1128                         0.78349999999999997                           0
## 1129                         0.59519999999999995                           0
## 1130                                      0.4118                           0
## 1131                         0.65380000000000005                           0
## 1132                                      0.3306                           0
## 1133                         0.85709999999999997                           0
## 1134                                      0.3478                           0
## 1135                                           *                           *
## 1136                                      0.3654                           0
## 1137                         0.69999999999999996                           0
## 1138                         0.70589999999999997                           0
## 1139                         0.74770000000000003                           0
## 1140                                      0.6482                           0
## 1141                                           *                           *
## 1142                                       0.312                           0
## 1143                                          NA                          NA
## 1144                         0.52380000000000004                           0
## 1145                         0.32219999999999999                           0
## 1146                         0.21290000000000001                           0
## 1147                                          NA                          NA
## 1148                         0.69699999999999995                           0
## 1149                                         0.5                           *
## 1150                                      0.7742                           0
## 1151                         0.76470000000000005                           0
## 1152                                      0.1653                           0
## 1153                         0.31190000000000001                           0
## 1154                                      0.1246                           0
## 1155                                           *                          NA
## 1156                         0.71299999999999997                           0
## 1157                                      0.1429                           0
## 1158                         0.71930000000000005                           0
## 1159                         0.72089999999999999                           0
## 1160                                           1                           0
## 1161                                          NA                          NA
## 1162                         0.70830000000000004                           0
## 1163                         0.81820000000000004                           *
## 1164                                           1                          NA
## 1165                                          NA                          NA
## 1166                         0.57320000000000004                           0
## 1167                                           *                           *
## 1168                                           1                           *
## 1169                                           *                          NA
## 1170                                           *                           *
## 1171                                           *                           *
## 1172                                           *                           *
## 1173                         0.90000000000000002                           0
## 1174                                          NA                          NA
## 1175                                          NA                          NA
## 1176                                          NA                          NA
## 1177                                          NA                          NA
## 1178                                          NA                          NA
## 1179                                          NA                          NA
## 1180                                          NA                          NA
## 1181                                          NA                          NA
## 1182                                          NA                          NA
## 1183                                          NA                          NA
## 1184                                          NA                          NA
## 1185                                          NA                          NA
## 1186                                          NA                          NA
## 1187                                          NA                          NA
## 1188                                          NA                          NA
## 1189                                          NA                          NA
## 1190                                          NA                          NA
## 1191                                          NA                          NA
## 1192                                          NA                          NA
## 1193                                          NA                          NA
## 1194                                          NA                          NA
## 1195                                          NA                          NA
## 1196                                          NA                          NA
## 1197                                          NA                          NA
## 1198                                          NA                          NA
## 1199                                          NA                          NA
## 1200                                          NA                          NA
## 1201                                          NA                          NA
## 1202                                          NA                          NA
## 1203                                          NA                          NA
## 1204                                          NA                          NA
## 1205                                          NA                          NA
## 1206                                          NA                          NA
## 1207                                          NA                          NA
## 1208                                          NA                          NA
## 1209                                          NA                          NA
## 1210                                          NA                          NA
## 1211                                          NA                          NA
## 1212                                          NA                          NA
## 1213                                          NA                          NA
## 1214                                          NA                          NA
## 1215                                          NA                          NA
## 1216                                          NA                          NA
## 1217                                          NA                          NA
## 1218                                          NA                          NA
## 1219                                          NA                          NA
## 1220                                          NA                          NA
## 1221                                          NA                          NA
## 1222                                          NA                          NA
## 1223                                          NA                          NA
## 1224                                          NA                          NA
## 1225                                          NA                          NA
## 1226                                          NA                          NA
## 1227                                          NA                          NA
## 1228                                          NA                          NA
## 1229                                          NA                          NA
## 1230                                          NA                          NA
## 1231                                          NA                          NA
## 1232                                          NA                          NA
## 1233                                          NA                          NA
## 1234                                          NA                          NA
## 1235                                          NA                          NA
## 1236                                          NA                          NA
## 1237                                          NA                          NA
## 1238                                          NA                          NA
## 1239                                          NA                          NA
## 1240                                          NA                          NA
## 1241                                          NA                          NA
## 1242                                          NA                          NA
## 1243                                          NA                          NA
## 1244                                          NA                          NA
## 1245                                          NA                          NA
## 1246                                          NA                          NA
## 1247                                          NA                          NA
## 1248                                          NA                          NA
## 1249                                          NA                          NA
## 1250                                          NA                          NA
## 1251                                          NA                          NA
## 1252                                          NA                          NA
## 1253                                          NA                          NA
## 1254                                          NA                          NA
## 1255                                          NA                          NA
## 1256                                          NA                          NA
## 1257                                          NA                          NA
## 1258                                          NA                          NA
## 1259                                          NA                          NA
## 1260                                          NA                          NA
## 1261                                          NA                          NA
## 1262                                          NA                          NA
## 1263                                          NA                          NA
## 1264                                          NA                          NA
## 1265                                          NA                          NA
## 1266                                          NA                          NA
## 1267                                          NA                          NA
## 1268                                          NA                          NA
## 1269                                          NA                          NA
## 1270                                          NA                          NA
## 1271                                          NA                          NA
## 1272                                          NA                          NA
## 1273                                          NA                          NA
## 1274                                          NA                          NA
## 1275                                          NA                          NA
## 1276                                          NA                          NA
## 1277                                           *                           *
## 1278                                         0.5                           *
## 1279                                           *                           *
## 1280                         0.86670000000000003                           0
## 1281                                           0                           0
## 1282                                           *                           *
## 1283                                           *                           *
## 1284                                           *                           *
## 1285                                      0.1293                           0
## 1286                                           *                          NA
## 1287                                           *                           *
## 1288                                           *                           *
## 1289                         0.46150000000000002                           0
## 1290                                           *                           *
## 1291                                           *                           *
## 1292                                           1                           0
## 1293                         0.58819999999999995                           0
## 1294                                           *                           *
## 1295                                           1                           0
## 1296                                          NA                          NA
## 1297                         0.43480000000000002                           0
## 1298                                           *                           *
## 1299                                           1                           0
## 1300                                          NA                          NA
## 1301                                           0                           0
## 1302                                           *                           *
## 1303                                      0.3049                           0
## 1304                         0.16669999999999999                           *
## 1305                                           1                           *
## 1306                                           *                           *
## 1307                                           *                           *
## 1308                         0.59999999999999998                           0
## 1309                                          NA                          NA
## 1310                                           *                          NA
## 1311                                      0.9617                           0
## 1312                         0.22220000000000001                           0
## 1313                                           *                           *
## 1314                         0.45450000000000002                           *
## 1315                         0.68289999999999995                           0
## 1316                                           *                           *
## 1317                                           *                           *
## 1318                                           *                           *
## 1319                         0.25580000000000003                           0
## 1320                                           *                           *
## 1321                                          NA                          NA
## 1322                         0.23530000000000001                           0
## 1323                                           *                           *
## 1324                                          NA                          NA
## 1325                                           *                           *
## 1326                                           *                           *
## 1327                         0.56769999999999998                           0
## 1328                                           *                           *
## 1329                                           *                           *
## 1330                                      0.2727                           0
## 1331                                           *                           *
## 1332                                           *                           *
## 1333                                           *                           *
## 1334                         0.14999999999999999                           *
## 1335                         0.25640000000000002                           0
## 1336                                           *                           *
## 1337                                           0                           0
## 1338                         0.90910000000000002                           *
## 1339                                           *                           *
## 1340                                      0.9375                           0
## 1341                                           *                           *
## 1342                         0.10000000000000001                           0
## 1343                                           *                           *
## 1344                         0.84619999999999995                           0
## 1345                         0.76919999999999999                           0
## 1346                                      0.2054                           0
## 1347                         0.55559999999999998                           *
## 1348                                           0                           *
## 1349                         0.86839999999999995                           0
## 1350                                           1                          NA
## 1351                         0.11899999999999999                           0
## 1352                         0.38890000000000002                           0
## 1353                                           *                           *
## 1354                        0.025100000000000001                           0
## 1355                                           *                           *
## 1356                                           0                           0
## 1357                                          NA                          NA
## 1358                         0.45829999999999999                           0
## 1359                         0.69230000000000003                           *
## 1360                         0.90000000000000002                           *
## 1361                                           *                           *
## 1362                                           0                           *
## 1363                                          NA                          NA
## 1364                                           1                           0
## 1365                                          NA                          NA
## 1366                         0.98309999999999997                           0
## 1367                                           1                           0
## 1368                                           1                           0
## 1369                                           1                           0
## 1370                         0.97870000000000001                           0
## 1371                                           1                           0
## 1372                                           1                           0
## 1373                                        0.75                           *
## 1374                                           1                           0
## 1375                                          NA                          NA
## 1376                                           1                           0
## 1377                                           1                           0
## 1378                                           1                           *
## 1379                                           1                           0
## 1380                                           1                           *
## 1381                                           1                           0
## 1382                         0.89380000000000004                           0
## 1383                         0.93940000000000001                           0
## 1384                                           1                           *
## 1385                                          NA                          NA
## 1386                                          NA                          NA
## 1387                         0.73929999999999996                           0
## 1388                                          NA                          NA
## 1389                                          NA                          NA
## 1390                                           1                           0
## 1391                                           1                           0
## 1392                         0.70369999999999999                           0
## 1393                         0.88270000000000004                           0
## 1394                         0.67830000000000001                           0
## 1395                         0.47370000000000001                           *
## 1396                                          NA                          NA
## 1397                         0.69230000000000003                           *
## 1398                                           1                           *
## 1399                                          NA                          NA
## 1400                                          NA                          NA
## 1401                                           1                           0
## 1402                                          NA                          NA
## 1403                                           1                           0
## 1404                                           1                           0
## 1405                                           1                           *
## 1406                                           1                           0
## 1407                                           *                           *
## 1408                                          NA                          NA
## 1409                                           1                           0
## 1410                                           1                           0
## 1411                                           1                           0
## 1412                                           1                           0
## 1413                                           1                           0
## 1414                                          NA                          NA
## 1415                                           1                           *
## 1416                                          NA                          NA
## 1417                                           1                           *
## 1418                                           *                           *
## 1419                                           1                           0
## 1420                                           1                           0
## 1421                                          NA                          NA
## 1422                                          NA                          NA
## 1423                                           1                           *
## 1424                                           1                           *
## 1425                                           1                           0
## 1426                                           1                           0
## 1427                                          NA                          NA
## 1428                                           1                           0
## 1429                                          NA                          NA
## 1430                                           1                           0
## 1431                                           *                          NA
## 1432                                           1                           0
## 1433                                           1                           0
## 1434                                           1                           0
## 1435                                           1                           0
## 1436                                           1                           0
## 1437                                           *                           *
## 1438                                           1                           *
## 1439                                           1                           0
## 1440                                           *                          NA
## 1441                                           *                          NA
## 1442                                           1                           *
## 1443                                           *                           *
## 1444                                           *                           *
## 1445                                          NA                          NA
## 1446                                           1                           0
## 1447                                          NA                          NA
## 1448                                           1                           0
## 1449                                           1                           0
## 1450                                           1                           0
## 1451                                           1                           *
## 1452                                          NA                          NA
## 1453                                           1                           *
## 1454                                           *                          NA
## 1455                                           1                           *
## 1456                                           *                           *
## 1457                                          NA                          NA
## 1458                                          NA                          NA
## 1459                                           1                           *
## 1460                                           1                           0
## 1461                                          NA                          NA
## 1462                                           *                          NA
## 1463                                           1                           *
## 1464                                           1                           0
## 1465                                           1                           *
## 1466                                          NA                          NA
## 1467                                           1                           0
## 1468                                          NA                          NA
## 1469                                           1                          NA
## 1470                                           1                           0
## 1471                                          NA                          NA
## 1472                                           1                           0
## 1473                                           1                           0
## 1474                                          NA                          NA
## 1475                                          NA                          NA
## 1476                                           1                           *
## 1477                                           1                          NA
## 1478                                          NA                          NA
## 1479                                          NA                          NA
## 1480                                           1                           *
## 1481                                          NA                          NA
## 1482                                           1                           0
## 1483                                           1                           0
## 1484                                          NA                          NA
## 1485                         0.89739999999999998                           0
## 1486                         0.98019999999999996                           0
## 1487                         0.97940000000000005                           0
## 1488                                          NA                          NA
## 1489                         0.71020000000000005                           0
## 1490                         0.88100000000000001                           0
## 1491                                           *                           *
## 1492                                          NA                          NA
## 1493                                           *                           *
## 1494                                          NA                          NA
## 1495                         0.60750000000000004                           0
## 1496                         0.63390000000000002                           0
## 1497                                           1                           0
## 1498                         0.54220000000000002                           0
## 1499                                           1                           0
## 1500                         0.61539999999999995                           0
## 1501                         0.77780000000000005                           0
## 1502                                           1                           0
## 1503                                           1                           0
## 1504                                           1                           0
## 1505                                           1                           0
## 1506                                           1                           0
## 1507                                          NA                          NA
## 1508                                          NA                          NA
## 1509                         0.70830000000000004                           0
## 1510                                          NA                          NA
## 1511                         0.84619999999999995                           0
## 1512                                          NA                          NA
## 1513                                          NA                          NA
## 1514                         0.43480000000000002                           0
## 1515                                          NA                          NA
## 1516                         0.36840000000000001                           *
## 1517                         0.71430000000000005                           0
## 1518                         0.52629999999999999                           0
## 1519                                           1                           0
## 1520                                           1                          NA
## 1521                                          NA                          NA
## 1522                                          NA                          NA
## 1523                                          NA                          NA
## 1524                                          NA                          NA
## 1525                         0.70109999999999995                           0
## 1526                         0.64480000000000004                           0
## 1527                         0.44309999999999999                           0
## 1528                                           *                           *
## 1529                                           *                           *
## 1530                                           *                           *
## 1531                                           *                           *
## 1532                                           1                           0
## 1533                         0.83330000000000004                           0
## 1534                                           *                           *
## 1535                                           1                           *
## 1536                                           *                           *
## 1537                                          NA                          NA
## 1538                                           *                           *
## 1539                                          NA                          NA
## 1540                                          NA                          NA
## 1541                                          NA                          NA
## 1542                                          NA                          NA
## 1543                         0.94740000000000002                           0
## 1544                                          NA                          NA
## 1545                         0.93330000000000002                           0
## 1546                                           1                           0
## 1547                                           *                           *
## 1548                                          NA                          NA
## 1549                                          NA                          NA
## 1550                                          NA                          NA
## 1551                                          NA                          NA
## 1552                                          NA                          NA
## 1553                                          NA                          NA
## 1554                                          NA                          NA
## 1555                                          NA                          NA
## 1556                                          NA                          NA
## 1557                                          NA                          NA
## 1558                                          NA                          NA
## 1559                                          NA                          NA
## 1560                                          NA                          NA
## 1561                                          NA                          NA
## 1562                                          NA                          NA
## 1563                                          NA                          NA
## 1564                                          NA                          NA
## 1565                                          NA                          NA
## 1566                                          NA                          NA
## 1567                                          NA                          NA
## 1568                                          NA                          NA
## 1569                                          NA                          NA
## 1570                                          NA                          NA
## 1571                                          NA                          NA
## 1572                                          NA                          NA
## 1573                                          NA                          NA
## 1574                                          NA                          NA
## 1575                                          NA                          NA
## 1576                                          NA                          NA
## 1577                                          NA                          NA
## 1578                                          NA                          NA
## 1579                                          NA                          NA
## 1580                                          NA                          NA
## 1581                         0.77659999999999996                           0
## 1582                         0.69440000000000002                           0
## 1583                         0.86629999999999996                           0
## 1584                         0.85389999999999999                           0
## 1585                         0.53510000000000002                           0
## 1586                                          NA                          NA
## 1587                                       0.125                           *
## 1588                         0.31819999999999998                           0
## 1589                                      0.3125                           0
## 1590                         0.95069999999999999                           0
## 1591                         0.20349999999999999                           *
## 1592                                           0                           *
## 1593                         0.48649999999999999                           0
## 1594                         0.38100000000000001                           *
## 1595                         0.27779999999999999                           *
## 1596                                           *                           *
## 1597                                           *                           *
## 1598                                           *                           0
## 1599                         0.86760000000000004                           0
## 1600                         0.43020000000000003                           *
## 1601                         0.91379999999999995                           0
## 1602                                           *                           *
## 1603                         0.34150000000000003                           0
## 1604                         0.44190000000000002                           0
## 1605                         0.21590000000000001                           0
## 1606                                      0.1275                           0
## 1607                         0.22220000000000001                           *
## 1608                                      0.1615                           0
## 1609                                           *                           *
## 1610                         0.21740000000000001                           *
## 1611                                           *                           *
## 1612                         0.56330000000000002                           0
## 1613                         0.66669999999999996                           0
## 1614                                      0.5302                           0
## 1615                         0.96250000000000002                           0
## 1616                         0.15690000000000001                           0
## 1617                                           *                           *
## 1618                                      0.2286                           *
## 1619                                           1                           *
## 1620                                           *                           *
## 1621                                          NA                          NA
## 1622                         0.52680000000000005                           0
## 1623                         0.50960000000000005                           0
## 1624                                          NA                          NA
## 1625                         0.55449999999999999                           0
## 1626                         0.67900000000000005                           0
## 1627                         0.59999999999999998                           0
## 1628                                          NA                          NA
## 1629                                          NA                          NA
## 1630                                          NA                          NA
## 1631                                       0.625                           0
## 1632                         0.55000000000000004                           0
## 1633                                       0.875                           0
## 1634                         0.33329999999999999                           0
## 1635                         0.93330000000000002                           0
## 1636                         0.77139999999999997                           0
## 1637                                           *                           *
## 1638                                           *                           *
## 1639                                          NA                          NA
## 1640                         0.77139999999999997                           0
## 1641                                          NA                          NA
## 1642                                          NA                          NA
## 1643                                          NA                          NA
## 1644                                          NA                          NA
## 1645                                           *                           *
## 1646                                           *                           *
## 1647                                           *                           *
## 1648                                           *                           *
## 1649                                           *                           *
## 1650                                           *                           *
## 1651                                           *                           *
## 1652                                          NA                          NA
## 1653                                           1                           0
## 1654                                           *                           *
## 1655                                           *                           *
## 1656                                          NA                          NA
## 1657                         0.70650000000000002                           0
## 1658                                           *                           *
## 1659                                           *                          NA
## 1660                         0.76829999999999998                           0
## 1661                         0.59999999999999998                           0
## 1662                         0.99729999999999996                           0
## 1663                         0.28000000000000003                           *
## 1664                                           *                           *
## 1665                         0.72270000000000001                           0
## 1666                                           1                           0
## 1667                                          NA                          NA
## 1668                                           1                           0
## 1669                                          NA                          NA
## 1670                         0.92059999999999997                           0
## 1671                                           *                           *
## 1672                         0.65380000000000005                           0
## 1673                                          NA                          NA
## 1674                                          NA                          NA
## 1675                                           *                           *
## 1676                         0.84130000000000005                           0
## 1677                         0.82350000000000001                           0
## 1678                         0.71699999999999997                           0
## 1679                         0.62050000000000005                           0
## 1680                         0.97440000000000004                           0
## 1681                         0.74070000000000003                           0
## 1682                                          NA                          NA
## 1683                                           *                           *
## 1684                         0.96930000000000005                           0
## 1685                         0.34499999999999997                           0
## 1686                         0.97999999999999998                           0
## 1687                         0.46339999999999998                          NA
## 1688                         0.35560000000000003                          NA
## 1689                                          NA                          NA
## 1690                                          NA                          NA
## 1691                                           *                           *
## 1692                                           1                           0
## 1693                         0.69999999999999996                           *
## 1694                                          NA                          NA
## 1695                                          NA                          NA
## 1696                                          NA                          NA
## 1697                                           *                           *
## 1698                         0.90000000000000002                           0
## 1699                                           1                           *
## 1700                                           1                          NA
## 1701                                          NA                          NA
## 1702                                          NA                          NA
## 1703                                          NA                          NA
## 1704                                          NA                          NA
## 1705                                           1                           0
## 1706                                           1                           0
## 1707                                           *                           *
## 1708                                           *                           *
## 1709                                          NA                          NA
## 1710                                          NA                          NA
## 1711                                          NA                          NA
## 1712                                          NA                          NA
## 1713                                          NA                          NA
## 1714                         0.84060000000000001                           0
## 1715                                          NA                          NA
## 1716                         0.79549999999999998                           0
## 1717                                           1                           0
## 1718                         0.93330000000000002                           0
## 1719                                          NA                          NA
## 1720                                          NA                          NA
## 1721                                          NA                          NA
## 1722                                          NA                          NA
## 1723                                          NA                          NA
## 1724                                           *                           *
## 1725                                           *                          NA
## 1726                                           *                           *
## 1727                                           1                           0
## 1728                                           *                          NA
## 1729                                          NA                          NA
## 1730                                          NA                          NA
## 1731                                          NA                          NA
## 1732                                          NA                          NA
## 1733                         0.90000000000000002                           0
## 1734                         0.90000000000000002                           0
## 1735                                      0.9778                           0
## 1736                                           *                           *
## 1737                         0.93879999999999997                           0
## 1738                         0.95309999999999995                           0
## 1739                         0.89510000000000001                           0
## 1740                         0.92200000000000004                           0
## 1741                         0.89100000000000001                           0
## 1742                         0.71430000000000005                           *
## 1743                                           *                           *
## 1744                                           *                           *
## 1745                                           1                           0
## 1746                         0.96150000000000002                           0
## 1747                                          NA                          NA
## 1748                                          NA                          NA
## 1749                                          NA                          NA
## 1750                                           *                           *
## 1751                                           1                          NA
## 1752                                           1                           0
## 1753                                          NA                          NA
## 1754                                           *                           *
## 1755                                           *                           *
## 1756                                          NA                          NA
## 1757                                           *                           *
## 1758                                           *                           *
## 1759                                          NA                          NA
## 1760                                          NA                          NA
## 1761                                          NA                          NA
## 1762                                          NA                          NA
## 1763                                          NA                          NA
## 1764                                          NA                          NA
## 1765                                          NA                          NA
## 1766                                          NA                          NA
## 1767                                          NA                          NA
## 1768                                          NA                          NA
## 1769                                          NA                          NA
## 1770                                          NA                          NA
## 1771                                          NA                          NA
## 1772                                          NA                          NA
## 1773                                          NA                          NA
## 1774                                          NA                          NA
## 1775                                          NA                          NA
## 1776                                          NA                          NA
## 1777                                          NA                          NA
## 1778                                          NA                          NA
## 1779                                          NA                          NA
## 1780                                          NA                          NA
## 1781                                          NA                          NA
## 1782                                          NA                          NA
## 1783                                          NA                          NA
## 1784                                          NA                          NA
## 1785                                          NA                          NA
## 1786                                          NA                          NA
## 1787                                          NA                          NA
## 1788                                          NA                          NA
## 1789                         0.78259999999999996                           0
## 1790                         0.80000000000000004                           0
## 1791                         0.35709999999999997                           0
## 1792                         0.45950000000000002                           *
## 1793                         0.47499999999999998                           0
## 1794                                        0.25                           *
## 1795                         0.43240000000000001                           0
## 1796                         0.28770000000000001                           0
## 1797                         0.76729999999999998                           0
## 1798                         0.60160000000000002                           0
## 1799                                         0.5                           0
## 1800                         0.63460000000000005                           0
## 1801                         0.24049999999999999                           0
## 1802                                      0.7883                           0
## 1803                         0.18920000000000001                           0
## 1804                         0.71189999999999998                           0
## 1805                         0.89539999999999997                           0
## 1806                                      0.3256                           *
## 1807                         0.88890000000000002                           0
## 1808                         0.30430000000000001                           *
## 1809                                      0.3261                           0
## 1810                                           *                           0
## 1811                         0.47060000000000002                           0
## 1812                         0.48149999999999998                           0
## 1813                         0.95830000000000004                           0
## 1814                         0.70589999999999997                           0
## 1815                         0.94120000000000004                           0
## 1816                         0.75319999999999998                           0
## 1817                         0.62639999999999996                           0
## 1818                                           *                           *
## 1819                         0.46510000000000001                           0
## 1820                                           *                           0
## 1821                         0.87880000000000003                           0
## 1822                                      0.2238                           0
## 1823                         0.35560000000000003                           0
## 1824                         0.41670000000000001                           *
## 1825                                           *                           *
## 1826                         0.55000000000000004                           0
## 1827                                           *                           *
## 1828                         0.33850000000000002                           0
## 1829                         0.81720000000000004                           0
## 1830                         0.61109999999999998                           0
## 1831                                           *                           *
## 1832                                           *                           *
## 1833                         0.80920000000000003                           0
## 1834                         0.93620000000000003                           0
## 1835                         0.79549999999999998                           0
## 1836                         0.90000000000000002                           *
## 1837                                           1                           0
## 1838                         0.80000000000000004                           0
## 1839                                           1                           0
## 1840                         0.85709999999999997                           0
## 1841                         0.57920000000000005                           0
## 1842                         0.59460000000000002                           0
## 1843                         0.96950000000000003                           0
## 1844                                           1                           0
## 1845                                          NA                          NA
## 1846                         0.30769999999999997                           0
## 1847                         0.29630000000000001                           0
## 1848                         0.42249999999999999                           0
## 1849                                           1                           0
## 1850                         0.72729999999999995                           0
## 1851                         0.83999999999999997                           0
## 1852                         0.85709999999999997                           0
## 1853                                          NA                          NA
## 1854                                           1                           0
## 1855                                          NA                          NA
## 1856                         0.92130000000000001                           0
## 1857                                          NA                          NA
## 1858                                          NA                          NA
## 1859                                          NA                          NA
## 1860                                          NA                          NA
## 1861                                          NA                          NA
## 1862                                          NA                          NA
## 1863                                          NA                          NA
## 1864                                          NA                          NA
## 1865                         0.90910000000000002                           0
## 1866                                          NA                          NA
## 1867                         0.92859999999999998                           *
## 1868                         0.36840000000000001                           *
## 1869                                           1                           0
## 1870                         0.33329999999999999                           0
## 1871                         0.69569999999999999                           0
## 1872                         0.69810000000000005                           0
## 1873                                           1                           0
## 1874                                          NA                          NA
## 1875                                          NA                          NA
## 1876                                          NA                          NA
## 1877                         0.52780000000000005                           0
## 1878                         0.71430000000000005                           0
## 1879                                           *                          NA
## 1880                         0.20000000000000001                           0
## 1881                                           1                           0
## 1882                                           1                           *
## 1883                                           1                           0
## 1884                         0.48280000000000001                           0
## 1885                                          NA                          NA
## 1886                                          NA                          NA
## 1887                                          NA                          NA
## 1888                         0.74429999999999996                           0
## 1889                                          NA                          NA
## 1890                                          NA                          NA
## 1891                                          NA                          NA
## 1892                         0.57140000000000002                          NA
## 1893                                          NA                          NA
## 1894                         0.85709999999999997                           *
## 1895                                          NA                          NA
## 1896                                          NA                          NA
## 1897                                           *                           *
## 1898                         0.78259999999999996                           0
## 1899                         0.77780000000000005                           *
## 1900                                          NA                          NA
## 1901                                           *                          NA
## 1902                                          NA                          NA
## 1903                         0.96970000000000001                           0
## 1904                                          NA                          NA
## 1905                                          NA                          NA
## 1906                                          NA                          NA
## 1907                                          NA                          NA
## 1908                                          NA                          NA
## 1909                                          NA                          NA
## 1910                                          NA                          NA
## 1911                                          NA                          NA
## 1912                                          NA                          NA
## 1913                                          NA                          NA
## 1914                                          NA                          NA
## 1915                                          NA                          NA
## 1916                                          NA                          NA
## 1917                                          NA                          NA
## 1918                         0.78800000000000003                           0
## 1919                         0.81110000000000004                           0
## 1920                         0.82540000000000002                           0
## 1921                         0.77500000000000002                           0
## 1922                         0.71430000000000005                           0
## 1923                         0.66669999999999996                          NA
## 1924                                           *                          NA
## 1925                                          NA                          NA
## 1926                                          NA                          NA
## 1927                                          NA                          NA
## 1928                                          NA                          NA
## 1929                                          NA                          NA
## 1930                                          NA                          NA
## 1931                                          NA                          NA
## 1932                                          NA                          NA
## 1933                                           1                           *
## 1934                                          NA                          NA
## 1935                                          NA                          NA
## 1936                                          NA                          NA
## 1937                                          NA                          NA
## 1938                                           1                           *
## 1939                                           *                          NA
## 1940                                          NA                          NA
## 1941                                          NA                          NA
## 1942                                          NA                          NA
## 1943                                          NA                          NA
## 1944                                           *                          NA
## 1945                                          NA                          NA
## 1946                                          NA                          NA
## 1947                                          NA                          NA
## 1948                                          NA                          NA
## 1949                                          NA                          NA
## 1950                                          NA                          NA
## 1951                                          NA                          NA
## 1952                                          NA                          NA
## 1953                         0.26400000000000001                           0
## 1954                         0.55559999999999998                           0
## 1955                         0.68200000000000005                           0
## 1956                                      0.9476                           0
## 1957                         0.61960000000000004                           0
## 1958                                           0                           *
## 1959                         0.74160000000000004                           0
## 1960                                           *                           *
## 1961                         0.37690000000000001                           0
## 1962                         0.92210000000000003                           0
## 1963                         0.89339999999999997                           0
## 1964                         0.92159999999999997                           0
## 1965                                           *                           *
## 1966                                      0.6573                           0
## 1967                         0.36470000000000002                           0
## 1968                         0.53659999999999997                           0
## 1969                         0.38550000000000001                           0
## 1970                         0.57140000000000002                           0
## 1971                         0.47060000000000002                           0
## 1972                         0.62629999999999997                           0
## 1973                         0.91300000000000003                           0
## 1974                         0.83450000000000002                           0
## 1975                         0.95240000000000002                           0
## 1976                         0.88419999999999999                           0
## 1977                                      0.8478                           0
## 1978                                           1                           0
## 1979                         0.91149999999999998                           0
## 1980                                           *                           *
## 1981                         0.93630000000000002                           0
## 1982                         0.91300000000000003                           0
## 1983                         0.90090000000000003                           0
## 1984                                           *                           *
## 1985                         0.80559999999999998                           0
## 1986                         0.92159999999999997                           0
## 1987                         0.95740000000000003                           0
## 1988                                          NA                          NA
## 1989                         0.40000000000000002                           0
## 1990                         0.88890000000000002                           *
## 1991                         0.45100000000000001                           0
## 1992                                      0.6351                           0
## 1993                         0.78259999999999996                           0
## 1994                         0.32390000000000002                           0
## 1995                                          NA                          NA
## 1996                                          NA                          NA
## 1997                         0.78210000000000002                           0
## 1998                                           *                           *
## 1999                         0.63260000000000005                           0
## 2000                                        0.22                           0
## 2001                                        0.75                           0
## 2002                         0.59460000000000002                           0
## 2003                                           *                           *
## 2004                         0.41820000000000002                           0
## 2005                         0.42859999999999998                           0
## 2006                         0.33329999999999999                           *
## 2007                         0.60629999999999995                           0
## 2008                         0.64749999999999996                           0
## 2009                                      0.5968                           0
## 2010                         0.46150000000000002                           0
## 2011                                           1                           0
## 2012                                      0.7349                           0
## 2013                                      0.3125                           *
## 2014                         0.74219999999999997                           0
## 2015                                      0.9264                           0
## 2016                         0.92330000000000001                           0
## 2017                         0.95809999999999995                           0
## 2018                         0.89170000000000005                           0
## 2019                                           *                           *
## 2020                                           1                           0
## 2021                                           *                           *
## 2022                                           1                           0
## 2023                         0.99560000000000004                           0
## 2024                                           1                           0
## 2025                                           1                           0
## 2026                         0.99509999999999998                           0
## 2027                                           1                           0
## 2028                                           1                           0
## 2029                                           *                           *
## 2030                                           1                           0
## 2031                                           1                           0
## 2032                                           1                           0
## 2033                         0.85709999999999997                           *
## 2034                                           1                           0
## 2035                                           1                           0
## 2036                         0.82640000000000002                           0
## 2037                         0.32579999999999998                           0
## 2038                        0.080199999999999994                           0
## 2039                        0.098000000000000004                           *
## 2040                         0.70369999999999999                           0
## 2041                                           0                           0
## 2042                                           1                           0
## 2043                         0.86519999999999997                           0
## 2044                         0.13289999999999999                           0
## 2045                         0.53569999999999995                           0
## 2046                                      0.1152                           0
## 2047                         0.39129999999999998                           0
## 2048                         0.79339999999999999                           0
## 2049                                           *                           *
## 2050                         0.77900000000000003                           0
## 2051                        0.087900000000000006                           0
## 2052                         0.31580000000000003                           0
## 2053                         0.28420000000000001                           0
## 2054                         0.24560000000000001                           0
## 2055                                           *                           *
## 2056                         0.87229999999999996                           0
## 2057                                           *                           *
## 2058                                           *                           *
## 2059                                      0.1739                           0
## 2060                                           *                           *
## 2061                                          NA                          NA
## 2062                         0.82699999999999996                           0
## 2063                                          NA                          NA
## 2064                                          NA                          NA
## 2065                                          NA                          NA
## 2066                         0.93059999999999998                           0
## 2067                                           1                           *
## 2068                                           1                           0
## 2069                                      0.6573                           0
## 2070                         0.62860000000000005                           0
## 2071                         0.69399999999999995                           0
## 2072                         0.83999999999999997                           0
## 2073                         0.31109999999999999                           0
## 2074                         0.40910000000000002                           0
## 2075                                           *                           *
## 2076                         0.75319999999999998                           0
## 2077                                          NA                          NA
## 2078                         0.64039999999999997                           0
## 2079                                           *                           *
## 2080                         0.28949999999999998                           0
## 2081                                      0.1822                           0
## 2082                         0.32790000000000002                           0
## 2083                                      0.2419                           0
## 2084                         0.55000000000000004                           0
## 2085                                      0.4516                           0
## 2086                         0.89959999999999996                           0
## 2087                                           *                           *
## 2088                         0.29849999999999999                           0
## 2089                                           *                           *
## 2090                         0.53849999999999998                           *
## 2091                         0.25640000000000002                           0
## 2092                                      0.4451                           0
## 2093                         0.20000000000000001                           0
## 2094                        0.089300000000000004                           0
## 2095                         0.38179999999999997                           0
## 2096                         0.21740000000000001                           *
## 2097                                           *                           *
## 2098                         0.96299999999999997                           0
## 2099                         0.79339999999999999                           0
## 2100                                           *                           *
## 2101                         0.30909999999999999                           0
## 2102                         0.26469999999999999                           0
## 2103                         0.90910000000000002                           0
## 2104                         0.83330000000000004                           0
## 2105                         0.59999999999999998                           0
## 2106                                           *                           *
## 2107                                           *                           *
## 2108                                           *                          NA
## 2109                                           *                          NA
## 2110                                          NA                          NA
## 2111                                           *                          NA
## 2112                                          NA                          NA
## 2113                                           *                          NA
## 2114                                          NA                          NA
## 2115                                          NA                          NA
## 2116                                          NA                          NA
## 2117                                          NA                          NA
## 2118                         0.69999999999999996                          NA
## 2119                                          NA                          NA
## 2120                                          NA                          NA
## 2121                                           *                           *
## 2122                         0.77780000000000005                           *
## 2123                                           *                          NA
## 2124                                          NA                          NA
## 2125                                           *                          NA
## 2126                                          NA                          NA
## 2127                                           *                           *
## 2128                                          NA                          NA
## 2129                                          NA                          NA
## 2130                                          NA                          NA
## 2131                                          NA                          NA
## 2132                         0.73129999999999995                           0
## 2133                                       0.875                           0
## 2134                                          NA                          NA
## 2135                                          NA                          NA
## 2136                                           1                           0
## 2137                                           1                           0
## 2138                                           1                           0
## 2139                                           1                           0
## 2140                                          NA                          NA
## 2141                                           1                           0
## 2142                                           1                           0
## 2143                         0.44829999999999998                           0
## 2144                         0.69230000000000003                           0
## 2145                                          NA                          NA
## 2146                         0.87839999999999996                           0
## 2147                                           *                           *
## 2148                         0.63639999999999997                           0
## 2149                         0.70589999999999997                           0
## 2150                         0.92859999999999998                           *
## 2151                                      0.5413                           0
## 2152                                          NA                          NA
## 2153                         0.91180000000000005                           0
## 2154                                      0.7843                           0
## 2155                         0.51180000000000003                           0
## 2156                                          NA                          NA
## 2157                         0.13109999999999999                           0
## 2158                         0.61819999999999997                           0
## 2159                         0.29749999999999999                           0
## 2160                                          NA                          NA
## 2161                         0.73240000000000005                           0
## 2162                         0.27779999999999999                           0
## 2163                         0.51429999999999998                           0
## 2164                         0.97499999999999998                           0
## 2165                                          NA                          NA
## 2166                                          NA                          NA
## 2167                                           1                          NA
## 2168                         0.89800000000000002                           0
## 2169                                           1                           0
## 2170                                           1                           0
## 2171                                          NA                          NA
## 2172                                          NA                          NA
## 2173                         0.98680000000000001                           0
## 2174                                          NA                          NA
## 2175                                           *                          NA
## 2176                                      0.9284                           0
## 2177                                           1                           0
## 2178                         0.79520000000000002                           0
## 2179                         0.61439999999999995                           0
## 2180                         0.88890000000000002                           0
## 2181                         0.84999999999999998                           0
## 2182                         0.76470000000000005                           0
## 2183                         0.98860000000000003                           0
## 2184                                           *                           *
## 2185                         0.71430000000000005                           *
## 2186                                           1                           0
## 2187                         0.85709999999999997                           0
## 2188                         0.77710000000000001                           0
## 2189                                           0                           0
## 2190                                           *                           *
## 2191                                          NA                          NA
## 2192                                           *                           *
## 2193                                           *                          NA
## 2194                                           *                           *
## 2195                                          NA                          NA
## 2196                                           0                           *
## 2197                                          NA                          NA
## 2198                                          NA                          NA
## 2199                                           *                           *
## 2200                                           *                           *
## 2201                                           *                           *
## 2202                                           *                           *
## 2203                                           *                           *
## 2204                                           *                           *
## 2205                                          NA                          NA
## 2206                         0.80000000000000004                           0
## 2207                         0.88139999999999996                           0
## 2208                                      0.8196                           0
## 2209                         0.85799999999999998                           0
## 2210                         0.78569999999999995                           0
## 2211                                           *                           *
## 2212                         0.79649999999999999                           0
## 2213                                           1                           0
## 2214                                           1                           0
## 2215                                           *                           *
## 2216                                           1                           0
## 2217                                           1                           0
## 2218                                           1                           0
## 2219                                           1                           0
## 2220                                           *                           *
## 2221                                          NA                          NA
## 2222                                          NA                          NA
## 2223                                          NA                          NA
## 2224                                          NA                          NA
## 2225                                          NA                          NA
## 2226                                          NA                          NA
## 2227                                          NA                          NA
## 2228                                          NA                          NA
## 2229                                          NA                          NA
## 2230                                          NA                          NA
## 2231                                          NA                          NA
## 2232                                          NA                          NA
## 2233                                          NA                          NA
## 2234                                          NA                          NA
## 2235                                           1                           *
## 2236                                          NA                          NA
## 2237                                           *                           *
## 2238                                          NA                          NA
## 2239                                           *                           *
## 2240                                           *                           *
## 2241                                          NA                          NA
## 2242                         0.80310000000000004                           0
## 2243                         0.79369999999999996                           0
## 2244                         0.94440000000000002                           0
## 2245                         0.87690000000000001                           0
## 2246                                      0.9153                           0
## 2247                                          NA                          NA
## 2248                        0.023900000000000001                           0
## 2249                        0.025600000000000001                           *
## 2250                         0.49149999999999999                           0
## 2251                                      0.0207                           *
## 2252                        0.082600000000000007                           0
## 2253                                           *                           *
## 2254                                           *                           *
## 2255                                      0.2109                           0
## 2256                         0.17799999999999999                           0
## 2257                                           *                           *
## 2258                         0.19789999999999999                           0
## 2259                         0.38400000000000001                           0
## 2260                         0.17929999999999999                           0
## 2261                                           *                           *
## 2262                                           *                           *
## 2263                         0.33329999999999999                           0
## 2264                         0.90910000000000002                           0
## 2265                                           0                           0
## 2266                                           0                           0
## 2267                         0.51559999999999995                           0
## 2268                         0.68289999999999995                           0
## 2269                         0.77500000000000002                           0
## 2270                                           *                           *
## 2271                        0.076200000000000004                           0
## 2272                                           *                           *
## 2273                        0.040099999999999997                           0
## 2274                                           *                           *
## 2275                                           *                           *
## 2276                         0.89059999999999995                           0
## 2277                                           0                           0
## 2278                                          NA                          NA
## 2279                                           *                           *
## 2280                        0.063200000000000006                           0
## 2281                                      0.1628                           0
## 2282                                           *                           *
## 2283                                           *                           *
## 2284                         0.96550000000000002                           0
## 2285                                           1                           0
## 2286                                           1                           0
## 2287                                           1                           0
## 2288                         0.97009999999999996                           0
## 2289                                          NA                          NA
## 2290                                           *                           *
## 2291                                           0                           *
## 2292                                           *                           0
## 2293                                           0                          NA
## 2294                                           *                           *
## 2295                         0.53849999999999998                           0
## 2296                                           *                           *
## 2297                                          NA                          NA
## 2298                                          NA                          NA
## 2299                                          NA                          NA
## 2300                                           *                           *
## 2301                         0.57889999999999997                           0
## 2302                         0.83020000000000005                           0
## 2303                                      0.4375                           0
## 2304                         0.36359999999999998                           0
## 2305                                      0.1522                           0
## 2306                         0.81999999999999995                           0
## 2307                         0.90280000000000005                           0
## 2308                         0.42859999999999998                           0
## 2309                         0.22500000000000001                           0
## 2310                         0.83830000000000005                           0
## 2311                                          NA                          NA
## 2312                         0.76739999999999997                           0
## 2313                         0.66669999999999996                           0
## 2314                                           *                           *
## 2315                                           *                           *
## 2316                                           *                           *
## 2317                                          NA                          NA
## 2318                         0.91600000000000004                           0
## 2319                         0.77780000000000005                           0
## 2320                                           *                           0
## 2321                                        0.75                           0
## 2322                         0.78600000000000003                           0
## 2323                         0.57299999999999995                           0
## 2324                                        0.62                           0
## 2325                         0.78080000000000005                           0
## 2326                         0.34079999999999999                           0
## 2327                         0.71999999999999997                           0
## 2328                         0.16159999999999999                           0
## 2329                         0.25580000000000003                           0
## 2330                         0.90739999999999998                           0
## 2331                         0.82350000000000001                           0
## 2332                         0.60919999999999996                           0
## 2333                         0.78949999999999998                           0
## 2334                         0.20180000000000001                           0
## 2335                         0.81820000000000004                           0
## 2336                         0.40660000000000002                           0
## 2337                         0.56599999999999995                           0
## 2338                                           0                           0
## 2339                                           *                           *
## 2340                                          NA                          NA
## 2341                         0.61819999999999997                           0
## 2342                         0.65310000000000001                           0
## 2343                                      0.3523                           0
## 2344                         0.90100000000000002                           0
## 2345                                          NA                          NA
## 2346                                          NA                          NA
## 2347                         0.89229999999999998                           0
## 2348                                           0                           0
## 2349                         0.70830000000000004                           0
## 2350                         0.43240000000000001                           0
## 2351                         0.96899999999999997                           0
## 2352                         0.73680000000000001                           0
## 2353                         0.66910000000000003                           0
## 2354                                        0.12                           *
## 2355                                           *                           *
## 2356                                           0                           *
## 2357                                           *                           *
## 2358                                           1                           0
## 2359                                           1                           0
## 2360                                           1                           0
## 2361                         0.56299999999999994                           0
## 2362                         0.77390000000000003                           0
## 2363                                           1                          NA
## 2364                                           1                           0
## 2365                                      0.7429                           *
## 2366                         0.84850000000000003                           0
## 2367                                           1                           0
## 2368                                           1                           0
## 2369                         0.92589999999999995                           0
## 2370                                          NA                          NA
## 2371                                          NA                          NA
## 2372                                          NA                          NA
## 2373                                          NA                          NA
## 2374                         0.81330000000000002                           0
## 2375                         0.84209999999999996                           0
## 2376                                           *                           *
## 2377                                           *                           *
## 2378                                          NA                          NA
## 2379                                          NA                          NA
## 2380                                           *                           *
## 2381                                          NA                          NA
## 2382                                           *                           *
## 2383                                           1                           *
## 2384                                           1                           *
## 2385                                          NA                          NA
## 2386                                           *                           *
## 2387                                           *                           *
## 2388                                           *                           *
## 2389                                           1                           *
## 2390                                           1                           0
## 2391                                           1                           0
## 2392                                           *                           *
## 2393                                           1                           0
## 2394                                           1                           0
## 2395                                          NA                          NA
## 2396                                           1                           0
## 2397                                          NA                          NA
## 2398                                          NA                          NA
## 2399                                          NA                          NA
## 2400                                          NA                          NA
## 2401                                           1                           0
## 2402                                           *                           *
## 2403                                          NA                          NA
## 2404                                           *                           *
## 2405                                           1                           *
## 2406                                          NA                          NA
## 2407                                          NA                          NA
## 2408                                           *                           *
## 2409                                           1                           0
## 2410                                          NA                          NA
## 2411                                           *                           *
## 2412                                           1                           0
## 2413                                           1                           0
## 2414                                           1                           0
## 2415                                           *                           *
## 2416                                           1                           *
## 2417                                           1                           0
## 2418                                           1                           0
## 2419                                          NA                          NA
## 2420                                           *                           *
## 2421                                           1                           0
## 2422                                           1                           0
## 2423                                          NA                          NA
## 2424                                          NA                          NA
## 2425                                           1                           0
## 2426                                           *                           *
## 2427                                           1                           *
## 2428                                           1                           *
## 2429                                          NA                          NA
## 2430                                          NA                          NA
## 2431                                          NA                          NA
## 2432                                          NA                          NA
## 2433                                          NA                          NA
## 2434                                          NA                          NA
## 2435                                          NA                          NA
## 2436                                          NA                          NA
## 2437                                          NA                          NA
## 2438                                          NA                          NA
## 2439                                           *                           *
## 2440                                           1                           *
## 2441                                           *                           *
## 2442                                           *                           *
## 2443                                          NA                          NA
## 2444                                           1                           *
## 2445                                           1                           0
## 2446                                          NA                          NA
## 2447                                          NA                          NA
## 2448                                          NA                          NA
## 2449                                          NA                          NA
## 2450                                          NA                          NA
## 2451                                           1                           0
## 2452                                          NA                          NA
## 2453                                          NA                          NA
## 2454                         0.86360000000000003                           0
## 2455                         0.80000000000000004                           0
## 2456                                           1                           0
## 2457                         0.96609999999999996                           0
## 2458                                           1                           0
## 2459                                           1                           *
## 2460                         0.85709999999999997                           0
## 2461                                           1                           0
## 2462                                           1                           0
## 2463                                           1                           0
## 2464                         0.97009999999999996                           0
## 2465                                           1                           0
## 2466                                           1                           0
## 2467                         0.83330000000000004                           0
## 2468                                       0.875                           0
## 2469                                          NA                          NA
## 2470                                           1                           0
## 2471                                           1                           0
## 2472                                           *                           *
## 2473                         0.98780000000000001                           0
## 2474                                           1                           0
## 2475                         0.93879999999999997                           0
## 2476                                           1                           0
## 2477                         0.94899999999999995                           0
## 2478                                          NA                          NA
## 2479                                           1                          NA
## 2480                                          NA                          NA
## 2481                         0.91669999999999996                           0
## 2482                                           *                          NA
## 2483                                           *                          NA
## 2484                                           1                           *
## 2485                         0.77270000000000005                           0
## 2486                                           1                           0
## 2487                         0.78569999999999995                           0
## 2488                         0.77129999999999999                           0
## 2489                                           1                           0
## 2490                         0.70889999999999997                           *
## 2491                         0.60609999999999997                           0
## 2492                         0.59999999999999998                           *
## 2493                         0.83740000000000003                           0
## 2494                                           1                          NA
## 2495                                           1                           0
## 2496                         0.46150000000000002                           *
## 2497                                           1                           0
## 2498                         0.89290000000000003                           0
## 2499                         0.85709999999999997                           *
## 2500                         0.41670000000000001                           *
## 2501                                           1                           0
## 2502                         0.97619999999999996                           0
## 2503                         0.68049999999999999                           0
## 2504                                      0.6825                           0
## 2505                         0.60160000000000002                           0
## 2506                         0.66579999999999995                           0
## 2507                                        0.63                           0
## 2508                                           1                           *
## 2509                                      0.8427                           *
## 2510                         0.80249999999999999                           0
## 2511                         0.71430000000000005                           0
## 2512                                       0.875                           0
## 2513                                           *                           *
## 2514                                      0.5222                           0
## 2515                         0.69230000000000003                           0
## 2516                         0.91669999999999996                           0
## 2517                         0.72499999999999998                           0
## 2518                         0.54549999999999998                           0
## 2519                         0.54549999999999998                           0
## 2520                                           1                           0
## 2521                                           1                           0
## 2522                         0.95450000000000002                           0
## 2523                         0.58109999999999995                           0
## 2524                         0.94869999999999999                           0
## 2525                         0.58379999999999999                           0
## 2526                                           *                           *
## 2527                         0.66669999999999996                           0
## 2528                                          NA                          NA
## 2529                         0.70709999999999995                           0
## 2530                                           *                           *
## 2531                                          NA                          NA
## 2532                                           1                           0
## 2533                                          NA                          NA
## 2534                                          NA                          NA
## 2535                         0.61899999999999999                           0
## 2536                                          NA                          NA
## 2537                                           1                           0
## 2538                         0.62960000000000005                           0
## 2539                                          NA                          NA
## 2540                                          NA                          NA
## 2541                                           1                           0
## 2542                                           1                          NA
## 2543                         0.55430000000000001                           0
## 2544                         0.69089999999999996                           0
## 2545                         0.71430000000000005                           0
## 2546                         0.61899999999999999                           0
## 2547                                           *                           *
## 2548                                           *                           *
## 2549                                           *                           *
## 2550                                           *                           *
## 2551                                          NA                          NA
## 2552                                           *                           *
## 2553                                           *                          NA
## 2554                                           *                           *
## 2555                                          NA                          NA
## 2556                         0.80000000000000004                           0
## 2557                         0.69569999999999999                           0
## 2558                                           *                           *
## 2559                                           *                           *
## 2560                                           1                           0
## 2561                                          NA                          NA
## 2562                         0.83330000000000004                           0
## 2563                                          NA                          NA
## 2564                                          NA                          NA
## 2565                                           1                           0
## 2566                                          NA                          NA
## 2567                                          NA                          NA
## 2568                                          NA                          NA
## 2569                                          NA                          NA
## 2570                                          NA                          NA
## 2571                                          NA                          NA
## 2572                                          NA                          NA
## 2573                                           *                          NA
## 2574                                          NA                          NA
## 2575                                          NA                          NA
## 2576                                          NA                          NA
## 2577                                          NA                          NA
## 2578                                          NA                          NA
## 2579                                           1                           0
## 2580                                          NA                          NA
## 2581                         0.85709999999999997                           0
## 2582                         0.85850000000000004                           0
## 2583                         0.73299999999999998                           0
## 2584                         0.67589999999999995                           0
## 2585                         0.88060000000000005                           0
## 2586                         0.59999999999999998                           0
## 2587                         0.78159999999999996                           0
## 2588                         0.73329999999999995                           0
## 2589                         0.63639999999999997                           *
## 2590                                      0.8619                           0
## 2591                                          NA                          NA
## 2592                                          NA                          NA
## 2593                                          NA                          NA
## 2594                                           1                           0
## 2595                                           1                           0
## 2596                                           1                           0
## 2597                                           *                           *
## 2598                                           *                           *
## 2599                                          NA                          NA
## 2600                                           1                           0
## 2601                                          NA                          NA
## 2602                                           1                           *
## 2603                                           1                           *
## 2604                                           1                           0
## 2605                                          NA                          NA
## 2606                                           1                           0
## 2607                                           1                          NA
## 2608                                           1                           0
## 2609                                           *                           *
## 2610                                           *                          NA
## 2611                                           1                           0
## 2612                                           1                           0
## 2613                                           1                           0
## 2614                                           1                           *
## 2615                                           1                           0
## 2616                                          NA                          NA
## 2617                                           1                           0
## 2618                                           *                           *
## 2619                                           *                           *
## 2620                                           *                           *
## 2621                                           1                           0
## 2622                                           1                           0
## 2623                                           1                           0
## 2624                                           1                           0
## 2625                                           *                           *
## 2626                                           1                           *
## 2627                                           *                           *
## 2628                                           1                           0
## 2629                                           1                           0
## 2630                                           *                           *
## 2631                                           1                           0
## 2632                                           *                           *
## 2633                                           1                           0
## 2634                                           *                           *
## 2635                                           *                           *
## 2636                                           1                           *
## 2637                                           1                          NA
## 2638                                           1                           0
## 2639                                           1                           0
## 2640                                          NA                          NA
## 2641                                           *                           *
## 2642                                          NA                          NA
## 2643                                           *                          NA
## 2644                                          NA                          NA
## 2645                                           *                           *
## 2646                                           *                           *
## 2647                                          NA                          NA
## 2648                                           1                           0
## 2649                                           1                           0
## 2650                         0.87880000000000003                           0
## 2651                         0.68289999999999995                           0
## 2652                         0.59999999999999998                           0
## 2653                                          NA                          NA
## 2654                                           1                           0
## 2655                                           1                           0
## 2656                                           *                           *
## 2657                                           1                           0
## 2658                                           1                           0
## 2659                         0.95650000000000002                           0
## 2660                                           1                           0
## 2661                         0.84999999999999998                           0
## 2662                         0.98819999999999997                           0
## 2663                                           1                           0
## 2664                                           *                           *
## 2665                                           *                           *
## 2666                                           1                           0
## 2667                                           1                           0
## 2668                                           *                           *
## 2669                                           1                           0
## 2670                                           1                           0
## 2671                                           1                           0
## 2672                                           1                           0
## 2673                                           *                           *
## 2674                                           *                           *
## 2675                                           1                           0
## 2676                                           *                           *
## 2677                                           1                           0
## 2678                                           *                           *
## 2679                                           1                           0
## 2680                                           1                           0
## 2681                                           *                           *
## 2682                         0.98960000000000004                           0
## 2683                                           1                           0
## 2684                         0.86360000000000003                           0
## 2685                         0.92310000000000003                           0
## 2686                                           *                           *
## 2687                                           *                           *
## 2688                                           1                           0
## 2689                                           1                           0
## 2690                                           1                           0
## 2691                                           1                           0
## 2692                                           1                           0
## 2693                         0.84509999999999996                           0
## 2694                                           1                           0
## 2695                                           1                           0
## 2696                         0.93530000000000002                           0
## 2697                                           1                           0
## 2698                                           1                           0
## 2699                         0.82499999999999996                           0
## 2700                                           1                           0
## 2701                                      0.9859                           0
## 2702                                           1                           0
## 2703                         0.91669999999999996                           0
## 2704                                           1                           0
## 2705                                           1                           0
## 2706                                           1                           0
## 2707                         0.95979999999999999                           0
## 2708                                           1                           0
## 2709                         0.88890000000000002                           0
## 2710                                           1                           0
## 2711                                           1                           *
## 2712                                           1                           0
## 2713                                           *                           *
## 2714                                           1                           0
## 2715                                           1                           0
## 2716                                           1                           0
## 2717                                           *                           *
## 2718                                           1                           0
## 2719                                           1                           0
## 2720                                           1                           0
## 2721                                           1                           0
## 2722                                           1                           0
## 2723                                           *                           *
## 2724                         0.47999999999999998                           0
## 2725                                           1                           0
## 2726                                           *                           *
## 2727                                           1                           0
## 2728                                           1                           0
## 2729                         0.98970000000000002                           0
## 2730                                           *                           *
## 2731                                           *                           *
## 2732                         0.90159999999999996                           0
## 2733                                           1                           *
## 2734                                           1                           0
## 2735                                           1                           0
## 2736                                           1                           0
## 2737                                           1                           0
## 2738                                           1                           0
## 2739                                           1                           0
## 2740                                          NA                          NA
## 2741                         0.80000000000000004                           0
## 2742                                           1                           0
## 2743                                           *                          NA
## 2744                                      0.0104                           0
## 2745                                           1                           0
## 2746                         0.20710000000000001                           0
## 2747                                          NA                          NA
## 2748                        0.089700000000000002                           0
## 2749                         0.18770000000000001                           0
## 2750                                           *                           0
## 2751                         0.34150000000000003                           0
## 2752                        0.049000000000000002                           0
## 2753                         0.32400000000000001                           0
## 2754                         0.59350000000000003                           0
## 2755                        0.070999999999999994                           0
## 2756                                          NA                          NA
## 2757                         0.12239999999999999                           0
## 2758                         0.35570000000000002                           0
## 2759                                          NA                          NA
## 2760                        0.064500000000000002                           0
## 2761                                      0.1023                           0
## 2762                         0.30230000000000001                           0
## 2763                                      0.8125                           0
## 2764                         0.16669999999999999                           0
## 2765                        0.070000000000000007                           0
## 2766                                       0.113                           0
## 2767                                       0.192                           0
## 2768                         0.57020000000000004                           0
## 2769                                      0.1739                           0
## 2770                                          NA                          NA
## 2771                                          NA                          NA
## 2772                                          NA                          NA
## 2773                                          NA                          NA
## 2774                                          NA                          NA
## 2775                                          NA                          NA
## 2776                        0.077700000000000005                           0
## 2777                                      0.2145                           0
## 2778                         0.14430000000000001                           0
## 2779                        0.036499999999999998                           0
## 2780                                           *                           0
## 2781                                           *                           0
## 2782                        0.044400000000000002                           0
## 2783                                          NA                          NA
## 2784                                          NA                          NA
## 2785                                          NA                          NA
## 2786                                          NA                          NA
## 2787                                          NA                          NA
## 2788                                          NA                          NA
## 2789                                          NA                          NA
## 2790                                          NA                          NA
## 2791                                          NA                          NA
## 2792                                          NA                          NA
## 2793                                          NA                          NA
## 2794                                          NA                          NA
## 2795                                          NA                          NA
## 2796                                          NA                          NA
## 2797                                          NA                          NA
## 2798                                          NA                          NA
## 2799                                          NA                          NA
## 2800                                          NA                          NA
## 2801                                          NA                          NA
## 2802                                          NA                          NA
## 2803                                          NA                          NA
## 2804                                          NA                          NA
## 2805                         0.75719999999999998                           0
## 2806                         0.80769999999999997                           0
## 2807                         0.88060000000000005                           0
## 2808                                        0.75                           0
## 2809                                           1                           0
## 2810                         0.77780000000000005                           0
## 2811                         0.80769999999999997                           0
## 2812                         0.69230000000000003                           0
## 2813                         0.68969999999999998                           0
## 2814                         0.92310000000000003                           0
## 2815                                           *                           *
## 2816                                          NA                          NA
## 2817                         0.80489999999999995                           0
## 2818                                       0.625                           0
## 2819                         0.69830000000000003                           0
## 2820                         0.81740000000000002                           0
## 2821                         0.69769999999999999                           0
## 2822                         0.75549999999999995                           0
## 2823                         0.75770000000000004                           0
## 2824                         0.97440000000000004                           0
## 2825                                           1                           0
## 2826                                           *                           *
## 2827                                           1                           *
## 2828                                           1                           *
## 2829                         0.97670000000000001                           0
## 2830                                          NA                          NA
## 2831                                          NA                          NA
## 2832                                          NA                          NA
## 2833                                           1                           0
## 2834                                           *                          NA
## 2835                         0.60980000000000001                           0
## 2836                         0.53910000000000002                           0
## 2837                         0.65690000000000004                           0
## 2838                         0.69999999999999996                           0
## 2839                                      0.6038                           0
## 2840                         0.58930000000000005                           0
## 2841                         0.69679999999999997                           0
## 2842                         0.67979999999999996                           0
## 2843                         0.61109999999999998                           0
## 2844                         0.52210000000000001                           0
## 2845                         0.52800000000000002                           0
## 2846                         0.70209999999999995                           0
## 2847                         0.72740000000000005                           0
## 2848                                      0.6361                           0
## 2849                                           *                           *
## 2850                         0.82410000000000005                           0
## 2851                         0.64859999999999995                           0
## 2852                         0.62729999999999997                           0
## 2853                         0.62009999999999998                           0
## 2854                         0.57140000000000002                           0
## 2855                         0.93210000000000004                           0
## 2856                         0.82930000000000004                           0
## 2857                                      0.8206                           0
## 2858                         0.56540000000000001                           0
## 2859                         0.68279999999999996                           0
## 2860                         0.48970000000000002                           0
## 2861                         0.47999999999999998                           0
## 2862                         0.75339999999999996                           0
## 2863                         0.56000000000000005                           0
## 2864                         0.95409999999999995                           0
## 2865                                           *                           *
## 2866                         0.71150000000000002                           0
## 2867                         0.70589999999999997                           0
## 2868                         0.68969999999999998                           0
## 2869                         0.69199999999999995                           0
## 2870                         0.78759999999999997                           0
## 2871                         0.78159999999999996                           0
## 2872                         0.82630000000000003                           0
## 2873                         0.59599999999999997                           0
## 2874                         0.48780000000000001                           0
## 2875                         0.97799999999999998                           0
## 2876                         0.33329999999999999                           *
## 2877                         0.41249999999999998                           *
## 2878                         0.57889999999999997                          NA
## 2879                                           1                           0
## 2880                                      0.2258                           *
## 2881                                           *                          NA
## 2882                                       0.629                           *
## 2883                         0.55769999999999997                           *
## 2884                                           *                          NA
## 2885                                      0.3261                           *
## 2886                                      0.9667                           0
## 2887                         0.93100000000000005                           0
## 2888                         0.95720000000000005                           0
## 2889                                          NA                          NA
## 2890                                          NA                          NA
## 2891                         0.96379999999999999                           0
## 2892                                          NA                          NA
## 2893                                          NA                          NA
## 2894                         0.82469999999999999                           0
## 2895                                           *                           *
## 2896                         0.66669999999999996                           0
## 2897                         0.94740000000000002                           0
## 2898                                          NA                          NA
## 2899                                          NA                          NA
## 2900                                          NA                          NA
## 2901                         0.86380000000000001                           0
## 2902                         0.52939999999999998                           0
## 2903                                           *                           *
## 2904                         0.72499999999999998                           0
## 2905                         0.96909999999999996                           0
## 2906                         0.94189999999999996                           0
## 2907                         0.92310000000000003                           0
## 2908                         0.67159999999999997                           0
## 2909                                          NA                          NA
## 2910                         0.97140000000000004                           0
## 2911                                           *                           *
## 2912                                          NA                          NA
## 2913                         0.15629999999999999                           *
## 2914                         0.86519999999999997                           0
## 2915                                           *                           *
## 2916                         0.52400000000000002                           0
## 2917                         0.20630000000000001                           *
## 2918                         0.18179999999999999                           0
## 2919                         0.13159999999999999                           *
## 2920                                      0.6875                           0
## 2921                         0.28129999999999999                           *
## 2922                         0.80000000000000004                           0
## 2923                         0.42859999999999998                           0
## 2924                         0.81789999999999996                           0
## 2925                         0.29409999999999997                           *
## 2926                         0.88329999999999997                           0
## 2927                         0.47220000000000001                           0
## 2928                                           0                           *
## 2929                         0.94320000000000004                           0
## 2930                         0.82520000000000004                           0
## 2931                         0.90910000000000002                           0
## 2932                                           *                           *
## 2933                                           *                           *
## 2934                         0.86750000000000005                           0
## 2935                         0.18279999999999999                           0
## 2936                         0.96579999999999999                           0
## 2937                                      0.7581                           0
## 2938                                          NA                          NA
## 2939                                          NA                          NA
## 2940                                          NA                          NA
## 2941                                          NA                          NA
## 2942                         0.39779999999999999                           0
## 2943                         0.95999999999999996                          NA
## 2944                                          NA                          NA
## 2945                                          NA                          NA
## 2946                                          NA                          NA
## 2947                                          NA                          NA
## 2948                                          NA                          NA
## 2949                         0.33800000000000002                           0
## 2950                         0.46829999999999999                           0
## 2951                                      0.2727                           0
## 2952                         0.33110000000000001                           0
## 2953                         0.65820000000000001                           0
## 2954                         0.96630000000000005                           0
## 2955                         0.97619999999999996                           0
## 2956                                          NA                          NA
## 2957                         0.93620000000000003                           0
## 2958                         0.61899999999999999                          NA
## 2959                         0.96350000000000002                           0
## 2960                                          NA                          NA
## 2961                                          NA                          NA
## 2962                                           1                           0
## 2963                                           1                           0
## 2964                                           1                           0
## 2965                                           1                          NA
## 2966                                           1                           0
## 2967                                           1                           0
## 2968                                          NA                          NA
## 2969                                           1                           0
## 2970                                          NA                          NA
## 2971                                          NA                          NA
## 2972                                          NA                          NA
## 2973                                          NA                          NA
## 2974                                          NA                          NA
## 2975                                           *                           *
## 2976                                           1                           0
## 2977                                           1                           0
## 2978                                           *                           *
## 2979                                           1                           *
## 2980                                          NA                          NA
## 2981                                          NA                          NA
## 2982                                           1                          NA
## 2983                                           1                           0
## 2984                                           1                           0
## 2985                                           1                           0
## 2986                                           1                           0
## 2987                                          NA                          NA
## 2988                                          NA                          NA
## 2989                                          NA                          NA
## 2990                                          NA                          NA
## 2991                                          NA                          NA
## 2992                                          NA                          NA
## 2993                                          NA                          NA
## 2994                                          NA                          NA
## 2995                                          NA                          NA
## 2996                                          NA                          NA
## 2997                                          NA                          NA
## 2998                                          NA                          NA
## 2999                                          NA                          NA
## 3000                                          NA                          NA
## 3001                                          NA                          NA
## 3002                                          NA                          NA
## 3003                                          NA                          NA
## 3004                                          NA                          NA
## 3005                                          NA                          NA
## 3006                                          NA                          NA
## 3007                                          NA                          NA
## 3008                                          NA                          NA
## 3009                                          NA                          NA
## 3010                                          NA                          NA
## 3011                                          NA                          NA
## 3012                                          NA                          NA
## 3013                                          NA                          NA
## 3014                                          NA                          NA
## 3015                                          NA                          NA
## 3016                                          NA                          NA
## 3017                                          NA                          NA
## 3018                                          NA                          NA
## 3019                                          NA                          NA
## 3020                                          NA                          NA
## 3021                                          NA                          NA
## 3022                                          NA                          NA
## 3023                                          NA                          NA
## 3024                                          NA                          NA
## 3025                                          NA                          NA
## 3026                         0.91669999999999996                           0
## 3027                         0.73250000000000004                           0
## 3028                         0.71109999999999995                           0
## 3029                         0.75800000000000001                           0
## 3030                         0.75760000000000005                           0
## 3031                         0.91669999999999996                           0
## 3032                         0.91300000000000003                           0
## 3033                         0.90000000000000002                           0
## 3034                         0.91779999999999995                           0
## 3035                         0.96970000000000001                           0
## 3036                         0.96020000000000005                           0
## 3037                         0.83930000000000005                           0
## 3038                         0.52700000000000002                           0
## 3039                         0.92779999999999996                           0
## 3040                         0.71819999999999995                           0
## 3041                                      0.4375                           0
## 3042                                      0.8962                           0
## 3043                                      0.4471                           0
## 3044                         0.85709999999999997                           0
## 3045                         0.44829999999999998                           0
## 3046                                         0.5                           0
## 3047                         0.45710000000000001                           0
## 3048                         0.85450000000000004                           0
## 3049                                         0.5                           0
## 3050                         0.74470000000000003                           0
## 3051                         0.81630000000000003                           0
## 3052                         0.47999999999999998                           0
## 3053                                           *                           *
## 3054                                           *                           *
## 3055                                           *                           *
## 3056                                          NA                          NA
## 3057                                           *                           *
## 3058                                           *                           *
## 3059                                           *                           *
## 3060                                          NA                          NA
## 3061                                          NA                          NA
## 3062                                          NA                          NA
## 3063                                           *                           *
## 3064                                          NA                          NA
## 3065                                          NA                          NA
## 3066                                          NA                          NA
## 3067                                           *                           *
## 3068                                           *                           *
## 3069                                          NA                          NA
## 3070                                          NA                          NA
## 3071                                          NA                          NA
## 3072                                          NA                          NA
## 3073                                          NA                          NA
## 3074                                          NA                          NA
## 3075                                          NA                          NA
## 3076                                          NA                          NA
## 3077                                          NA                          NA
## 3078                                           *                           *
## 3079                                           *                           *
## 3080                                          NA                          NA
## 3081                                          NA                          NA
## 3082                                          NA                          NA
## 3083                                          NA                          NA
## 3084                                          NA                          NA
## 3085                                          NA                          NA
## 3086                                          NA                          NA
## 3087                                           *                           *
## 3088                                          NA                          NA
## 3089                                          NA                          NA
## 3090                                          NA                          NA
## 3091                                          NA                          NA
## 3092                                           *                           *
## 3093                                          NA                          NA
## 3094                                           *                           *
## 3095                                          NA                          NA
## 3096                                          NA                          NA
## 3097                                          NA                          NA
## 3098                                          NA                          NA
## 3099                                           *                           *
## 3100                                          NA                          NA
## 3101                                           *                           *
## 3102                                          NA                          NA
## 3103                                          NA                          NA
## 3104                                           *                           *
## 3105                                          NA                          NA
## 3106                                          NA                          NA
## 3107                                          NA                          NA
## 3108                                          NA                          NA
## 3109                                          NA                          NA
## 3110                                          NA                          NA
## 3111                                          NA                          NA
## 3112                                          NA                          NA
## 3113                                          NA                          NA
## 3114                                          NA                          NA
## 3115                                          NA                          NA
## 3116                                          NA                          NA
## 3117                                          NA                          NA
## 3118                                          NA                          NA
## 3119                                          NA                          NA
## 3120                                           *                          NA
## 3121                                          NA                          NA
## 3122                                          NA                          NA
## 3123                                          NA                          NA
## 3124                                          NA                          NA
## 3125                                          NA                          NA
## 3126                                          NA                          NA
## 3127                                          NA                          NA
## 3128                                          NA                          NA
## 3129                                           1                           0
## 3130                                          NA                          NA
## 3131                                          NA                          NA
## 3132                                           *                           *
## 3133                                           1                           0
## 3134                                           1                           0
## 3135                                          NA                          NA
## 3136                                          NA                          NA
## 3137                         0.70620000000000005                           0
## 3138                                           *                          NA
## 3139                                          NA                          NA
## 3140                                           *                           *
## 3141                         0.83330000000000004                           *
## 3142                         0.62960000000000005                           0
## 3143                                           1                           0
## 3144                         0.76319999999999999                           0
## 3145                         0.81820000000000004                           0
## 3146                         0.69440000000000002                           0
## 3147                         0.50229999999999997                           0
## 3148                         0.86109999999999998                           0
## 3149                                           1                           0
## 3150                                           1                           0
## 3151                                           1                           0
## 3152                         0.52780000000000005                           0
## 3153                         0.46300000000000002                           0
## 3154                         0.36359999999999998                           0
## 3155                         0.89770000000000005                           0
## 3156                                      0.3125                           0
## 3157                                           *                           *
## 3158                                           1                           0
## 3159                         0.82189999999999996                           0
## 3160                                           1                           0
## 3161                                           1                           0
## 3162                         0.63160000000000005                           0
## 3163                         0.43080000000000002                           0
## 3164                                      0.4839                           0
## 3165                         0.60709999999999997                           0
## 3166                         0.80000000000000004                           0
## 3167                         0.59999999999999998                           0
## 3168                                           0                           0
## 3169                                           1                           0
## 3170                                          NA                          NA
## 3171                                           1                           0
## 3172                         0.59260000000000002                           0
## 3173                         0.86670000000000003                           0
## 3174                                           1                           0
## 3175                         0.96430000000000005                           0
## 3176                                          NA                          NA
## 3177                                          NA                          NA
## 3178                                          NA                          NA
## 3179                                          NA                          NA
## 3180                                          NA                          NA
## 3181                                          NA                          NA
## 3182                                          NA                          NA
## 3183                                          NA                          NA
## 3184                                          NA                          NA
## 3185                        0.090899999999999995                           *
## 3186                                           *                           *
## 3187                         0.15570000000000001                           0
## 3188                                      0.1641                           0
## 3189                                           *                           *
## 3190                                           *                           *
## 3191                                       0.254                           0
## 3192                         0.69999999999999996                           0
## 3193                         0.24640000000000001                           0
## 3194                         0.77780000000000005                           0
## 3195                         0.39529999999999998                           0
## 3196                                           *                           *
## 3197                                      0.2787                           0
## 3198                                           *                           *
## 3199                                          NA                          NA
## 3200                                          NA                          NA
## 3201                                           *                           *
## 3202                         0.24440000000000001                           0
## 3203                                           *                           0
## 3204                                           0                           0
## 3205                                      0.2462                           0
## 3206                         0.21049999999999999                           0
## 3207                                           0                           0
## 3208                         0.16669999999999999                           0
## 3209                         0.83330000000000004                           0
## 3210                         0.32500000000000001                           0
## 3211                                           *                           *
## 3212                         0.13730000000000001                           *
## 3213                         0.41670000000000001                           0
## 3214                         0.22450000000000001                           *
## 3215                                      0.1404                           *
## 3216                        0.094100000000000003                           0
## 3217                                      0.1515                           0
## 3218                                          NA                          NA
## 3219                                           *                           *
## 3220                                           *                           *
## 3221                                          NA                          NA
## 3222                         0.35089999999999999                           0
## 3223                         0.75860000000000005                           0
## 3224                         0.76639999999999997                           0
## 3225                                         0.5                           *
## 3226                         0.31030000000000002                           0
## 3227                         0.21240000000000001                           0
## 3228                         0.33329999999999999                           0
## 3229                         0.30099999999999999                           0
## 3230                         0.27500000000000002                           0
## 3231                         0.33989999999999998                           0
## 3232                         0.26469999999999999                           0
## 3233                         0.41460000000000002                           0
## 3234                         0.72340000000000004                           0
## 3235                                           *                           *
## 3236                                          NA                          NA
## 3237                                           *                          NA
## 3238                         0.33329999999999999                           0
## 3239                                           *                           *
## 3240                                           *                           *
## 3241                                           *                           *
## 3242                                           *                           *
## 3243                                           *                          NA
## 3244                                           1                           0
## 3245                                           *                           *
## 3246                                      0.1827                           0
## 3247                         0.15379999999999999                           0
## 3248                         0.20630000000000001                           *
## 3249                         0.24440000000000001                           0
## 3250                                      0.2157                           0
## 3251                        0.082799999999999999                           0
## 3252                         0.31690000000000002                           0
## 3253                         0.20730000000000001                           0
## 3254                         0.19800000000000001                           0
## 3255                                          NA                          NA
## 3256                                           *                           *
## 3257                                           *                           *
## 3258                                      0.1736                           0
## 3259                                          NA                          NA
## 3260                         0.31580000000000003                           0
## 3261                         0.24709999999999999                           0
## 3262                         0.52439999999999998                           0
## 3263                         0.13100000000000001                           0
## 3264                         0.13320000000000001                           0
## 3265                                           *                           *
## 3266                         0.25640000000000002                           0
## 3267                         0.24360000000000001                           0
## 3268                                           1                           *
## 3269                                           *                           *
## 3270                                           1                           0
## 3271                                      0.4234                           0
## 3272                                          NA                          NA
## 3273                         0.24479999999999999                           0
## 3274                                      0.1389                           *
## 3275                         0.14810000000000001                           0
## 3276                         0.98650000000000004                           *
## 3277                        0.089899999999999994                           *
## 3278                                      0.0722                           *
## 3279                         0.55559999999999998                           0
## 3280                         0.33329999999999999                           *
## 3281                         0.26469999999999999                           0
## 3282                         0.56520000000000004                           0
## 3283                                           *                           *
## 3284                                      0.2414                           *
## 3285                                           *                           *
## 3286                                      0.4375                           0
## 3287                                           *                           *
## 3288                                           *                           *
## 3289                                          NA                          NA
## 3290                                          NA                          NA
## 3291                                      0.0877                           0
## 3292                         0.71819999999999995                           0
## 3293                                          NA                          NA
## 3294                                          NA                          NA
## 3295                         0.26979999999999998                           *
## 3296                         0.56330000000000002                           0
## 3297                        0.064899999999999999                           *
## 3298                                           0                           0
## 3299                                           *                           *
## 3300                                      0.1288                           0
## 3301                         0.73329999999999995                           0
## 3302                                      0.2364                           0
## 3303                                           *                           *
## 3304                                      0.1807                           0
## 3305                                      0.1731                           0
## 3306                         0.16669999999999999                           *
## 3307                         0.21149999999999999                           0
## 3308                        0.097600000000000006                           0
## 3309                                           *                           *
## 3310                                           *                           *
## 3311                                          NA                          NA
## 3312                                      0.4894                           0
## 3313                         0.73329999999999995                           0
## 3314                                           *                           *
## 3315                                          NA                          NA
## 3316                                           *                          NA
## 3317                                           *                           *
## 3318                                           1                           0
## 3319                                          NA                          NA
## 3320                         0.22059999999999999                           0
## 3321                         0.26469999999999999                           *
## 3322                         0.36170000000000002                           0
## 3323                                      0.4118                           0
## 3324                                           *                           *
## 3325                                      0.2571                           *
## 3326                         0.55320000000000003                           0
## 3327                                           *                           *
## 3328                                      0.6522                           0
## 3329                                           *                           *
## 3330                         0.66669999999999996                           *
## 3331                         0.67569999999999997                           0
## 3332                                           *                           *
## 3333                                          NA                          NA
## 3334                                          NA                          NA
## 3335                                          NA                          NA
## 3336                                          NA                          NA
## 3337                                          NA                          NA
## 3338                                          NA                          NA
## 3339                                          NA                          NA
## 3340                                          NA                          NA
## 3341                         0.15110000000000001                           0
## 3342                                           0                           0
## 3343                         0.26150000000000001                           0
## 3344                                           *                           *
## 3345                         0.46550000000000002                           0
## 3346                                      0.5806                           0
## 3347                                           *                           *
## 3348                                      0.2162                           0
## 3349                         0.12959999999999999                           0
## 3350                                           0                           0
## 3351                                           *                           *
## 3352                                           *                           *
## 3353                                           *                           *
## 3354                         0.32350000000000001                           0
## 3355                         0.57140000000000002                           *
## 3356                         0.44940000000000002                           0
## 3357                         0.36709999999999998                           0
## 3358                         0.31680000000000003                           0
## 3359                                         0.5                           0
## 3360                                      0.1628                           0
## 3361                                      0.1933                           0
## 3362                         0.26469999999999999                           0
## 3363                         0.62180000000000002                           0
## 3364                         0.27910000000000001                           0
## 3365                         0.31990000000000002                           0
## 3366                         0.35709999999999997                           *
## 3367                         0.40000000000000002                           0
## 3368                                      0.3493                           0
## 3369                         0.35089999999999999                           0
## 3370                         0.51559999999999995                           0
## 3371                         0.13100000000000001                           0
## 3372                         0.54290000000000005                           0
## 3373                         0.39510000000000001                           0
## 3374                         0.31030000000000002                           0
## 3375                         0.28570000000000001                           0
## 3376                         0.13200000000000001                           0
## 3377                         0.25559999999999999                           0
## 3378                         0.29730000000000001                           *
## 3379                         0.38729999999999998                           0
## 3380                         0.11940000000000001                           *
## 3381                         0.73570000000000002                           0
## 3382                         0.30509999999999998                           0
## 3383                         0.20000000000000001                           *
## 3384                                        0.44                           0
## 3385                         0.12570000000000001                           0
## 3386                         0.62070000000000003                           0
## 3387                                          NA                          NA
## 3388                                           *                           *
## 3389                         0.66669999999999996                           0
## 3390                                           *                           *
## 3391                                           *                           *
## 3392                                          NA                          NA
## 3393                         0.88400000000000001                           0
## 3394                         0.90629999999999999                           0
## 3395                         0.62619999999999998                           0
## 3396                                      0.7026                           0
## 3397                         0.66000000000000003                           0
## 3398                         0.72870000000000001                           0
## 3399                         0.54630000000000001                           0
## 3400                         0.66090000000000004                           0
## 3401                         0.51270000000000004                           0
## 3402                                      0.7137                           0
## 3403                         0.73839999999999995                           0
## 3404                         0.74119999999999997                           0
## 3405                         0.62649999999999995                           0
## 3406                         0.68569999999999998                           0
## 3407                         0.83109999999999995                           0
## 3408                         0.76600000000000001                           0
## 3409                         0.73080000000000001                           0
## 3410                         0.71189999999999998                           0
## 3411                         0.68240000000000001                           0
## 3412                         0.24709999999999999                           0
## 3413                                      0.6855                           0
## 3414                         0.83750000000000002                           0
## 3415                                        0.75                           0
## 3416                         0.78890000000000005                           0
## 3417                         0.68920000000000003                           0
## 3418                         0.29699999999999999                           0
## 3419                         0.46150000000000002                           0
## 3420                         0.34510000000000002                           0
## 3421                         0.36799999999999999                           0
## 3422                         0.40379999999999999                           0
## 3423                                        0.62                           0
## 3424                         0.31159999999999999                           0
## 3425                                       0.374                           0
## 3426                         0.75539999999999996                           0
## 3427                         0.63490000000000002                           0
## 3428                         0.24740000000000001                           0
## 3429                         0.58960000000000001                           0
## 3430                                          NA                          NA
## 3431                                          NA                          NA
## 3432                                          NA                          NA
## 3433                         0.62160000000000004                           *
## 3434                         0.78949999999999998                           0
## 3435                         0.98119999999999996                           0
## 3436                         0.98070000000000002                           0
## 3437                         0.62260000000000004                           0
## 3438                         0.56000000000000005                           0
## 3439                                           *                           *
## 3440                                      0.5625                           0
## 3441                         0.37040000000000001                           0
## 3442                         0.63039999999999996                           0
## 3443                         0.31030000000000002                           0
## 3444                         0.57140000000000002                           0
## 3445                         0.35139999999999999                           0
## 3446                         0.94120000000000004                           0
## 3447                         0.69230000000000003                           0
## 3448                                      0.5484                           0
## 3449                         0.69699999999999995                           0
## 3450                         0.34410000000000002                           0
## 3451                                      0.7208                           0
## 3452                         0.83330000000000004                           0
## 3453                         0.83120000000000005                           0
## 3454                         0.13420000000000001                           0
## 3455                         0.78480000000000005                           0
## 3456                                           *                          NA
## 3457                                          NA                          NA
## 3458                                           1                           *
## 3459                                           *                          NA
## 3460                         0.95620000000000005                           0
## 3461                         0.94120000000000004                           0
## 3462                         0.97650000000000003                           0
## 3463                                          NA                          NA
## 3464                         0.23810000000000001                           *
## 3465                         0.94289999999999996                           *
## 3466                         0.73680000000000001                           0
## 3467                         0.62070000000000003                           0
## 3468                                          NA                          NA
## 3469                                          NA                          NA
## 3470                                          NA                          NA
## 3471                         0.63160000000000005                           0
## 3472                         0.58520000000000005                           0
## 3473                         0.43480000000000002                           0
## 3474                         0.75680000000000003                           0
## 3475                         0.76470000000000005                           *
## 3476                         0.80000000000000004                           0
## 3477                                          NA                          NA
## 3478                                           0                          NA
## 3479                                          NA                          NA
## 3480                                           0                           *
## 3481                                           *                           *
## 3482                                          NA                          NA
## 3483                                          NA                          NA
## 3484                                          NA                          NA
## 3485                                           *                          NA
## 3486                                          NA                          NA
## 3487                                          NA                          NA
## 3488                                           *                           *
## 3489                                           *                           *
## 3490                                          NA                          NA
## 3491                                          NA                          NA
## 3492                                          NA                          NA
## 3493                                          NA                          NA
## 3494                                          NA                          NA
## 3495                                          NA                          NA
## 3496                                          NA                          NA
## 3497                                          NA                          NA
## 3498                                           0                           *
## 3499                                          NA                          NA
## 3500                                           *                          NA
## 3501                                          NA                          NA
## 3502                                          NA                          NA
## 3503                                          NA                          NA
## 3504                                          NA                          NA
## 3505                                          NA                          NA
## 3506                                          NA                          NA
## 3507                                          NA                          NA
## 3508                                          NA                          NA
## 3509                                          NA                          NA
## 3510                                          NA                          NA
## 3511                                          NA                          NA
## 3512                                          NA                          NA
## 3513                                          NA                          NA
## 3514                                          NA                          NA
## 3515                                          NA                          NA
## 3516                                          NA                          NA
## 3517                                          NA                          NA
## 3518                                          NA                          NA
## 3519                                          NA                          NA
## 3520                                          NA                          NA
## 3521                                          NA                          NA
## 3522                                          NA                          NA
## 3523                                          NA                          NA
## 3524                                          NA                          NA
## 3525                                          NA                          NA
## 3526                                          NA                          NA
## 3527                                          NA                          NA
## 3528                                          NA                          NA
## 3529                                          NA                          NA
## 3530                                          NA                          NA
## 3531                                           1                          NA
## 3532                                           *                          NA
## 3533                                          NA                          NA
## 3534                                          NA                          NA
## 3535                                          NA                          NA
## 3536                                           *                          NA
## 3537                                          NA                          NA
## 3538                         0.47370000000000001                           0
## 3539                                          NA                          NA
## 3540                                          NA                          NA
## 3541                                          NA                          NA
## 3542                                          NA                          NA
## 3543                                          NA                          NA
## 3544                                          NA                          NA
## 3545                                          NA                          NA
## 3546                                           *                          NA
## 3547                                          NA                          NA
## 3548                                          NA                          NA
## 3549                                          NA                          NA
## 3550                                          NA                          NA
## 3551                                          NA                          NA
## 3552                                          NA                          NA
## 3553                                          NA                          NA
## 3554                                          NA                          NA
## 3555                                          NA                          NA
## 3556                                          NA                          NA
## 3557                                          NA                          NA
## 3558                                          NA                          NA
## 3559                                          NA                          NA
## 3560                                          NA                          NA
## 3561                                          NA                          NA
## 3562                                          NA                          NA
## 3563                                          NA                          NA
## 3564                                          NA                          NA
## 3565                                          NA                          NA
## 3566                                          NA                          NA
## 3567                                          NA                          NA
## 3568                                          NA                          NA
## 3569                                          NA                          NA
## 3570                                          NA                          NA
## 3571                                          NA                          NA
## 3572                                          NA                          NA
## 3573                                           *                          NA
## 3574                                          NA                          NA
## 3575                         0.62870000000000004                           0
## 3576                         0.79339999999999999                           0
## 3577                         0.58250000000000002                           0
## 3578                                          NA                          NA
## 3579                         0.78610000000000002                           0
## 3580                                           1                           0
## 3581                         0.42730000000000001                           0
## 3582                                           *                           0
## 3583                                           *                           *
## 3584                         0.54120000000000001                           0
## 3585                         0.35289999999999999                           *
## 3586                         0.30430000000000001                           0
## 3587                         0.10100000000000001                           0
## 3588                                      0.2364                           0
## 3589                         0.42859999999999998                           0
## 3590                                           *                           *
## 3591                                           0                           0
## 3592                         0.53849999999999998                           0
## 3593                                           *                           *
## 3594                         0.38890000000000002                           0
## 3595                                           *                           *
## 3596                         0.49230000000000002                           0
## 3597                                      0.7833                           0
## 3598                         0.44319999999999998                           0
## 3599                         0.47370000000000001                           0
## 3600                         0.18479999999999999                           0
## 3601                                          NA                          NA
## 3602                         0.12230000000000001                           0
## 3603                         0.67820000000000003                           0
## 3604                         0.34150000000000003                           0
## 3605                         0.26669999999999999                           0
## 3606                                      0.2712                           0
## 3607                         0.44169999999999998                           0
## 3608                                           *                           *
## 3609                                       0.375                           0
## 3610                                          NA                          NA
## 3611                                          NA                          NA
## 3612                                          NA                          NA
## 3613                         0.23569999999999999                           0
## 3614                         0.44440000000000002                           *
## 3615                         0.99209999999999998                           0
## 3616                         0.52829999999999999                           0
## 3617                         0.54349999999999998                           0
## 3618                         0.74470000000000003                           0
## 3619                         0.58109999999999995                           0
## 3620                                      0.1913                           0
## 3621                                        0.25                           0
## 3622                                          NA                          NA
## 3623                                           *                           *
## 3624                         0.95569999999999999                           0
## 3625                                           1                           0
## 3626                                      0.1429                           *
## 3627                                           *                           *
## 3628                         0.51019999999999999                           0
## 3629                         0.91210000000000002                           0
## 3630                         0.89470000000000005                           0
## 3631                                          NA                          NA
## 3632                                          NA                          NA
## 3633                         0.90000000000000002                           0
## 3634                         0.99199999999999999                           0
## 3635                         0.51190000000000002                           0
## 3636                                          NA                          NA
## 3637                                          NA                          NA
## 3638                         0.80000000000000004                           0
## 3639                         0.88190000000000002                           0
## 3640                         0.85289999999999999                           0
## 3641                                          NA                          NA
## 3642                                           0                           0
## 3643                         0.96909999999999996                           0
## 3644                                          NA                          NA
## 3645                                          NA                          NA
## 3646                         0.97060000000000002                           0
## 3647                         0.96079999999999999                           0
## 3648                                          NA                          NA
## 3649                                          NA                          NA
## 3650                                           1                           0
## 3651                                          NA                          NA
## 3652                                          NA                          NA
## 3653                                          NA                          NA
## 3654                                           *                           *
## 3655                         0.83040000000000003                           0
## 3656                                          NA                          NA
## 3657                                           *                           *
## 3658                                           *                           *
## 3659                         0.72089999999999999                           0
## 3660                         0.80879999999999996                           0
## 3661                                           *                           *
## 3662                         0.93999999999999995                           0
## 3663                                          NA                          NA
## 3664                                           1                           0
## 3665                         0.66669999999999996                           0
## 3666                         0.72729999999999995                           0
## 3667                                           *                           *
## 3668                                           *                           *
## 3669                                           *                           *
## 3670                                          NA                          NA
## 3671                                           *                           *
## 3672                         0.93879999999999997                           0
## 3673                                           *                           *
## 3674                                           *                           *
## 3675                                          NA                          NA
## 3676                                          NA                          NA
## 3677                         0.94999999999999996                           0
## 3678                         0.86670000000000003                           0
## 3679                                           *                           *
## 3680                                           *                           *
## 3681                                           *                          NA
## 3682                                           *                           *
## 3683                                           *                           *
## 3684                                           *                           *
## 3685                                           *                           *
## 3686                                           *                           *
## 3687                                      0.9355                           0
## 3688                                           *                           *
## 3689                                           *                           *
## 3690                         0.93330000000000002                           0
## 3691                         0.94620000000000004                           0
## 3692                         0.93289999999999995                           0
## 3693                                      0.7843                           0
## 3694                         0.86809999999999998                           0
## 3695                         0.91720000000000002                           0
## 3696                                           *                           *
## 3697                                          NA                          NA
## 3698                                           *                           *
## 3699                         0.82140000000000002                           0
## 3700                                          NA                          NA
## 3701                         0.65880000000000005                           0
## 3702                         0.74380000000000002                           0
## 3703                         0.85429999999999995                           0
## 3704                         0.87109999999999999                           0
## 3705                         0.81589999999999996                           0
## 3706                         0.82640000000000002                           0
## 3707                         0.95450000000000002                           0
## 3708                                           *                           *
## 3709                                           *                          NA
## 3710                                           *                           *
## 3711                                           *                           *
## 3712                                           *                           *
## 3713                                           *                          NA
## 3714                                           *                           *
## 3715                                          NA                          NA
## 3716                                          NA                          NA
## 3717                                           *                          NA
## 3718                                          NA                          NA
## 3719                                           *                           *
## 3720                                           *                           *
## 3721                                           *                           *
## 3722                                           *                           *
## 3723                                           1                           0
## 3724                                          NA                          NA
## 3725                                           *                           *
## 3726                                           *                           *
## 3727                                           *                           *
## 3728                                           *                          NA
## 3729                                           *                           *
## 3730                                           *                           *
## 3731                                           *                           *
## 3732                                           *                          NA
## 3733                                           *                           *
## 3734                                           *                           *
## 3735                         0.97519999999999996                           0
## 3736                         0.82930000000000004                           0
## 3737                                          NA                          NA
## 3738                         0.89659999999999995                           0
## 3739                                       0.753                           *
## 3740                         0.90000000000000002                          NA
## 3741                                          NA                          NA
## 3742                                          NA                          NA
## 3743                                          NA                          NA
## 3744                                          NA                          NA
## 3745                                      0.2016                           0
## 3746                                           *                           *
## 3747                         0.63160000000000005                           0
## 3748                         0.35139999999999999                           0
## 3749                         0.69569999999999999                           0
## 3750                                          NA                          NA
## 3751                                           *                           *
## 3752                                           *                           *
## 3753                                         0.5                           0
## 3754                                           *                           *
## 3755                                         0.5                           *
## 3756                         0.54349999999999998                           0
## 3757                                      0.6905                           0
## 3758                                           1                           0
## 3759                         0.57140000000000002                           0
## 3760                                           *                           *
## 3761                                          NA                          NA
## 3762                                           *                           *
## 3763                         0.52080000000000004                           0
## 3764                                          NA                          NA
## 3765                                          NA                          NA
## 3766                                          NA                          NA
## 3767                         0.77080000000000004                           0
## 3768                                      0.6522                           0
## 3769                         0.80430000000000001                           0
## 3770                         0.54810000000000003                           0
## 3771                         0.73329999999999995                           0
## 3772                                        0.75                           *
## 3773                                          NA                          NA
## 3774                                      0.4607                           0
## 3775                         0.40910000000000002                           0
## 3776                         0.34089999999999998                           0
## 3777                                           1                           0
## 3778                         0.57140000000000002                           0
## 3779                         0.36359999999999998                           0
## 3780                         0.72460000000000002                           0
## 3781                                      0.6835                           0
## 3782                         0.77780000000000005                           0
## 3783                         0.21260000000000001                           0
## 3784                                      0.4138                           0
## 3785                                       0.875                           0
## 3786                                           *                           *
## 3787                         0.71599999999999997                           0
## 3788                         0.62860000000000005                           0
## 3789                         0.72629999999999995                           0
## 3790                         0.44829999999999998                           0
## 3791                         0.82609999999999995                           0
## 3792                         0.48649999999999999                           0
## 3793                                        0.75                           0
## 3794                         0.83330000000000004                           0
## 3795                         0.56520000000000004                           0
## 3796                         0.82140000000000002                           0
## 3797                         0.45829999999999999                           0
## 3798                         0.53849999999999998                           0
## 3799                                           1                          NA
## 3800                                           1                          NA
## 3801                         0.72919999999999996                           0
## 3802                                      0.1053                           0
## 3803                         0.37890000000000001                           0
## 3804                                           1                           0
## 3805                                      0.4945                           0
## 3806                         0.27589999999999998                           *
## 3807                         0.53639999999999999                           0
## 3808                                           *                           *
## 3809                         0.46379999999999999                           0
## 3810                                      0.1429                           0
## 3811                         0.76359999999999995                           0
## 3812                                           *                          NA
## 3813                         0.96550000000000002                           0
## 3814                         0.37930000000000003                           0
## 3815                         0.67500000000000004                           0
## 3816                         0.83030000000000004                           0
## 3817                                      0.3125                           0
## 3818                                           0                           0
## 3819                         0.80410000000000004                           0
## 3820                         0.76419999999999999                           0
## 3821                         0.99529999999999996                           0
## 3822                         0.63639999999999997                           0
## 3823                         0.71189999999999998                           0
## 3824                                          NA                          NA
## 3825                         0.84999999999999998                           0
## 3826                         0.95209999999999995                           0
## 3827                                          NA                          NA
## 3828                         0.91379999999999995                           0
## 3829                                          NA                          NA
## 3830                         0.84619999999999995                           0
## 3831                                          NA                          NA
## 3832                         0.82050000000000001                           0
## 3833                         0.73529999999999995                           0
## 3834                         0.78569999999999995                           0
## 3835                                           1                           0
## 3836                                           *                           *
## 3837                                          NA                          NA
## 3838                                           *                           *
## 3839                         0.94999999999999996                           0
## 3840                                           1                           0
## 3841                         0.73909999999999998                           *
## 3842                                      0.7097                           0
## 3843                         0.39290000000000003                           0
## 3844                         0.93700000000000006                           0
## 3845                                       0.121                           0
## 3846                                           *                           *
## 3847                         0.36840000000000001                           0
## 3848                                      0.9325                           0
## 3849                         0.38100000000000001                           0
## 3850                                           *                           *
## 3851                         0.98099999999999998                           0
## 3852                         0.47620000000000001                           0
## 3853                         0.52629999999999999                           0
## 3854                                           *                          NA
## 3855                                      0.8165                           0
## 3856                         0.82889999999999997                           0
## 3857                         0.86929999999999996                           0
## 3858                         0.77270000000000005                           0
## 3859                         0.48280000000000001                           0
## 3860                                           *                          NA
## 3861                                           *                          NA
## 3862                                          NA                          NA
## 3863                         0.64100000000000001                           *
## 3864                                          NA                          NA
## 3865                                           *                           *
## 3866                         0.75180000000000002                           0
## 3867                         0.77270000000000005                           0
## 3868                                         0.5                           0
## 3869                                      0.6381                           0
## 3870                         0.67330000000000001                           0
## 3871                         0.96230000000000004                           0
## 3872                         0.84309999999999996                           0
## 3873                         0.66159999999999997                           0
## 3874                         0.65629999999999999                           0
## 3875                         0.37319999999999998                           0
## 3876                         0.70450000000000002                           0
## 3877                         0.94059999999999999                           0
## 3878                         0.90910000000000002                           0
## 3879                                      0.5796                           0
## 3880                         0.86140000000000005                           0
## 3881                                           1                           0
## 3882                         0.77459999999999996                           0
## 3883                         0.88570000000000004                           0
## 3884                         0.75160000000000005                           0
## 3885                         0.58819999999999995                           0
## 3886                         0.60609999999999997                           0
## 3887                         0.73470000000000002                           0
## 3888                         0.81820000000000004                           0
## 3889                         0.84930000000000005                           0
## 3890                                      0.6411                           0
## 3891                                         0.5                           0
## 3892                         0.68049999999999999                           0
## 3893                         0.75309999999999999                           0
## 3894                         0.78569999999999995                           0
## 3895                         0.94899999999999995                           0
## 3896                                          NA                          NA
## 3897                                      0.6452                           0
## 3898                                          NA                          NA
## 3899                                         0.5                           *
## 3900                                          NA                          NA
## 3901                                          NA                          NA
## 3902                                          NA                          NA
## 3903                                           *                           *
## 3904                                          NA                          NA
## 3905                                           1                           0
## 3906                                       0.997                           0
## 3907                                          NA                          NA
## 3908                                          NA                          NA
## 3909                                          NA                          NA
## 3910                                          NA                          NA
## 3911                                          NA                          NA
## 3912                                          NA                          NA
## 3913                                          NA                          NA
## 3914                                          NA                          NA
## 3915                                          NA                          NA
## 3916                                          NA                          NA
## 3917                                          NA                          NA
## 3918                                          NA                          NA
## 3919                                          NA                          NA
## 3920                                          NA                          NA
## 3921                                          NA                          NA
## 3922                                          NA                          NA
## 3923                                          NA                          NA
## 3924                                          NA                          NA
## 3925                                          NA                          NA
## 3926                                          NA                          NA
## 3927                                          NA                          NA
## 3928                                          NA                          NA
## 3929                                          NA                          NA
## 3930                                          NA                          NA
## 3931                                          NA                          NA
## 3932                                          NA                          NA
## 3933                                          NA                          NA
## 3934                                          NA                          NA
## 3935                                          NA                          NA
## 3936                                          NA                          NA
## 3937                                          NA                          NA
## 3938                                          NA                          NA
## 3939                                          NA                          NA
## 3940                                          NA                          NA
## 3941                                          NA                          NA
## 3942                                          NA                          NA
## 3943                                          NA                          NA
## 3944                                          NA                          NA
## 3945                                          NA                          NA
## 3946                                          NA                          NA
## 3947                                          NA                          NA
## 3948                                          NA                          NA
## 3949                                          NA                          NA
## 3950                                          NA                          NA
## 3951                                          NA                          NA
## 3952                                          NA                          NA
## 3953                                          NA                          NA
## 3954                                          NA                          NA
## 3955                                          NA                          NA
## 3956                                          NA                          NA
## 3957                                          NA                          NA
## 3958                                          NA                          NA
## 3959                                          NA                          NA
## 3960                                          NA                          NA
## 3961                                          NA                          NA
## 3962                                          NA                          NA
## 3963                                          NA                          NA
## 3964                                          NA                          NA
## 3965                                          NA                          NA
## 3966                                          NA                          NA
## 3967                                          NA                          NA
## 3968                                          NA                          NA
## 3969                                          NA                          NA
## 3970                                          NA                          NA
## 3971                                          NA                          NA
## 3972                                          NA                          NA
## 3973                                          NA                          NA
## 3974                                          NA                          NA
## 3975                                          NA                          NA
## 3976                                          NA                          NA
## 3977                                          NA                          NA
## 3978                                          NA                          NA
## 3979                                          NA                          NA
## 3980                                          NA                          NA
## 3981                                          NA                          NA
## 3982                                          NA                          NA
## 3983                                          NA                          NA
## 3984                                          NA                          NA
## 3985                                          NA                          NA
## 3986                                          NA                          NA
## 3987                                          NA                          NA
## 3988                                          NA                          NA
## 3989                                          NA                          NA
## 3990                                          NA                          NA
## 3991                                          NA                          NA
## 3992                                          NA                          NA
## 3993                                          NA                          NA
## 3994                                          NA                          NA
## 3995                                          NA                          NA
## 3996                                          NA                          NA
## 3997                                          NA                          NA
## 3998                                          NA                          NA
## 3999                                          NA                          NA
## 4000                                          NA                          NA
## 4001                                          NA                          NA
## 4002                                          NA                          NA
## 4003                                          NA                          NA
## 4004                                          NA                          NA
## 4005                                          NA                          NA
## 4006                                          NA                          NA
## 4007                                          NA                          NA
## 4008                                          NA                          NA
## 4009                                          NA                          NA
## 4010                                          NA                          NA
## 4011                                          NA                          NA
## 4012                                          NA                          NA
## 4013                                          NA                          NA
## 4014                                          NA                          NA
## 4015                                          NA                          NA
## 4016                                          NA                          NA
## 4017                                          NA                          NA
## 4018                                          NA                          NA
## 4019                                          NA                          NA
## 4020                                          NA                          NA
## 4021                                          NA                          NA
## 4022                                          NA                          NA
## 4023                                          NA                          NA
## 4024                                          NA                          NA
## 4025                                          NA                          NA
## 4026                                          NA                          NA
## 4027                                          NA                          NA
## 4028                                          NA                          NA
## 4029                                          NA                          NA
## 4030                                          NA                          NA
## 4031                                          NA                          NA
## 4032                                           *                           *
## 4033                                          NA                          NA
## 4034                                          NA                          NA
## 4035                                          NA                          NA
## 4036                                          NA                          NA
## 4037                                          NA                          NA
## 4038                                          NA                          NA
## 4039                                          NA                          NA
## 4040                                          NA                          NA
## 4041                                          NA                          NA
## 4042                                          NA                          NA
## 4043                                          NA                          NA
## 4044                                          NA                          NA
## 4045                                          NA                          NA
## 4046                                           1                           0
## 4047                         0.74439999999999995                           0
## 4048                                          NA                          NA
## 4049                                           *                           *
## 4050                                          NA                          NA
## 4051                                          NA                          NA
## 4052                                          NA                          NA
## 4053                                          NA                          NA
## 4054                                          NA                          NA
## 4055                                          NA                          NA
## 4056                                          NA                          NA
## 4057                                          NA                          NA
## 4058                                          NA                          NA
## 4059                                          NA                          NA
## 4060                                          NA                          NA
## 4061                                           1                           *
## 4062                                           1                          NA
## 4063                         0.80000000000000004                           *
## 4064                         0.76919999999999999                           *
## 4065                                           *                           *
## 4066                                           *                          NA
## 4067                                           1                           *
## 4068                                          NA                          NA
## 4069                                          NA                          NA
## 4070                                          NA                          NA
## 4071                                          NA                          NA
## 4072                                          NA                          NA
## 4073                                          NA                          NA
## 4074                                          NA                          NA
## 4075                                          NA                          NA
## 4076                                          NA                          NA
## 4077                                          NA                          NA
## 4078                                          NA                          NA
## 4079                                          NA                          NA
## 4080                                          NA                          NA
## 4081                                          NA                          NA
## 4082                                          NA                          NA
## 4083                                          NA                          NA
## 4084                                          NA                          NA
## 4085                                          NA                          NA
## 4086                                          NA                          NA
## 4087                                          NA                          NA
## 4088                                          NA                          NA
## 4089                                          NA                          NA
## 4090                                          NA                          NA
## 4091                                          NA                          NA
## 4092                                          NA                          NA
## 4093                                          NA                          NA
## 4094                                          NA                          NA
## 4095                                          NA                          NA
## 4096                                          NA                          NA
## 4097                                          NA                          NA
## 4098                                          NA                          NA
## 4099                                          NA                          NA
## 4100                                          NA                          NA
## 4101                         0.81610000000000005                           0
## 4102                                          NA                          NA
## 4103                                           *                           *
## 4104                                          NA                          NA
## 4105                                           1                           *
## 4106                                          NA                          NA
## 4107                                          NA                          NA
## 4108                                          NA                          NA
## 4109                                          NA                          NA
## 4110                                           *                          NA
## 4111                                          NA                          NA
## 4112                                          NA                          NA
## 4113                                          NA                          NA
## 4114                                          NA                          NA
## 4115                                          NA                          NA
## 4116                                          NA                          NA
## 4117                                          NA                          NA
## 4118                                          NA                          NA
## 4119                                           1                           0
## 4120                                           1                           0
## 4121                         0.96879999999999999                           0
## 4122                         0.94740000000000002                           0
## 4123                                          NA                          NA
## 4124                         0.90000000000000002                           0
## 4125                                           1                           0
## 4126                                           1                           *
## 4127                         0.87860000000000005                           0
## 4128                         0.96209999999999996                           0
## 4129                         0.70509999999999995                           0
## 4130                         0.94740000000000002                           0
## 4131                         0.76190000000000002                           *
## 4132                                           *                           *
## 4133                                          NA                          NA
## 4134                                          NA                          NA
## 4135                                           *                          NA
## 4136                                          NA                          NA
## 4137                                          NA                          NA
## 4138                                      0.9375                           *
## 4139                         0.72860000000000003                           0
## 4140                                          NA                          NA
## 4141                                          NA                          NA
## 4142                                          NA                          NA
## 4143                                          NA                          NA
## 4144                         0.64870000000000005                           0
## 4145                         0.70640000000000003                           0
## 4146                         0.73370000000000002                           0
## 4147                         0.55900000000000005                           0
## 4148                         0.64170000000000005                           0
## 4149                         0.81720000000000004                           0
## 4150                         0.71430000000000005                           0
## 4151                         0.86539999999999995                          NA
## 4152                         0.66830000000000001                           *
## 4153                         0.59089999999999998                           *
## 4154                                      0.8841                          NA
## 4155                                          NA                          NA
## 4156                                          NA                          NA
## 4157                                          NA                          NA
## 4158                                          NA                          NA
## 4159                                          NA                          NA
## 4160                                          NA                          NA
## 4161                                          NA                          NA
## 4162                         0.98180000000000001                           0
## 4163                                          NA                          NA
## 4164                                          NA                          NA
## 4165                                           *                           *
## 4166                                          NA                          NA
## 4167                                          NA                          NA
## 4168                                          NA                          NA
## 4169                                          NA                          NA
## 4170                         0.91839999999999999                           0
## 4171                                           1                           0
## 4172                         0.94440000000000002                           0
## 4173                                           1                           0
## 4174                         0.90590000000000004                           0
## 4175                         0.72919999999999996                           0
## 4176                         0.90300000000000002                           0
## 4177                         0.73929999999999996                           0
## 4178                                      0.6804                           0
## 4179                         0.45610000000000001                           0
## 4180                                          NA                          NA
## 4181                                          NA                          NA
## 4182                                          NA                          NA
## 4183                                          NA                          NA
## 4184                                          NA                          NA
## 4185                                          NA                          NA
## 4186                                          NA                          NA
## 4187                                          NA                          NA
## 4188                                          NA                          NA
## 4189                                          NA                          NA
## 4190                                          NA                          NA
## 4191                                          NA                          NA
## 4192                                          NA                          NA
## 4193                                          NA                          NA
## 4194                                           1                           0
## 4195                                           *                           *
## 4196                         0.97009999999999996                           0
## 4197                                           1                           *
## 4198                         0.95030000000000003                           0
## 4199                                           1                          NA
## 4200                                          NA                          NA
## 4201                                          NA                          NA
## 4202                         0.98219999999999996                           0
## 4203                                        0.75                           0
## 4204                         0.66810000000000003                           0
## 4205                         0.61760000000000004                           0
## 4206                         0.66279999999999994                           0
## 4207                                      0.8478                           0
## 4208                                          NA                          NA
## 4209                                          NA                          NA
## 4210                                          NA                          NA
## 4211                                          NA                          NA
## 4212                                          NA                          NA
## 4213                                           *                           *
## 4214                                           1                           0
## 4215                                           *                           *
## 4216                                           *                          NA
## 4217                                           1                           0
## 4218                                           1                           0
## 4219                                           1                           0
## 4220                                           1                           0
## 4221                                           1                           0
## 4222                                           1                           *
## 4223                                           *                           *
## 4224                                          NA                          NA
## 4225                                          NA                          NA
## 4226                                          NA                          NA
## 4227                                          NA                          NA
## 4228                                          NA                          NA
## 4229                                          NA                          NA
## 4230                                          NA                          NA
## 4231                                          NA                          NA
## 4232                                          NA                          NA
## 4233                                          NA                          NA
## 4234                                          NA                          NA
## 4235                                          NA                          NA
## 4236                                          NA                          NA
## 4237                                          NA                          NA
## 4238                                          NA                          NA
## 4239                         0.79990000000000006                           0
## 4240                                      0.9052                           0
## 4241                         0.94740000000000002                           0
## 4242                                           1                           0
## 4243                                           1                           *
## 4244                         0.93059999999999998                           0
## 4245                         0.83999999999999997                           0
## 4246                                           1                           0
## 4247                                           *                           *
## 4248                                          NA                          NA
## 4249                                           *                           *
## 4250                         0.30769999999999997                           *
## 4251                         0.90629999999999999                           0
## 4252                         0.96879999999999999                           0
## 4253                                          NA                          NA
## 4254                                          NA                          NA
## 4255                                          NA                          NA
## 4256                                          NA                          NA
## 4257                                          NA                          NA
## 4258                                          NA                          NA
## 4259                                          NA                          NA
## 4260                                          NA                          NA
## 4261                                          NA                          NA
## 4262                                        0.75                           0
## 4263                                      0.8649                           0
## 4264                                           *                           *
## 4265                                           1                           0
## 4266                                          NA                          NA
## 4267                                          NA                          NA
## 4268                         0.26090000000000002                           0
## 4269                                          NA                          NA
## 4270                         0.63639999999999997                           0
## 4271                                          NA                          NA
## 4272                                          NA                          NA
## 4273                                          NA                          NA
## 4274                                          NA                          NA
## 4275                                           *                          NA
## 4276                                          NA                          NA
## 4277                                           *                           *
## 4278                                          NA                          NA
## 4279                                          NA                          NA
## 4280                                          NA                          NA
## 4281                                           *                           *
## 4282                                           *                           *
## 4283                                           *                           *
## 4284                                          NA                          NA
## 4285                                           *                           *
## 4286                                          NA                          NA
## 4287                                           *                           *
## 4288                                          NA                          NA
## 4289                                          NA                          NA
## 4290                                          NA                          NA
## 4291                                          NA                          NA
## 4292                                          NA                          NA
## 4293                                          NA                          NA
## 4294                                          NA                          NA
## 4295                                          NA                          NA
## 4296                                          NA                          NA
## 4297                                          NA                          NA
## 4298                                          NA                          NA
## 4299                                          NA                          NA
## 4300                                           *                           *
## 4301                                           *                          NA
## 4302                                          NA                          NA
## 4303                                          NA                          NA
## 4304                                          NA                          NA
## 4305                                          NA                          NA
## 4306                                          NA                          NA
## 4307                                           *                          NA
## 4308                                          NA                          NA
## 4309                                          NA                          NA
## 4310                                           *                          NA
## 4311                                          NA                          NA
## 4312                                           *                           *
## 4313                                          NA                          NA
## 4314                                          NA                          NA
## 4315                                          NA                          NA
## 4316                                          NA                          NA
## 4317                                          NA                          NA
## 4318                                          NA                          NA
## 4319                                          NA                          NA
## 4320                         0.42859999999999998                           *
## 4321                         0.45450000000000002                           *
## 4322                                           1                           0
## 4323                         0.75449999999999995                           0
## 4324                         0.76600000000000001                           0
## 4325                                           *                           *
## 4326                         0.55000000000000004                           *
## 4327                                          NA                          NA
## 4328                         0.76000000000000001                           *
## 4329                                          NA                          NA
## 4330                                          NA                          NA
## 4331                                          NA                          NA
## 4332                                          NA                          NA
## 4333                                          NA                          NA
## 4334                                          NA                          NA
## 4335                                          NA                          NA
## 4336                                          NA                          NA
## 4337                                          NA                          NA
## 4338                                          NA                          NA
## 4339                                          NA                          NA
## 4340                                          NA                          NA
## 4341                                          NA                          NA
## 4342                                          NA                          NA
## 4343                                          NA                          NA
## 4344                                          NA                          NA
## 4345                                          NA                          NA
## 4346                                          NA                          NA
## 4347                                          NA                          NA
## 4348                                          NA                          NA
## 4349                                          NA                          NA
## 4350                                          NA                          NA
## 4351                                          NA                          NA
## 4352                                          NA                          NA
## 4353                                          NA                          NA
## 4354                                          NA                          NA
## 4355                                          NA                          NA
## 4356                                          NA                          NA
## 4357                                          NA                          NA
## 4358                                          NA                          NA
## 4359                                          NA                          NA
## 4360                                          NA                          NA
## 4361                                          NA                          NA
## 4362                                          NA                          NA
## 4363                                          NA                          NA
## 4364                                          NA                          NA
## 4365                                          NA                          NA
## 4366                                          NA                          NA
## 4367                                          NA                          NA
## 4368                                          NA                          NA
## 4369                                          NA                          NA
## 4370                                          NA                          NA
## 4371                                          NA                          NA
## 4372                                          NA                          NA
## 4373                                          NA                          NA
## 4374                                          NA                          NA
## 4375                                          NA                          NA
## 4376                                          NA                          NA
## 4377                                          NA                          NA
## 4378                                          NA                          NA
## 4379                                          NA                          NA
## 4380                                          NA                          NA
## 4381                                          NA                          NA
## 4382                                          NA                          NA
## 4383                                          NA                          NA
## 4384                                          NA                          NA
## 4385                                          NA                          NA
## 4386                                          NA                          NA
## 4387                                          NA                          NA
## 4388                                          NA                          NA
## 4389                                          NA                          NA
## 4390                                          NA                          NA
## 4391                                          NA                          NA
## 4392                                          NA                          NA
## 4393                                          NA                          NA
## 4394                                          NA                          NA
## 4395                                          NA                          NA
## 4396                                          NA                          NA
## 4397                                          NA                          NA
## 4398                                          NA                          NA
## 4399                                          NA                          NA
## 4400                                          NA                          NA
## 4401                                          NA                          NA
## 4402                                          NA                          NA
## 4403                                          NA                          NA
## 4404                                          NA                          NA
## 4405                                          NA                          NA
## 4406                                          NA                          NA
## 4407                                          NA                          NA
## 4408                                          NA                          NA
## 4409                                          NA                          NA
## 4410                                          NA                          NA
## 4411                                          NA                          NA
## 4412                                          NA                          NA
## 4413                                          NA                          NA
## 4414                                          NA                          NA
## 4415                                          NA                          NA
## 4416                                          NA                          NA
## 4417                                          NA                          NA
## 4418                                          NA                          NA
## 4419                                          NA                          NA
## 4420                                          NA                          NA
## 4421                                          NA                          NA
## 4422                                          NA                          NA
## 4423                                          NA                          NA
## 4424                                          NA                          NA
## 4425                                          NA                          NA
## 4426                                          NA                          NA
## 4427                                          NA                          NA
## 4428                                          NA                          NA
## 4429                                          NA                          NA
## 4430                                          NA                          NA
## 4431                                          NA                          NA
## 4432                                          NA                          NA
## 4433                                          NA                          NA
## 4434                                          NA                          NA
## 4435                                          NA                          NA
## 4436                                          NA                          NA
## 4437                                          NA                          NA
## 4438                                          NA                          NA
## 4439                                          NA                          NA
## 4440                                          NA                          NA
## 4441                                          NA                          NA
## 4442                                          NA                          NA
## 4443                                          NA                          NA
## 4444                                          NA                          NA
## 4445                                          NA                          NA
## 4446                                           1                           0
## 4447                                           1                           0
## 4448                                          NA                          NA
## 4449                                           1                           0
## 4450                                           *                           *
## 4451                                          NA                          NA
## 4452                                          NA                          NA
## 4453                                           *                           *
## 4454                                           1                           0
## 4455                                           1                           0
## 4456                                           1                           0
## 4457                                           *                           *
## 4458                                           1                           0
## 4459                                          NA                          NA
## 4460                                          NA                          NA
## 4461                                          NA                          NA
## 4462                                          NA                          NA
## 4463                                          NA                          NA
## 4464                                          NA                          NA
## 4465                                          NA                          NA
## 4466                                          NA                          NA
## 4467                                          NA                          NA
## 4468                                          NA                          NA
## 4469                                          NA                          NA
## 4470                                          NA                          NA
## 4471                                          NA                          NA
## 4472                                          NA                          NA
## 4473                                          NA                          NA
## 4474                                          NA                          NA
## 4475                                          NA                          NA
## 4476                                          NA                          NA
## 4477                                          NA                          NA
## 4478                                          NA                          NA
## 4479                                          NA                          NA
## 4480                                          NA                          NA
## 4481                                          NA                          NA
## 4482                                          NA                          NA
## 4483                                          NA                          NA
## 4484                                          NA                          NA
## 4485                                          NA                          NA
## 4486                                          NA                          NA
## 4487                                          NA                          NA
## 4488                                          NA                          NA
## 4489                                          NA                          NA
## 4490                                          NA                          NA
## 4491                                          NA                          NA
## 4492                                          NA                          NA
## 4493                                          NA                          NA
## 4494                                          NA                          NA
## 4495                                          NA                          NA
## 4496                                          NA                          NA
## 4497                                          NA                          NA
## 4498                                          NA                          NA
## 4499                                          NA                          NA
## 4500                                          NA                          NA
## 4501                                          NA                          NA
## 4502                                          NA                          NA
## 4503                                          NA                          NA
## 4504                                          NA                          NA
## 4505                                          NA                          NA
## 4506                                          NA                          NA
## 4507                                          NA                          NA
## 4508                                          NA                          NA
## 4509                                          NA                          NA
## 4510                                          NA                          NA
## 4511                                          NA                          NA
## 4512                                          NA                          NA
## 4513                                          NA                          NA
## 4514                                          NA                          NA
## 4515                                          NA                          NA
## 4516                                          NA                          NA
## 4517                                          NA                          NA
## 4518                                          NA                          NA
## 4519                                          NA                          NA
## 4520                                          NA                          NA
## 4521                                          NA                          NA
## 4522                                          NA                          NA
## 4523                                          NA                          NA
## 4524                                          NA                          NA
## 4525                                          NA                          NA
## 4526                                          NA                          NA
## 4527                                          NA                          NA
## 4528                                          NA                          NA
## 4529                                          NA                          NA
## 4530                                          NA                          NA
## 4531                                          NA                          NA
## 4532                                          NA                          NA
## 4533                                          NA                          NA
## 4534                                          NA                          NA
## 4535                                          NA                          NA
## 4536                                          NA                          NA
## 4537                                          NA                          NA
## 4538                                          NA                          NA
## 4539                                          NA                          NA
## 4540                                          NA                          NA
## 4541                                          NA                          NA
## 4542                                           1                           0
## 4543                         0.95830000000000004                           0
## 4544                         0.92310000000000003                           0
## 4545                                          NA                          NA
## 4546                                          NA                          NA
## 4547                                          NA                          NA
## 4548                                          NA                          NA
## 4549                                          NA                          NA
## 4550                                          NA                          NA
## 4551                                          NA                          NA
## 4552                                          NA                          NA
## 4553                                           *                          NA
## 4554                                          NA                          NA
## 4555                                          NA                          NA
## 4556                                          NA                          NA
## 4557                                          NA                          NA
## 4558                                          NA                          NA
## 4559                                          NA                          NA
## 4560                                          NA                          NA
## 4561                                          NA                          NA
## 4562                                          NA                          NA
## 4563                                           *                           *
## 4564                                          NA                          NA
## 4565                                          NA                          NA
## 4566                                          NA                          NA
## 4567                                          NA                          NA
## 4568                                          NA                          NA
## 4569                                          NA                          NA
## 4570                                          NA                          NA
## 4571                                          NA                          NA
## 4572                                          NA                          NA
## 4573                                          NA                          NA
## 4574                                          NA                          NA
## 4575                                          NA                          NA
## 4576                                          NA                          NA
## 4577                                          NA                          NA
## 4578                                          NA                          NA
## 4579                                          NA                          NA
## 4580                                          NA                          NA
## 4581                                          NA                          NA
## 4582                                          NA                          NA
## 4583                                          NA                          NA
## 4584                                          NA                          NA
## 4585                                          NA                          NA
## 4586                                          NA                          NA
## 4587                                          NA                          NA
## 4588                                          NA                          NA
## 4589                                          NA                          NA
## 4590                                          NA                          NA
## 4591                                          NA                          NA
## 4592                                          NA                          NA
## 4593                                          NA                          NA
## 4594                                          NA                          NA
## 4595                                          NA                          NA
## 4596                                          NA                          NA
## 4597                                          NA                          NA
## 4598                                          NA                          NA
## 4599                                          NA                          NA
## 4600                                          NA                          NA
## 4601                                          NA                          NA
## 4602                                          NA                          NA
## 4603                                          NA                          NA
## 4604                                          NA                          NA
## 4605                                           *                           *
## 4606                                          NA                          NA
## 4607                                           *                           *
## 4608                                          NA                          NA
## 4609                                          NA                          NA
## 4610                                           *                           *
## 4611                                           *                           *
## 4612                                          NA                          NA
## 4613                                          NA                          NA
## 4614                                          NA                          NA
## 4615                                          NA                          NA
## 4616                                          NA                          NA
## 4617                                          NA                          NA
## 4618                                          NA                          NA
## 4619                                          NA                          NA
## 4620                                          NA                          NA
## 4621                                          NA                          NA
## 4622                                          NA                          NA
## 4623                         0.95889999999999997                           0
## 4624                                          NA                          NA
## 4625                         0.67569999999999997                           0
## 4626                                           *                           *
## 4627                                           1                           *
## 4628                                           *                           *
## 4629                         0.82040000000000002                           0
## 4630                                           1                           0
## 4631                                          NA                          NA
## 4632                                          NA                          NA
## 4633                         0.76000000000000001                           0
## 4634                                           1                           0
## 4635                                          NA                          NA
## 4636                                          NA                          NA
## 4637                                          NA                          NA
## 4638                                           *                           *
## 4639                                           *                          NA
## 4640                                          NA                          NA
## 4641                                           *                           *
## 4642                                          NA                          NA
## 4643                                           *                           *
## 4644                                           *                           *
## 4645                                           *                          NA
## 4646                                           *                           *
## 4647                                           *                           *
## 4648                                           *                           *
## 4649                                           *                           *
## 4650                                           *                           *
## 4651                                           *                           *
## 4652                                           *                          NA
## 4653                                           *                           *
## 4654                                           *                          NA
## 4655                                          NA                          NA
## 4656                                           *                           *
## 4657                                           *                           *
## 4658                                           *                           *
## 4659                                           *                           *
## 4660                                           *                           *
## 4661                         0.71430000000000005                           *
## 4662                                           *                           *
## 4663                                           *                          NA
## 4664                                           *                           *
## 4665                                           *                          NA
## 4666                                          NA                          NA
## 4667                                          NA                          NA
## 4668                                           *                           *
## 4669                                           *                           *
## 4670                                          NA                          NA
## 4671                                           *                           *
## 4672                                           *                          NA
## 4673                                           *                           *
## 4674                                           *                           *
## 4675                                           *                           *
## 4676                                           *                          NA
## 4677                                           *                           *
## 4678                                           *                          NA
## 4679                                           *                          NA
## 4680                                           *                          NA
## 4681                                          NA                          NA
## 4682                                          NA                          NA
## 4683                                          NA                          NA
## 4684                                          NA                          NA
## 4685                                          NA                          NA
## 4686                                          NA                          NA
## 4687                                          NA                          NA
## 4688                                          NA                          NA
## 4689                                          NA                          NA
## 4690                                          NA                          NA
## 4691                                          NA                          NA
## 4692                                          NA                          NA
## 4693                                          NA                          NA
## 4694                                          NA                          NA
## 4695                                          NA                          NA
## 4696                                          NA                          NA
## 4697                                           1                          NA
## 4698                                          NA                          NA
## 4699                                           1                          NA
## 4700                                          NA                          NA
## 4701                                          NA                          NA
## 4702                                          NA                          NA
## 4703                                          NA                          NA
## 4704                                          NA                          NA
## 4705                                          NA                          NA
## 4706                                          NA                          NA
## 4707                                           *                           *
## 4708                         0.98170000000000002                           0
## 4709                         0.95999999999999996                           0
## 4710                                          NA                          NA
## 4711                                          NA                          NA
## 4712                                          NA                          NA
## 4713                                           0                           *
## 4714                                           *                           *
## 4715                                           *                           *
## 4716                         0.35289999999999999                           0
## 4717                                          NA                          NA
## 4718                                          NA                          NA
## 4719                                          NA                          NA
## 4720                                          NA                          NA
## 4721                                          NA                          NA
## 4722                                           *                           *
## 4723                                           0                          NA
## 4724                                          NA                          NA
## 4725                                          NA                          NA
## 4726                                           *                           *
## 4727                                           *                           *
## 4728                                           0                          NA
## 4729                                           *                          NA
## 4730                                           *                          NA
## 4731                                           *                           *
## 4732                                           *                           *
## 4733                                           *                           *
## 4734                                           *                           *
## 4735                                           *                           *
## 4736                                           *                           *
## 4737                                           *                           *
## 4738                                          NA                          NA
## 4739                         0.72989999999999999                           0
## 4740                         0.77339999999999998                           0
## 4741                                           *                          NA
## 4742                                          NA                          NA
## 4743                                          NA                          NA
## 4744                                          NA                          NA
## 4745                                          NA                          NA
## 4746                                          NA                          NA
## 4747                                          NA                          NA
## 4748                                          NA                          NA
## 4749                                          NA                          NA
## 4750                                          NA                          NA
## 4751                                          NA                          NA
## 4752                                          NA                          NA
## 4753                                          NA                          NA
## 4754                                          NA                          NA
## 4755                                          NA                          NA
## 4756                                          NA                          NA
## 4757                                          NA                          NA
## 4758                                          NA                          NA
## 4759                                          NA                          NA
## 4760                                          NA                          NA
## 4761                                          NA                          NA
## 4762                                          NA                          NA
## 4763                                           *                          NA
## 4764                                          NA                          NA
## 4765                                          NA                          NA
## 4766                                          NA                          NA
## 4767                                          NA                          NA
## 4768                                          NA                          NA
## 4769                                          NA                          NA
## 4770                                          NA                          NA
## 4771                                          NA                          NA
## 4772                                          NA                          NA
## 4773                                          NA                          NA
## 4774                                          NA                          NA
## 4775                                          NA                          NA
## 4776                                          NA                          NA
## 4777                                          NA                          NA
## 4778                                          NA                          NA
## 4779                                          NA                          NA
## 4780                                           *                           *
## 4781                                           *                           *
## 4782                                          NA                          NA
## 4783                                           *                           *
## 4784                                           *                           *
## 4785                                          NA                          NA
## 4786                                           *                           *
## 4787                                          NA                          NA
## 4788                                           *                           *
## 4789                                           *                           *
## 4790                                           *                           *
## 4791                                           *                           *
## 4792                                          NA                          NA
## 4793                                           *                          NA
## 4794                                          NA                          NA
## 4795                                           *                          NA
## 4796                                           *                           *
## 4797                                          NA                          NA
## 4798                                           *                           *
## 4799                                           *                           *
## 4800                                           *                           *
## 4801                                           *                           *
## 4802                                           *                           *
## 4803                                           *                           *
## 4804                                           *                           *
## 4805                                           *                           *
## 4806                                          NA                          NA
## 4807                                           *                           *
## 4808                                          NA                          NA
## 4809                                           *                           *
## 4810                                           *                           *
## 4811                                          NA                          NA
## 4812                                          NA                          NA
## 4813                                          NA                          NA
## 4814                                          NA                          NA
## 4815                                          NA                          NA
## 4816                                          NA                          NA
## 4817                                          NA                          NA
## 4818                                          NA                          NA
## 4819                         0.98709999999999998                           0
## 4820                                           *                           *
## 4821                                           1                           0
## 4822                         0.70199999999999996                           0
## 4823                                          NA                          NA
## 4824                                          NA                          NA
## 4825                                           *                           *
## 4826                                          NA                          NA
## 4827                                          NA                          NA
## 4828                                          NA                          NA
## 4829                                          NA                          NA
## 4830                                          NA                          NA
## 4831                                          NA                          NA
## 4832                                          NA                          NA
## 4833                                          NA                          NA
## 4834                         0.72040000000000004                           0
## 4835                         0.68389999999999995                           0
## 4836                         0.69799999999999995                           0
## 4837                         0.56669999999999998                          NA
## 4838                                          NA                          NA
## 4839                                      0.5333                           0
## 4840                                           *                          NA
## 4841                         0.47620000000000001                           0
## 4842                                           *                           *
## 4843                                           1                           *
## 4844                                          NA                          NA
## 4845                                           1                           *
## 4846                                           1                           *
## 4847                                           *                           *
## 4848                                           *                           *
## 4849                                          NA                          NA
## 4850                                          NA                          NA
## 4851                                          NA                          NA
## 4852                                          NA                          NA
## 4853                                          NA                          NA
## 4854                                          NA                          NA
## 4855                                          NA                          NA
## 4856                                          NA                          NA
## 4857                         0.86670000000000003                           0
## 4858                                           1                          NA
## 4859                         0.78949999999999998                           0
## 4860                                           1                           0
## 4861                                          NA                          NA
## 4862                                           *                           *
## 4863                                          NA                          NA
## 4864                                           *                           *
## 4865                                        0.75                           *
## 4866                                          NA                          NA
## 4867                                           *                           *
## 4868                                      0.9032                           0
## 4869                                          NA                          NA
## 4870                                          NA                          NA
## 4871                         0.77780000000000005                           0
## 4872                                          NA                          NA
## 4873                                          NA                          NA
## 4874                                          NA                          NA
## 4875                                          NA                          NA
## 4876                                          NA                          NA
## 4877                                          NA                          NA
## 4878                                          NA                          NA
## 4879                                          NA                          NA
## 4880                                          NA                          NA
## 4881                                          NA                          NA
## 4882                                          NA                          NA
## 4883                                          NA                          NA
## 4884                                          NA                          NA
## 4885                                          NA                          NA
## 4886                                          NA                          NA
## 4887                         0.88370000000000004                           0
## 4888                                           *                           *
## 4889                                           *                           *
## 4890                                          NA                          NA
## 4891                                          NA                          NA
## 4892                                          NA                          NA
## 4893                                          NA                          NA
## 4894                                          NA                          NA
## 4895                         0.90000000000000002                           0
## 4896                         0.76470000000000005                           0
## 4897                                          NA                          NA
## 4898                                           *                           *
## 4899                                          NA                          NA
## 4900                                          NA                          NA
## 4901                                          NA                          NA
## 4902                                          NA                          NA
## 4903                                          NA                          NA
## 4904                                          NA                          NA
## 4905                                          NA                          NA
## 4906                                          NA                          NA
## 4907                                          NA                          NA
## 4908                                          NA                          NA
## 4909                                          NA                          NA
## 4910                                          NA                          NA
## 4911                                          NA                          NA
## 4912                                          NA                          NA
## 4913                                          NA                          NA
## 4914                                          NA                          NA
## 4915                                           *                           *
## 4916                                           *                           *
## 4917                                           *                           *
## 4918                                          NA                          NA
## 4919                                           *                           *
## 4920                                           *                          NA
## 4921                                           *                          NA
## 4922                                           *                           *
## 4923                                          NA                          NA
## 4924                                          NA                          NA
## 4925                                          NA                          NA
## 4926                                           *                           *
## 4927                                          NA                          NA
## 4928                                          NA                          NA
## 4929                                          NA                          NA
## 4930                                          NA                          NA
## 4931                                          NA                          NA
## 4932                                          NA                          NA
## 4933                                          NA                          NA
## 4934                                          NA                          NA
## 4935                                          NA                          NA
## 4936                                          NA                          NA
## 4937                                          NA                          NA
## 4938                                          NA                          NA
## 4939                                          NA                          NA
## 4940                                          NA                          NA
## 4941                                          NA                          NA
## 4942                         0.95050000000000001                           0
## 4943                                           *                           *
## 4944                                      0.9375                           0
## 4945                                           1                           *
## 4946                                           1                          NA
## 4947                                           *                          NA
## 4948                                          NA                          NA
## 4949                                          NA                          NA
## 4950                                          NA                          NA
## 4951                                          NA                          NA
## 4952                                          NA                          NA
## 4953                                          NA                          NA
## 4954                                          NA                          NA
## 4955                                          NA                          NA
## 4956                                          NA                          NA
## 4957                                           *                          NA
## 4958                                          NA                          NA
## 4959                                           *                           *
## 4960                                           *                           *
## 4961                                           *                          NA
## 4962                                           1                          NA
## 4963                                           *                           *
## 4964                                       0.875                           *
## 4965                                        0.75                           0
## 4966                                           *                           *
## 4967                         0.90239999999999998                           0
## 4968                                          NA                          NA
## 4969                                        0.75                           0
## 4970                                          NA                          NA
## 4971                                          NA                          NA
## 4972                                          NA                          NA
## 4973                                          NA                          NA
## 4974                         0.93440000000000001                          NA
## 4975                                           *                           *
## 4976                                           *                           *
## 4977                                           1                           *
## 4978                                           *                           *
## 4979                                       0.875                           *
## 4980                                           *                           *
## 4981                                           *                           *
## 4982                         0.83330000000000004                           0
## 4983                                           *                           *
## 4984                         0.92859999999999998                           0
## 4985                                          NA                          NA
## 4986                                          NA                          NA
## 4987                                          NA                          NA
## 4988                                          NA                          NA
## 4989                                          NA                          NA
## 4990                                          NA                          NA
## 4991                                          NA                          NA
## 4992                                          NA                          NA
## 4993                                          NA                          NA
## 4994                                          NA                          NA
## 4995                                          NA                          NA
## 4996                                          NA                          NA
## 4997                                          NA                          NA
## 4998                                          NA                          NA
## 4999                                          NA                          NA
## 5000                                          NA                          NA
## 5001                                          NA                          NA
## 5002                                          NA                          NA
## 5003                                          NA                          NA
## 5004                                          NA                          NA
## 5005                                          NA                          NA
## 5006                                          NA                          NA
## 5007                                          NA                          NA
## 5008                                          NA                          NA
## 5009                                          NA                          NA
## 5010                                          NA                          NA
## 5011                                          NA                          NA
## 5012                                          NA                          NA
## 5013                                          NA                          NA
## 5014                                          NA                          NA
## 5015                                          NA                          NA
## 5016                                          NA                          NA
## 5017                                          NA                          NA
## 5018                                          NA                          NA
## 5019                                          NA                          NA
## 5020                                           1                          NA
## 5021                                          NA                          NA
## 5022                                          NA                          NA
## 5023                                          NA                          NA
## 5024                                          NA                          NA
## 5025                                          NA                          NA
## 5026                                          NA                          NA
## 5027                                          NA                          NA
## 5028                                          NA                          NA
## 5029                                          NA                          NA
## 5030                                          NA                          NA
## 5031                                          NA                          NA
## 5032                                          NA                          NA
## 5033                                           1                           0
## 5034                                           1                           0
## 5035                                           1                           0
## 5036                                      0.9032                           0
## 5037                                       0.875                           *
## 5038                         0.77780000000000005                           0
## 5039                         0.86670000000000003                           0
## 5040                                           *                           *
## 5041                                          NA                          NA
## 5042                                           *                           *
## 5043                                          NA                          NA
## 5044                                          NA                          NA
## 5045                                          NA                          NA
## 5046                                          NA                          NA
## 5047                                           *                          NA
## 5048                                          NA                          NA
## 5049                         0.83479999999999999                           0
## 5050                         0.97370000000000001                           0
## 5051                                           1                           0
## 5052                                      0.9425                           0
## 5053                                          NA                          NA
## 5054                                          NA                          NA
## 5055                                          NA                          NA
## 5056                                          NA                          NA
## 5057                                           1                           *
## 5058                                          NA                          NA
## 5059                                          NA                          NA
## 5060                                          NA                          NA
## 5061                                          NA                          NA
## 5062                                          NA                          NA
## 5063                                      0.7671                           *
## 5064                                          NA                          NA
## 5065                                          NA                          NA
## 5066                                          NA                          NA
## 5067                                          NA                          NA
## 5068                                          NA                          NA
## 5069                                          NA                          NA
## 5070                         0.78569999999999995                           0
## 5071                                           *                           *
## 5072                         0.84379999999999999                          NA
## 5073                                          NA                          NA
## 5074                                          NA                          NA
## 5075                         0.76739999999999997                           0
## 5076                                          NA                          NA
## 5077                                          NA                          NA
## 5078                         0.88070000000000004                           0
## 5079                         0.95120000000000005                           0
## 5080                                          NA                          NA
## 5081                                          NA                          NA
## 5082                         0.92000000000000004                           0
## 5083                                          NA                          NA
## 5084                                          NA                          NA
## 5085                                          NA                          NA
## 5086                                          NA                          NA
## 5087                                          NA                          NA
## 5088                                          NA                          NA
## 5089                                          NA                          NA
## 5090                                          NA                          NA
## 5091                                          NA                          NA
## 5092                                          NA                          NA
## 5093                                          NA                          NA
## 5094                                          NA                          NA
## 5095                                          NA                          NA
## 5096                                          NA                          NA
## 5097                                          NA                          NA
## 5098                                          NA                          NA
## 5099                                          NA                          NA
## 5100                                          NA                          NA
## 5101                                          NA                          NA
## 5102                                           1                          NA
## 5103                         0.90910000000000002                           *
## 5104                                           1                          NA
## 5105                                           *                           *
## 5106                                          NA                          NA
## 5107                         0.94740000000000002                           *
## 5108                                          NA                          NA
## 5109                                           1                           0
## 5110                                          NA                          NA
## 5111                                          NA                          NA
## 5112                                          NA                          NA
## 5113                                          NA                          NA
## 5114                                          NA                          NA
## 5115                                          NA                          NA
## 5116                                        0.88                           0
## 5117                         0.92310000000000003                           0
## 5118                         0.94999999999999996                           *
## 5119                         0.97099999999999997                           0
## 5120                                           1                           0
## 5121                         0.90210000000000001                           0
## 5122                         0.85709999999999997                          NA
## 5123                         0.89580000000000004                           0
## 5124                         0.89729999999999999                           0
## 5125                         0.97919999999999996                           0
## 5126                                          NA                          NA
## 5127                                          NA                          NA
## 5128                                          NA                          NA
## 5129                         0.85709999999999997                           0
## 5130                                          NA                          NA
## 5131                                          NA                          NA
## 5132                                          NA                          NA
## 5133                                          NA                          NA
## 5134                                          NA                          NA
## 5135                                          NA                          NA
## 5136                                          NA                          NA
## 5137                                          NA                          NA
## 5138                                          NA                          NA
## 5139                                          NA                          NA
## 5140                                          NA                          NA
## 5141                                          NA                          NA
## 5142                                          NA                          NA
## 5143                                          NA                          NA
## 5144                                          NA                          NA
## 5145                                          NA                          NA
## 5146                                          NA                          NA
## 5147                                          NA                          NA
## 5148                                          NA                          NA
## 5149                                          NA                          NA
## 5150                                          NA                          NA
## 5151                                          NA                          NA
## 5152                                           *                          NA
## 5153                                          NA                          NA
## 5154                                          NA                          NA
## 5155                                           *                          NA
## 5156                         0.80000000000000004                           0
## 5157                                          NA                          NA
## 5158                                          NA                          NA
## 5159                                          NA                          NA
## 5160                                          NA                          NA
## 5161                                          NA                          NA
## 5162                                          NA                          NA
## 5163                                          NA                          NA
## 5164                                          NA                          NA
## 5165                                          NA                          NA
## 5166                                          NA                          NA
## 5167                                          NA                          NA
## 5168                                          NA                          NA
## 5169                                          NA                          NA
## 5170                                          NA                          NA
## 5171                                          NA                          NA
## 5172                                          NA                          NA
## 5173                                          NA                          NA
## 5174                                          NA                          NA
## 5175                                          NA                          NA
## 5176                                          NA                          NA
## 5177                                          NA                          NA
## 5178                                          NA                          NA
## 5179                                          NA                          NA
## 5180                                           *                          NA
## 5181                                           *                          NA
## 5182                                          NA                          NA
## 5183                                          NA                          NA
## 5184                                          NA                          NA
## 5185                                          NA                          NA
## 5186                                          NA                          NA
## 5187                                          NA                          NA
## 5188                                          NA                          NA
## 5189                                          NA                          NA
## 5190                                          NA                          NA
## 5191                                          NA                          NA
## 5192                                          NA                          NA
## 5193                                          NA                          NA
## 5194                                           1                           0
## 5195                                          NA                          NA
## 5196                                          NA                          NA
## 5197                                          NA                          NA
## 5198                                          NA                          NA
## 5199                                          NA                          NA
## 5200                                          NA                          NA
## 5201                                          NA                          NA
## 5202                                          NA                          NA
## 5203                                          NA                          NA
## 5204                                          NA                          NA
## 5205                                          NA                          NA
## 5206                                          NA                          NA
## 5207                                          NA                          NA
## 5208                                          NA                          NA
## 5209                                          NA                          NA
## 5210                                          NA                          NA
## 5211                                          NA                          NA
## 5212                                          NA                          NA
## 5213                                          NA                          NA
## 5214                         0.74170000000000003                           0
## 5215                                           *                           0
## 5216                         0.64149999999999996                           0
## 5217                                          NA                          NA
## 5218                                           1                           0
## 5219                         0.92859999999999998                          NA
## 5220                                      0.9375                          NA
## 5221                                          NA                          NA
## 5222                                          NA                          NA
## 5223                                          NA                          NA
## 5224                                          NA                          NA
## 5225                                          NA                          NA
## 5226                                          NA                          NA
## 5227                                          NA                          NA
## 5228                                          NA                          NA
## 5229                                          NA                          NA
## 5230                                          NA                          NA
## 5231                                          NA                          NA
## 5232                                          NA                          NA
## 5233                                          NA                          NA
## 5234                                          NA                          NA
## 5235                                          NA                          NA
## 5236                                          NA                          NA
## 5237                                          NA                          NA
## 5238                                          NA                          NA
## 5239                                          NA                          NA
## 5240                                          NA                          NA
## 5241                                          NA                          NA
## 5242                                          NA                          NA
## 5243                                          NA                          NA
## 5244                                          NA                          NA
## 5245                                          NA                          NA
## 5246                                          NA                          NA
## 5247                                          NA                          NA
## 5248                         0.82609999999999995                          NA
## 5249                                          NA                          NA
## 5250                                          NA                          NA
## 5251                                          NA                          NA
## 5252                                          NA                          NA
## 5253                                          NA                          NA
## 5254                                          NA                          NA
## 5255                                          NA                          NA
## 5256                                          NA                          NA
## 5257                                          NA                          NA
## 5258                                          NA                          NA
## 5259                                          NA                          NA
## 5260                                          NA                          NA
## 5261                                          NA                          NA
## 5262                                          NA                          NA
## 5263                                          NA                          NA
## 5264                                          NA                          NA
## 5265                                          NA                          NA
## 5266                                          NA                          NA
## 5267                                          NA                          NA
## 5268                                          NA                          NA
## 5269                                          NA                          NA
## 5270                                          NA                          NA
## 5271                                           1                           *
## 5272                                           1                          NA
## 5273                                          NA                          NA
## 5274                                          NA                          NA
## 5275                                           *                          NA
## 5276                                          NA                          NA
## 5277                                          NA                          NA
## 5278                                          NA                          NA
## 5279                                          NA                          NA
## 5280                                          NA                          NA
## 5281                                          NA                          NA
## 5282                                          NA                          NA
## 5283                                           1                          NA
## 5284                                          NA                          NA
## 5285                                          NA                          NA
## 5286                                           *                          NA
## 5287                                          NA                          NA
## 5288                                          NA                          NA
## 5289                                          NA                          NA
## 5290                                           1                          NA
## 5291                                           1                          NA
## 5292                         0.92859999999999998                          NA
## 5293                                          NA                          NA
## 5294                                          NA                          NA
## 5295                                           *                          NA
## 5296                                           *                           *
## 5297                                          NA                          NA
## 5298                                           *                          NA
## 5299                                          NA                          NA
## 5300                                          NA                          NA
## 5301                                          NA                          NA
## 5302                                          NA                          NA
## 5303                         0.91839999999999999                           0
## 5304                                           1                           0
## 5305                                          NA                          NA
## 5306                                           *                           *
## 5307                                          NA                          NA
## 5308                                          NA                          NA
## 5309                                          NA                          NA
## 5310                                           1                           0
## 5311                                           *                          NA
## 5312                                          NA                          NA
## 5313                                          NA                          NA
## 5314                                          NA                          NA
## 5315                                          NA                          NA
## 5316                                          NA                          NA
## 5317                                          NA                          NA
## 5318                                          NA                          NA
## 5319                                          NA                          NA
## 5320                                          NA                          NA
## 5321                                           1                           0
## 5322                                           *                           *
## 5323                                           *                          NA
## 5324                                          NA                          NA
## 5325                         0.83330000000000004                           *
## 5326                                          NA                          NA
## 5327                                          NA                          NA
## 5328                                          NA                          NA
## 5329                                          NA                          NA
## 5330                                          NA                          NA
## 5331                                          NA                          NA
## 5332                                          NA                          NA
## 5333                                          NA                          NA
## 5334                                          NA                          NA
## 5335                                          NA                          NA
## 5336                                          NA                          NA
## 5337                                          NA                          NA
## 5338                                          NA                          NA
## 5339                                          NA                          NA
## 5340                                          NA                          NA
## 5341                                          NA                          NA
## 5342                                          NA                          NA
## 5343                                          NA                          NA
## 5344                                          NA                          NA
## 5345                                          NA                          NA
## 5346                                          NA                          NA
## 5347                                          NA                          NA
## 5348                                          NA                          NA
## 5349                                          NA                          NA
## 5350                                          NA                          NA
## 5351                                          NA                          NA
## 5352                                          NA                          NA
## 5353                                          NA                          NA
## 5354                                          NA                          NA
## 5355                                           1                           0
## 5356                                           1                           0
## 5357                                           1                           0
## 5358                                          NA                          NA
## 5359                                           1                           0
## 5360                                           1                           0
## 5361                         0.40699999999999997                          NA
## 5362                                        0.25                           *
## 5363                                           0                           *
## 5364                                           0                          NA
## 5365                                          NA                          NA
## 5366                                          NA                          NA
## 5367                                          NA                          NA
## 5368                                          NA                          NA
## 5369                                          NA                          NA
## 5370                                          NA                          NA
## 5371                                          NA                          NA
## 5372                                          NA                          NA
## 5373                                          NA                          NA
## 5374                                          NA                          NA
## 5375                                          NA                          NA
## 5376                                          NA                          NA
## 5377                                          NA                          NA
## 5378                                           1                           0
## 5379                                           *                          NA
## 5380                                           1                           0
## 5381                                           *                          NA
## 5382                                          NA                          NA
## 5383                                          NA                          NA
## 5384                                           *                          NA
## 5385                                          NA                          NA
## 5386                                           *                          NA
## 5387                                           *                          NA
## 5388                                           *                          NA
## 5389                                           *                          NA
## 5390                                          NA                          NA
## 5391                                          NA                          NA
## 5392                                          NA                          NA
## 5393                                          NA                          NA
## 5394                                          NA                          NA
## 5395                                          NA                          NA
## 5396                                       0.875                          NA
## 5397                                           *                          NA
## 5398                                          NA                          NA
## 5399                                          NA                          NA
## 5400                                          NA                          NA
## 5401                                          NA                          NA
## 5402                                          NA                          NA
## 5403                                          NA                          NA
## 5404                                          NA                          NA
## 5405                                          NA                          NA
## 5406                                          NA                          NA
## 5407                                           *                          NA
## 5408                                           *                          NA
## 5409                                           *                          NA
## 5410                                          NA                          NA
## 5411                                          NA                          NA
## 5412                                          NA                          NA
## 5413                                          NA                          NA
## 5414                                          NA                          NA
## 5415                                          NA                          NA
## 5416                                          NA                          NA
## 5417                                          NA                          NA
## 5418                                          NA                          NA
## 5419                                          NA                          NA
## 5420                                          NA                          NA
## 5421                                          NA                          NA
## 5422                                          NA                          NA
## 5423                                          NA                          NA
## 5424                                          NA                          NA
## 5425                                          NA                          NA
## 5426                                          NA                          NA
## 5427                                          NA                          NA
## 5428                                          NA                          NA
## 5429                                          NA                          NA
## 5430                                          NA                          NA
## 5431                                          NA                          NA
## 5432                                          NA                          NA
## 5433                                          NA                          NA
## 5434                                          NA                          NA
## 5435                                          NA                          NA
## 5436                                          NA                          NA
## 5437                                          NA                          NA
## 5438                                          NA                          NA
## 5439                                          NA                          NA
## 5440                         0.90910000000000002                          NA
## 5441                                          NA                          NA
## 5442                                           *                           *
## 5443                                           *                           *
## 5444                         0.90910000000000002                           0
## 5445                                          NA                          NA
## 5446                                          NA                          NA
## 5447                                          NA                          NA
## 5448                         0.83330000000000004                           *
## 5449                         0.77780000000000005                           0
## 5450                         0.92449999999999999                          NA
## 5451                                           *                          NA
## 5452                         0.89329999999999998                          NA
## 5453                                          NA                          NA
## 5454                         0.85709999999999997                           0
## 5455                                          NA                          NA
## 5456                                          NA                          NA
## 5457                                          NA                          NA
## 5458                                           *                           *
## 5459                                          NA                          NA
## 5460                                           *                           *
## 5461                                           *                           *
## 5462                         0.98570000000000002                           0
## 5463                         0.83779999999999999                           *
## 5464                                          NA                          NA
## 5465                                          NA                          NA
## 5466                                          NA                          NA
## 5467                                          NA                          NA
## 5468                                          NA                          NA
## 5469                                          NA                          NA
## 5470                                          NA                          NA
## 5471                                          NA                          NA
## 5472                                          NA                          NA
## 5473                                          NA                          NA
## 5474                                          NA                          NA
## 5475                                          NA                          NA
## 5476                                          NA                          NA
## 5477                                          NA                          NA
## 5478                                          NA                          NA
## 5479                                          NA                          NA
## 5480                                          NA                          NA
## 5481                                          NA                          NA
## 5482                                          NA                          NA
## 5483                                          NA                          NA
## 5484                                          NA                          NA
## 5485                                          NA                          NA
## 5486                                          NA                          NA
## 5487                                           *                          NA
## 5488                                          NA                          NA
## 5489                                      0.6512                           0
## 5490                                           *                           *
## 5491                                           *                           *
## 5492                                           *                           *
## 5493                                           *                           *
## 5494                                           *                           *
## 5495                         0.60870000000000002                           0
## 5496                                           *                           *
## 5497                                           *                           *
## 5498                                           *                          NA
## 5499                                          NA                          NA
## 5500                                          NA                          NA
## 5501                                           *                           *
## 5502                                           *                           *
## 5503                                          NA                          NA
## 5504                                           *                           *
## 5505                                           *                           *
## 5506                                           *                          NA
## 5507                                           *                           *
## 5508                                          NA                          NA
## 5509                         0.78569999999999995                          NA
## 5510                                           *                          NA
## 5511                                          NA                          NA
## 5512                                          NA                          NA
## 5513                         0.93330000000000002                          NA
## 5514                                          NA                          NA
## 5515                                          NA                          NA
## 5516                         0.92859999999999998                           0
## 5517                                           1                           0
## 5518                         0.86670000000000003                          NA
## 5519                                          NA                          NA
## 5520                         0.85709999999999997                          NA
## 5521                                           *                          NA
## 5522                         0.77780000000000005                          NA
## 5523                                       0.625                          NA
## 5524                                        0.75                          NA
## 5525                                           1                          NA
## 5526                                          NA                          NA
## 5527                                          NA                          NA
## 5528                                          NA                          NA
## 5529                                          NA                          NA
## 5530                                          NA                          NA
## 5531                                          NA                          NA
## 5532                                          NA                          NA
## 5533                                          NA                          NA
## 5534                                          NA                          NA
## 5535                                          NA                          NA
## 5536                                          NA                          NA
## 5537                                          NA                          NA
## 5538                                          NA                          NA
## 5539                                      0.4597                           0
## 5540                                      0.2135                           0
## 5541                                          NA                          NA
## 5542                                          NA                          NA
## 5543                         0.58330000000000004                          NA
## 5544                                          NA                          NA
## 5545                                          NA                          NA
## 5546                                          NA                          NA
## 5547                                           1                          NA
## 5548                                          NA                          NA
## 5549                                          NA                          NA
## 5550                         0.61109999999999998                          NA
## 5551                                           *                          NA
## 5552                                           1                           0
## 5553                                           *                           *
## 5554                                          NA                          NA
## 5555                                          NA                          NA
## 5556                                          NA                          NA
## 5557                                          NA                          NA
## 5558                                          NA                          NA
## 5559                                          NA                          NA
## 5560                                          NA                          NA
## 5561                                          NA                          NA
## 5562                                          NA                          NA
## 5563                                          NA                          NA
## 5564                                          NA                          NA
## 5565                                          NA                          NA
## 5566                                          NA                          NA
## 5567                                          NA                          NA
## 5568                                          NA                          NA
## 5569                                          NA                          NA
## 5570                                          NA                          NA
## 5571                                          NA                          NA
## 5572                                          NA                          NA
## 5573                                          NA                          NA
## 5574                                          NA                          NA
## 5575                                          NA                          NA
## 5576                                          NA                          NA
## 5577                                          NA                          NA
## 5578                                          NA                          NA
## 5579                                          NA                          NA
## 5580                                          NA                          NA
## 5581                                          NA                          NA
## 5582                                          NA                          NA
## 5583                                          NA                          NA
## 5584                                          NA                          NA
## 5585                                          NA                          NA
## 5586                                          NA                          NA
## 5587                                          NA                          NA
## 5588                                          NA                          NA
## 5589                                          NA                          NA
## 5590                                          NA                          NA
## 5591                                          NA                          NA
## 5592                                          NA                          NA
## 5593                                          NA                          NA
## 5594                                          NA                          NA
## 5595                                          NA                          NA
## 5596                                          NA                          NA
## 5597                                          NA                          NA
## 5598                                          NA                          NA
## 5599                                          NA                          NA
## 5600                                          NA                          NA
## 5601                                          NA                          NA
## 5602                                          NA                          NA
## 5603                                          NA                          NA
## 5604                                          NA                          NA
## 5605                                          NA                          NA
## 5606                                          NA                          NA
## 5607                                          NA                          NA
## 5608                                          NA                          NA
## 5609                                          NA                          NA
## 5610                                          NA                          NA
## 5611                                          NA                          NA
## 5612                                          NA                          NA
## 5613                                          NA                          NA
## 5614                         0.66669999999999996                           0
## 5615                                          NA                          NA
## 5616                         0.63929999999999998                           *
## 5617                                          NA                          NA
## 5618                                           *                           0
## 5619                                           *                           *
## 5620                         0.71109999999999995                           0
## 5621                                          NA                          NA
## 5622                         0.63639999999999997                           *
## 5623                                          NA                          NA
## 5624                                      0.1111                           0
## 5625                                          NA                          NA
## 5626                         0.50639999999999996                           0
## 5627                                          NA                          NA
## 5628                         0.63239999999999996                           0
## 5629                                          NA                          NA
## 5630                                      0.1774                           0
## 5631                                          NA                          NA
## 5632                         0.66669999999999996                           *
## 5633                                          NA                          NA
## 5634                                          NA                          NA
## 5635                                           *                          NA
## 5636                                          NA                          NA
## 5637                                          NA                          NA
## 5638                                           *                          NA
## 5639                                          NA                          NA
## 5640                                          NA                          NA
## 5641                                          NA                          NA
## 5642                                          NA                          NA
## 5643                                          NA                          NA
## 5644                                          NA                          NA
## 5645                                          NA                          NA
## 5646                                        0.75                          NA
## 5647                                          NA                          NA
## 5648                                          NA                          NA
## 5649                                          NA                          NA
## 5650                                          NA                          NA
## 5651                                          NA                          NA
## 5652                                          NA                          NA
## 5653                                          NA                          NA
## 5654                                          NA                          NA
## 5655                                          NA                          NA
## 5656                                          NA                          NA
## 5657                                          NA                          NA
## 5658                                          NA                          NA
## 5659                                          NA                          NA
## 5660                                          NA                          NA
## 5661                                          NA                          NA
## 5662                                          NA                          NA
## 5663                                          NA                          NA
## 5664                                          NA                          NA
## 5665                                          NA                          NA
## 5666                                          NA                          NA
## 5667                                          NA                          NA
## 5668                                          NA                          NA
## 5669                                          NA                          NA
## 5670                                          NA                          NA
## 5671                                          NA                          NA
## 5672                                          NA                          NA
## 5673                                          NA                          NA
## 5674                                          NA                          NA
## 5675                                          NA                          NA
## 5676                                          NA                          NA
## 5677                                           *                          NA
## 5678                                          NA                          NA
## 5679                                          NA                          NA
## 5680                                          NA                          NA
## 5681                                           1                          NA
## 5682                                          NA                          NA
## 5683                                          NA                          NA
## 5684                                          NA                          NA
## 5685                                          NA                          NA
## 5686                                          NA                          NA
## 5687                                          NA                          NA
## 5688                                           *                          NA
## 5689                                          NA                          NA
## 5690                                          NA                          NA
## 5691                                          NA                          NA
## 5692                                          NA                          NA
## 5693                                          NA                          NA
## 5694                                          NA                          NA
## 5695                                          NA                          NA
## 5696                                          NA                          NA
## 5697                                          NA                          NA
## 5698                                          NA                          NA
## 5699                                          NA                          NA
## 5700                                           *                          NA
## 5701                                          NA                          NA
## 5702                                          NA                          NA
## 5703                         0.88959999999999995                           0
## 5704                                          NA                          NA
## 5705                                      0.9375                           0
## 5706                                          NA                          NA
## 5707                                          NA                          NA
## 5708                                          NA                          NA
## 5709                                          NA                          NA
## 5710                                          NA                          NA
## 5711                                          NA                          NA
## 5712                                          NA                          NA
## 5713                                           *                          NA
## 5714                                           1                           *
## 5715                                           *                          NA
## 5716                                          NA                          NA
## 5717                                          NA                          NA
## 5718                                          NA                          NA
## 5719                                          NA                          NA
## 5720                                          NA                          NA
## 5721                                          NA                          NA
## 5722                                           1                           *
## 5723                                           1                          NA
## 5724                                          NA                          NA
## 5725                                          NA                          NA
## 5726                                           *                          NA
## 5727                                           *                           *
## 5728                                           *                          NA
## 5729                                          NA                          NA
## 5730                                          NA                          NA
## 5731                                          NA                          NA
## 5732                                          NA                          NA
## 5733                                          NA                          NA
## 5734                                          NA                          NA
## 5735                                          NA                          NA
## 5736                                          NA                          NA
## 5737                                          NA                          NA
## 5738                                           1                           *
## 5739                                          NA                          NA
## 5740                                          NA                          NA
## 5741                                          NA                          NA
## 5742                                          NA                          NA
## 5743                                          NA                          NA
## 5744                                           1                          NA
## 5745                         0.86839999999999995                          NA
## 5746                                           1                          NA
## 5747                                      0.9375                          NA
## 5748                                          NA                          NA
## 5749                                          NA                          NA
## 5750                                          NA                          NA
## 5751                                          NA                          NA
## 5752                                          NA                          NA
## 5753                                          NA                          NA
## 5754                                          NA                          NA
## 5755                                          NA                          NA
## 5756                                          NA                          NA
## 5757                                          NA                          NA
## 5758                                          NA                          NA
## 5759                                          NA                          NA
## 5760                                          NA                          NA
## 5761                                          NA                          NA
## 5762                                          NA                          NA
## 5763                                          NA                          NA
## 5764                                          NA                          NA
## 5765                                          NA                          NA
## 5766                                          NA                          NA
## 5767                                          NA                          NA
## 5768                                          NA                          NA
## 5769                                          NA                          NA
## 5770                                          NA                          NA
## 5771                                          NA                          NA
## 5772                                          NA                          NA
## 5773                                          NA                          NA
## 5774                                          NA                          NA
## 5775                                          NA                          NA
## 5776                                          NA                          NA
## 5777                                          NA                          NA
## 5778                                          NA                          NA
## 5779                                          NA                          NA
## 5780                                          NA                          NA
## 5781                                          NA                          NA
## 5782                                          NA                          NA
## 5783                                          NA                          NA
## 5784                                          NA                          NA
## 5785                                          NA                          NA
## 5786                                          NA                          NA
## 5787                                          NA                          NA
## 5788                                          NA                          NA
## 5789                                          NA                          NA
## 5790                                          NA                          NA
## 5791                                          NA                          NA
## 5792                                          NA                          NA
## 5793                                          NA                          NA
## 5794                                          NA                          NA
## 5795                                          NA                          NA
## 5796                                          NA                          NA
## 5797                                          NA                          NA
## 5798                                          NA                          NA
## 5799                                          NA                          NA
## 5800                                          NA                          NA
## 5801                                          NA                          NA
## 5802                                          NA                          NA
## 5803                                          NA                          NA
## 5804                                          NA                          NA
## 5805                                          NA                          NA
## 5806                                          NA                          NA
## 5807                                          NA                          NA
## 5808                                          NA                          NA
## 5809                                          NA                          NA
## 5810                                          NA                          NA
## 5811                                          NA                          NA
## 5812                                          NA                          NA
## 5813                                          NA                          NA
## 5814                                          NA                          NA
## 5815                                          NA                          NA
## 5816                                          NA                          NA
## 5817                                          NA                          NA
## 5818                                          NA                          NA
## 5819                         0.63780000000000003                           0
## 5820                                          NA                          NA
## 5821                                          NA                          NA
## 5822                                          NA                          NA
## 5823                                          NA                          NA
## 5824                                          NA                          NA
## 5825                                          NA                          NA
## 5826                                          NA                          NA
## 5827                                          NA                          NA
## 5828                                          NA                          NA
## 5829                                          NA                          NA
## 5830                                          NA                          NA
## 5831                                          NA                          NA
## 5832                                          NA                          NA
## 5833                                          NA                          NA
## 5834                                          NA                          NA
## 5835                                          NA                          NA
## 5836                                          NA                          NA
## 5837                                          NA                          NA
## 5838                                          NA                          NA
## 5839                                          NA                          NA
## 5840                                          NA                          NA
## 5841                                          NA                          NA
## 5842                                          NA                          NA
## 5843                                          NA                          NA
## 5844                                          NA                          NA
## 5845                                          NA                          NA
## 5846                                          NA                          NA
## 5847                                          NA                          NA
## 5848                                          NA                          NA
## 5849                                          NA                          NA
## 5850                                          NA                          NA
## 5851                                          NA                          NA
## 5852                                          NA                          NA
## 5853                                          NA                          NA
## 5854                                          NA                          NA
## 5855                                          NA                          NA
## 5856                                          NA                          NA
## 5857                                          NA                          NA
## 5858                                          NA                          NA
## 5859                                          NA                          NA
## 5860                                          NA                          NA
## 5861                                          NA                          NA
## 5862                                          NA                          NA
## 5863                                          NA                          NA
## 5864                                          NA                          NA
## 5865                                          NA                          NA
## 5866                                          NA                          NA
## 5867                                          NA                          NA
## 5868                                          NA                          NA
## 5869                                          NA                          NA
## 5870                                          NA                          NA
## 5871                                          NA                          NA
## 5872                                          NA                          NA
## 5873                                          NA                          NA
## 5874                                          NA                          NA
## 5875                                          NA                          NA
## 5876                                          NA                          NA
## 5877                         0.93630000000000002                           0
## 5878                                          NA                          NA
## 5879                                          NA                          NA
## 5880                                          NA                          NA
## 5881                                          NA                          NA
## 5882                                          NA                          NA
## 5883                                          NA                          NA
## 5884                                          NA                          NA
## 5885                                          NA                          NA
## 5886                                          NA                          NA
## 5887                                           *                          NA
## 5888                                          NA                          NA
## 5889                                          NA                          NA
## 5890                                          NA                          NA
## 5891                                          NA                          NA
## 5892                                          NA                          NA
## 5893                                          NA                          NA
## 5894                                          NA                          NA
## 5895                                          NA                          NA
## 5896                                          NA                          NA
## 5897                                          NA                          NA
## 5898                                          NA                          NA
## 5899                                        <NA>                        <NA>
##      Received.Credential Note..Apprenticeship.program...
## 1                      0                              NA
## 2                      0                              NA
## 3                      0                              NA
## 4                      0                              NA
## 5                     28                              NA
## 6                      0                              NA
## 7                      *                              NA
## 8                      *                              NA
## 9                      *                              NA
## 10                     0                              NA
## 11                     0                              NA
## 12                     0                              NA
## 13                     *                              NA
## 14                     0                              NA
## 15                     *                              NA
## 16                     0                              NA
## 17                     0                              NA
## 18                     *                              NA
## 19                     0                              NA
## 20                     *                              NA
## 21                    18                              NA
## 22                     *                              NA
## 23                     0                              NA
## 24                     0                              NA
## 25                     0                              NA
## 26                     0                              NA
## 27                     0                              NA
## 28                     6                              NA
## 29                     0                              NA
## 30                     0                              NA
## 31                     *                              NA
## 32                     0                              NA
## 33                     0                              NA
## 34                     0                              NA
## 35                     0                              NA
## 36                     0                              NA
## 37                     0                              NA
## 38                     0                              NA
## 39                     0                              NA
## 40                     0                              NA
## 41                     0                              NA
## 42                     0                              NA
## 43                     0                              NA
## 44                     0                              NA
## 45                     0                              NA
## 46                     0                              NA
## 47                     0                              NA
## 48                    12                              NA
## 49                     *                              NA
## 50                     0                              NA
## 51                     0                              NA
## 52                     0                              NA
## 53                     0                              NA
## 54                     0                              NA
## 55                     0                              NA
## 56                     *                              NA
## 57                     0                              NA
## 58                     0                              NA
## 59                     *                              NA
## 60                     0                              NA
## 61                    46                              NA
## 62                   143                              NA
## 63                    10                              NA
## 64                     *                              NA
## 65                    17                              NA
## 66                     0                              NA
## 67                     9                              NA
## 68                    44                              NA
## 69                     0                              NA
## 70                     *                              NA
## 71                    33                              NA
## 72                     *                              NA
## 73                     *                              NA
## 74                    18                              NA
## 75                     0                              NA
## 76                     0                              NA
## 77                     6                              NA
## 78                     0                              NA
## 79                     0                              NA
## 80                     0                              NA
## 81                     0                              NA
## 82                     0                              NA
## 83                     0                              NA
## 84                     0                              NA
## 85                     0                              NA
## 86                     9                              NA
## 87                     0                              NA
## 88                     0                              NA
## 89                     0                              NA
## 90                     0                              NA
## 91                     0                              NA
## 92                     0                              NA
## 93                     0                              NA
## 94                     *                              NA
## 95                    15                              NA
## 96                     0                              NA
## 97                     0                              NA
## 98                     0                              NA
## 99                     0                              NA
## 100                    0                              NA
## 101                    0                              NA
## 102                    6                              NA
## 103                   17                              NA
## 104                    0                              NA
## 105                   11                              NA
## 106                   11                              NA
## 107                    *                              NA
## 108                    *                              NA
## 109                    *                              NA
## 110                    0                              NA
## 111                    *                              NA
## 112                    0                              NA
## 113                  271                              NA
## 114                    0                              NA
## 115                    0                              NA
## 116                    *                              NA
## 117                    *                              NA
## 118                    *                              NA
## 119                    *                              NA
## 120                    0                              NA
## 121                    *                              NA
## 122                    *                              NA
## 123                    0                              NA
## 124                    0                              NA
## 125                    *                              NA
## 126                    0                              NA
## 127                    0                              NA
## 128                    0                              NA
## 129                    0                              NA
## 130                    0                              NA
## 131                    0                              NA
## 132                    0                              NA
## 133                    0                              NA
## 134                    0                              NA
## 135                    0                              NA
## 136                    0                              NA
## 137                    0                              NA
## 138                    0                              NA
## 139                    0                              NA
## 140                    8                              NA
## 141                    0                              NA
## 142                    8                              NA
## 143                    6                              NA
## 144                    0                              NA
## 145                    0                              NA
## 146                    0                              NA
## 147                    0                              NA
## 148                    0                              NA
## 149                    0                              NA
## 150                    0                              NA
## 151                    0                              NA
## 152                   79                              NA
## 153                    0                              NA
## 154                    0                              NA
## 155                    0                              NA
## 156                   62                              NA
## 157                    0                              NA
## 158                    0                              NA
## 159                    0                              NA
## 160                    0                              NA
## 161                    0                              NA
## 162                    0                              NA
## 163                    0                              NA
## 164                    0                              NA
## 165                    0                              NA
## 166                    0                              NA
## 167                    *                              NA
## 168                    0                              NA
## 169                    0                              NA
## 170                    0                              NA
## 171                    0                              NA
## 172                    0                              NA
## 173                    0                              NA
## 174                    0                              NA
## 175                    0                              NA
## 176                    0                              NA
## 177                    0                              NA
## 178                    0                              NA
## 179                    0                              NA
## 180                    0                              NA
## 181                    0                              NA
## 182                    0                              NA
## 183                    0                              NA
## 184                    0                              NA
## 185                    0                              NA
## 186                    0                              NA
## 187                    *                              NA
## 188                    0                              NA
## 189                    0                              NA
## 190                    0                              NA
## 191                    0                              NA
## 192                    *                              NA
## 193                    *                              NA
## 194                    5                              NA
## 195                   21                              NA
## 196                    0                              NA
## 197                   47                              NA
## 198                  141                              NA
## 199                    0                              NA
## 200                    0                              NA
## 201                    0                              NA
## 202                    0                              NA
## 203                    0                              NA
## 204                    0                              NA
## 205                    0                              NA
## 206                    0                              NA
## 207                    6                              NA
## 208                    0                              NA
## 209                    0                              NA
## 210                    0                              NA
## 211                    0                              NA
## 212                    0                              NA
## 213                    0                              NA
## 214                    0                              NA
## 215                    0                              NA
## 216                    0                              NA
## 217                    0                              NA
## 218                    *                              NA
## 219                    0                              NA
## 220                    0                              NA
## 221                    0                              NA
## 222                    0                              NA
## 223                    *                              NA
## 224                    *                              NA
## 225                    0                              NA
## 226                    0                              NA
## 227                    0                              NA
## 228                  138                              NA
## 229                    5                              NA
## 230                   27                              NA
## 231                   45                              NA
## 232                   33                              NA
## 233                   43                              NA
## 234                   24                              NA
## 235                   15                              NA
## 236                  105                              NA
## 237                   65                              NA
## 238                    0                              NA
## 239                    0                              NA
## 240                    0                              NA
## 241                    0                              NA
## 242                    *                              NA
## 243                    7                              NA
## 244                    7                              NA
## 245                    8                              NA
## 246                   25                              NA
## 247                    6                              NA
## 248                   30                              NA
## 249                   33                              NA
## 250                    0                              NA
## 251                   45                              NA
## 252                    0                              NA
## 253                    0                              NA
## 254                   30                              NA
## 255                    0                              NA
## 256                    0                              NA
## 257                   33                              NA
## 258                    0                              NA
## 259                    8                              NA
## 260                    0                              NA
## 261                    *                              NA
## 262                    0                              NA
## 263                    0                              NA
## 264                    0                              NA
## 265                    0                              NA
## 266                    *                              NA
## 267                   25                              NA
## 268                   16                              NA
## 269                    0                              NA
## 270                    *                              NA
## 271                    8                              NA
## 272                   22                              NA
## 273                    0                              NA
## 274                    6                              NA
## 275                    6                              NA
## 276                    *                              NA
## 277                   14                              NA
## 278                    0                              NA
## 279                   66                              NA
## 280                   95                              NA
## 281                    *                              NA
## 282                   32                              NA
## 283                   12                              NA
## 284                    *                              NA
## 285                    6                              NA
## 286                    *                              NA
## 287                    *                              NA
## 288                  102                              NA
## 289                    0                              NA
## 290                    0                              NA
## 291                    0                              NA
## 292                    0                              NA
## 293                    0                              NA
## 294                    5                              NA
## 295                    7                              NA
## 296                    0                              NA
## 297                   18                              NA
## 298                    0                              NA
## 299                   10                              NA
## 300                    0                              NA
## 301                    0                              NA
## 302                    0                              NA
## 303                    0                              NA
## 304                    0                              NA
## 305                    0                              NA
## 306                    0                              NA
## 307                    0                              NA
## 308                    0                              NA
## 309                    0                              NA
## 310                    0                              NA
## 311                   74                              NA
## 312                   19                              NA
## 313                    *                              NA
## 314                    7                              NA
## 315                   49                              NA
## 316                   14                              NA
## 317                   86                              NA
## 318                  394                              NA
## 319                   21                              NA
## 320                   13                              NA
## 321                   38                              NA
## 322                   20                              NA
## 323                   27                              NA
## 324                   33                              NA
## 325                   11                              NA
## 326                   26                              NA
## 327                    *                              NA
## 328                    *                              NA
## 329                    0                              NA
## 330                   33                              NA
## 331                    9                              NA
## 332                    0                              NA
## 333                   10                              NA
## 334                   18                              NA
## 335                   28                              NA
## 336                   10                              NA
## 337                   73                              NA
## 338                    6                              NA
## 339                    0                              NA
## 340                    *                              NA
## 341                    0                              NA
## 342                    *                              NA
## 343                    *                              NA
## 344                   16                              NA
## 345                    *                              NA
## 346                    *                              NA
## 347                    *                              NA
## 348                    *                              NA
## 349                    0                              NA
## 350                   76                              NA
## 351                    0                              NA
## 352                    0                              NA
## 353                    0                              NA
## 354                    0                              NA
## 355                    *                              NA
## 356                    0                              NA
## 357                    0                              NA
## 358                    0                              NA
## 359                    0                              NA
## 360                    0                              NA
## 361                    0                              NA
## 362                    0                              NA
## 363                    0                              NA
## 364                    0                              NA
## 365                    0                              NA
## 366                    *                              NA
## 367                    8                              NA
## 368                    *                              NA
## 369                    0                              NA
## 370                    0                              NA
## 371                    0                              NA
## 372                    0                              NA
## 373                    0                              NA
## 374                    0                              NA
## 375                    0                              NA
## 376                    0                              NA
## 377                    0                              NA
## 378                    0                              NA
## 379                   16                              NA
## 380                   41                              NA
## 381                  349                              NA
## 382                   21                              NA
## 383                   84                              NA
## 384                   44                              NA
## 385                   18                              NA
## 386                  265                              NA
## 387                  120                              NA
## 388                    0                              NA
## 389                    *                              NA
## 390                    5                              NA
## 391                    *                              NA
## 392                    7                              NA
## 393                   11                              NA
## 394                    9                              NA
## 395                    *                              NA
## 396                   10                              NA
## 397                   35                              NA
## 398                   11                              NA
## 399                    5                              NA
## 400                    0                              NA
## 401                    0                              NA
## 402                  546                              NA
## 403                  545                              NA
## 404                  494                              NA
## 405                    0                              NA
## 406                    0                              NA
## 407                   19                              NA
## 408                   20                              NA
## 409                  108                              NA
## 410                   23                              NA
## 411                   38                              NA
## 412                   19                              NA
## 413                   23                              NA
## 414                   42                              NA
## 415                  401                              NA
## 416                    0                              NA
## 417                    *                              NA
## 418                   59                              NA
## 419                   20                              NA
## 420                    *                              NA
## 421                    0                              NA
## 422                   18                              NA
## 423                   71                              NA
## 424                   34                              NA
## 425                    0                              NA
## 426                    0                              NA
## 427                   31                              NA
## 428                   28                              NA
## 429                   10                              NA
## 430                   26                              NA
## 431                   18                              NA
## 432                   76                              NA
## 433                  109                              NA
## 434                  138                              NA
## 435                    0                              NA
## 436                    0                              NA
## 437                   18                              NA
## 438                    0                              NA
## 439                    0                              NA
## 440                   15                              NA
## 441                    0                              NA
## 442                    0                              NA
## 443                    0                              NA
## 444                    0                              NA
## 445                   17                              NA
## 446                    5                              NA
## 447                   42                              NA
## 448                   18                              NA
## 449                   61                              NA
## 450                    9                              NA
## 451                   46                              NA
## 452                    0                              NA
## 453                    0                              NA
## 454                    0                              NA
## 455                    0                              NA
## 456                    0                              NA
## 457                    6                              NA
## 458                   21                              NA
## 459                  134                              NA
## 460                   18                              NA
## 461                    9                              NA
## 462                   21                              NA
## 463                   16                              NA
## 464                   57                              NA
## 465                    7                              NA
## 466                   24                              NA
## 467                   14                              NA
## 468                    0                              NA
## 469                    0                              NA
## 470                   11                              NA
## 471                   12                              NA
## 472                    0                              NA
## 473                   21                              NA
## 474                    0                              NA
## 475                   35                              NA
## 476                    0                              NA
## 477                    0                              NA
## 478                    0                              NA
## 479                    0                              NA
## 480                    0                              NA
## 481                   10                              NA
## 482                    0                              NA
## 483                    0                              NA
## 484                   22                              NA
## 485                    0                              NA
## 486                    0                              NA
## 487                    7                              NA
## 488                   23                              NA
## 489                    0                              NA
## 490                    0                              NA
## 491                    0                              NA
## 492                    0                              NA
## 493                   39                              NA
## 494                    0                              NA
## 495                    0                              NA
## 496                    0                              NA
## 497                   24                              NA
## 498                    0                              NA
## 499                    0                              NA
## 500                    0                              NA
## 501                    8                              NA
## 502                    0                              NA
## 503                   67                              NA
## 504                    0                              NA
## 505                    0                              NA
## 506                    0                              NA
## 507                    0                              NA
## 508                    5                              NA
## 509                    *                              NA
## 510                    *                              NA
## 511                    *                              NA
## 512                    0                              NA
## 513                    0                              NA
## 514                    0                              NA
## 515                    0                              NA
## 516                    *                              NA
## 517                    0                              NA
## 518                    0                              NA
## 519                    0                              NA
## 520                    0                              NA
## 521                    0                              NA
## 522                   22                              NA
## 523                    0                              NA
## 524                    0                              NA
## 525                    0                              NA
## 526                    0                              NA
## 527                    0                              NA
## 528                    0                              NA
## 529                    0                              NA
## 530                    0                              NA
## 531                    0                              NA
## 532                    0                              NA
## 533                    0                              NA
## 534                    0                              NA
## 535                    0                              NA
## 536                    0                              NA
## 537                    0                              NA
## 538                    0                              NA
## 539                    0                              NA
## 540                    0                              NA
## 541                    0                              NA
## 542                    0                              NA
## 543                    0                              NA
## 544                    0                              NA
## 545                    0                              NA
## 546                    0                              NA
## 547                    0                              NA
## 548                    0                              NA
## 549                    0                              NA
## 550                    0                              NA
## 551                    0                              NA
## 552                    0                              NA
## 553                    0                              NA
## 554                    0                              NA
## 555                    0                              NA
## 556                    0                              NA
## 557                    0                              NA
## 558                   17                              NA
## 559                   23                              NA
## 560                   80                              NA
## 561                   15                              NA
## 562                  275                              NA
## 563                    6                              NA
## 564                    0                              NA
## 565                   94                              NA
## 566                   21                              NA
## 567                    0                              NA
## 568                   11                              NA
## 569                   35                              NA
## 570                   11                              NA
## 571                  138                              NA
## 572                   49                              NA
## 573                   38                              NA
## 574                    *                              NA
## 575                   22                              NA
## 576                    *                              NA
## 577                   29                              NA
## 578                   43                              NA
## 579                    *                              NA
## 580                   13                              NA
## 581                   43                              NA
## 582                    9                              NA
## 583                   67                              NA
## 584                   19                              NA
## 585                    *                              NA
## 586                    7                              NA
## 587                    *                              NA
## 588                    0                              NA
## 589                    *                              NA
## 590                    0                              NA
## 591                    0                              NA
## 592                  341                              NA
## 593                    0                              NA
## 594                    0                              NA
## 595                    0                              NA
## 596                    0                              NA
## 597                    0                              NA
## 598                    0                              NA
## 599                    *                              NA
## 600                    0                              NA
## 601                   14                              NA
## 602                    8                              NA
## 603                  146                              NA
## 604                   10                              NA
## 605                   30                              NA
## 606                    8                              NA
## 607                    *                              NA
## 608                    *                              NA
## 609                   35                              NA
## 610                   11                              NA
## 611                    *                              NA
## 612                   17                              NA
## 613                    *                              NA
## 614                    0                              NA
## 615                    0                              NA
## 616                    0                              NA
## 617                    0                              NA
## 618                  324                              NA
## 619                    0                              NA
## 620                    0                              NA
## 621                    0                              NA
## 622                    0                              NA
## 623                    0                              NA
## 624                    0                              NA
## 625                    0                              NA
## 626                    0                              NA
## 627                    0                              NA
## 628                   13                              NA
## 629                    0                              NA
## 630                    0                              NA
## 631                    0                              NA
## 632                    0                              NA
## 633                    0                              NA
## 634                    0                              NA
## 635                   10                              NA
## 636                    *                              NA
## 637                    0                              NA
## 638                   29                              NA
## 639                   18                              NA
## 640                   25                              NA
## 641                   21                              NA
## 642                   20                              NA
## 643                   11                              NA
## 644                   12                              NA
## 645                    9                              NA
## 646                    0                              NA
## 647                    0                              NA
## 648                    0                              NA
## 649                  427                              NA
## 650                    0                              NA
## 651                    0                              NA
## 652                    0                              NA
## 653                    0                              NA
## 654                    0                              NA
## 655                    0                              NA
## 656                   43                              NA
## 657                    0                              NA
## 658                    0                              NA
## 659                   23                              NA
## 660                  107                              NA
## 661                  194                              NA
## 662                   27                              NA
## 663                    *                              NA
## 664                   14                              NA
## 665                   38                              NA
## 666                    *                              NA
## 667                    *                              NA
## 668                    *                              NA
## 669                    0                              NA
## 670                    *                              NA
## 671                    0                              NA
## 672                   56                              NA
## 673                    *                              NA
## 674                   16                              NA
## 675                    0                              NA
## 676                   12                              NA
## 677                  245                              NA
## 678                    *                              NA
## 679                   12                              NA
## 680                   25                              NA
## 681                   17                              NA
## 682                   17                              NA
## 683                    6                              NA
## 684                    6                              NA
## 685                   17                              NA
## 686                   97                              NA
## 687                    0                              NA
## 688                   27                              NA
## 689                    7                              NA
## 690                  128                              NA
## 691                    0                              NA
## 692                    0                              NA
## 693                    0                              NA
## 694                    0                              NA
## 695                    0                              NA
## 696                    0                              NA
## 697                   22                              NA
## 698                    0                              NA
## 699                    5                              NA
## 700                    7                              NA
## 701                   15                              NA
## 702                    7                              NA
## 703                    0                              NA
## 704                    7                              NA
## 705                    8                              NA
## 706                   12                              NA
## 707                   38                              NA
## 708                    6                              NA
## 709                   14                              NA
## 710                    6                              NA
## 711                    6                              NA
## 712                   38                              NA
## 713                   48                              NA
## 714                    *                              NA
## 715                    *                              NA
## 716                    0                              NA
## 717                    *                              NA
## 718                    6                              NA
## 719                    *                              NA
## 720                    *                              NA
## 721                    *                              NA
## 722                    0                              NA
## 723                    0                              NA
## 724                    *                              NA
## 725                    *                              NA
## 726                    *                              NA
## 727                    5                              NA
## 728                    0                              NA
## 729                    0                              NA
## 730                    0                              NA
## 731                    0                              NA
## 732                    0                              NA
## 733                    0                              NA
## 734                    0                              NA
## 735                    0                              NA
## 736                    0                              NA
## 737                   85                              NA
## 738                  241                              NA
## 739                   74                              NA
## 740                  307                              NA
## 741                   49                              NA
## 742                    0                              NA
## 743                    0                              NA
## 744                    0                              NA
## 745                    0                              NA
## 746                    0                              NA
## 747                    0                              NA
## 748                    0                              NA
## 749                    0                              NA
## 750                    0                              NA
## 751                    0                              NA
## 752                    0                              NA
## 753                    0                              NA
## 754                   18                              NA
## 755                    0                              NA
## 756                    0                              NA
## 757                    0                              NA
## 758                    0                              NA
## 759                    0                              NA
## 760                    0                              NA
## 761                    0                              NA
## 762                    0                              NA
## 763                    0                              NA
## 764                    0                              NA
## 765                    0                              NA
## 766                  111                              NA
## 767                   27                              NA
## 768                    0                              NA
## 769                    0                              NA
## 770                    0                              NA
## 771                   35                              NA
## 772                    0                              NA
## 773                    0                              NA
## 774                    0                              NA
## 775                    0                              NA
## 776                    0                              NA
## 777                    0                              NA
## 778                    0                              NA
## 779                    0                              NA
## 780                   23                              NA
## 781                    0                              NA
## 782                    0                              NA
## 783                    0                              NA
## 784                    0                              NA
## 785                    0                              NA
## 786                   15                              NA
## 787                   10                              NA
## 788                    0                              NA
## 789                    0                              NA
## 790                    0                              NA
## 791                    0                              NA
## 792                    0                              NA
## 793                    0                              NA
## 794                    0                              NA
## 795                    0                              NA
## 796                    0                              NA
## 797                    0                              NA
## 798                    0                              NA
## 799                    6                              NA
## 800                    0                              NA
## 801                    0                              NA
## 802                    0                              NA
## 803                    0                              NA
## 804                    0                              NA
## 805                    0                              NA
## 806                    0                              NA
## 807                    0                              NA
## 808                    0                              NA
## 809                    0                              NA
## 810                    0                              NA
## 811                    0                              NA
## 812                    0                              NA
## 813                    0                              NA
## 814                    0                              NA
## 815                    0                              NA
## 816                    0                              NA
## 817                    0                              NA
## 818                    0                              NA
## 819                    0                              NA
## 820                    0                              NA
## 821                    0                              NA
## 822                    0                              NA
## 823                    0                              NA
## 824                    0                              NA
## 825                    0                              NA
## 826                    0                              NA
## 827                    0                              NA
## 828                    0                              NA
## 829                    0                              NA
## 830                    0                              NA
## 831                    0                              NA
## 832                    0                              NA
## 833                    0                              NA
## 834                    0                              NA
## 835                    0                              NA
## 836                    0                              NA
## 837                    0                              NA
## 838                    0                              NA
## 839                    0                              NA
## 840                    0                              NA
## 841                    0                              NA
## 842                    0                              NA
## 843                    0                              NA
## 844                    0                              NA
## 845                    0                              NA
## 846                    0                              NA
## 847                    0                              NA
## 848                   21                              NA
## 849                    0                              NA
## 850                    0                              NA
## 851                    0                              NA
## 852                    0                              NA
## 853                    0                              NA
## 854                    0                              NA
## 855                    0                              NA
## 856                    0                              NA
## 857                    0                              NA
## 858                    0                              NA
## 859                    0                              NA
## 860                    0                              NA
## 861                    0                              NA
## 862                    0                              NA
## 863                    0                              NA
## 864                    0                              NA
## 865                    0                              NA
## 866                    0                              NA
## 867                    0                              NA
## 868                    0                              NA
## 869                    0                              NA
## 870                    0                              NA
## 871                    0                              NA
## 872                    0                              NA
## 873                    0                              NA
## 874                    0                              NA
## 875                    0                              NA
## 876                    0                              NA
## 877                    0                              NA
## 878                    0                              NA
## 879                    0                              NA
## 880                    0                              NA
## 881                    0                              NA
## 882                    0                              NA
## 883                    0                              NA
## 884                    0                              NA
## 885                    0                              NA
## 886                    0                              NA
## 887                    0                              NA
## 888                    0                              NA
## 889                    0                              NA
## 890                    0                              NA
## 891                    0                              NA
## 892                    0                              NA
## 893                    0                              NA
## 894                    0                              NA
## 895                    0                              NA
## 896                    0                              NA
## 897                    0                              NA
## 898                    0                              NA
## 899                    0                              NA
## 900                    0                              NA
## 901                    0                              NA
## 902                    0                              NA
## 903                    0                              NA
## 904                    0                              NA
## 905                    0                              NA
## 906                    0                              NA
## 907                    0                              NA
## 908                    0                              NA
## 909                    0                              NA
## 910                    0                              NA
## 911                    0                              NA
## 912                    0                              NA
## 913                    0                              NA
## 914                    0                              NA
## 915                    0                              NA
## 916                    0                              NA
## 917                    0                              NA
## 918                    0                              NA
## 919                    0                              NA
## 920                    0                              NA
## 921                    0                              NA
## 922                    0                              NA
## 923                    0                              NA
## 924                    0                              NA
## 925                    0                              NA
## 926                    0                              NA
## 927                    0                              NA
## 928                    0                              NA
## 929                    0                              NA
## 930                    0                              NA
## 931                    0                              NA
## 932                    0                              NA
## 933                    0                              NA
## 934                    0                              NA
## 935                    0                              NA
## 936                    0                              NA
## 937                    0                              NA
## 938                    0                              NA
## 939                    0                              NA
## 940                    0                              NA
## 941                    0                              NA
## 942                    0                              NA
## 943                    0                              NA
## 944                    0                              NA
## 945                    0                              NA
## 946                    0                              NA
## 947                    0                              NA
## 948                    0                              NA
## 949                    0                              NA
## 950                    0                              NA
## 951                    0                              NA
## 952                    0                              NA
## 953                    0                              NA
## 954                    0                              NA
## 955                    0                              NA
## 956                    0                              NA
## 957                    0                              NA
## 958                    0                              NA
## 959                    0                              NA
## 960                    0                              NA
## 961                    0                              NA
## 962                    0                              NA
## 963                    0                              NA
## 964                    0                              NA
## 965                    0                              NA
## 966                    0                              NA
## 967                    0                              NA
## 968                    0                              NA
## 969                    0                              NA
## 970                    0                              NA
## 971                    0                              NA
## 972                    0                              NA
## 973                    0                              NA
## 974                    0                              NA
## 975                    0                              NA
## 976                    0                              NA
## 977                    0                              NA
## 978                    0                              NA
## 979                    0                              NA
## 980                    0                              NA
## 981                    0                              NA
## 982                    0                              NA
## 983                    0                              NA
## 984                    0                              NA
## 985                    0                              NA
## 986                    0                              NA
## 987                    0                              NA
## 988                    0                              NA
## 989                    0                              NA
## 990                    0                              NA
## 991                    0                              NA
## 992                    0                              NA
## 993                    0                              NA
## 994                    0                              NA
## 995                    0                              NA
## 996                    0                              NA
## 997                    0                              NA
## 998                  329                              NA
## 999                  114                              NA
## 1000                   0                              NA
## 1001                   0                              NA
## 1002                   0                              NA
## 1003                 657                              NA
## 1004                   0                              NA
## 1005                   0                              NA
## 1006                   0                              NA
## 1007                   0                              NA
## 1008                   0                              NA
## 1009                   0                              NA
## 1010                  27                              NA
## 1011                  13                              NA
## 1012                   0                              NA
## 1013                   8                              NA
## 1014                   *                              NA
## 1015                  27                              NA
## 1016                  22                              NA
## 1017                   *                              NA
## 1018                  14                              NA
## 1019                   0                              NA
## 1020                   5                              NA
## 1021                 151                              NA
## 1022                  38                              NA
## 1023                   7                              NA
## 1024                   0                              NA
## 1025                  44                              NA
## 1026                  40                              NA
## 1027                 240                              NA
## 1028                  35                              NA
## 1029                  47                              NA
## 1030                  54                              NA
## 1031                  22                              NA
## 1032                 161                              NA
## 1033                  12                              NA
## 1034                  21                              NA
## 1035                   *                              NA
## 1036                   *                              NA
## 1037                   *                              NA
## 1038                  26                              NA
## 1039                   6                              NA
## 1040                   6                              NA
## 1041                   0                              NA
## 1042                   0                              NA
## 1043                  14                              NA
## 1044                   5                              NA
## 1045                  75                              NA
## 1046                   0                              NA
## 1047                   6                              NA
## 1048                   0                              NA
## 1049                   0                              NA
## 1050                   0                              NA
## 1051                  32                              NA
## 1052                   0                              NA
## 1053                  25                              NA
## 1054                  57                              NA
## 1055                   *                              NA
## 1056                   *                              NA
## 1057                   0                              NA
## 1058                   *                              NA
## 1059                   0                              NA
## 1060                   0                              NA
## 1061                 144                              NA
## 1062                   0                              NA
## 1063                   0                              NA
## 1064                   0                              NA
## 1065                   0                              NA
## 1066                  13                              NA
## 1067                   *                              NA
## 1068                  14                              NA
## 1069                   0                              NA
## 1070                   0                              NA
## 1071                  14                              NA
## 1072                   0                              NA
## 1073                   0                              NA
## 1074                   0                              NA
## 1075                   0                              NA
## 1076                   *                              NA
## 1077                   *                              NA
## 1078                   0                              NA
## 1079                   0                              NA
## 1080                   0                              NA
## 1081                   0                              NA
## 1082                   0                              NA
## 1083                   0                              NA
## 1084                   0                              NA
## 1085                   0                              NA
## 1086                   0                              NA
## 1087                   0                              NA
## 1088                   0                              NA
## 1089                   0                              NA
## 1090                   0                              NA
## 1091                   0                              NA
## 1092                   0                              NA
## 1093                   0                              NA
## 1094                   0                              NA
## 1095                  45                              NA
## 1096                  37                              NA
## 1097                  24                              NA
## 1098                  76                              NA
## 1099                 237                              NA
## 1100                  25                              NA
## 1101                  21                              NA
## 1102                  47                              NA
## 1103                  10                              NA
## 1104                  58                              NA
## 1105                   8                              NA
## 1106                  69                              NA
## 1107                  47                              NA
## 1108                  57                              NA
## 1109                   0                              NA
## 1110                   0                              NA
## 1111                   0                              NA
## 1112                   0                              NA
## 1113                   0                              NA
## 1114                   0                              NA
## 1115                   0                              NA
## 1116                1225                              NA
## 1117                 331                              NA
## 1118                  30                              NA
## 1119                 300                              NA
## 1120                  51                              NA
## 1121                  10                              NA
## 1122                  47                              NA
## 1123                   0                              NA
## 1124                   0                              NA
## 1125                  21                              NA
## 1126                  61                              NA
## 1127                  18                              NA
## 1128                  51                              NA
## 1129                  20                              NA
## 1130                  18                              NA
## 1131                  45                              NA
## 1132                  28                              NA
## 1133                  75                              NA
## 1134                  19                              NA
## 1135                   0                              NA
## 1136                  48                              NA
## 1137                  31                              NA
## 1138                  40                              NA
## 1139                  41                              NA
## 1140                 122                              NA
## 1141                   0                              NA
## 1142                  32                              NA
## 1143                   0                              NA
## 1144                  13                              NA
## 1145                  19                              NA
## 1146                  58                              NA
## 1147                   0                              NA
## 1148                  37                              NA
## 1149                   *                              NA
## 1150                  10                              NA
## 1151                  28                              NA
## 1152                  11                              NA
## 1153                  22                              NA
## 1154                  31                              NA
## 1155                   0                              NA
## 1156                  62                              NA
## 1157                   6                              NA
## 1158                  34                              NA
## 1159                  22                              NA
## 1160                  30                              NA
## 1161                   0                              NA
## 1162                  10                              NA
## 1163                   0                              NA
## 1164                   0                              NA
## 1165                   0                              NA
## 1166                   0                              NA
## 1167                   0                              NA
## 1168                   *                              NA
## 1169                   0                              NA
## 1170                   *                              NA
## 1171                   *                              NA
## 1172                   0                              NA
## 1173                   0                              NA
## 1174                   0                              NA
## 1175                   0                              NA
## 1176                   0                              NA
## 1177                   0                              NA
## 1178                   0                              NA
## 1179                   0                              NA
## 1180                   0                              NA
## 1181                   0                              NA
## 1182                   0                              NA
## 1183                   0                              NA
## 1184                   0                              NA
## 1185                   0                              NA
## 1186                   0                              NA
## 1187                   0                              NA
## 1188                   0                              NA
## 1189                   0                              NA
## 1190                   0                              NA
## 1191                   0                              NA
## 1192                   0                              NA
## 1193                   0                              NA
## 1194                   0                              NA
## 1195                   0                              NA
## 1196                   0                              NA
## 1197                   0                              NA
## 1198                   0                              NA
## 1199                   0                              NA
## 1200                   0                              NA
## 1201                   0                              NA
## 1202                   0                              NA
## 1203                   0                              NA
## 1204                   0                              NA
## 1205                   0                              NA
## 1206                   0                              NA
## 1207                   0                              NA
## 1208                   0                              NA
## 1209                   0                              NA
## 1210                   0                              NA
## 1211                   0                              NA
## 1212                   0                              NA
## 1213                   0                              NA
## 1214                   0                              NA
## 1215                   0                              NA
## 1216                   0                              NA
## 1217                   0                              NA
## 1218                   0                              NA
## 1219                   0                              NA
## 1220                   0                              NA
## 1221                   0                              NA
## 1222                   0                              NA
## 1223                   0                              NA
## 1224                   0                              NA
## 1225                   0                              NA
## 1226                   0                              NA
## 1227                   0                              NA
## 1228                   0                              NA
## 1229                   0                              NA
## 1230                   0                              NA
## 1231                   0                              NA
## 1232                   0                              NA
## 1233                   0                              NA
## 1234                   0                              NA
## 1235                   0                              NA
## 1236                   0                              NA
## 1237                   0                              NA
## 1238                   0                              NA
## 1239                   0                              NA
## 1240                   0                              NA
## 1241                   0                              NA
## 1242                   0                              NA
## 1243                   0                              NA
## 1244                   0                              NA
## 1245                   0                              NA
## 1246                   0                              NA
## 1247                   0                              NA
## 1248                   0                              NA
## 1249                   0                              NA
## 1250                   0                              NA
## 1251                   0                              NA
## 1252                   0                              NA
## 1253                   0                              NA
## 1254                   0                              NA
## 1255                   0                              NA
## 1256                   0                              NA
## 1257                   0                              NA
## 1258                   0                              NA
## 1259                   0                              NA
## 1260                   0                              NA
## 1261                   0                              NA
## 1262                   0                              NA
## 1263                   0                              NA
## 1264                   0                              NA
## 1265                   0                              NA
## 1266                   0                              NA
## 1267                   0                              NA
## 1268                   0                              NA
## 1269                   0                              NA
## 1270                   0                              NA
## 1271                   0                              NA
## 1272                   0                              NA
## 1273                   0                              NA
## 1274                   0                              NA
## 1275                   0                              NA
## 1276                   0                              NA
## 1277                   *                              NA
## 1278                   *                              NA
## 1279                   *                              NA
## 1280                  38                              NA
## 1281                   0                              NA
## 1282                   0                              NA
## 1283                   *                              NA
## 1284                   *                              NA
## 1285                  33                              NA
## 1286                   0                              NA
## 1287                   *                              NA
## 1288                   *                              NA
## 1289                   5                              NA
## 1290                   *                              NA
## 1291                   *                              NA
## 1292                   0                              NA
## 1293                  20                              NA
## 1294                   0                              NA
## 1295                   0                              NA
## 1296                   0                              NA
## 1297                  17                              NA
## 1298                   *                              NA
## 1299                  58                              NA
## 1300                   0                              NA
## 1301                   0                              NA
## 1302                   *                              NA
## 1303                  20                              NA
## 1304                   *                              NA
## 1305                   *                              NA
## 1306                   *                              NA
## 1307                   *                              NA
## 1308                   6                              NA
## 1309                   0                              NA
## 1310                   0                              NA
## 1311                 260                              NA
## 1312                   8                              NA
## 1313                   *                              NA
## 1314                   *                              NA
## 1315                  13                              NA
## 1316                   *                              NA
## 1317                   *                              NA
## 1318                   *                              NA
## 1319                  11                              NA
## 1320                   *                              NA
## 1321                   0                              NA
## 1322                  10                              NA
## 1323                   *                              NA
## 1324                   0                              NA
## 1325                   0                              NA
## 1326                   0                              NA
## 1327                  57                              NA
## 1328                   0                              NA
## 1329                   *                              NA
## 1330                   8                              NA
## 1331                   0                              NA
## 1332                   0                              NA
## 1333                   *                              NA
## 1334                   *                              NA
## 1335                   8                              NA
## 1336                   *                              NA
## 1337                   0                              NA
## 1338                   *                              NA
## 1339                   *                              NA
## 1340                  14                              NA
## 1341                   *                              NA
## 1342                  11                              NA
## 1343                   0                              NA
## 1344                  12                              NA
## 1345                  37                              NA
## 1346                  15                              NA
## 1347                   *                              NA
## 1348                   0                              NA
## 1349                 117                              NA
## 1350                   0                              NA
## 1351                   5                              NA
## 1352                   6                              NA
## 1353                   0                              NA
## 1354                  12                              NA
## 1355                   *                              NA
## 1356                   0                              NA
## 1357                   0                              NA
## 1358                   8                              NA
## 1359                   *                              NA
## 1360                   *                              NA
## 1361                   *                              NA
## 1362                   0                              NA
## 1363                   0                              NA
## 1364                   0                              NA
## 1365                   0                              NA
## 1366                   0                              NA
## 1367                  35                              NA
## 1368                  44                              NA
## 1369                  10                              NA
## 1370                   0                              NA
## 1371                   0                              NA
## 1372                   6                              NA
## 1373                   0                              NA
## 1374                   0                              NA
## 1375                   0                              NA
## 1376                  30                              NA
## 1377                   0                              NA
## 1378                   *                              NA
## 1379                   0                              NA
## 1380                   *                              NA
## 1381                   0                              NA
## 1382                  66                              NA
## 1383                  62                              NA
## 1384                   *                              NA
## 1385                   0                              NA
## 1386                   0                              NA
## 1387                 180                              NA
## 1388                   0                              NA
## 1389                   0                              NA
## 1390                   6                              NA
## 1391                   7                              NA
## 1392                  38                              NA
## 1393                  65                              NA
## 1394                  39                              NA
## 1395                   0                              NA
## 1396                   0                              NA
## 1397                   0                              NA
## 1398                   *                              NA
## 1399                   0                              NA
## 1400                   0                              NA
## 1401                   0                              NA
## 1402                   0                              NA
## 1403                   0                              NA
## 1404                   0                              NA
## 1405                   0                              NA
## 1406                   0                              NA
## 1407                   0                              NA
## 1408                   0                              NA
## 1409                   6                              NA
## 1410                   0                              NA
## 1411                   0                              NA
## 1412                   0                              NA
## 1413                   0                              NA
## 1414                   0                              NA
## 1415                   *                              NA
## 1416                   0                              NA
## 1417                   *                              NA
## 1418                   0                              NA
## 1419                  12                              NA
## 1420                   0                              NA
## 1421                   0                              NA
## 1422                   0                              NA
## 1423                   *                              NA
## 1424                   *                              NA
## 1425                   0                              NA
## 1426                   0                              NA
## 1427                   0                              NA
## 1428                   0                              NA
## 1429                   0                              NA
## 1430                  12                              NA
## 1431                   0                              NA
## 1432                   0                              NA
## 1433                   0                              NA
## 1434                   0                              NA
## 1435                   0                              NA
## 1436                  12                              NA
## 1437                   0                              NA
## 1438                   0                              NA
## 1439                   9                              NA
## 1440                   0                              NA
## 1441                   0                              NA
## 1442                   0                              NA
## 1443                   0                              NA
## 1444                   0                              NA
## 1445                   0                              NA
## 1446                  33                              NA
## 1447                   0                              NA
## 1448                   0                              NA
## 1449                   0                              NA
## 1450                  11                              NA
## 1451                   0                              NA
## 1452                   0                              NA
## 1453                   0                              NA
## 1454                   0                              NA
## 1455                   0                              NA
## 1456                   0                              NA
## 1457                   0                              NA
## 1458                   0                              NA
## 1459                   0                              NA
## 1460                   0                              NA
## 1461                   0                              NA
## 1462                   0                              NA
## 1463                   0                              NA
## 1464                   0                              NA
## 1465                   0                              NA
## 1466                   0                              NA
## 1467                   0                              NA
## 1468                   0                              NA
## 1469                   0                              NA
## 1470                   0                              NA
## 1471                   0                              NA
## 1472                   0                              NA
## 1473                   0                              NA
## 1474                   0                              NA
## 1475                   0                              NA
## 1476                   0                              NA
## 1477                   0                              NA
## 1478                   0                              NA
## 1479                   0                              NA
## 1480                   0                              NA
## 1481                   0                              NA
## 1482                   0                              NA
## 1483                   0                              NA
## 1484                   0                              NA
## 1485                  37                              NA
## 1486                 403                              NA
## 1487                  54                              NA
## 1488                   0                              NA
## 1489                  56                              NA
## 1490                  27                              NA
## 1491                   *                              NA
## 1492                   0                              NA
## 1493                   *                              NA
## 1494                   0                              NA
## 1495                  80                              NA
## 1496                 109                              NA
## 1497                  14                              NA
## 1498                  24                              NA
## 1499                  40                              NA
## 1500                  25                              NA
## 1501                  18                              NA
## 1502                  22                              NA
## 1503                  19                              NA
## 1504                  38                              NA
## 1505                  57                              NA
## 1506                   9                              NA
## 1507                   0                              NA
## 1508                   0                              NA
## 1509                  13                              NA
## 1510                   0                              NA
## 1511                   7                              NA
## 1512                   0                              NA
## 1513                   0                              NA
## 1514                   6                              NA
## 1515                   0                              NA
## 1516                   *                              NA
## 1517                   8                              NA
## 1518                   5                              NA
## 1519                   0                              NA
## 1520                   0                              NA
## 1521                   0                              NA
## 1522                   0                              NA
## 1523                   0                              NA
## 1524                   0                              NA
## 1525                1125                              NA
## 1526                1277                              NA
## 1527                 178                              NA
## 1528                   *                              NA
## 1529                   0                              NA
## 1530                   *                              NA
## 1531                   *                              NA
## 1532                   7                              NA
## 1533                   5                              NA
## 1534                   *                              NA
## 1535                   *                              NA
## 1536                   *                              NA
## 1537                   0                              NA
## 1538                   *                              NA
## 1539                   0                              NA
## 1540                   0                              NA
## 1541                   0                              NA
## 1542                   0                              NA
## 1543                  36                              NA
## 1544                   0                              NA
## 1545                  14                              NA
## 1546                   9                              NA
## 1547                   *                              NA
## 1548                   0                              NA
## 1549                   0                              NA
## 1550                   0                              NA
## 1551                   0                              NA
## 1552                   0                              NA
## 1553                   0                              NA
## 1554                   0                              NA
## 1555                   0                              NA
## 1556                   0                              NA
## 1557                   0                              NA
## 1558                   0                              NA
## 1559                   0                              NA
## 1560                   0                              NA
## 1561                   0                              NA
## 1562                   0                              NA
## 1563                   0                              NA
## 1564                   0                              NA
## 1565                   0                              NA
## 1566                   0                              NA
## 1567                   0                              NA
## 1568                   0                              NA
## 1569                   0                              NA
## 1570                   0                              NA
## 1571                   0                              NA
## 1572                   0                              NA
## 1573                   0                              NA
## 1574                   0                              NA
## 1575                   0                              NA
## 1576                   0                              NA
## 1577                   0                              NA
## 1578                   0                              NA
## 1579                   0                              NA
## 1580                   0                              NA
## 1581                  85                              NA
## 1582                  33                              NA
## 1583                  71                              NA
## 1584                  42                              NA
## 1585                 128                              NA
## 1586                   0                              NA
## 1587                   *                              NA
## 1588                   6                              NA
## 1589                   5                              NA
## 1590                  61                              NA
## 1591                   *                              NA
## 1592                   0                              NA
## 1593                   8                              NA
## 1594                   *                              NA
## 1595                   *                              NA
## 1596                   *                              NA
## 1597                   *                              NA
## 1598                   0                              NA
## 1599                  23                              NA
## 1600                   *                              NA
## 1601                  28                              NA
## 1602                   *                              NA
## 1603                   8                              NA
## 1604                   6                              NA
## 1605                  11                              NA
## 1606                  18                              NA
## 1607                   *                              NA
## 1608                  11                              NA
## 1609                   *                              NA
## 1610                   *                              NA
## 1611                   0                              NA
## 1612                 110                              NA
## 1613                  11                              NA
## 1614                  86                              NA
## 1615                  72                              NA
## 1616                   0                              NA
## 1617                   0                              NA
## 1618                   *                              NA
## 1619                   0                              NA
## 1620                   0                              NA
## 1621                   0                              NA
## 1622                  55                              NA
## 1623                  19                              NA
## 1624                   0                              NA
## 1625                  18                              NA
## 1626                  56                              NA
## 1627                   7                              NA
## 1628                   0                              NA
## 1629                   0                              NA
## 1630                   0                              NA
## 1631                  10                              NA
## 1632                  10                              NA
## 1633                  14                              NA
## 1634                   6                              NA
## 1635                  13                              NA
## 1636                  27                              NA
## 1637                   *                              NA
## 1638                   *                              NA
## 1639                   0                              NA
## 1640                  27                              NA
## 1641                   0                              NA
## 1642                   0                              NA
## 1643                   0                              NA
## 1644                   0                              NA
## 1645                   *                              NA
## 1646                   *                              NA
## 1647                   *                              NA
## 1648                   *                              NA
## 1649                   *                              NA
## 1650                   0                              NA
## 1651                   0                              NA
## 1652                   0                              NA
## 1653                 120                              NA
## 1654                   *                              NA
## 1655                   *                              NA
## 1656                   0                              NA
## 1657                  49                              NA
## 1658                   *                              NA
## 1659                   0                              NA
## 1660                  54                              NA
## 1661                  15                              NA
## 1662                 227                              NA
## 1663                   *                              NA
## 1664                   *                              NA
## 1665                  72                              NA
## 1666                  14                              NA
## 1667                   0                              NA
## 1668                  39                              NA
## 1669                   0                              NA
## 1670                 167                              NA
## 1671                   *                              NA
## 1672                  17                              NA
## 1673                   0                              NA
## 1674                   0                              NA
## 1675                   *                              NA
## 1676                  40                              NA
## 1677                  21                              NA
## 1678                  42                              NA
## 1679                  80                              NA
## 1680                  11                              NA
## 1681                  12                              NA
## 1682                   0                              NA
## 1683                   *                              NA
## 1684                 216                              NA
## 1685                  41                              NA
## 1686                  40                              NA
## 1687                   0                              NA
## 1688                   0                              NA
## 1689                   0                              NA
## 1690                   0                              NA
## 1691                   *                              NA
## 1692                   5                              NA
## 1693                   *                              NA
## 1694                   0                              NA
## 1695                   0                              NA
## 1696                   0                              NA
## 1697                   0                              NA
## 1698                  13                              NA
## 1699                   *                              NA
## 1700                   0                              NA
## 1701                   0                              NA
## 1702                   0                              NA
## 1703                   0                              NA
## 1704                   0                              NA
## 1705                   6                              NA
## 1706                  10                              NA
## 1707                   *                              NA
## 1708                   *                              NA
## 1709                   0                              NA
## 1710                   0                              NA
## 1711                   0                              NA
## 1712                   0                              NA
## 1713                   0                              NA
## 1714                  32                              NA
## 1715                   0                              NA
## 1716                  22                              NA
## 1717                   8                              NA
## 1718                   8                              NA
## 1719                   0                              NA
## 1720                   0                              NA
## 1721                   0                              NA
## 1722                   0                              NA
## 1723                   0                              NA
## 1724                   *                              NA
## 1725                   0                              NA
## 1726                   0                              NA
## 1727                   9                              NA
## 1728                   0                              NA
## 1729                   0                              NA
## 1730                   0                              NA
## 1731                   0                              NA
## 1732                   0                              NA
## 1733                   8                              NA
## 1734                   9                              NA
## 1735                  42                              NA
## 1736                   *                              NA
## 1737                 105                              NA
## 1738                  88                              NA
## 1739                 117                              NA
## 1740                 153                              NA
## 1741                 176                              NA
## 1742                   *                              NA
## 1743                   0                              NA
## 1744                   *                              NA
## 1745                  15                              NA
## 1746                  24                              NA
## 1747                   0                              NA
## 1748                   0                              NA
## 1749                   0                              NA
## 1750                   *                              NA
## 1751                   0                              NA
## 1752                   0                              NA
## 1753                   0                              NA
## 1754                   0                              NA
## 1755                   0                              NA
## 1756                   0                              NA
## 1757                   0                              NA
## 1758                   0                              NA
## 1759                   0                              NA
## 1760                   0                              NA
## 1761                   0                              NA
## 1762                   0                              NA
## 1763                   0                              NA
## 1764                   0                              NA
## 1765                   0                              NA
## 1766                   0                              NA
## 1767                   0                              NA
## 1768                   0                              NA
## 1769                   0                              NA
## 1770                   0                              NA
## 1771                   0                              NA
## 1772                   0                              NA
## 1773                   0                              NA
## 1774                   0                              NA
## 1775                   0                              NA
## 1776                   0                              NA
## 1777                   0                              NA
## 1778                   0                              NA
## 1779                   0                              NA
## 1780                   0                              NA
## 1781                   0                              NA
## 1782                   0                              NA
## 1783                   0                              NA
## 1784                   0                              NA
## 1785                   0                              NA
## 1786                   0                              NA
## 1787                   0                              NA
## 1788                   0                              NA
## 1789                   8                              NA
## 1790                  40                              NA
## 1791                  11                              NA
## 1792                   *                              NA
## 1793                   7                              NA
## 1794                   *                              NA
## 1795                  11                              NA
## 1796                  19                              NA
## 1797                 158                              NA
## 1798                  46                              NA
## 1799                   8                              NA
## 1800                  16                              NA
## 1801                  11                              NA
## 1802                 118                              NA
## 1803                   5                              NA
## 1804                  27                              NA
## 1805                  23                              NA
## 1806                   *                              NA
## 1807                   7                              NA
## 1808                   *                              NA
## 1809                   8                              NA
## 1810                   0                              NA
## 1811                  20                              NA
## 1812                  16                              NA
## 1813                  22                              NA
## 1814                  11                              NA
## 1815                 109                              NA
## 1816                  54                              NA
## 1817                 120                              NA
## 1818                   *                              NA
## 1819                  14                              NA
## 1820                   0                              NA
## 1821                  22                              NA
## 1822                  21                              NA
## 1823                  12                              NA
## 1824                   *                              NA
## 1825                   *                              NA
## 1826                   9                              NA
## 1827                   *                              NA
## 1828                  18                              NA
## 1829                  32                              NA
## 1830                  17                              NA
## 1831                   0                              NA
## 1832                   0                              NA
## 1833                  76                              NA
## 1834                  30                              NA
## 1835                  12                              NA
## 1836                   0                              NA
## 1837                  17                              NA
## 1838                  10                              NA
## 1839                  18                              NA
## 1840                  39                              NA
## 1841                  43                              NA
## 1842                 124                              NA
## 1843                  89                              NA
## 1844                   5                              NA
## 1845                   0                              NA
## 1846                  17                              NA
## 1847                  20                              NA
## 1848                 168                              NA
## 1849                   6                              NA
## 1850                   9                              NA
## 1851                  17                              NA
## 1852                   6                              NA
## 1853                   0                              NA
## 1854                   6                              NA
## 1855                   0                              NA
## 1856                  25                              NA
## 1857                   0                              NA
## 1858                   0                              NA
## 1859                   0                              NA
## 1860                   0                              NA
## 1861                   0                              NA
## 1862                   0                              NA
## 1863                   0                              NA
## 1864                   0                              NA
## 1865                  10                              NA
## 1866                   0                              NA
## 1867                   *                              NA
## 1868                   *                              NA
## 1869                  44                              NA
## 1870                   6                              NA
## 1871                 261                              NA
## 1872                  71                              NA
## 1873                  35                              NA
## 1874                   0                              NA
## 1875                   0                              NA
## 1876                   0                              NA
## 1877                  38                              NA
## 1878                  11                              NA
## 1879                   0                              NA
## 1880                   5                              NA
## 1881                  12                              NA
## 1882                   *                              NA
## 1883                  86                              NA
## 1884                   8                              NA
## 1885                   0                              NA
## 1886                   0                              NA
## 1887                   0                              NA
## 1888                  60                              NA
## 1889                   0                              NA
## 1890                   0                              NA
## 1891                   0                              NA
## 1892                   0                              NA
## 1893                   0                              NA
## 1894                   *                              NA
## 1895                   0                              NA
## 1896                   0                              NA
## 1897                   *                              NA
## 1898                  41                              NA
## 1899                   *                              NA
## 1900                   0                              NA
## 1901                   0                              NA
## 1902                   0                              NA
## 1903                   7                              NA
## 1904                   0                              NA
## 1905                   0                              NA
## 1906                   0                              NA
## 1907                   0                              NA
## 1908                   0                              NA
## 1909                   0                              NA
## 1910                   0                              NA
## 1911                   0                              NA
## 1912                   0                              NA
## 1913                   0                              NA
## 1914                   0                              NA
## 1915                   0                              NA
## 1916                   0                              NA
## 1917                   0                              NA
## 1918                 222                              NA
## 1919                  99                              NA
## 1920                 225                              NA
## 1921                 196                              NA
## 1922                  45                              NA
## 1923                   0                              NA
## 1924                   0                              NA
## 1925                   0                              NA
## 1926                   0                              NA
## 1927                   0                              NA
## 1928                   0                              NA
## 1929                   0                              NA
## 1930                   0                              NA
## 1931                   0                              NA
## 1932                   0                              NA
## 1933                   *                              NA
## 1934                   0                              NA
## 1935                   0                              NA
## 1936                   0                              NA
## 1937                   0                              NA
## 1938                   *                              NA
## 1939                   0                              NA
## 1940                   0                              NA
## 1941                   0                              NA
## 1942                   0                              NA
## 1943                   0                              NA
## 1944                   0                              NA
## 1945                   0                              NA
## 1946                   0                              NA
## 1947                   0                              NA
## 1948                   0                              NA
## 1949                   0                              NA
## 1950                   0                              NA
## 1951                   0                              NA
## 1952                   0                              NA
## 1953                  21                              NA
## 1954                   8                              NA
## 1955                 103                              NA
## 1956                 229                              NA
## 1957                  72                              NA
## 1958                   0                              NA
## 1959                  67                              NA
## 1960                   *                              NA
## 1961                  69                              NA
## 1962                  48                              NA
## 1963                 167                              NA
## 1964                 187                              NA
## 1965                   *                              NA
## 1966                  36                              NA
## 1967                  15                              NA
## 1968                  12                              NA
## 1969                  17                              NA
## 1970                  19                              NA
## 1971                   5                              NA
## 1972                  27                              NA
## 1973                  30                              NA
## 1974                 584                              NA
## 1975                  40                              NA
## 1976                  71                              NA
## 1977                 101                              NA
## 1978                   5                              NA
## 1979                 619                              NA
## 1980                   *                              NA
## 1981                 110                              NA
## 1982                  18                              NA
## 1983                  84                              NA
## 1984                   *                              NA
## 1985                  25                              NA
## 1986                 185                              NA
## 1987                  12                              NA
## 1988                   0                              NA
## 1989                   9                              NA
## 1990                   *                              NA
## 1991                  19                              NA
## 1992                  38                              NA
## 1993                  15                              NA
## 1994                  24                              NA
## 1995                   0                              NA
## 1996                   0                              NA
## 1997                  78                              NA
## 1998                   *                              NA
## 1999                 265                              NA
## 2000                   7                              NA
## 2001                  42                              NA
## 2002                  16                              NA
## 2003                   *                              NA
## 2004                  19                              NA
## 2005                  15                              NA
## 2006                   *                              NA
## 2007                 116                              NA
## 2008                  64                              NA
## 2009                  33                              NA
## 2010                   8                              NA
## 2011                   8                              NA
## 2012                  46                              NA
## 2013                   *                              NA
## 2014                  56                              NA
## 2015                 194                              NA
## 2016                1099                              NA
## 2017                1117                              NA
## 2018                  36                              NA
## 2019                   *                              NA
## 2020                  42                              NA
## 2021                   *                              NA
## 2022                 166                              NA
## 2023                 209                              NA
## 2024                   5                              NA
## 2025                 383                              NA
## 2026                 376                              NA
## 2027                   5                              NA
## 2028                  11                              NA
## 2029                   *                              NA
## 2030                   5                              NA
## 2031                  11                              NA
## 2032                   5                              NA
## 2033                   *                              NA
## 2034                   9                              NA
## 2035                   6                              NA
## 2036                 158                              NA
## 2037                  33                              NA
## 2038                  12                              NA
## 2039                   *                              NA
## 2040                  21                              NA
## 2041                   0                              NA
## 2042                  63                              NA
## 2043                  88                              NA
## 2044                  34                              NA
## 2045                   9                              NA
## 2046                  62                              NA
## 2047                  54                              NA
## 2048                  80                              NA
## 2049                   *                              NA
## 2050                  98                              NA
## 2051                   5                              NA
## 2052                   5                              NA
## 2053                  16                              NA
## 2054                  74                              NA
## 2055                   *                              NA
## 2056                  26                              NA
## 2057                   *                              NA
## 2058                   0                              NA
## 2059                   6                              NA
## 2060                   *                              NA
## 2061                   0                              NA
## 2062                  25                              NA
## 2063                   0                              NA
## 2064                   0                              NA
## 2065                   0                              NA
## 2066                  31                              NA
## 2067                   *                              NA
## 2068                  15                              NA
## 2069                 120                              NA
## 2070                  44                              NA
## 2071                  35                              NA
## 2072                 144                              NA
## 2073                  10                              NA
## 2074                  12                              NA
## 2075                   *                              NA
## 2076                  75                              NA
## 2077                   0                              NA
## 2078                  37                              NA
## 2079                   *                              NA
## 2080                   5                              NA
## 2081                  35                              NA
## 2082                  17                              NA
## 2083                  12                              NA
## 2084                  21                              NA
## 2085                  12                              NA
## 2086                  85                              NA
## 2087                   *                              NA
## 2088                  10                              NA
## 2089                   *                              NA
## 2090                   *                              NA
## 2091                   7                              NA
## 2092                  45                              NA
## 2093                   5                              NA
## 2094                   5                              NA
## 2095                  14                              NA
## 2096                   *                              NA
## 2097                   *                              NA
## 2098                  44                              NA
## 2099                  54                              NA
## 2100                   *                              NA
## 2101                  11                              NA
## 2102                  14                              NA
## 2103                  17                              NA
## 2104                  16                              NA
## 2105                  25                              NA
## 2106                   *                              NA
## 2107                   0                              NA
## 2108                   0                              NA
## 2109                   0                              NA
## 2110                   0                              NA
## 2111                   0                              NA
## 2112                   0                              NA
## 2113                   0                              NA
## 2114                   0                              NA
## 2115                   0                              NA
## 2116                   0                              NA
## 2117                   0                              NA
## 2118                   0                              NA
## 2119                   0                              NA
## 2120                   0                              NA
## 2121                   *                              NA
## 2122                   0                              NA
## 2123                   0                              NA
## 2124                   0                              NA
## 2125                   0                              NA
## 2126                   0                              NA
## 2127                   0                              NA
## 2128                   0                              NA
## 2129                   0                              NA
## 2130                   0                              NA
## 2131                   0                              NA
## 2132                   0                              NA
## 2133                  34                              NA
## 2134                   0                              NA
## 2135                   0                              NA
## 2136                  59                              NA
## 2137                  18                              NA
## 2138                  21                              NA
## 2139                  11                              NA
## 2140                   0                              NA
## 2141                  30                              NA
## 2142                   8                              NA
## 2143                  10                              NA
## 2144                  29                              NA
## 2145                   0                              NA
## 2146                 104                              NA
## 2147                   0                              NA
## 2148                  11                              NA
## 2149                  21                              NA
## 2150                   *                              NA
## 2151                  46                              NA
## 2152                   0                              NA
## 2153                 131                              NA
## 2154                  12                              NA
## 2155                  65                              NA
## 2156                   0                              NA
## 2157                  23                              NA
## 2158                  29                              NA
## 2159                  29                              NA
## 2160                   0                              NA
## 2161                  47                              NA
## 2162                  10                              NA
## 2163                  14                              NA
## 2164                  16                              NA
## 2165                   0                              NA
## 2166                   0                              NA
## 2167                   0                              NA
## 2168                  14                              NA
## 2169                  69                              NA
## 2170                  89                              NA
## 2171                   0                              NA
## 2172                   0                              NA
## 2173                 193                              NA
## 2174                   0                              NA
## 2175                   0                              NA
## 2176                 147                              NA
## 2177                   0                              NA
## 2178                  62                              NA
## 2179                   0                              NA
## 2180                   0                              NA
## 2181                   0                              NA
## 2182                   0                              NA
## 2183                   6                              NA
## 2184                   0                              NA
## 2185                   *                              NA
## 2186                   6                              NA
## 2187                   0                              NA
## 2188                 228                              NA
## 2189                   0                              NA
## 2190                   0                              NA
## 2191                   0                              NA
## 2192                   0                              NA
## 2193                   0                              NA
## 2194                   0                              NA
## 2195                   0                              NA
## 2196                   0                              NA
## 2197                   0                              NA
## 2198                   0                              NA
## 2199                   0                              NA
## 2200                   *                              NA
## 2201                   0                              NA
## 2202                   *                              NA
## 2203                   *                              NA
## 2204                   0                              NA
## 2205                   0                              NA
## 2206                  16                              NA
## 2207                  81                              NA
## 2208                 152                              NA
## 2209                 281                              NA
## 2210                  43                              NA
## 2211                   *                              NA
## 2212                  90                              NA
## 2213                  59                              NA
## 2214                  49                              NA
## 2215                   *                              NA
## 2216                  12                              NA
## 2217                  20                              NA
## 2218                  20                              NA
## 2219                  18                              NA
## 2220                   *                              NA
## 2221                   0                              NA
## 2222                   0                              NA
## 2223                   0                              NA
## 2224                   0                              NA
## 2225                   0                              NA
## 2226                   0                              NA
## 2227                   0                              NA
## 2228                   0                              NA
## 2229                   0                              NA
## 2230                   0                              NA
## 2231                   0                              NA
## 2232                   0                              NA
## 2233                   0                              NA
## 2234                   0                              NA
## 2235                   *                              NA
## 2236                   0                              NA
## 2237                   *                              NA
## 2238                   0                              NA
## 2239                   *                              NA
## 2240                   *                              NA
## 2241                   0                              NA
## 2242                  87                              NA
## 2243                 106                              NA
## 2244                   0                              NA
## 2245                 218                              NA
## 2246                 376                              NA
## 2247                   0                              NA
## 2248                  22                              NA
## 2249                   *                              NA
## 2250                  24                              NA
## 2251                   *                              NA
## 2252                   7                              NA
## 2253                   *                              NA
## 2254                   *                              NA
## 2255                  73                              NA
## 2256                  21                              NA
## 2257                   *                              NA
## 2258                  17                              NA
## 2259                  78                              NA
## 2260                  79                              NA
## 2261                   *                              NA
## 2262                   *                              NA
## 2263                  14                              NA
## 2264                  31                              NA
## 2265                   0                              NA
## 2266                   0                              NA
## 2267                  24                              NA
## 2268                  25                              NA
## 2269                  18                              NA
## 2270                   0                              NA
## 2271                  14                              NA
## 2272                   *                              NA
## 2273                   9                              NA
## 2274                   *                              NA
## 2275                   *                              NA
## 2276                  49                              NA
## 2277                   0                              NA
## 2278                   0                              NA
## 2279                   *                              NA
## 2280                   6                              NA
## 2281                   7                              NA
## 2282                   *                              NA
## 2283                   *                              NA
## 2284                  30                              NA
## 2285                   5                              NA
## 2286                  23                              NA
## 2287                  64                              NA
## 2288                 108                              NA
## 2289                   0                              NA
## 2290                   *                              NA
## 2291                   0                              NA
## 2292                   0                              NA
## 2293                   0                              NA
## 2294                   0                              NA
## 2295                   6                              NA
## 2296                   0                              NA
## 2297                   0                              NA
## 2298                   0                              NA
## 2299                   0                              NA
## 2300                   *                              NA
## 2301                  38                              NA
## 2302                  24                              NA
## 2303                   9                              NA
## 2304                  15                              NA
## 2305                   5                              NA
## 2306                  63                              NA
## 2307                  46                              NA
## 2308                   9                              NA
## 2309                  12                              NA
## 2310                 189                              NA
## 2311                   0                              NA
## 2312                  27                              NA
## 2313                  14                              NA
## 2314                   *                              NA
## 2315                   0                              NA
## 2316                   *                              NA
## 2317                   0                              NA
## 2318                  80                              NA
## 2319                  32                              NA
## 2320                   0                              NA
## 2321                  31                              NA
## 2322                 129                              NA
## 2323                  69                              NA
## 2324                  25                              NA
## 2325                  45                              NA
## 2326                  74                              NA
## 2327                 155                              NA
## 2328                  31                              NA
## 2329                   8                              NA
## 2330                  81                              NA
## 2331                  90                              NA
## 2332                  41                              NA
## 2333                 210                              NA
## 2334                  14                              NA
## 2335                   9                              NA
## 2336                  28                              NA
## 2337                  16                              NA
## 2338                   0                              NA
## 2339                   0                              NA
## 2340                   0                              NA
## 2341                  53                              NA
## 2342                  50                              NA
## 2343                  21                              NA
## 2344                 117                              NA
## 2345                   0                              NA
## 2346                   0                              NA
## 2347                   7                              NA
## 2348                   0                              NA
## 2349                  33                              NA
## 2350                  15                              NA
## 2351                 247                              NA
## 2352                  90                              NA
## 2353                  43                              NA
## 2354                   *                              NA
## 2355                   *                              NA
## 2356                   0                              NA
## 2357                   0                              NA
## 2358                  15                              NA
## 2359                   0                              NA
## 2360                  11                              NA
## 2361                  33                              NA
## 2362                  22                              NA
## 2363                   0                              NA
## 2364                   0                              NA
## 2365                   *                              NA
## 2366                  23                              NA
## 2367                   0                              NA
## 2368                   0                              NA
## 2369                  31                              NA
## 2370                   0                              NA
## 2371                   0                              NA
## 2372                   0                              NA
## 2373                   0                              NA
## 2374                 231                              NA
## 2375                 206                              NA
## 2376                   0                              NA
## 2377                   *                              NA
## 2378                   0                              NA
## 2379                   0                              NA
## 2380                   *                              NA
## 2381                   0                              NA
## 2382                   *                              NA
## 2383                   *                              NA
## 2384                   *                              NA
## 2385                   0                              NA
## 2386                   *                              NA
## 2387                   *                              NA
## 2388                   *                              NA
## 2389                   *                              NA
## 2390                   7                              NA
## 2391                   9                              NA
## 2392                   *                              NA
## 2393                  11                              NA
## 2394                  14                              NA
## 2395                   0                              NA
## 2396                  24                              NA
## 2397                   0                              NA
## 2398                   0                              NA
## 2399                   0                              NA
## 2400                   0                              NA
## 2401                   8                              NA
## 2402                   0                              NA
## 2403                   0                              NA
## 2404                   0                              NA
## 2405                   *                              NA
## 2406                   0                              NA
## 2407                   0                              NA
## 2408                   *                              NA
## 2409                   5                              NA
## 2410                   0                              NA
## 2411                   *                              NA
## 2412                   8                              NA
## 2413                  16                              NA
## 2414                   0                              NA
## 2415                   *                              NA
## 2416                   *                              NA
## 2417                  29                              NA
## 2418                  12                              NA
## 2419                   0                              NA
## 2420                   0                              NA
## 2421                   0                              NA
## 2422                  44                              NA
## 2423                   0                              NA
## 2424                   0                              NA
## 2425                  16                              NA
## 2426                   0                              NA
## 2427                   *                              NA
## 2428                   *                              NA
## 2429                   0                              NA
## 2430                   0                              NA
## 2431                   0                              NA
## 2432                   0                              NA
## 2433                   0                              NA
## 2434                   0                              NA
## 2435                   0                              NA
## 2436                   0                              NA
## 2437                   0                              NA
## 2438                   0                              NA
## 2439                   *                              NA
## 2440                   *                              NA
## 2441                   0                              NA
## 2442                   0                              NA
## 2443                   0                              NA
## 2444                   *                              NA
## 2445                  55                              NA
## 2446                   0                              NA
## 2447                   0                              NA
## 2448                   0                              NA
## 2449                   0                              NA
## 2450                   0                              NA
## 2451                   0                              NA
## 2452                   0                              NA
## 2453                   0                              NA
## 2454                  14                              NA
## 2455                  12                              NA
## 2456                 114                              NA
## 2457                  51                              NA
## 2458                  32                              NA
## 2459                   *                              NA
## 2460                   6                              NA
## 2461                  36                              NA
## 2462                   5                              NA
## 2463                  29                              NA
## 2464                 130                              NA
## 2465                  18                              NA
## 2466                   6                              NA
## 2467                   5                              NA
## 2468                   7                              NA
## 2469                   0                              NA
## 2470                  29                              NA
## 2471                  19                              NA
## 2472                   *                              NA
## 2473                  57                              NA
## 2474                  44                              NA
## 2475                  27                              NA
## 2476                  25                              NA
## 2477                  22                              NA
## 2478                   0                              NA
## 2479                   0                              NA
## 2480                   0                              NA
## 2481                  51                              NA
## 2482                   0                              NA
## 2483                   0                              NA
## 2484                   *                              NA
## 2485                  13                              NA
## 2486                  23                              NA
## 2487                  19                              NA
## 2488                 100                              NA
## 2489                   5                              NA
## 2490                   *                              NA
## 2491                  10                              NA
## 2492                   0                              NA
## 2493                  64                              NA
## 2494                   0                              NA
## 2495                  11                              NA
## 2496                   0                              NA
## 2497                  73                              NA
## 2498                  96                              NA
## 2499                   *                              NA
## 2500                   *                              NA
## 2501                  22                              NA
## 2502                 100                              NA
## 2503                 116                              NA
## 2504                  30                              NA
## 2505                 179                              NA
## 2506                 189                              NA
## 2507                  50                              NA
## 2508                   *                              NA
## 2509                   0                              NA
## 2510                  14                              NA
## 2511                   5                              NA
## 2512                   7                              NA
## 2513                   *                              NA
## 2514                 271                              NA
## 2515                   9                              NA
## 2516                  47                              NA
## 2517                  29                              NA
## 2518                   6                              NA
## 2519                   6                              NA
## 2520                  30                              NA
## 2521                  15                              NA
## 2522                  15                              NA
## 2523                 230                              NA
## 2524                 155                              NA
## 2525                  97                              NA
## 2526                   *                              NA
## 2527                   8                              NA
## 2528                   0                              NA
## 2529                 171                              NA
## 2530                   *                              NA
## 2531                   0                              NA
## 2532                   5                              NA
## 2533                   0                              NA
## 2534                   0                              NA
## 2535                  25                              NA
## 2536                   0                              NA
## 2537                  77                              NA
## 2538                  53                              NA
## 2539                   0                              NA
## 2540                   0                              NA
## 2541                  59                              NA
## 2542                   0                              NA
## 2543                  27                              NA
## 2544                   8                              NA
## 2545                  32                              NA
## 2546                  23                              NA
## 2547                   *                              NA
## 2548                   *                              NA
## 2549                   *                              NA
## 2550                   *                              NA
## 2551                   0                              NA
## 2552                   *                              NA
## 2553                   0                              NA
## 2554                   *                              NA
## 2555                   0                              NA
## 2556                   5                              NA
## 2557                   6                              NA
## 2558                   *                              NA
## 2559                   *                              NA
## 2560                   9                              NA
## 2561                   0                              NA
## 2562                   5                              NA
## 2563                   0                              NA
## 2564                   0                              NA
## 2565                  10                              NA
## 2566                   0                              NA
## 2567                   0                              NA
## 2568                   0                              NA
## 2569                   0                              NA
## 2570                   0                              NA
## 2571                   0                              NA
## 2572                   0                              NA
## 2573                   0                              NA
## 2574                   0                              NA
## 2575                   0                              NA
## 2576                   0                              NA
## 2577                   0                              NA
## 2578                   0                              NA
## 2579                  11                              NA
## 2580                   0                              NA
## 2581                  18                              NA
## 2582                  50                              NA
## 2583                  95                              NA
## 2584                 402                              NA
## 2585                  79                              NA
## 2586                  22                              NA
## 2587                 135                              NA
## 2588                  16                              NA
## 2589                   0                              NA
## 2590                 886                              NA
## 2591                   0                              NA
## 2592                   0                              NA
## 2593                   0                              NA
## 2594                   8                              NA
## 2595                  25                              NA
## 2596                   8                              NA
## 2597                   *                              NA
## 2598                   *                              NA
## 2599                   0                              NA
## 2600                  47                              NA
## 2601                   0                              NA
## 2602                   *                              NA
## 2603                   *                              NA
## 2604                   9                              NA
## 2605                   0                              NA
## 2606                 106                              NA
## 2607                   0                              NA
## 2608                  56                              NA
## 2609                   *                              NA
## 2610                   0                              NA
## 2611                   5                              NA
## 2612                  11                              NA
## 2613                   5                              NA
## 2614                   *                              NA
## 2615                  39                              NA
## 2616                   0                              NA
## 2617                   5                              NA
## 2618                   *                              NA
## 2619                   *                              NA
## 2620                   *                              NA
## 2621                  12                              NA
## 2622                   8                              NA
## 2623                  27                              NA
## 2624                  11                              NA
## 2625                   *                              NA
## 2626                   *                              NA
## 2627                   *                              NA
## 2628                  40                              NA
## 2629                   7                              NA
## 2630                   *                              NA
## 2631                  24                              NA
## 2632                   *                              NA
## 2633                   8                              NA
## 2634                   *                              NA
## 2635                   *                              NA
## 2636                   *                              NA
## 2637                   0                              NA
## 2638                  15                              NA
## 2639                  24                              NA
## 2640                   0                              NA
## 2641                   *                              NA
## 2642                   0                              NA
## 2643                   0                              NA
## 2644                   0                              NA
## 2645                   *                              NA
## 2646                   *                              NA
## 2647                   0                              NA
## 2648                 120                              NA
## 2649                   7                              NA
## 2650                   0                              NA
## 2651                  18                              NA
## 2652                  36                              NA
## 2653                   0                              NA
## 2654                  38                              NA
## 2655                   5                              NA
## 2656                   *                              NA
## 2657                  67                              NA
## 2658                   6                              NA
## 2659                  13                              NA
## 2660                   7                              NA
## 2661                  16                              NA
## 2662                  76                              NA
## 2663                  31                              NA
## 2664                   *                              NA
## 2665                   *                              NA
## 2666                   6                              NA
## 2667                   9                              NA
## 2668                   *                              NA
## 2669                   5                              NA
## 2670                   8                              NA
## 2671                   7                              NA
## 2672                   5                              NA
## 2673                   *                              NA
## 2674                   *                              NA
## 2675                  19                              NA
## 2676                   *                              NA
## 2677                  42                              NA
## 2678                   *                              NA
## 2679                   7                              NA
## 2680                   6                              NA
## 2681                   *                              NA
## 2682                 152                              NA
## 2683                  33                              NA
## 2684                  13                              NA
## 2685                  14                              NA
## 2686                   *                              NA
## 2687                   *                              NA
## 2688                  12                              NA
## 2689                   7                              NA
## 2690                   7                              NA
## 2691                  60                              NA
## 2692                   9                              NA
## 2693                  55                              NA
## 2694                  21                              NA
## 2695                   9                              NA
## 2696                 106                              NA
## 2697                  21                              NA
## 2698                   8                              NA
## 2699                  25                              NA
## 2700                  52                              NA
## 2701                  28                              NA
## 2702                   5                              NA
## 2703                  18                              NA
## 2704                  42                              NA
## 2705                  22                              NA
## 2706                   8                              NA
## 2707                 219                              NA
## 2708                  17                              NA
## 2709                  26                              NA
## 2710                   7                              NA
## 2711                   *                              NA
## 2712                  18                              NA
## 2713                   *                              NA
## 2714                   5                              NA
## 2715                   7                              NA
## 2716                  15                              NA
## 2717                   *                              NA
## 2718                  25                              NA
## 2719                   8                              NA
## 2720                  16                              NA
## 2721                   5                              NA
## 2722                  10                              NA
## 2723                   *                              NA
## 2724                  24                              NA
## 2725                  13                              NA
## 2726                   *                              NA
## 2727                   9                              NA
## 2728                  13                              NA
## 2729                  89                              NA
## 2730                   *                              NA
## 2731                   *                              NA
## 2732                  44                              NA
## 2733                   *                              NA
## 2734                  12                              NA
## 2735                   7                              NA
## 2736                 214                              NA
## 2737                  13                              NA
## 2738                  12                              NA
## 2739                  21                              NA
## 2740                   0                              NA
## 2741                   8                              NA
## 2742                   5                              NA
## 2743                   0                              NA
## 2744                   0                              NA
## 2745                   0                              NA
## 2746                   0                              NA
## 2747                   0                              NA
## 2748                   0                              NA
## 2749                   0                              NA
## 2750                   0                              NA
## 2751                   0                              NA
## 2752                   0                              NA
## 2753                   0                              NA
## 2754                   0                              NA
## 2755                   0                              NA
## 2756                   0                              NA
## 2757                   0                              NA
## 2758                   0                              NA
## 2759                   0                              NA
## 2760                   0                              NA
## 2761                   0                              NA
## 2762                   0                              NA
## 2763                   0                              NA
## 2764                   0                              NA
## 2765                   0                              NA
## 2766                   0                              NA
## 2767                   0                              NA
## 2768                   0                              NA
## 2769                   0                              NA
## 2770                   0                              NA
## 2771                   0                              NA
## 2772                   0                              NA
## 2773                   0                              NA
## 2774                   0                              NA
## 2775                   0                              NA
## 2776                   0                              NA
## 2777                   0                              NA
## 2778                   0                              NA
## 2779                   0                              NA
## 2780                   0                              NA
## 2781                   0                              NA
## 2782                   0                              NA
## 2783                   0                              NA
## 2784                   0                              NA
## 2785                   0                              NA
## 2786                   0                              NA
## 2787                   0                              NA
## 2788                   0                              NA
## 2789                   0                              NA
## 2790                   0                              NA
## 2791                   0                              NA
## 2792                   0                              NA
## 2793                   0                              NA
## 2794                   0                              NA
## 2795                   0                              NA
## 2796                   0                              NA
## 2797                   0                              NA
## 2798                   0                              NA
## 2799                   0                              NA
## 2800                   0                              NA
## 2801                   0                              NA
## 2802                   0                              NA
## 2803                   0                              NA
## 2804                   0                              NA
## 2805                 194                              NA
## 2806                  21                              NA
## 2807                  59                              NA
## 2808                   6                              NA
## 2809                   9                              NA
## 2810                  32                              NA
## 2811                  59                              NA
## 2812                   9                              NA
## 2813                  11                              NA
## 2814                   9                              NA
## 2815                   *                              NA
## 2816                   0                              NA
## 2817                  27                              NA
## 2818                   9                              NA
## 2819                 162                              NA
## 2820                 273                              NA
## 2821                  30                              NA
## 2822                 241                              NA
## 2823                 247                              NA
## 2824                  27                              NA
## 2825                  77                              NA
## 2826                   *                              NA
## 2827                   *                              NA
## 2828                   *                              NA
## 2829                  32                              NA
## 2830                   0                              NA
## 2831                   0                              NA
## 2832                   0                              NA
## 2833                   9                              NA
## 2834                   0                              NA
## 2835                  66                              NA
## 2836                  30                              NA
## 2837                  62                              NA
## 2838                  13                              NA
## 2839                  32                              NA
## 2840                  58                              NA
## 2841                 125                              NA
## 2842                 123                              NA
## 2843                  11                              NA
## 2844                  51                              NA
## 2845                  49                              NA
## 2846                 153                              NA
## 2847                 340                              NA
## 2848                 172                              NA
## 2849                   *                              NA
## 2850                 386                              NA
## 2851                  62                              NA
## 2852                 447                              NA
## 2853                 119                              NA
## 2854                  23                              NA
## 2855                 108                              NA
## 2856                 306                              NA
## 2857                 240                              NA
## 2858                 221                              NA
## 2859                 156                              NA
## 2860                 230                              NA
## 2861                  54                              NA
## 2862                 118                              NA
## 2863                  96                              NA
## 2864                 205                              NA
## 2865                   0                              NA
## 2866                 168                              NA
## 2867                  67                              NA
## 2868                  33                              NA
## 2869                 197                              NA
## 2870                  98                              NA
## 2871                 213                              NA
## 2872                  20                              NA
## 2873                  72                              NA
## 2874                  54                              NA
## 2875                  22                              NA
## 2876                   0                              NA
## 2877                   *                              NA
## 2878                   0                              NA
## 2879                  11                              NA
## 2880                   0                              NA
## 2881                   0                              NA
## 2882                   0                              NA
## 2883                   0                              NA
## 2884                   0                              NA
## 2885                   *                              NA
## 2886                   7                              NA
## 2887                   0                              NA
## 2888                  25                              NA
## 2889                   0                              NA
## 2890                   0                              NA
## 2891                  23                              NA
## 2892                   0                              NA
## 2893                   0                              NA
## 2894                  76                              NA
## 2895                   *                              NA
## 2896                  14                              NA
## 2897                  12                              NA
## 2898                   0                              NA
## 2899                   0                              NA
## 2900                   0                              NA
## 2901                 141                              NA
## 2902                   7                              NA
## 2903                   *                              NA
## 2904                  25                              NA
## 2905                  73                              NA
## 2906                  15                              NA
## 2907                  12                              NA
## 2908                  33                              NA
## 2909                   0                              NA
## 2910                  21                              NA
## 2911                   *                              NA
## 2912                   0                              NA
## 2913                   *                              NA
## 2914                  57                              NA
## 2915                   *                              NA
## 2916                  99                              NA
## 2917                   *                              NA
## 2918                  14                              NA
## 2919                   *                              NA
## 2920                  50                              NA
## 2921                   *                              NA
## 2922                   8                              NA
## 2923                  12                              NA
## 2924                 232                              NA
## 2925                   *                              NA
## 2926                  33                              NA
## 2927                  12                              NA
## 2928                   0                              NA
## 2929                  33                              NA
## 2930                  48                              NA
## 2931                  39                              NA
## 2932                   *                              NA
## 2933                   *                              NA
## 2934                  72                              NA
## 2935                  14                              NA
## 2936                  70                              NA
## 2937                   7                              NA
## 2938                   0                              NA
## 2939                   0                              NA
## 2940                   0                              NA
## 2941                   0                              NA
## 2942                   6                              NA
## 2943                   0                              NA
## 2944                   0                              NA
## 2945                   0                              NA
## 2946                   0                              NA
## 2947                   0                              NA
## 2948                   0                              NA
## 2949                  13                              NA
## 2950                  74                              NA
## 2951                  28                              NA
## 2952                   7                              NA
## 2953                  13                              NA
## 2954                  18                              NA
## 2955                  26                              NA
## 2956                   0                              NA
## 2957                  12                              NA
## 2958                   0                              NA
## 2959                 348                              NA
## 2960                   0                              NA
## 2961                   0                              NA
## 2962                 151                              NA
## 2963                 180                              NA
## 2964                 106                              NA
## 2965                   0                              NA
## 2966                  13                              NA
## 2967                   7                              NA
## 2968                   0                              NA
## 2969                   6                              NA
## 2970                   0                              NA
## 2971                   0                              NA
## 2972                   0                              NA
## 2973                   0                              NA
## 2974                   0                              NA
## 2975                   *                              NA
## 2976                   5                              NA
## 2977                   7                              NA
## 2978                   *                              NA
## 2979                   *                              NA
## 2980                   0                              NA
## 2981                   0                              NA
## 2982                   0                              NA
## 2983                  19                              NA
## 2984                  32                              NA
## 2985                  21                              NA
## 2986                   7                              NA
## 2987                   0                              NA
## 2988                   0                              NA
## 2989                   0                              NA
## 2990                   0                              NA
## 2991                   0                              NA
## 2992                   0                              NA
## 2993                   0                              NA
## 2994                   0                              NA
## 2995                   0                              NA
## 2996                   0                              NA
## 2997                   0                              NA
## 2998                   0                              NA
## 2999                   0                              NA
## 3000                   0                              NA
## 3001                   0                              NA
## 3002                   0                              NA
## 3003                   0                              NA
## 3004                   0                              NA
## 3005                   0                              NA
## 3006                   0                              NA
## 3007                   0                              NA
## 3008                   0                              NA
## 3009                   0                              NA
## 3010                   0                              NA
## 3011                   0                              NA
## 3012                   0                              NA
## 3013                   0                              NA
## 3014                   0                              NA
## 3015                   0                              NA
## 3016                   0                              NA
## 3017                   0                              NA
## 3018                   0                              NA
## 3019                   0                              NA
## 3020                   0                              NA
## 3021                   0                              NA
## 3022                   0                              NA
## 3023                   0                              NA
## 3024                   0                              NA
## 3025                   0                              NA
## 3026                  21                              NA
## 3027                 198                              NA
## 3028                  21                              NA
## 3029                  85                              NA
## 3030                  19                              NA
## 3031                  11                              NA
## 3032                  11                              NA
## 3033                  10                              NA
## 3034                  82                              NA
## 3035                  47                              NA
## 3036                 179                              NA
## 3037                  15                              NA
## 3038                  65                              NA
## 3039                  72                              NA
## 3040                  91                              NA
## 3041                  23                              NA
## 3042                  62                              NA
## 3043                  65                              NA
## 3044                  10                              NA
## 3045                  13                              NA
## 3046                   8                              NA
## 3047                  23                              NA
## 3048                  41                              NA
## 3049                  14                              NA
## 3050                 114                              NA
## 3051                  57                              NA
## 3052                   9                              NA
## 3053                   0                              NA
## 3054                   0                              NA
## 3055                   0                              NA
## 3056                   0                              NA
## 3057                   0                              NA
## 3058                   0                              NA
## 3059                   0                              NA
## 3060                   0                              NA
## 3061                   0                              NA
## 3062                   0                              NA
## 3063                   0                              NA
## 3064                   0                              NA
## 3065                   0                              NA
## 3066                   0                              NA
## 3067                   0                              NA
## 3068                   0                              NA
## 3069                   0                              NA
## 3070                   0                              NA
## 3071                   0                              NA
## 3072                   0                              NA
## 3073                   0                              NA
## 3074                   0                              NA
## 3075                   0                              NA
## 3076                   0                              NA
## 3077                   0                              NA
## 3078                   0                              NA
## 3079                   0                              NA
## 3080                   0                              NA
## 3081                   0                              NA
## 3082                   0                              NA
## 3083                   0                              NA
## 3084                   0                              NA
## 3085                   0                              NA
## 3086                   0                              NA
## 3087                   0                              NA
## 3088                   0                              NA
## 3089                   0                              NA
## 3090                   0                              NA
## 3091                   0                              NA
## 3092                   0                              NA
## 3093                   0                              NA
## 3094                   0                              NA
## 3095                   0                              NA
## 3096                   0                              NA
## 3097                   0                              NA
## 3098                   0                              NA
## 3099                   0                              NA
## 3100                   0                              NA
## 3101                   0                              NA
## 3102                   0                              NA
## 3103                   0                              NA
## 3104                   0                              NA
## 3105                   0                              NA
## 3106                   0                              NA
## 3107                   0                              NA
## 3108                   0                              NA
## 3109                   0                              NA
## 3110                   0                              NA
## 3111                   0                              NA
## 3112                   0                              NA
## 3113                   0                              NA
## 3114                   0                              NA
## 3115                   0                              NA
## 3116                   0                              NA
## 3117                   0                              NA
## 3118                   0                              NA
## 3119                   0                              NA
## 3120                   0                              NA
## 3121                   0                              NA
## 3122                   0                              NA
## 3123                   0                              NA
## 3124                   0                              NA
## 3125                   0                              NA
## 3126                   0                              NA
## 3127                   0                              NA
## 3128                   0                              NA
## 3129                   7                              NA
## 3130                   0                              NA
## 3131                   0                              NA
## 3132                   *                              NA
## 3133                  13                              NA
## 3134                   6                              NA
## 3135                   0                              NA
## 3136                   0                              NA
## 3137                  98                              NA
## 3138                   0                              NA
## 3139                   0                              NA
## 3140                   *                              NA
## 3141                   0                              NA
## 3142                  10                              NA
## 3143                  68                              NA
## 3144                  25                              NA
## 3145                   8                              NA
## 3146                  18                              NA
## 3147                 101                              NA
## 3148                  18                              NA
## 3149                  54                              NA
## 3150                  17                              NA
## 3151                  15                              NA
## 3152                  15                              NA
## 3153                  24                              NA
## 3154                  15                              NA
## 3155                  60                              NA
## 3156                   5                              NA
## 3157                   *                              NA
## 3158                  10                              NA
## 3159                  46                              NA
## 3160                  10                              NA
## 3161                  12                              NA
## 3162                  14                              NA
## 3163                  23                              NA
## 3164                   8                              NA
## 3165                  15                              NA
## 3166                  20                              NA
## 3167                  11                              NA
## 3168                   0                              NA
## 3169                  20                              NA
## 3170                   0                              NA
## 3171                  21                              NA
## 3172                   9                              NA
## 3173                  23                              NA
## 3174                  22                              NA
## 3175                  19                              NA
## 3176                   0                              NA
## 3177                   0                              NA
## 3178                   0                              NA
## 3179                   0                              NA
## 3180                   0                              NA
## 3181                   0                              NA
## 3182                   0                              NA
## 3183                   0                              NA
## 3184                   0                              NA
## 3185                   *                              NA
## 3186                   0                              NA
## 3187                  10                              NA
## 3188                  28                              NA
## 3189                   0                              NA
## 3190                   *                              NA
## 3191                  10                              NA
## 3192                   5                              NA
## 3193                   6                              NA
## 3194                  11                              NA
## 3195                   7                              NA
## 3196                   *                              NA
## 3197                  13                              NA
## 3198                   *                              NA
## 3199                   0                              NA
## 3200                   0                              NA
## 3201                   *                              NA
## 3202                  15                              NA
## 3203                   0                              NA
## 3204                   0                              NA
## 3205                  13                              NA
## 3206                   8                              NA
## 3207                   0                              NA
## 3208                  12                              NA
## 3209                   8                              NA
## 3210                   8                              NA
## 3211                   *                              NA
## 3212                   *                              NA
## 3213                   9                              NA
## 3214                   *                              NA
## 3215                   *                              NA
## 3216                   7                              NA
## 3217                   5                              NA
## 3218                   0                              NA
## 3219                   0                              NA
## 3220                   *                              NA
## 3221                   0                              NA
## 3222                   8                              NA
## 3223                  23                              NA
## 3224                  51                              NA
## 3225                   *                              NA
## 3226                   7                              NA
## 3227                   7                              NA
## 3228                  24                              NA
## 3229                  14                              NA
## 3230                  11                              NA
## 3231                  24                              NA
## 3232                   9                              NA
## 3233                  17                              NA
## 3234                  17                              NA
## 3235                   0                              NA
## 3236                   0                              NA
## 3237                   0                              NA
## 3238                   8                              NA
## 3239                   *                              NA
## 3240                   *                              NA
## 3241                   *                              NA
## 3242                   0                              NA
## 3243                   0                              NA
## 3244                   0                              NA
## 3245                   *                              NA
## 3246                  19                              NA
## 3247                  10                              NA
## 3248                   *                              NA
## 3249                   9                              NA
## 3250                   7                              NA
## 3251                  20                              NA
## 3252                  41                              NA
## 3253                  61                              NA
## 3254                  17                              NA
## 3255                   0                              NA
## 3256                   *                              NA
## 3257                   *                              NA
## 3258                   9                              NA
## 3259                   0                              NA
## 3260                   8                              NA
## 3261                  13                              NA
## 3262                  31                              NA
## 3263                  12                              NA
## 3264                  30                              NA
## 3265                   *                              NA
## 3266                   8                              NA
## 3267                  21                              NA
## 3268                   *                              NA
## 3269                   *                              NA
## 3270                  89                              NA
## 3271                  47                              NA
## 3272                   0                              NA
## 3273                  32                              NA
## 3274                   *                              NA
## 3275                   5                              NA
## 3276                   *                              NA
## 3277                   *                              NA
## 3278                   *                              NA
## 3279                   0                              NA
## 3280                   *                              NA
## 3281                   9                              NA
## 3282                   6                              NA
## 3283                   0                              NA
## 3284                   *                              NA
## 3285                   *                              NA
## 3286                   9                              NA
## 3287                   0                              NA
## 3288                   *                              NA
## 3289                   0                              NA
## 3290                   0                              NA
## 3291                   0                              NA
## 3292                  25                              NA
## 3293                   0                              NA
## 3294                   0                              NA
## 3295                   *                              NA
## 3296                  70                              NA
## 3297                   *                              NA
## 3298                   0                              NA
## 3299                   *                              NA
## 3300                   6                              NA
## 3301                   5                              NA
## 3302                   5                              NA
## 3303                   *                              NA
## 3304                   5                              NA
## 3305                   5                              NA
## 3306                   *                              NA
## 3307                  17                              NA
## 3308                   8                              NA
## 3309                   *                              NA
## 3310                   *                              NA
## 3311                   0                              NA
## 3312                  15                              NA
## 3313                  11                              NA
## 3314                   0                              NA
## 3315                   0                              NA
## 3316                   0                              NA
## 3317                   0                              NA
## 3318                   0                              NA
## 3319                   0                              NA
## 3320                   5                              NA
## 3321                   *                              NA
## 3322                  15                              NA
## 3323                  12                              NA
## 3324                   *                              NA
## 3325                   *                              NA
## 3326                  18                              NA
## 3327                   *                              NA
## 3328                  13                              NA
## 3329                   *                              NA
## 3330                   *                              NA
## 3331                  18                              NA
## 3332                   0                              NA
## 3333                   0                              NA
## 3334                   0                              NA
## 3335                   0                              NA
## 3336                   0                              NA
## 3337                   0                              NA
## 3338                   0                              NA
## 3339                   0                              NA
## 3340                   0                              NA
## 3341                  23                              NA
## 3342                   0                              NA
## 3343                  16                              NA
## 3344                   *                              NA
## 3345                  12                              NA
## 3346                   7                              NA
## 3347                   *                              NA
## 3348                   5                              NA
## 3349                   5                              NA
## 3350                   0                              NA
## 3351                   *                              NA
## 3352                   *                              NA
## 3353                   *                              NA
## 3354                  21                              NA
## 3355                   *                              NA
## 3356                  22                              NA
## 3357                  13                              NA
## 3358                  45                              NA
## 3359                  54                              NA
## 3360                  15                              NA
## 3361                  16                              NA
## 3362                   6                              NA
## 3363                  97                              NA
## 3364                  24                              NA
## 3365                  54                              NA
## 3366                   *                              NA
## 3367                  27                              NA
## 3368                  50                              NA
## 3369                  10                              NA
## 3370                  15                              NA
## 3371                   6                              NA
## 3372                  10                              NA
## 3373                  22                              NA
## 3374                  12                              NA
## 3375                   7                              NA
## 3376                  21                              NA
## 3377                   8                              NA
## 3378                   *                              NA
## 3379                  39                              NA
## 3380                   *                              NA
## 3381                 108                              NA
## 3382                  40                              NA
## 3383                   *                              NA
## 3384                  20                              NA
## 3385                  10                              NA
## 3386                  20                              NA
## 3387                   0                              NA
## 3388                   *                              NA
## 3389                   6                              NA
## 3390                   *                              NA
## 3391                   *                              NA
## 3392                   0                              NA
## 3393                  80                              NA
## 3394                  24                              NA
## 3395                 264                              NA
## 3396                  89                              NA
## 3397                  28                              NA
## 3398                 492                              NA
## 3399                  85                              NA
## 3400                 405                              NA
## 3401                  77                              NA
## 3402                 591                              NA
## 3403                 123                              NA
## 3404                 120                              NA
## 3405                  42                              NA
## 3406                  48                              NA
## 3407                 198                              NA
## 3408                 345                              NA
## 3409                  68                              NA
## 3410                  82                              NA
## 3411                 302                              NA
## 3412                  34                              NA
## 3413                  84                              NA
## 3414                 154                              NA
## 3415                 244                              NA
## 3416                  93                              NA
## 3417                 121                              NA
## 3418                  15                              NA
## 3419                   0                              NA
## 3420                   0                              NA
## 3421                   0                              NA
## 3422                   0                              NA
## 3423                  45                              NA
## 3424                  30                              NA
## 3425                 170                              NA
## 3426                  82                              NA
## 3427                  25                              NA
## 3428                   0                              NA
## 3429                   0                              NA
## 3430                   0                              NA
## 3431                   0                              NA
## 3432                   0                              NA
## 3433                   *                              NA
## 3434                  17                              NA
## 3435                 345                              NA
## 3436                 247                              NA
## 3437                  12                              NA
## 3438                  10                              NA
## 3439                   0                              NA
## 3440                   6                              NA
## 3441                  14                              NA
## 3442                  37                              NA
## 3443                   6                              NA
## 3444                   7                              NA
## 3445                   8                              NA
## 3446                  65                              NA
## 3447                   5                              NA
## 3448                  13                              NA
## 3449                  18                              NA
## 3450                  26                              NA
## 3451                  74                              NA
## 3452                  34                              NA
## 3453                  35                              NA
## 3454                  14                              NA
## 3455                  18                              NA
## 3456                   0                              NA
## 3457                   0                              NA
## 3458                   *                              NA
## 3459                   0                              NA
## 3460                  86                              NA
## 3461                   7                              NA
## 3462                  83                              NA
## 3463                   0                              NA
## 3464                   *                              NA
## 3465                   *                              NA
## 3466                   6                              NA
## 3467                  53                              NA
## 3468                   0                              NA
## 3469                   0                              NA
## 3470                   0                              NA
## 3471                  10                              NA
## 3472                 140                              NA
## 3473                   0                              NA
## 3474                  12                              NA
## 3475                   *                              NA
## 3476                   0                              NA
## 3477                   0                              NA
## 3478                   0                              NA
## 3479                   0                              NA
## 3480                   0                              NA
## 3481                   0                              NA
## 3482                   0                              NA
## 3483                   0                              NA
## 3484                   0                              NA
## 3485                   0                              NA
## 3486                   0                              NA
## 3487                   0                              NA
## 3488                   0                              NA
## 3489                   0                              NA
## 3490                   0                              NA
## 3491                   0                              NA
## 3492                   0                              NA
## 3493                   0                              NA
## 3494                   0                              NA
## 3495                   0                              NA
## 3496                   0                              NA
## 3497                   0                              NA
## 3498                   0                              NA
## 3499                   0                              NA
## 3500                   0                              NA
## 3501                   0                              NA
## 3502                   0                              NA
## 3503                   0                              NA
## 3504                   0                              NA
## 3505                   0                              NA
## 3506                   0                              NA
## 3507                   0                              NA
## 3508                   0                              NA
## 3509                   0                              NA
## 3510                   0                              NA
## 3511                   0                              NA
## 3512                   0                              NA
## 3513                   0                              NA
## 3514                   0                              NA
## 3515                   0                              NA
## 3516                   0                              NA
## 3517                   0                              NA
## 3518                   0                              NA
## 3519                   0                              NA
## 3520                   0                              NA
## 3521                   0                              NA
## 3522                   0                              NA
## 3523                   0                              NA
## 3524                   0                              NA
## 3525                   0                              NA
## 3526                   0                              NA
## 3527                   0                              NA
## 3528                   0                              NA
## 3529                   0                              NA
## 3530                   0                              NA
## 3531                   0                              NA
## 3532                   0                              NA
## 3533                   0                              NA
## 3534                   0                              NA
## 3535                   0                              NA
## 3536                   0                              NA
## 3537                   0                              NA
## 3538                   0                              NA
## 3539                   0                              NA
## 3540                   0                              NA
## 3541                   0                              NA
## 3542                   0                              NA
## 3543                   0                              NA
## 3544                   0                              NA
## 3545                   0                              NA
## 3546                   0                              NA
## 3547                   0                              NA
## 3548                   0                              NA
## 3549                   0                              NA
## 3550                   0                              NA
## 3551                   0                              NA
## 3552                   0                              NA
## 3553                   0                              NA
## 3554                   0                              NA
## 3555                   0                              NA
## 3556                   0                              NA
## 3557                   0                              NA
## 3558                   0                              NA
## 3559                   0                              NA
## 3560                   0                              NA
## 3561                   0                              NA
## 3562                   0                              NA
## 3563                   0                              NA
## 3564                   0                              NA
## 3565                   0                              NA
## 3566                   0                              NA
## 3567                   0                              NA
## 3568                   0                              NA
## 3569                   0                              NA
## 3570                   0                              NA
## 3571                   0                              NA
## 3572                   0                              NA
## 3573                   0                              NA
## 3574                   0                              NA
## 3575                2226                              NA
## 3576                 369                              NA
## 3577                 165                              NA
## 3578                   0                              NA
## 3579                  96                              NA
## 3580                  10                              NA
## 3581                 181                              NA
## 3582                   0                              NA
## 3583                   *                              NA
## 3584                  28                              NA
## 3585                   *                              NA
## 3586                   5                              NA
## 3587                   8                              NA
## 3588                  19                              NA
## 3589                  18                              NA
## 3590                   *                              NA
## 3591                   0                              NA
## 3592                   5                              NA
## 3593                   *                              NA
## 3594                   5                              NA
## 3595                   *                              NA
## 3596                  31                              NA
## 3597                  43                              NA
## 3598                  27                              NA
## 3599                   6                              NA
## 3600                   5                              NA
## 3601                   0                              NA
## 3602                  17                              NA
## 3603                  42                              NA
## 3604                  44                              NA
## 3605                   7                              NA
## 3606                  21                              NA
## 3607                 111                              NA
## 3608                   0                              NA
## 3609                  10                              NA
## 3610                   0                              NA
## 3611                   0                              NA
## 3612                   0                              NA
## 3613                  20                              NA
## 3614                   *                              NA
## 3615                 125                              NA
## 3616                  16                              NA
## 3617                  13                              NA
## 3618                  35                              NA
## 3619                  36                              NA
## 3620                  16                              NA
## 3621                   9                              NA
## 3622                   0                              NA
## 3623                   *                              NA
## 3624                 151                              NA
## 3625                  16                              NA
## 3626                   *                              NA
## 3627                   *                              NA
## 3628                  33                              NA
## 3629                  80                              NA
## 3630                  31                              NA
## 3631                   0                              NA
## 3632                   0                              NA
## 3633                   6                              NA
## 3634                  65                              NA
## 3635                  32                              NA
## 3636                   0                              NA
## 3637                   0                              NA
## 3638                 117                              NA
## 3639                  46                              NA
## 3640                  22                              NA
## 3641                   0                              NA
## 3642                   0                              NA
## 3643                  59                              NA
## 3644                   0                              NA
## 3645                   0                              NA
## 3646                  24                              NA
## 3647                  35                              NA
## 3648                   0                              NA
## 3649                   0                              NA
## 3650                  15                              NA
## 3651                   0                              NA
## 3652                   0                              NA
## 3653                   0                              NA
## 3654                   *                              NA
## 3655                 355                              NA
## 3656                   0                              NA
## 3657                   *                              NA
## 3658                   *                              NA
## 3659                  31                              NA
## 3660                 973                              NA
## 3661                   0                              NA
## 3662                  25                              NA
## 3663                   0                              NA
## 3664                   7                              NA
## 3665                   6                              NA
## 3666                   8                              NA
## 3667                   *                              NA
## 3668                   *                              NA
## 3669                   *                              NA
## 3670                   0                              NA
## 3671                   0                              NA
## 3672                  92                              NA
## 3673                   *                              NA
## 3674                   *                              NA
## 3675                   0                              NA
## 3676                   0                              NA
## 3677                  16                              NA
## 3678                  65                              NA
## 3679                   *                              NA
## 3680                   *                              NA
## 3681                   0                              NA
## 3682                   *                              NA
## 3683                   *                              NA
## 3684                   *                              NA
## 3685                   *                              NA
## 3686                   *                              NA
## 3687                  29                              NA
## 3688                   *                              NA
## 3689                   *                              NA
## 3690                 140                              NA
## 3691                 148                              NA
## 3692                 431                              NA
## 3693                  59                              NA
## 3694                  49                              NA
## 3695                 108                              NA
## 3696                   *                              NA
## 3697                   0                              NA
## 3698                   *                              NA
## 3699                 185                              NA
## 3700                   0                              NA
## 3701                  90                              NA
## 3702                 338                              NA
## 3703                 394                              NA
## 3704                 342                              NA
## 3705                 324                              NA
## 3706                  86                              NA
## 3707                  16                              NA
## 3708                   *                              NA
## 3709                   0                              NA
## 3710                   *                              NA
## 3711                   *                              NA
## 3712                   *                              NA
## 3713                   0                              NA
## 3714                   *                              NA
## 3715                   0                              NA
## 3716                   0                              NA
## 3717                   0                              NA
## 3718                   0                              NA
## 3719                   *                              NA
## 3720                   *                              NA
## 3721                   *                              NA
## 3722                   *                              NA
## 3723                  14                              NA
## 3724                   0                              NA
## 3725                   *                              NA
## 3726                   *                              NA
## 3727                   0                              NA
## 3728                   0                              NA
## 3729                   0                              NA
## 3730                   0                              NA
## 3731                   0                              NA
## 3732                   0                              NA
## 3733                   0                              NA
## 3734                   0                              NA
## 3735                  26                              NA
## 3736                  16                              NA
## 3737                   0                              NA
## 3738                  13                              NA
## 3739                   *                              NA
## 3740                   0                              NA
## 3741                   0                              NA
## 3742                   0                              NA
## 3743                   0                              NA
## 3744                   0                              NA
## 3745                  17                              NA
## 3746                   *                              NA
## 3747                   8                              NA
## 3748                  11                              NA
## 3749                  33                              NA
## 3750                   0                              NA
## 3751                   0                              NA
## 3752                   *                              NA
## 3753                  11                              NA
## 3754                   *                              NA
## 3755                   *                              NA
## 3756                  19                              NA
## 3757                  20                              NA
## 3758                  15                              NA
## 3759                   7                              NA
## 3760                   *                              NA
## 3761                   0                              NA
## 3762                   *                              NA
## 3763                   0                              NA
## 3764                   0                              NA
## 3765                   0                              NA
## 3766                   0                              NA
## 3767                  73                              NA
## 3768                  20                              NA
## 3769                  27                              NA
## 3770                 131                              NA
## 3771                  49                              NA
## 3772                   *                              NA
## 3773                   0                              NA
## 3774                  31                              NA
## 3775                   8                              NA
## 3776                  24                              NA
## 3777                   7                              NA
## 3778                  23                              NA
## 3779                  16                              NA
## 3780                 106                              NA
## 3781                  54                              NA
## 3782                 158                              NA
## 3783                  19                              NA
## 3784                  14                              NA
## 3785                   5                              NA
## 3786                   *                              NA
## 3787                 207                              NA
## 3788                  21                              NA
## 3789                  48                              NA
## 3790                  13                              NA
## 3791                  12                              NA
## 3792                  13                              NA
## 3793                   5                              NA
## 3794                  18                              NA
## 3795                   9                              NA
## 3796                  23                              NA
## 3797                   8                              NA
## 3798                   0                              NA
## 3799                   0                              NA
## 3800                   0                              NA
## 3801                 111                              NA
## 3802                   5                              NA
## 3803                  22                              NA
## 3804                  11                              NA
## 3805                  83                              NA
## 3806                   *                              NA
## 3807                  46                              NA
## 3808                   *                              NA
## 3809                  16                              NA
## 3810                   8                              NA
## 3811                  23                              NA
## 3812                   0                              NA
## 3813                  16                              NA
## 3814                  54                              NA
## 3815                  15                              NA
## 3816                 103                              NA
## 3817                  15                              NA
## 3818                   0                              NA
## 3819                  50                              NA
## 3820                 150                              NA
## 3821                 137                              NA
## 3822                  27                              NA
## 3823                  31                              NA
## 3824                   0                              NA
## 3825                  10                              NA
## 3826                1085                              NA
## 3827                   0                              NA
## 3828                  53                              NA
## 3829                   0                              NA
## 3830                  10                              NA
## 3831                   0                              NA
## 3832                  83                              NA
## 3833                   6                              NA
## 3834                   7                              NA
## 3835                  10                              NA
## 3836                   0                              NA
## 3837                   0                              NA
## 3838                   0                              NA
## 3839                   0                              NA
## 3840                  40                              NA
## 3841                   *                              NA
## 3842                  13                              NA
## 3843                   6                              NA
## 3844                 217                              NA
## 3845                   6                              NA
## 3846                   0                              NA
## 3847                   7                              NA
## 3848                  53                              NA
## 3849                   5                              NA
## 3850                   *                              NA
## 3851                  68                              NA
## 3852                   0                              NA
## 3853                   6                              NA
## 3854                   0                              NA
## 3855                  27                              NA
## 3856                  41                              NA
## 3857                 125                              NA
## 3858                  17                              NA
## 3859                  28                              NA
## 3860                   0                              NA
## 3861                   0                              NA
## 3862                   0                              NA
## 3863                   *                              NA
## 3864                   0                              NA
## 3865                   *                              NA
## 3866                  85                              NA
## 3867                  33                              NA
## 3868                  32                              NA
## 3869                 130                              NA
## 3870                 121                              NA
## 3871                  51                              NA
## 3872                  43                              NA
## 3873                 263                              NA
## 3874                 166                              NA
## 3875                  40                              NA
## 3876                 267                              NA
## 3877                 816                              NA
## 3878                   9                              NA
## 3879                 167                              NA
## 3880                  87                              NA
## 3881                  60                              NA
## 3882                  38                              NA
## 3883                  43                              NA
## 3884                  86                              NA
## 3885                  16                              NA
## 3886                   0                              NA
## 3887                  26                              NA
## 3888                  82                              NA
## 3889                  47                              NA
## 3890                 107                              NA
## 3891                   5                              NA
## 3892                  64                              NA
## 3893                  60                              NA
## 3894                  32                              NA
## 3895                  93                              NA
## 3896                   0                              NA
## 3897                  14                              NA
## 3898                   0                              NA
## 3899                   *                              NA
## 3900                   0                              NA
## 3901                   0                              NA
## 3902                   0                              NA
## 3903                   *                              NA
## 3904                   0                              NA
## 3905                  68                              NA
## 3906                 187                              NA
## 3907                   0                              NA
## 3908                   0                              NA
## 3909                   0                              NA
## 3910                   0                              NA
## 3911                   0                              NA
## 3912                   0                              NA
## 3913                   0                              NA
## 3914                   0                              NA
## 3915                   0                              NA
## 3916                   0                              NA
## 3917                   0                              NA
## 3918                   0                              NA
## 3919                   0                              NA
## 3920                   0                              NA
## 3921                   0                              NA
## 3922                   0                              NA
## 3923                   0                              NA
## 3924                   0                              NA
## 3925                   0                              NA
## 3926                   0                              NA
## 3927                   0                              NA
## 3928                   0                              NA
## 3929                   0                              NA
## 3930                   0                              NA
## 3931                   0                              NA
## 3932                   0                              NA
## 3933                   0                              NA
## 3934                   0                              NA
## 3935                   0                              NA
## 3936                   0                              NA
## 3937                   0                              NA
## 3938                   0                              NA
## 3939                   0                              NA
## 3940                   0                              NA
## 3941                   0                              NA
## 3942                   0                              NA
## 3943                   0                              NA
## 3944                   0                              NA
## 3945                   0                              NA
## 3946                   0                              NA
## 3947                   0                              NA
## 3948                   0                              NA
## 3949                   0                              NA
## 3950                   0                              NA
## 3951                   0                              NA
## 3952                   0                              NA
## 3953                   0                              NA
## 3954                   0                              NA
## 3955                   0                              NA
## 3956                   0                              NA
## 3957                   0                              NA
## 3958                   0                              NA
## 3959                   0                              NA
## 3960                   0                              NA
## 3961                   0                              NA
## 3962                   0                              NA
## 3963                   0                              NA
## 3964                   0                              NA
## 3965                   0                              NA
## 3966                   0                              NA
## 3967                   0                              NA
## 3968                   0                              NA
## 3969                   0                              NA
## 3970                   0                              NA
## 3971                   0                              NA
## 3972                   0                              NA
## 3973                   0                              NA
## 3974                   0                              NA
## 3975                   0                              NA
## 3976                   0                              NA
## 3977                   0                              NA
## 3978                   0                              NA
## 3979                   0                              NA
## 3980                   0                              NA
## 3981                   0                              NA
## 3982                   0                              NA
## 3983                   0                              NA
## 3984                   0                              NA
## 3985                   0                              NA
## 3986                   0                              NA
## 3987                   0                              NA
## 3988                   0                              NA
## 3989                   0                              NA
## 3990                   0                              NA
## 3991                   0                              NA
## 3992                   0                              NA
## 3993                   0                              NA
## 3994                   0                              NA
## 3995                   0                              NA
## 3996                   0                              NA
## 3997                   0                              NA
## 3998                   0                              NA
## 3999                   0                              NA
## 4000                   0                              NA
## 4001                   0                              NA
## 4002                   0                              NA
## 4003                   0                              NA
## 4004                   0                              NA
## 4005                   0                              NA
## 4006                   0                              NA
## 4007                   0                              NA
## 4008                   0                              NA
## 4009                   0                              NA
## 4010                   0                              NA
## 4011                   0                              NA
## 4012                   0                              NA
## 4013                   0                              NA
## 4014                   0                              NA
## 4015                   0                              NA
## 4016                   0                              NA
## 4017                   0                              NA
## 4018                   0                              NA
## 4019                   0                              NA
## 4020                   0                              NA
## 4021                   0                              NA
## 4022                   0                              NA
## 4023                   0                              NA
## 4024                   0                              NA
## 4025                   0                              NA
## 4026                   0                              NA
## 4027                   0                              NA
## 4028                   0                              NA
## 4029                   0                              NA
## 4030                   0                              NA
## 4031                   0                              NA
## 4032                   *                              NA
## 4033                   0                              NA
## 4034                   0                              NA
## 4035                   0                              NA
## 4036                   0                              NA
## 4037                   0                              NA
## 4038                   0                              NA
## 4039                   0                              NA
## 4040                   0                              NA
## 4041                   0                              NA
## 4042                   0                              NA
## 4043                   0                              NA
## 4044                   0                              NA
## 4045                   0                              NA
## 4046                  12                              NA
## 4047                  53                              NA
## 4048                   0                              NA
## 4049                   *                              NA
## 4050                   0                              NA
## 4051                   0                              NA
## 4052                   0                              NA
## 4053                   0                              NA
## 4054                   0                              NA
## 4055                   0                              NA
## 4056                   0                              NA
## 4057                   0                              NA
## 4058                   0                              NA
## 4059                   0                              NA
## 4060                   0                              NA
## 4061                   0                              NA
## 4062                   0                              NA
## 4063                   0                              NA
## 4064                   0                              NA
## 4065                   0                              NA
## 4066                   0                              NA
## 4067                   0                              NA
## 4068                   0                              NA
## 4069                   0                              NA
## 4070                   0                              NA
## 4071                   0                              NA
## 4072                   0                              NA
## 4073                   0                              NA
## 4074                   0                              NA
## 4075                   0                              NA
## 4076                   0                              NA
## 4077                   0                              NA
## 4078                   0                              NA
## 4079                   0                              NA
## 4080                   0                              NA
## 4081                   0                              NA
## 4082                   0                              NA
## 4083                   0                              NA
## 4084                   0                              NA
## 4085                   0                              NA
## 4086                   0                              NA
## 4087                   0                              NA
## 4088                   0                              NA
## 4089                   0                              NA
## 4090                   0                              NA
## 4091                   0                              NA
## 4092                   0                              NA
## 4093                   0                              NA
## 4094                   0                              NA
## 4095                   0                              NA
## 4096                   0                              NA
## 4097                   0                              NA
## 4098                   0                              NA
## 4099                   0                              NA
## 4100                   0                              NA
## 4101                 637                              NA
## 4102                   0                              NA
## 4103                   0                              NA
## 4104                   0                              NA
## 4105                   *                              NA
## 4106                   0                              NA
## 4107                   0                              NA
## 4108                   0                              NA
## 4109                   0                              NA
## 4110                   0                              NA
## 4111                   0                              NA
## 4112                   0                              NA
## 4113                   0                              NA
## 4114                   0                              NA
## 4115                   0                              NA
## 4116                   0                              NA
## 4117                   0                              NA
## 4118                   0                              NA
## 4119                 141                              NA
## 4120                  98                              NA
## 4121                  28                              NA
## 4122                  12                              NA
## 4123                   0                              NA
## 4124                   6                              NA
## 4125                 336                              NA
## 4126                   *                              NA
## 4127                  57                              NA
## 4128                  85                              NA
## 4129                  26                              NA
## 4130                 123                              NA
## 4131                   *                              NA
## 4132                   0                              NA
## 4133                   0                              NA
## 4134                   0                              NA
## 4135                   0                              NA
## 4136                   0                              NA
## 4137                   0                              NA
## 4138                   *                              NA
## 4139                  35                              NA
## 4140                   0                              NA
## 4141                   0                              NA
## 4142                   0                              NA
## 4143                   0                              NA
## 4144                 207                              NA
## 4145                 154                              NA
## 4146                 235                              NA
## 4147                 124                              NA
## 4148                 150                              NA
## 4149                  56                              NA
## 4150                  16                              NA
## 4151                   0                              NA
## 4152                   0                              NA
## 4153                   0                              NA
## 4154                   0                              NA
## 4155                   0                              NA
## 4156                   0                              NA
## 4157                   0                              NA
## 4158                   0                              NA
## 4159                   0                              NA
## 4160                   0                              NA
## 4161                   0                              NA
## 4162                  24                              NA
## 4163                   0                              NA
## 4164                   0                              NA
## 4165                   0                              NA
## 4166                   0                              NA
## 4167                   0                              NA
## 4168                   0                              NA
## 4169                   0                              NA
## 4170                 107                              NA
## 4171                  22                              NA
## 4172                  74                              NA
## 4173                  41                              NA
## 4174                  51                              NA
## 4175                  30                              NA
## 4176                  90                              NA
## 4177                 121                              NA
## 4178                 214                              NA
## 4179                  26                              NA
## 4180                   0                              NA
## 4181                   0                              NA
## 4182                   0                              NA
## 4183                   0                              NA
## 4184                   0                              NA
## 4185                   0                              NA
## 4186                   0                              NA
## 4187                   0                              NA
## 4188                   0                              NA
## 4189                   0                              NA
## 4190                   0                              NA
## 4191                   0                              NA
## 4192                   0                              NA
## 4193                   0                              NA
## 4194                  14                              NA
## 4195                   *                              NA
## 4196                  39                              NA
## 4197                   *                              NA
## 4198                 172                              NA
## 4199                   0                              NA
## 4200                   0                              NA
## 4201                   0                              NA
## 4202                   0                              NA
## 4203                 240                              NA
## 4204                 274                              NA
## 4205                 352                              NA
## 4206                 158                              NA
## 4207                  25                              NA
## 4208                   0                              NA
## 4209                   0                              NA
## 4210                   0                              NA
## 4211                   0                              NA
## 4212                   0                              NA
## 4213                   *                              NA
## 4214                  81                              NA
## 4215                   *                              NA
## 4216                   0                              NA
## 4217                 131                              NA
## 4218                  46                              NA
## 4219                  11                              NA
## 4220                   6                              NA
## 4221                  13                              NA
## 4222                   *                              NA
## 4223                   *                              NA
## 4224                   0                              NA
## 4225                   0                              NA
## 4226                   0                              NA
## 4227                   0                              NA
## 4228                   0                              NA
## 4229                   0                              NA
## 4230                   0                              NA
## 4231                   0                              NA
## 4232                   0                              NA
## 4233                   0                              NA
## 4234                   0                              NA
## 4235                   0                              NA
## 4236                   0                              NA
## 4237                   0                              NA
## 4238                   0                              NA
## 4239                 886                              NA
## 4240                  83                              NA
## 4241                  96                              NA
## 4242                  14                              NA
## 4243                   *                              NA
## 4244                  58                              NA
## 4245                  16                              NA
## 4246                  10                              NA
## 4247                   *                              NA
## 4248                   0                              NA
## 4249                   *                              NA
## 4250                   *                              NA
## 4251                  27                              NA
## 4252                  16                              NA
## 4253                   0                              NA
## 4254                   0                              NA
## 4255                   0                              NA
## 4256                   0                              NA
## 4257                   0                              NA
## 4258                   0                              NA
## 4259                   0                              NA
## 4260                   0                              NA
## 4261                   0                              NA
## 4262                  18                              NA
## 4263                  32                              NA
## 4264                   *                              NA
## 4265                   0                              NA
## 4266                   0                              NA
## 4267                   0                              NA
## 4268                   0                              NA
## 4269                   0                              NA
## 4270                   6                              NA
## 4271                   0                              NA
## 4272                   0                              NA
## 4273                   0                              NA
## 4274                   0                              NA
## 4275                   0                              NA
## 4276                   0                              NA
## 4277                   *                              NA
## 4278                   0                              NA
## 4279                   0                              NA
## 4280                   0                              NA
## 4281                   *                              NA
## 4282                   *                              NA
## 4283                   *                              NA
## 4284                   0                              NA
## 4285                   *                              NA
## 4286                   0                              NA
## 4287                   *                              NA
## 4288                   0                              NA
## 4289                   0                              NA
## 4290                   0                              NA
## 4291                   0                              NA
## 4292                   0                              NA
## 4293                   0                              NA
## 4294                   0                              NA
## 4295                   0                              NA
## 4296                   0                              NA
## 4297                   0                              NA
## 4298                   0                              NA
## 4299                   0                              NA
## 4300                   *                              NA
## 4301                   0                              NA
## 4302                   0                              NA
## 4303                   0                              NA
## 4304                   0                              NA
## 4305                   0                              NA
## 4306                   0                              NA
## 4307                   0                              NA
## 4308                   0                              NA
## 4309                   0                              NA
## 4310                   0                              NA
## 4311                   0                              NA
## 4312                   *                              NA
## 4313                   0                              NA
## 4314                   0                              NA
## 4315                   0                              NA
## 4316                   0                              NA
## 4317                   0                              NA
## 4318                   0                              NA
## 4319                   0                              NA
## 4320                   *                              NA
## 4321                   *                              NA
## 4322                   6                              NA
## 4323                  54                              NA
## 4324                  26                              NA
## 4325                   *                              NA
## 4326                   *                              NA
## 4327                   0                              NA
## 4328                   *                              NA
## 4329                   0                              NA
## 4330                   0                              NA
## 4331                   0                              NA
## 4332                   0                              NA
## 4333                   0                              NA
## 4334                   0                              NA
## 4335                   0                              NA
## 4336                   0                              NA
## 4337                   0                              NA
## 4338                   0                              NA
## 4339                   0                              NA
## 4340                   0                              NA
## 4341                   0                              NA
## 4342                   0                              NA
## 4343                   0                              NA
## 4344                   0                              NA
## 4345                   0                              NA
## 4346                   0                              NA
## 4347                   0                              NA
## 4348                   0                              NA
## 4349                   0                              NA
## 4350                   0                              NA
## 4351                   0                              NA
## 4352                   0                              NA
## 4353                   0                              NA
## 4354                   0                              NA
## 4355                   0                              NA
## 4356                   0                              NA
## 4357                   0                              NA
## 4358                   0                              NA
## 4359                   0                              NA
## 4360                   0                              NA
## 4361                   0                              NA
## 4362                   0                              NA
## 4363                   0                              NA
## 4364                   0                              NA
## 4365                   0                              NA
## 4366                   0                              NA
## 4367                   0                              NA
## 4368                   0                              NA
## 4369                   0                              NA
## 4370                   0                              NA
## 4371                   0                              NA
## 4372                   0                              NA
## 4373                   0                              NA
## 4374                   0                              NA
## 4375                   0                              NA
## 4376                   0                              NA
## 4377                   0                              NA
## 4378                   0                              NA
## 4379                   0                              NA
## 4380                   0                              NA
## 4381                   0                              NA
## 4382                   0                              NA
## 4383                   0                              NA
## 4384                   0                              NA
## 4385                   0                              NA
## 4386                   0                              NA
## 4387                   0                              NA
## 4388                   0                              NA
## 4389                   0                              NA
## 4390                   0                              NA
## 4391                   0                              NA
## 4392                   0                              NA
## 4393                   0                              NA
## 4394                   0                              NA
## 4395                   0                              NA
## 4396                   0                              NA
## 4397                   0                              NA
## 4398                   0                              NA
## 4399                   0                              NA
## 4400                   0                              NA
## 4401                   0                              NA
## 4402                   0                              NA
## 4403                   0                              NA
## 4404                   0                              NA
## 4405                   0                              NA
## 4406                   0                              NA
## 4407                   0                              NA
## 4408                   0                              NA
## 4409                   0                              NA
## 4410                   0                              NA
## 4411                   0                              NA
## 4412                   0                              NA
## 4413                   0                              NA
## 4414                   0                              NA
## 4415                   0                              NA
## 4416                   0                              NA
## 4417                   0                              NA
## 4418                   0                              NA
## 4419                   0                              NA
## 4420                   0                              NA
## 4421                   0                              NA
## 4422                   0                              NA
## 4423                   0                              NA
## 4424                   0                              NA
## 4425                   0                              NA
## 4426                   0                              NA
## 4427                   0                              NA
## 4428                   0                              NA
## 4429                   0                              NA
## 4430                   0                              NA
## 4431                   0                              NA
## 4432                   0                              NA
## 4433                   0                              NA
## 4434                   0                              NA
## 4435                   0                              NA
## 4436                   0                              NA
## 4437                   0                              NA
## 4438                   0                              NA
## 4439                   0                              NA
## 4440                   0                              NA
## 4441                   0                              NA
## 4442                   0                              NA
## 4443                   0                              NA
## 4444                   0                              NA
## 4445                   0                              NA
## 4446                  57                              NA
## 4447                  52                              NA
## 4448                   0                              NA
## 4449                   9                              NA
## 4450                   *                              NA
## 4451                   0                              NA
## 4452                   0                              NA
## 4453                   *                              NA
## 4454                  10                              NA
## 4455                   5                              NA
## 4456                  17                              NA
## 4457                   *                              NA
## 4458                 104                              NA
## 4459                   0                              NA
## 4460                   0                              NA
## 4461                   0                              NA
## 4462                   0                              NA
## 4463                   0                              NA
## 4464                   0                              NA
## 4465                   0                              NA
## 4466                   0                              NA
## 4467                   0                              NA
## 4468                   0                              NA
## 4469                   0                              NA
## 4470                   0                              NA
## 4471                   0                              NA
## 4472                   0                              NA
## 4473                   0                              NA
## 4474                   0                              NA
## 4475                   0                              NA
## 4476                   0                              NA
## 4477                   0                              NA
## 4478                   0                              NA
## 4479                   0                              NA
## 4480                   0                              NA
## 4481                   0                              NA
## 4482                   0                              NA
## 4483                   0                              NA
## 4484                   0                              NA
## 4485                   0                              NA
## 4486                   0                              NA
## 4487                   0                              NA
## 4488                   0                              NA
## 4489                   0                              NA
## 4490                   0                              NA
## 4491                   0                              NA
## 4492                   0                              NA
## 4493                   0                              NA
## 4494                   0                              NA
## 4495                   0                              NA
## 4496                   0                              NA
## 4497                   0                              NA
## 4498                   0                              NA
## 4499                   0                              NA
## 4500                   0                              NA
## 4501                   0                              NA
## 4502                   0                              NA
## 4503                   0                              NA
## 4504                   0                              NA
## 4505                   0                              NA
## 4506                   0                              NA
## 4507                   0                              NA
## 4508                   0                              NA
## 4509                   0                              NA
## 4510                   0                              NA
## 4511                   0                              NA
## 4512                   0                              NA
## 4513                   0                              NA
## 4514                   0                              NA
## 4515                   0                              NA
## 4516                   0                              NA
## 4517                   0                              NA
## 4518                   0                              NA
## 4519                   0                              NA
## 4520                   0                              NA
## 4521                   0                              NA
## 4522                   0                              NA
## 4523                   0                              NA
## 4524                   0                              NA
## 4525                   0                              NA
## 4526                   0                              NA
## 4527                   0                              NA
## 4528                   0                              NA
## 4529                   0                              NA
## 4530                   0                              NA
## 4531                   0                              NA
## 4532                   0                              NA
## 4533                   0                              NA
## 4534                   0                              NA
## 4535                   0                              NA
## 4536                   0                              NA
## 4537                   0                              NA
## 4538                   0                              NA
## 4539                   0                              NA
## 4540                   0                              NA
## 4541                   0                              NA
## 4542                   9                              NA
## 4543                  26                              NA
## 4544                   7                              NA
## 4545                   0                              NA
## 4546                   0                              NA
## 4547                   0                              NA
## 4548                   0                              NA
## 4549                   0                              NA
## 4550                   0                              NA
## 4551                   0                              NA
## 4552                   0                              NA
## 4553                   0                              NA
## 4554                   0                              NA
## 4555                   0                              NA
## 4556                   0                              NA
## 4557                   0                              NA
## 4558                   0                              NA
## 4559                   0                              NA
## 4560                   0                              NA
## 4561                   0                              NA
## 4562                   0                              NA
## 4563                   *                              NA
## 4564                   0                              NA
## 4565                   0                              NA
## 4566                   0                              NA
## 4567                   0                              NA
## 4568                   0                              NA
## 4569                   0                              NA
## 4570                   0                              NA
## 4571                   0                              NA
## 4572                   0                              NA
## 4573                   0                              NA
## 4574                   0                              NA
## 4575                   0                              NA
## 4576                   0                              NA
## 4577                   0                              NA
## 4578                   0                              NA
## 4579                   0                              NA
## 4580                   0                              NA
## 4581                   0                              NA
## 4582                   0                              NA
## 4583                   0                              NA
## 4584                   0                              NA
## 4585                   0                              NA
## 4586                   0                              NA
## 4587                   0                              NA
## 4588                   0                              NA
## 4589                   0                              NA
## 4590                   0                              NA
## 4591                   0                              NA
## 4592                   0                              NA
## 4593                   0                              NA
## 4594                   0                              NA
## 4595                   0                              NA
## 4596                   0                              NA
## 4597                   0                              NA
## 4598                   0                              NA
## 4599                   0                              NA
## 4600                   0                              NA
## 4601                   0                              NA
## 4602                   0                              NA
## 4603                   0                              NA
## 4604                   0                              NA
## 4605                   *                              NA
## 4606                   0                              NA
## 4607                   *                              NA
## 4608                   0                              NA
## 4609                   0                              NA
## 4610                   *                              NA
## 4611                   *                              NA
## 4612                   0                              NA
## 4613                   0                              NA
## 4614                   0                              NA
## 4615                   0                              NA
## 4616                   0                              NA
## 4617                   0                              NA
## 4618                   0                              NA
## 4619                   0                              NA
## 4620                   0                              NA
## 4621                   0                              NA
## 4622                   0                              NA
## 4623                  58                              NA
## 4624                   0                              NA
## 4625                   0                              NA
## 4626                   0                              NA
## 4627                   *                              NA
## 4628                   0                              NA
## 4629                  23                              NA
## 4630                   0                              NA
## 4631                   0                              NA
## 4632                   0                              NA
## 4633                  14                              NA
## 4634                   8                              NA
## 4635                   0                              NA
## 4636                   0                              NA
## 4637                   0                              NA
## 4638                   0                              NA
## 4639                   0                              NA
## 4640                   0                              NA
## 4641                   0                              NA
## 4642                   0                              NA
## 4643                   0                              NA
## 4644                   *                              NA
## 4645                   0                              NA
## 4646                   0                              NA
## 4647                   *                              NA
## 4648                   *                              NA
## 4649                   *                              NA
## 4650                   *                              NA
## 4651                   0                              NA
## 4652                   0                              NA
## 4653                   0                              NA
## 4654                   0                              NA
## 4655                   0                              NA
## 4656                   0                              NA
## 4657                   *                              NA
## 4658                   0                              NA
## 4659                   0                              NA
## 4660                   0                              NA
## 4661                   *                              NA
## 4662                   0                              NA
## 4663                   0                              NA
## 4664                   0                              NA
## 4665                   0                              NA
## 4666                   0                              NA
## 4667                   0                              NA
## 4668                   0                              NA
## 4669                   0                              NA
## 4670                   0                              NA
## 4671                   0                              NA
## 4672                   0                              NA
## 4673                   0                              NA
## 4674                   0                              NA
## 4675                   *                              NA
## 4676                   0                              NA
## 4677                   0                              NA
## 4678                   0                              NA
## 4679                   0                              NA
## 4680                   0                              NA
## 4681                   0                              NA
## 4682                   0                              NA
## 4683                   0                              NA
## 4684                   0                              NA
## 4685                   0                              NA
## 4686                   0                              NA
## 4687                   0                              NA
## 4688                   0                              NA
## 4689                   0                              NA
## 4690                   0                              NA
## 4691                   0                              NA
## 4692                   0                              NA
## 4693                   0                              NA
## 4694                   0                              NA
## 4695                   0                              NA
## 4696                   0                              NA
## 4697                   0                              NA
## 4698                   0                              NA
## 4699                   0                              NA
## 4700                   0                              NA
## 4701                   0                              NA
## 4702                   0                              NA
## 4703                   0                              NA
## 4704                   0                              NA
## 4705                   0                              NA
## 4706                   0                              NA
## 4707                   *                              NA
## 4708                 142                              NA
## 4709                 123                              NA
## 4710                   0                              NA
## 4711                   0                              NA
## 4712                   0                              NA
## 4713                   0                              NA
## 4714                   0                              NA
## 4715                   *                              NA
## 4716                   7                              NA
## 4717                   0                              NA
## 4718                   0                              NA
## 4719                   0                              NA
## 4720                   0                              NA
## 4721                   0                              NA
## 4722                   *                              NA
## 4723                   0                              NA
## 4724                   0                              NA
## 4725                   0                              NA
## 4726                   0                              NA
## 4727                   0                              NA
## 4728                   0                              NA
## 4729                   0                              NA
## 4730                   0                              NA
## 4731                   *                              NA
## 4732                   *                              NA
## 4733                   *                              NA
## 4734                   *                              NA
## 4735                   *                              NA
## 4736                   *                              NA
## 4737                   *                              NA
## 4738                   0                              NA
## 4739                  72                              NA
## 4740                 127                              NA
## 4741                   0                              NA
## 4742                   0                              NA
## 4743                   0                              NA
## 4744                   0                              NA
## 4745                   0                              NA
## 4746                   0                              NA
## 4747                   0                              NA
## 4748                   0                              NA
## 4749                   0                              NA
## 4750                   0                              NA
## 4751                   0                              NA
## 4752                   0                              NA
## 4753                   0                              NA
## 4754                   0                              NA
## 4755                   0                              NA
## 4756                   0                              NA
## 4757                   0                              NA
## 4758                   0                              NA
## 4759                   0                              NA
## 4760                   0                              NA
## 4761                   0                              NA
## 4762                   0                              NA
## 4763                   0                              NA
## 4764                   0                              NA
## 4765                   0                              NA
## 4766                   0                              NA
## 4767                   0                              NA
## 4768                   0                              NA
## 4769                   0                              NA
## 4770                   0                              NA
## 4771                   0                              NA
## 4772                   0                              NA
## 4773                   0                              NA
## 4774                   0                              NA
## 4775                   0                              NA
## 4776                   0                              NA
## 4777                   0                              NA
## 4778                   0                              NA
## 4779                   0                              NA
## 4780                   0                              NA
## 4781                   0                              NA
## 4782                   0                              NA
## 4783                   0                              NA
## 4784                   0                              NA
## 4785                   0                              NA
## 4786                   0                              NA
## 4787                   0                              NA
## 4788                   0                              NA
## 4789                   0                              NA
## 4790                   0                              NA
## 4791                   0                              NA
## 4792                   0                              NA
## 4793                   0                              NA
## 4794                   0                              NA
## 4795                   0                              NA
## 4796                   0                              NA
## 4797                   0                              NA
## 4798                   0                              NA
## 4799                   0                              NA
## 4800                   0                              NA
## 4801                   0                              NA
## 4802                   0                              NA
## 4803                   0                              NA
## 4804                   0                              NA
## 4805                   0                              NA
## 4806                   0                              NA
## 4807                   0                              NA
## 4808                   0                              NA
## 4809                   0                              NA
## 4810                   0                              NA
## 4811                   0                              NA
## 4812                   0                              NA
## 4813                   0                              NA
## 4814                   0                              NA
## 4815                   0                              NA
## 4816                   0                              NA
## 4817                   0                              NA
## 4818                   0                              NA
## 4819                 107                              NA
## 4820                   *                              NA
## 4821                  17                              NA
## 4822                  84                              NA
## 4823                   0                              NA
## 4824                   0                              NA
## 4825                   *                              NA
## 4826                   0                              NA
## 4827                   0                              NA
## 4828                   0                              NA
## 4829                   0                              NA
## 4830                   0                              NA
## 4831                   0                              NA
## 4832                   0                              NA
## 4833                   0                              NA
## 4834                 154                              NA
## 4835                 153                              NA
## 4836                 100                              NA
## 4837                   0                              NA
## 4838                   0                              NA
## 4839                   0                              NA
## 4840                   0                              NA
## 4841                   6                              NA
## 4842                   *                              NA
## 4843                   *                              NA
## 4844                   0                              NA
## 4845                   *                              NA
## 4846                   *                              NA
## 4847                   0                              NA
## 4848                   0                              NA
## 4849                   0                              NA
## 4850                   0                              NA
## 4851                   0                              NA
## 4852                   0                              NA
## 4853                   0                              NA
## 4854                   0                              NA
## 4855                   0                              NA
## 4856                   0                              NA
## 4857                   7                              NA
## 4858                   0                              NA
## 4859                   7                              NA
## 4860                   7                              NA
## 4861                   0                              NA
## 4862                   0                              NA
## 4863                   0                              NA
## 4864                   0                              NA
## 4865                   *                              NA
## 4866                   0                              NA
## 4867                   0                              NA
## 4868                 224                              NA
## 4869                   0                              NA
## 4870                   0                              NA
## 4871                  21                              NA
## 4872                   0                              NA
## 4873                   0                              NA
## 4874                   0                              NA
## 4875                   0                              NA
## 4876                   0                              NA
## 4877                   0                              NA
## 4878                   0                              NA
## 4879                   0                              NA
## 4880                   0                              NA
## 4881                   0                              NA
## 4882                   0                              NA
## 4883                   0                              NA
## 4884                   0                              NA
## 4885                   0                              NA
## 4886                   0                              NA
## 4887                  38                              NA
## 4888                   *                              NA
## 4889                   *                              NA
## 4890                   0                              NA
## 4891                   0                              NA
## 4892                   0                              NA
## 4893                   0                              NA
## 4894                   0                              NA
## 4895                   9                              NA
## 4896                  13                              NA
## 4897                   0                              NA
## 4898                   *                              NA
## 4899                   0                              NA
## 4900                   0                              NA
## 4901                   0                              NA
## 4902                   0                              NA
## 4903                   0                              NA
## 4904                   0                              NA
## 4905                   0                              NA
## 4906                   0                              NA
## 4907                   0                              NA
## 4908                   0                              NA
## 4909                   0                              NA
## 4910                   0                              NA
## 4911                   0                              NA
## 4912                   0                              NA
## 4913                   0                              NA
## 4914                   0                              NA
## 4915                   *                              NA
## 4916                   *                              NA
## 4917                   *                              NA
## 4918                   0                              NA
## 4919                   *                              NA
## 4920                   0                              NA
## 4921                   0                              NA
## 4922                   *                              NA
## 4923                   0                              NA
## 4924                   0                              NA
## 4925                   0                              NA
## 4926                   *                              NA
## 4927                   0                              NA
## 4928                   0                              NA
## 4929                   0                              NA
## 4930                   0                              NA
## 4931                   0                              NA
## 4932                   0                              NA
## 4933                   0                              NA
## 4934                   0                              NA
## 4935                   0                              NA
## 4936                   0                              NA
## 4937                   0                              NA
## 4938                   0                              NA
## 4939                   0                              NA
## 4940                   0                              NA
## 4941                   0                              NA
## 4942                  56                              NA
## 4943                   *                              NA
## 4944                   9                              NA
## 4945                   *                              NA
## 4946                   0                              NA
## 4947                   0                              NA
## 4948                   0                              NA
## 4949                   0                              NA
## 4950                   0                              NA
## 4951                   0                              NA
## 4952                   0                              NA
## 4953                   0                              NA
## 4954                   0                              NA
## 4955                   0                              NA
## 4956                   0                              NA
## 4957                   0                              NA
## 4958                   0                              NA
## 4959                   *                              NA
## 4960                   *                              NA
## 4961                   0                              NA
## 4962                   0                              NA
## 4963                   *                              NA
## 4964                   *                              NA
## 4965                   6                              NA
## 4966                   *                              NA
## 4967                  33                              NA
## 4968                   0                              NA
## 4969                  13                              NA
## 4970                   0                              NA
## 4971                   0                              NA
## 4972                   0                              NA
## 4973                   0                              NA
## 4974                   0                              NA
## 4975                   0                              NA
## 4976                   *                              NA
## 4977                   *                              NA
## 4978                   *                              NA
## 4979                   *                              NA
## 4980                   0                              NA
## 4981                   *                              NA
## 4982                   7                              NA
## 4983                   0                              NA
## 4984                   7                              NA
## 4985                   0                              NA
## 4986                   0                              NA
## 4987                   0                              NA
## 4988                   0                              NA
## 4989                   0                              NA
## 4990                   0                              NA
## 4991                   0                              NA
## 4992                   0                              NA
## 4993                   0                              NA
## 4994                   0                              NA
## 4995                   0                              NA
## 4996                   0                              NA
## 4997                   0                              NA
## 4998                   0                              NA
## 4999                   0                              NA
## 5000                   0                              NA
## 5001                   0                              NA
## 5002                   0                              NA
## 5003                   0                              NA
## 5004                   0                              NA
## 5005                   0                              NA
## 5006                   0                              NA
## 5007                   0                              NA
## 5008                   0                              NA
## 5009                   0                              NA
## 5010                   0                              NA
## 5011                   0                              NA
## 5012                   0                              NA
## 5013                   0                              NA
## 5014                   0                              NA
## 5015                   0                              NA
## 5016                   0                              NA
## 5017                   0                              NA
## 5018                   0                              NA
## 5019                   0                              NA
## 5020                   0                              NA
## 5021                   0                              NA
## 5022                   0                              NA
## 5023                   0                              NA
## 5024                   0                              NA
## 5025                   0                              NA
## 5026                   0                              NA
## 5027                   0                              NA
## 5028                   0                              NA
## 5029                   0                              NA
## 5030                   0                              NA
## 5031                   0                              NA
## 5032                   0                              NA
## 5033                   9                              NA
## 5034                  22                              NA
## 5035                   5                              NA
## 5036                  16                              NA
## 5037                   *                              NA
## 5038                   9                              NA
## 5039                   9                              NA
## 5040                   0                              NA
## 5041                   0                              NA
## 5042                   *                              NA
## 5043                   0                              NA
## 5044                   0                              NA
## 5045                   0                              NA
## 5046                   0                              NA
## 5047                   0                              NA
## 5048                   0                              NA
## 5049                  32                              NA
## 5050                   8                              NA
## 5051                  45                              NA
## 5052                   0                              NA
## 5053                   0                              NA
## 5054                   0                              NA
## 5055                   0                              NA
## 5056                   0                              NA
## 5057                   *                              NA
## 5058                   0                              NA
## 5059                   0                              NA
## 5060                   0                              NA
## 5061                   0                              NA
## 5062                   0                              NA
## 5063                   *                              NA
## 5064                   0                              NA
## 5065                   0                              NA
## 5066                   0                              NA
## 5067                   0                              NA
## 5068                   0                              NA
## 5069                   0                              NA
## 5070                   6                              NA
## 5071                   0                              NA
## 5072                   0                              NA
## 5073                   0                              NA
## 5074                   0                              NA
## 5075                  16                              NA
## 5076                   0                              NA
## 5077                   0                              NA
## 5078                  13                              NA
## 5079                  21                              NA
## 5080                   0                              NA
## 5081                   0                              NA
## 5082                  16                              NA
## 5083                   0                              NA
## 5084                   0                              NA
## 5085                   0                              NA
## 5086                   0                              NA
## 5087                   0                              NA
## 5088                   0                              NA
## 5089                   0                              NA
## 5090                   0                              NA
## 5091                   0                              NA
## 5092                   0                              NA
## 5093                   0                              NA
## 5094                   0                              NA
## 5095                   0                              NA
## 5096                   0                              NA
## 5097                   0                              NA
## 5098                   0                              NA
## 5099                   0                              NA
## 5100                   0                              NA
## 5101                   0                              NA
## 5102                   0                              NA
## 5103                   *                              NA
## 5104                   0                              NA
## 5105                   *                              NA
## 5106                   0                              NA
## 5107                   *                              NA
## 5108                   0                              NA
## 5109                   0                              NA
## 5110                   0                              NA
## 5111                   0                              NA
## 5112                   0                              NA
## 5113                   0                              NA
## 5114                   0                              NA
## 5115                   0                              NA
## 5116                  14                              NA
## 5117                  14                              NA
## 5118                   *                              NA
## 5119                  48                              NA
## 5120                  11                              NA
## 5121                 116                              NA
## 5122                   0                              NA
## 5123                  20                              NA
## 5124                  95                              NA
## 5125                 240                              NA
## 5126                   0                              NA
## 5127                   0                              NA
## 5128                   0                              NA
## 5129                  11                              NA
## 5130                   0                              NA
## 5131                   0                              NA
## 5132                   0                              NA
## 5133                   0                              NA
## 5134                   0                              NA
## 5135                   0                              NA
## 5136                   0                              NA
## 5137                   0                              NA
## 5138                   0                              NA
## 5139                   0                              NA
## 5140                   0                              NA
## 5141                   0                              NA
## 5142                   0                              NA
## 5143                   0                              NA
## 5144                   0                              NA
## 5145                   0                              NA
## 5146                   0                              NA
## 5147                   0                              NA
## 5148                   0                              NA
## 5149                   0                              NA
## 5150                   0                              NA
## 5151                   0                              NA
## 5152                   0                              NA
## 5153                   0                              NA
## 5154                   0                              NA
## 5155                   0                              NA
## 5156                   5                              NA
## 5157                   0                              NA
## 5158                   0                              NA
## 5159                   0                              NA
## 5160                   0                              NA
## 5161                   0                              NA
## 5162                   0                              NA
## 5163                   0                              NA
## 5164                   0                              NA
## 5165                   0                              NA
## 5166                   0                              NA
## 5167                   0                              NA
## 5168                   0                              NA
## 5169                   0                              NA
## 5170                   0                              NA
## 5171                   0                              NA
## 5172                   0                              NA
## 5173                   0                              NA
## 5174                   0                              NA
## 5175                   0                              NA
## 5176                   0                              NA
## 5177                   0                              NA
## 5178                   0                              NA
## 5179                   0                              NA
## 5180                   0                              NA
## 5181                   0                              NA
## 5182                   0                              NA
## 5183                   0                              NA
## 5184                   0                              NA
## 5185                   0                              NA
## 5186                   0                              NA
## 5187                   0                              NA
## 5188                   0                              NA
## 5189                   0                              NA
## 5190                   0                              NA
## 5191                   0                              NA
## 5192                   0                              NA
## 5193                   0                              NA
## 5194                  12                              NA
## 5195                   0                              NA
## 5196                   0                              NA
## 5197                   0                              NA
## 5198                   0                              NA
## 5199                   0                              NA
## 5200                   0                              NA
## 5201                   0                              NA
## 5202                   0                              NA
## 5203                   0                              NA
## 5204                   0                              NA
## 5205                   0                              NA
## 5206                   0                              NA
## 5207                   0                              NA
## 5208                   0                              NA
## 5209                   0                              NA
## 5210                   0                              NA
## 5211                   0                              NA
## 5212                   0                              NA
## 5213                   0                              NA
## 5214                 134                              NA
## 5215                   0                              NA
## 5216                   0                              NA
## 5217                   0                              NA
## 5218                   6                              NA
## 5219                   0                              NA
## 5220                   0                              NA
## 5221                   0                              NA
## 5222                   0                              NA
## 5223                   0                              NA
## 5224                   0                              NA
## 5225                   0                              NA
## 5226                   0                              NA
## 5227                   0                              NA
## 5228                   0                              NA
## 5229                   0                              NA
## 5230                   0                              NA
## 5231                   0                              NA
## 5232                   0                              NA
## 5233                   0                              NA
## 5234                   0                              NA
## 5235                   0                              NA
## 5236                   0                              NA
## 5237                   0                              NA
## 5238                   0                              NA
## 5239                   0                              NA
## 5240                   0                              NA
## 5241                   0                              NA
## 5242                   0                              NA
## 5243                   0                              NA
## 5244                   0                              NA
## 5245                   0                              NA
## 5246                   0                              NA
## 5247                   0                              NA
## 5248                   0                              NA
## 5249                   0                              NA
## 5250                   0                              NA
## 5251                   0                              NA
## 5252                   0                              NA
## 5253                   0                              NA
## 5254                   0                              NA
## 5255                   0                              NA
## 5256                   0                              NA
## 5257                   0                              NA
## 5258                   0                              NA
## 5259                   0                              NA
## 5260                   0                              NA
## 5261                   0                              NA
## 5262                   0                              NA
## 5263                   0                              NA
## 5264                   0                              NA
## 5265                   0                              NA
## 5266                   0                              NA
## 5267                   0                              NA
## 5268                   0                              NA
## 5269                   0                              NA
## 5270                   0                              NA
## 5271                   *                              NA
## 5272                   0                              NA
## 5273                   0                              NA
## 5274                   0                              NA
## 5275                   0                              NA
## 5276                   0                              NA
## 5277                   0                              NA
## 5278                   0                              NA
## 5279                   0                              NA
## 5280                   0                              NA
## 5281                   0                              NA
## 5282                   0                              NA
## 5283                   0                              NA
## 5284                   0                              NA
## 5285                   0                              NA
## 5286                   0                              NA
## 5287                   0                              NA
## 5288                   0                              NA
## 5289                   0                              NA
## 5290                   0                              NA
## 5291                   0                              NA
## 5292                   0                              NA
## 5293                   0                              NA
## 5294                   0                              NA
## 5295                   0                              NA
## 5296                   *                              NA
## 5297                   0                              NA
## 5298                   0                              NA
## 5299                   0                              NA
## 5300                   0                              NA
## 5301                   0                              NA
## 5302                   0                              NA
## 5303                  17                              NA
## 5304                  12                              NA
## 5305                   0                              NA
## 5306                   0                              NA
## 5307                   0                              NA
## 5308                   0                              NA
## 5309                   0                              NA
## 5310                  17                              NA
## 5311                   0                              NA
## 5312                   0                              NA
## 5313                   0                              NA
## 5314                   0                              NA
## 5315                   0                              NA
## 5316                   0                              NA
## 5317                   0                              NA
## 5318                   0                              NA
## 5319                   0                              NA
## 5320                   0                              NA
## 5321                   0                              NA
## 5322                   0                              NA
## 5323                   0                              NA
## 5324                   0                              NA
## 5325                   *                              NA
## 5326                   0                              NA
## 5327                   0                              NA
## 5328                   0                              NA
## 5329                   0                              NA
## 5330                   0                              NA
## 5331                   0                              NA
## 5332                   0                              NA
## 5333                   0                              NA
## 5334                   0                              NA
## 5335                   0                              NA
## 5336                   0                              NA
## 5337                   0                              NA
## 5338                   0                              NA
## 5339                   0                              NA
## 5340                   0                              NA
## 5341                   0                              NA
## 5342                   0                              NA
## 5343                   0                              NA
## 5344                   0                              NA
## 5345                   0                              NA
## 5346                   0                              NA
## 5347                   0                              NA
## 5348                   0                              NA
## 5349                   0                              NA
## 5350                   0                              NA
## 5351                   0                              NA
## 5352                   0                              NA
## 5353                   0                              NA
## 5354                   0                              NA
## 5355                   0                              NA
## 5356                   0                              NA
## 5357                   0                              NA
## 5358                   0                              NA
## 5359                   0                              NA
## 5360                   0                              NA
## 5361                   0                              NA
## 5362                   0                              NA
## 5363                   0                              NA
## 5364                   0                              NA
## 5365                   0                              NA
## 5366                   0                              NA
## 5367                   0                              NA
## 5368                   0                              NA
## 5369                   0                              NA
## 5370                   0                              NA
## 5371                   0                              NA
## 5372                   0                              NA
## 5373                   0                              NA
## 5374                   0                              NA
## 5375                   0                              NA
## 5376                   0                              NA
## 5377                   0                              NA
## 5378                   9                              NA
## 5379                   0                              NA
## 5380                  14                              NA
## 5381                   0                              NA
## 5382                   0                              NA
## 5383                   0                              NA
## 5384                   0                              NA
## 5385                   0                              NA
## 5386                   0                              NA
## 5387                   0                              NA
## 5388                   0                              NA
## 5389                   0                              NA
## 5390                   0                              NA
## 5391                   0                              NA
## 5392                   0                              NA
## 5393                   0                              NA
## 5394                   0                              NA
## 5395                   0                              NA
## 5396                   0                              NA
## 5397                   0                              NA
## 5398                   0                              NA
## 5399                   0                              NA
## 5400                   0                              NA
## 5401                   0                              NA
## 5402                   0                              NA
## 5403                   0                              NA
## 5404                   0                              NA
## 5405                   0                              NA
## 5406                   0                              NA
## 5407                   0                              NA
## 5408                   0                              NA
## 5409                   0                              NA
## 5410                   0                              NA
## 5411                   0                              NA
## 5412                   0                              NA
## 5413                   0                              NA
## 5414                   0                              NA
## 5415                   0                              NA
## 5416                   0                              NA
## 5417                   0                              NA
## 5418                   0                              NA
## 5419                   0                              NA
## 5420                   0                              NA
## 5421                   0                              NA
## 5422                   0                              NA
## 5423                   0                              NA
## 5424                   0                              NA
## 5425                   0                              NA
## 5426                   0                              NA
## 5427                   0                              NA
## 5428                   0                              NA
## 5429                   0                              NA
## 5430                   0                              NA
## 5431                   0                              NA
## 5432                   0                              NA
## 5433                   0                              NA
## 5434                   0                              NA
## 5435                   0                              NA
## 5436                   0                              NA
## 5437                   0                              NA
## 5438                   0                              NA
## 5439                   0                              NA
## 5440                   0                              NA
## 5441                   0                              NA
## 5442                   *                              NA
## 5443                   0                              NA
## 5444                   8                              NA
## 5445                   0                              NA
## 5446                   0                              NA
## 5447                   0                              NA
## 5448                   *                              NA
## 5449                  10                              NA
## 5450                   0                              NA
## 5451                   0                              NA
## 5452                   0                              NA
## 5453                   0                              NA
## 5454                   6                              NA
## 5455                   0                              NA
## 5456                   0                              NA
## 5457                   0                              NA
## 5458                   *                              NA
## 5459                   0                              NA
## 5460                   *                              NA
## 5461                   *                              NA
## 5462                  16                              NA
## 5463                   0                              NA
## 5464                   0                              NA
## 5465                   0                              NA
## 5466                   0                              NA
## 5467                   0                              NA
## 5468                   0                              NA
## 5469                   0                              NA
## 5470                   0                              NA
## 5471                   0                              NA
## 5472                   0                              NA
## 5473                   0                              NA
## 5474                   0                              NA
## 5475                   0                              NA
## 5476                   0                              NA
## 5477                   0                              NA
## 5478                   0                              NA
## 5479                   0                              NA
## 5480                   0                              NA
## 5481                   0                              NA
## 5482                   0                              NA
## 5483                   0                              NA
## 5484                   0                              NA
## 5485                   0                              NA
## 5486                   0                              NA
## 5487                   0                              NA
## 5488                   0                              NA
## 5489                  20                              NA
## 5490                   *                              NA
## 5491                   *                              NA
## 5492                   *                              NA
## 5493                   *                              NA
## 5494                   *                              NA
## 5495                   8                              NA
## 5496                   *                              NA
## 5497                   *                              NA
## 5498                   0                              NA
## 5499                   0                              NA
## 5500                   0                              NA
## 5501                   0                              NA
## 5502                   *                              NA
## 5503                   0                              NA
## 5504                   *                              NA
## 5505                   *                              NA
## 5506                   0                              NA
## 5507                   *                              NA
## 5508                   0                              NA
## 5509                   0                              NA
## 5510                   0                              NA
## 5511                   0                              NA
## 5512                   0                              NA
## 5513                   0                              NA
## 5514                   0                              NA
## 5515                   0                              NA
## 5516                  10                              NA
## 5517                  12                              NA
## 5518                   0                              NA
## 5519                   0                              NA
## 5520                   0                              NA
## 5521                   0                              NA
## 5522                   0                              NA
## 5523                   0                              NA
## 5524                   0                              NA
## 5525                   0                              NA
## 5526                   0                              NA
## 5527                   0                              NA
## 5528                   0                              NA
## 5529                   0                              NA
## 5530                   0                              NA
## 5531                   0                              NA
## 5532                   0                              NA
## 5533                   0                              NA
## 5534                   0                              NA
## 5535                   0                              NA
## 5536                   0                              NA
## 5537                   0                              NA
## 5538                   0                              NA
## 5539                 192                              NA
## 5540                  29                              NA
## 5541                   0                              NA
## 5542                   0                              NA
## 5543                   0                              NA
## 5544                   0                              NA
## 5545                   0                              NA
## 5546                   0                              NA
## 5547                   0                              NA
## 5548                   0                              NA
## 5549                   0                              NA
## 5550                   0                              NA
## 5551                   0                              NA
## 5552                   6                              NA
## 5553                   *                              NA
## 5554                   0                              NA
## 5555                   0                              NA
## 5556                   0                              NA
## 5557                   0                              NA
## 5558                   0                              NA
## 5559                   0                              NA
## 5560                   0                              NA
## 5561                   0                              NA
## 5562                   0                              NA
## 5563                   0                              NA
## 5564                   0                              NA
## 5565                   0                              NA
## 5566                   0                              NA
## 5567                   0                              NA
## 5568                   0                              NA
## 5569                   0                              NA
## 5570                   0                              NA
## 5571                   0                              NA
## 5572                   0                              NA
## 5573                   0                              NA
## 5574                   0                              NA
## 5575                   0                              NA
## 5576                   0                              NA
## 5577                   0                              NA
## 5578                   0                              NA
## 5579                   0                              NA
## 5580                   0                              NA
## 5581                   0                              NA
## 5582                   0                              NA
## 5583                   0                              NA
## 5584                   0                              NA
## 5585                   0                              NA
## 5586                   0                              NA
## 5587                   0                              NA
## 5588                   0                              NA
## 5589                   0                              NA
## 5590                   0                              NA
## 5591                   0                              NA
## 5592                   0                              NA
## 5593                   0                              NA
## 5594                   0                              NA
## 5595                   0                              NA
## 5596                   0                              NA
## 5597                   0                              NA
## 5598                   0                              NA
## 5599                   0                              NA
## 5600                   0                              NA
## 5601                   0                              NA
## 5602                   0                              NA
## 5603                   0                              NA
## 5604                   0                              NA
## 5605                   0                              NA
## 5606                   0                              NA
## 5607                   0                              NA
## 5608                   0                              NA
## 5609                   0                              NA
## 5610                   0                              NA
## 5611                   0                              NA
## 5612                   0                              NA
## 5613                   0                              NA
## 5614                  19                              NA
## 5615                   0                              NA
## 5616                   *                              NA
## 5617                   0                              NA
## 5618                   0                              NA
## 5619                   0                              NA
## 5620                  21                              NA
## 5621                   0                              NA
## 5622                   *                              NA
## 5623                   0                              NA
## 5624                   0                              NA
## 5625                   0                              NA
## 5626                  17                              NA
## 5627                   0                              NA
## 5628                   5                              NA
## 5629                   0                              NA
## 5630                   0                              NA
## 5631                   0                              NA
## 5632                   *                              NA
## 5633                   0                              NA
## 5634                   0                              NA
## 5635                   0                              NA
## 5636                   0                              NA
## 5637                   0                              NA
## 5638                   0                              NA
## 5639                   0                              NA
## 5640                   0                              NA
## 5641                   0                              NA
## 5642                   0                              NA
## 5643                   0                              NA
## 5644                   0                              NA
## 5645                   0                              NA
## 5646                   0                              NA
## 5647                   0                              NA
## 5648                   0                              NA
## 5649                   0                              NA
## 5650                   0                              NA
## 5651                   0                              NA
## 5652                   0                              NA
## 5653                   0                              NA
## 5654                   0                              NA
## 5655                   0                              NA
## 5656                   0                              NA
## 5657                   0                              NA
## 5658                   0                              NA
## 5659                   0                              NA
## 5660                   0                              NA
## 5661                   0                              NA
## 5662                   0                              NA
## 5663                   0                              NA
## 5664                   0                              NA
## 5665                   0                              NA
## 5666                   0                              NA
## 5667                   0                              NA
## 5668                   0                              NA
## 5669                   0                              NA
## 5670                   0                              NA
## 5671                   0                              NA
## 5672                   0                              NA
## 5673                   0                              NA
## 5674                   0                              NA
## 5675                   0                              NA
## 5676                   0                              NA
## 5677                   0                              NA
## 5678                   0                              NA
## 5679                   0                              NA
## 5680                   0                              NA
## 5681                   0                              NA
## 5682                   0                              NA
## 5683                   0                              NA
## 5684                   0                              NA
## 5685                   0                              NA
## 5686                   0                              NA
## 5687                   0                              NA
## 5688                   0                              NA
## 5689                   0                              NA
## 5690                   0                              NA
## 5691                   0                              NA
## 5692                   0                              NA
## 5693                   0                              NA
## 5694                   0                              NA
## 5695                   0                              NA
## 5696                   0                              NA
## 5697                   0                              NA
## 5698                   0                              NA
## 5699                   0                              NA
## 5700                   0                              NA
## 5701                   0                              NA
## 5702                   0                              NA
## 5703                 444                              NA
## 5704                   0                              NA
## 5705                 105                              NA
## 5706                   0                              NA
## 5707                   0                              NA
## 5708                   0                              NA
## 5709                   0                              NA
## 5710                   0                              NA
## 5711                   0                              NA
## 5712                   0                              NA
## 5713                   0                              NA
## 5714                   *                              NA
## 5715                   0                              NA
## 5716                   0                              NA
## 5717                   0                              NA
## 5718                   0                              NA
## 5719                   0                              NA
## 5720                   0                              NA
## 5721                   0                              NA
## 5722                   *                              NA
## 5723                   0                              NA
## 5724                   0                              NA
## 5725                   0                              NA
## 5726                   0                              NA
## 5727                   *                              NA
## 5728                   0                              NA
## 5729                   0                              NA
## 5730                   0                              NA
## 5731                   0                              NA
## 5732                   0                              NA
## 5733                   0                              NA
## 5734                   0                              NA
## 5735                   0                              NA
## 5736                   0                              NA
## 5737                   0                              NA
## 5738                   *                              NA
## 5739                   0                              NA
## 5740                   0                              NA
## 5741                   0                              NA
## 5742                   0                              NA
## 5743                   0                              NA
## 5744                   0                              NA
## 5745                   0                              NA
## 5746                   0                              NA
## 5747                   0                              NA
## 5748                   0                              NA
## 5749                   0                              NA
## 5750                   0                              NA
## 5751                   0                              NA
## 5752                   0                              NA
## 5753                   0                              NA
## 5754                   0                              NA
## 5755                   0                              NA
## 5756                   0                              NA
## 5757                   0                              NA
## 5758                   0                              NA
## 5759                   0                              NA
## 5760                   0                              NA
## 5761                   0                              NA
## 5762                   0                              NA
## 5763                   0                              NA
## 5764                   0                              NA
## 5765                   0                              NA
## 5766                   0                              NA
## 5767                   0                              NA
## 5768                   0                              NA
## 5769                   0                              NA
## 5770                   0                              NA
## 5771                   0                              NA
## 5772                   0                              NA
## 5773                   0                              NA
## 5774                   0                              NA
## 5775                   0                              NA
## 5776                   0                              NA
## 5777                   0                              NA
## 5778                   0                              NA
## 5779                   0                              NA
## 5780                   0                              NA
## 5781                   0                              NA
## 5782                   0                              NA
## 5783                   0                              NA
## 5784                   0                              NA
## 5785                   0                              NA
## 5786                   0                              NA
## 5787                   0                              NA
## 5788                   0                              NA
## 5789                   0                              NA
## 5790                   0                              NA
## 5791                   0                              NA
## 5792                   0                              NA
## 5793                   0                              NA
## 5794                   0                              NA
## 5795                   0                              NA
## 5796                   0                              NA
## 5797                   0                              NA
## 5798                   0                              NA
## 5799                   0                              NA
## 5800                   0                              NA
## 5801                   0                              NA
## 5802                   0                              NA
## 5803                   0                              NA
## 5804                   0                              NA
## 5805                   0                              NA
## 5806                   0                              NA
## 5807                   0                              NA
## 5808                   0                              NA
## 5809                   0                              NA
## 5810                   0                              NA
## 5811                   0                              NA
## 5812                   0                              NA
## 5813                   0                              NA
## 5814                   0                              NA
## 5815                   0                              NA
## 5816                   0                              NA
## 5817                   0                              NA
## 5818                   0                              NA
## 5819                  52                              NA
## 5820                   0                              NA
## 5821                   0                              NA
## 5822                   0                              NA
## 5823                   0                              NA
## 5824                   0                              NA
## 5825                   0                              NA
## 5826                   0                              NA
## 5827                   0                              NA
## 5828                   0                              NA
## 5829                   0                              NA
## 5830                   0                              NA
## 5831                   0                              NA
## 5832                   0                              NA
## 5833                   0                              NA
## 5834                   0                              NA
## 5835                   0                              NA
## 5836                   0                              NA
## 5837                   0                              NA
## 5838                   0                              NA
## 5839                   0                              NA
## 5840                   0                              NA
## 5841                   0                              NA
## 5842                   0                              NA
## 5843                   0                              NA
## 5844                   0                              NA
## 5845                   0                              NA
## 5846                   0                              NA
## 5847                   0                              NA
## 5848                   0                              NA
## 5849                   0                              NA
## 5850                   0                              NA
## 5851                   0                              NA
## 5852                   0                              NA
## 5853                   0                              NA
## 5854                   0                              NA
## 5855                   0                              NA
## 5856                   0                              NA
## 5857                   0                              NA
## 5858                   0                              NA
## 5859                   0                              NA
## 5860                   0                              NA
## 5861                   0                              NA
## 5862                   0                              NA
## 5863                   0                              NA
## 5864                   0                              NA
## 5865                   0                              NA
## 5866                   0                              NA
## 5867                   0                              NA
## 5868                   0                              NA
## 5869                   0                              NA
## 5870                   0                              NA
## 5871                   0                              NA
## 5872                   0                              NA
## 5873                   0                              NA
## 5874                   0                              NA
## 5875                   0                              NA
## 5876                   0                              NA
## 5877                  33                              NA
## 5878                   0                              NA
## 5879                   0                              NA
## 5880                   0                              NA
## 5881                   0                              NA
## 5882                   0                              NA
## 5883                   0                              NA
## 5884                   0                              NA
## 5885                   0                              NA
## 5886                   0                              NA
## 5887                   0                              NA
## 5888                   0                              NA
## 5889                   0                              NA
## 5890                   0                              NA
## 5891                   0                              NA
## 5892                   0                              NA
## 5893                   0                              NA
## 5894                   0                              NA
## 5895                   0                              NA
## 5896                   0                              NA
## 5897                   0                              NA
## 5898                   0                              NA
## 5899                <NA>                              NA
Training$`All Students Percent Successfully Completed`<-as.numeric(Training$`All Students Percent Successfully Completed`)
## Warning: NAs introduced by coercion
hist(Training$`All Students Percent Successfully Completed`)

plot(Training$`All Students (7/1/2018 - 6/30/2022)`,Training$`All Students Percent Successfully Completed`)
## Warning in xy.coords(x, y, xlabel, ylabel, log): NAs introduced by coercion

Training$`All Students (7/1/2018 - 6/30/2022)`<-as.numeric(Training$`All Students (7/1/2018 - 6/30/2022)`)
## Warning: NAs introduced by coercion
cor(Training$`All Students (7/1/2018 - 6/30/2022)`,Training$`All Students Percent Successfully Completed`)
## [1] NA