This repository has been archived by the owner on May 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcampuses.sql
4905 lines (4895 loc) · 486 KB
/
campuses.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.0.9
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 27, 2013 at 10:55 PM
-- Server version: 5.6.14
-- PHP Version: 5.4.17
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `scribble`
--
-- --------------------------------------------------------
--
-- Table structure for table `colleges`
--
CREATE TABLE IF NOT EXISTS `colleges` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`name` varchar(240) NOT NULL,
`short_name` varchar(120) NOT NULL,
`address` text,
`city` varchar(240) DEFAULT NULL,
`state` varchar(5) DEFAULT NULL,
`zip` int(12) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`short_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9848 ;
--
-- Dumping data for table `colleges`
--
INSERT INTO `colleges` (`id`, `name`, `short_name`, `address`, `city`, `state`, `zip`) VALUES
(5001, '21st Century Oncology, Inc. School for Radiation Therapy Technology', '21stcenturyoncology', '1419 S.E. 8th Terrace', 'Cape Coral', 'FL', 33909),
(5002, 'Forty-Niner ROP', '49errop', '360 Nevada Street', 'Auburn', 'CA', 95603),
(5003, 'Four-D College - Colton', '4Dcollege', '1020 East Washington Street', 'Colton', 'CA', 92324),
(5004, 'Nevada Regional Technical Center', '50states', '900 West Ashland', 'Nevada', 'MO', 64772),
(5005, 'A1 Business and Technical College', 'a1colleg', 'Dr Rufo Street, Suite 14', 'Caguas', 'PR', 725),
(5006, 'American Academy of Acupuncture and Oriental Medicine', 'aaaom', '1925 West County Road B2', 'Roseville', 'MN', 55113),
(5007, 'American Academy of Art', 'aaart', '332 S Michigan Ave', 'Chicago', 'IL', 60604),
(5008, 'Asian American International Beauty College', 'aabeautycollege', '7871 Westminster Blvd', 'Westminster', 'CA', 92683),
(5009, 'Anne Arundel Community College', 'aacc', '101 College Parkway', 'Arnold', 'MD', 21012),
(5010, 'American Academy of Dramatic Arts', 'aada', '120 Madison Ave', 'New York', 'NY', 10016),
(5011, 'Arizona Automotive Institute', 'aai', '6829 N 46th Ave', 'Glendale', 'AZ', 85301),
(5012, 'Alabama A & M University', 'aamu', '4900 Meridian St', 'Normal', 'AL', 35762),
(5013, 'The American Academy of Personal Training', 'aaptschool', '138 West 14th Street', 'New York', 'NY', 10011),
(5014, 'Alderson Broaddus University', 'ab', '101 College Hill Drive', 'Philippi', 'WV', 26416),
(5015, 'Abraham Baldwin Agricultural College', 'abac', '2802 Moore Hwy', 'Tifton', 'GA', 31793),
(5016, 'Appalachian Bible College', 'abc', '161 College Drive', 'Mt. Hope', 'WV', 25880),
(5017, 'ABC Adult School', 'abcadultschool', '12254 E. Cuesta Drive', 'Cerritos', 'CA', 90703),
(5018, 'American Baptist College', 'abcnash', '1800 Baptist World Ctr Dr', 'Nashville', 'TN', 37207),
(5019, 'Arlington Baptist College', 'abconline', '3001 W Division', 'Arlington', 'TX', 76012),
(5020, 'Abcott Institute', 'abcottinstiutute', '16250 Northland Drive, Suite 205', 'Southfield', 'MI', 48075),
(5021, 'Austin Business College', 'abctx', '2101 I H 35 South Ste 300', 'Austin', 'TX', 78741),
(5022, 'Abdill Career College Inc', 'abdill', '843 E Main Ste 203', 'Medford', 'OR', 97504),
(5023, 'California Learning Center', 'aboutclc', '222 South Harbor Blvd., Suite 200', 'Anaheim', 'CA', 92805),
(5024, 'Absolute Safety Training Paramedic Program', 'absolutesafetytraining', '1133 W. Sycamore', 'Willows', 'CA', 95988),
(5025, 'American Baptist Seminary of the West', 'absw', '2606 Dwight Way', 'Berkeley', 'CA', 94704),
(5026, 'Asheville Buncombe Technical Community College', 'abtech', '340 Victoria Rd', 'Asheville', 'NC', 28801),
(5027, 'Atlanta College of Art', 'aca', '1280 Peachtree St N E', 'Atlanta', 'GA', 30309),
(5028, 'Acacia University', 'acacia', '7665 S. Research Drive', 'Tempe', 'AZ', 85284),
(5029, 'Keystone Technical Institute', 'Acadcampus', '2301 Academy Dr', 'Harrisburg', 'PA', 17112),
(5030, 'Academia Language School, Inc.', 'academiaschool', '1600 Kapiolani Blvd., Suite 1215', 'Honolulu', 'HI', 96814),
(5031, 'Academy of Art University', 'academyart', '79 New Montgomery', 'San Francisco', 'CA', 94105),
(5032, 'Academy College', 'academycollege', '1101 E. 78th Street, Suite 100', 'Bloomington', 'MN', 55420),
(5033, 'Academy Education Services', 'academyed', '3151 W 5th Street Suite E101', 'Oxnard', 'CA', 93030),
(5034, 'Vanguard College of Cosmetology', 'academyofcreativehairdesign', '740 Oak Harbor Blvd', 'Slidell', 'LA', 70458),
(5035, 'Academy of Hair Design', 'academyofhair', '1815 Terry Rd', 'Jackson', 'MS', 39204),
(5036, 'Academy of Hair Design Inc', 'academyofhairsalina', '115 S Fifth St', 'Salina', 'KS', 67401),
(5037, 'Academy Pacific Travel College', 'academypacific', '1777 N Vine St', 'Los Angeles', 'CA', 90028),
(5038, 'American College of Acupuncture and Oriental Medicine', 'acaom', '9100 Park West Drive', 'Houston', 'TX', 70063),
(5039, 'Academy of Couture Art', 'acawh', '8484 Wilshire Boulevard, Suite 730', 'Beverly Hills', 'CA', 90211),
(5040, 'Asnuntuck Community College', 'acc', '170 Elm St', 'Enfield', 'CT', 6082),
(5041, 'American Commercial College', 'acc-careers', '3177 Executive Dr', 'San Angelo', 'TX', 76904),
(5042, 'Access Careers', 'accesscareers', '25 Elm Place, Suite #201', 'Brooklyn', 'NY', 11201),
(5043, 'Access International Business Institute', 'accessESL', '609 E. Liberty', 'Ann Arbor', 'MI', 48104),
(5044, 'Access Careers - Kew Gardens', 'accessqueens', '80-02 Kew Gardens Road', 'Kew Gardens', 'NY', 11415),
(5045, 'Academy of Chinese Culture and Health Sciences', 'acchs', '1601 Clay St', 'Oakland', 'CA', 94612),
(5046, 'Alliance City Schools Career Centre', 'accrtw', '530 N Lincoln Avenue', 'Alliance', 'OH', 44601),
(5047, 'Accutech Career Institute', 'accutech', '5310 Spectrum Dr', 'Frederick', 'MD', 21703),
(5048, 'American College of Education', 'ace', '101 West Ohio Street, Suite 2000', 'Indianapolis', 'IN', 46204),
(5049, 'American College of Healthcare Sciences', 'achs', '5940 SW Hood Ave', 'Portland', 'OR', 97239),
(5050, 'Atlantic County Vocational Technical School', 'acitech', '5080 Atlantic Avenue', 'Mays Landing', 'NJ', 8330),
(5051, 'Allentown Career Institute', 'acitrain', '941 Marcon Boulevard', 'Allentown', 'PA', 18109),
(5052, 'Ashtabula County Technical and Career Campus', 'acjvs', '1565 State Rte 167', 'Jefferson', 'OH', 44047),
(5053, 'American College of Technology', 'acot', '2700 N. Belt Highway', 'Saint Joseph', 'MO', 64506),
(5054, 'Appalachian College of Pharmacy', 'acpharm', '1060 Dragon Road', 'Oakwood', 'VA', 24631),
(5055, 'Albany College of Pharmacy', 'acphs', '106 New Scotland Avenue', 'Albany', 'NY', 12208),
(5056, 'Assumption College for Sisters', 'acs350', '350 Bernardsville Road', 'Mendham', 'NJ', 7945),
(5057, 'American Conservatory Theater', 'act-sf', '30 Grant Ave', 'San Francisco', 'CA', 94108),
(5058, 'American College of Traditional Chinese Medicine', 'actcm', '455 Arkansas St', 'San Francisco', 'CA', 94107),
(5059, 'ACT College - Arlington', 'actcollege', '1400 Key Boulevard, Suite 100', 'Arlington', 'VA', 22209),
(5060, 'Portland Actors Conservatory', 'actorsconservatory', '1436 Southwest Montgomery', 'Portland', 'OR', 97201),
(5061, 'Amarillo College', 'actx', '2200 S. Washington', 'Amarillo', 'TX', 79109),
(5062, 'Abilene Christian University', 'acu', '1600 Campus Court', 'Abilene', 'TX', 79699),
(5063, 'East-West Healing Arts Institute', 'acupressureschool', '6425 Normandy Lane', 'Madison', 'WI', 53719),
(5064, 'Midwest College of Oriental Medicine', 'Acupuncture', '6232 Bankers Road, Suites 5 & 6', 'Racine', 'WI', 53403),
(5065, 'Southwest Acupuncture College - Albuquerque', 'acupuncturecollege', '7801 Academy Road NE', 'Albuquerque', 'NM', 87109),
(5066, 'Academy for Five Element Acupuncture', 'acupuncturist', '305 SE 2nd Avenue', 'Gainesville', 'FL', 32601),
(5067, 'Adams State University', 'adams', '208 Edgemont Blvd', 'Alamosa', 'CO', 81102),
(5068, 'ATI College', 'adconsys', '12440 Firestone Blvd Ste 2001', 'Norwalk', 'CA', 90650),
(5069, 'Adelphi University', 'ADELPHI', 'South Ave', 'Garden City', 'NY', 11530),
(5070, 'Adler School of Professional Psychology', 'adler', '65 E Wacker Pl Ste 2100', 'Chicago', 'IL', 60601),
(5071, 'Adrian College', 'adrian', '110 S Madison St', 'Adrian', 'MI', 49221),
(5072, 'Santa Cruz Adult Education', 'adulted', '2931 Mission Street', 'Santa Cruz', 'CA', 95060),
(5073, 'Advanced Training Associates', 'advancedtraining', '1810 Gillespie Way, Suite 104', 'El Cajon', 'CA', 92020),
(5074, 'Washington Adventist Hospital', 'adventisthealthcare', '7600 Carroll Avenue', 'Takoma Park', 'MD', 20912),
(5075, 'Advocate Illinois Masonic Medical Center', 'advocatehealth', '836 W. Wellington Ave.', 'Chicago', 'IL', 60657),
(5076, 'East Side Union High School District Adult School', 'aenet', '625 Educational Park Drive', 'San Jose', 'CA', 95133),
(5077, 'Academy of Aesthetic Arts', 'aestheticsarts', '10316 Shawnee Mission Pkwy', 'Shawnee', 'KS', 66203),
(5078, 'Bilingual Education Institute', 'aetas', '6060 Richmond Avenue', 'Houston', 'TX', 77063),
(5079, 'Aerobics and Fitness Association of America (AFAA) Distance Education Center', 'afaa', '15250 Ventura Boulevard, Suite 200', 'Sherman Oaks', 'CA', 91403),
(5080, 'Mercy Medical Center/Affinity Health System', 'affinityhealth', '500 S. Oakwood Road', 'Oshkosh', 'WI', 54903),
(5081, 'American Film Institute', 'AFI', '2021 North Western Avenue', 'Los Angeles', 'CA', 90027),
(5082, 'Northwest Aviation College', 'afsnac', '506 23rd Street NE', 'Auburn', 'WA', 98002),
(5083, 'Ohio State University Agricultural Technical Institute', 'ag', '1328 Dover Rd', 'Wooster', 'OH', 44691),
(5084, 'A Gathering Place Wellness Education Center', 'agatheringplace', '12131 Dorsett Road, #101', 'Maryland Heights', 'MO', 63043),
(5085, 'Agnes Scott College', 'agnesscott', '141 E. College Ave', 'Decatur', 'GA', 30030),
(5086, 'Assemblies of God Theological Seminary', 'agts', '1435 N Glenstone Ave', 'Springfield', 'MO', 65802),
(5087, 'American Graduate University', 'agu', '733 North Dodsworth Avenue', 'Covina', 'CA', 91724),
(5088, 'Inter American University of Puerto Rico - Aguadilla', 'aguadilla', 'Barrio Corrales Sector Calero, Road 459 Int. 463', 'Aguadilla', 'PR', 602),
(5089, 'Academy of Healing Arts Massage and Facial Skin Care', 'ahamassage', '3141 S Military Tr', 'Lake Worth', 'FL', 33463),
(5090, 'The College of Health Care Professions', 'ahcp', '240 Northwest Mall', 'Houston', 'TX', 77092),
(5091, 'American Health Information Management Association', 'ahima', '233 North Michigan Avenue, Suite 2150', 'Chicago', 'IL', 60601),
(5092, 'American Health Science University', 'ahsu', '1010 South Joliet, Suite 107', 'Aurora', 'CO', 80012),
(5093, 'Aquinas Institute of Theology', 'ai', '23 South Spring Avenue', 'St. Louis', 'MO', 63108),
(5094, 'American Institute of Alternative Medicine', 'aiam', '6685 Doubletree Ave', 'Columbus', 'OH', 43229),
(5095, 'American Institute of Applied Science', 'aiasinc', '100 Hunter Place', 'Youngsville', 'NC', 27596),
(5096, 'AIB College of Business', 'aib', '2500 Fleur Drive', 'Des Moines', 'IA', 50321),
(5097, 'American Institute of Baking', 'aibonline', '1213 Bakers Way', 'Manhattan', 'KS', 66502),
(5098, 'American International College', 'aic', '1000 State Street', 'Springfield', 'MA', 1109),
(5099, 'The Art Institute of California - San Diego', 'aica', '7650 Mission Valley Road', 'San Diego', 'CA', 92108),
(5100, 'American Indian College of the Assemblies of God', 'aicag', '10020 N 15th Ave', 'Phoenix', 'AZ', 85021),
(5101, 'The Art Institute of California - Hollywood', 'aicdc', '5250 Lankershim Boulevard', 'North Hollywood', 'CA', 91601),
(5102, 'The Art Institute of Charlotte', 'aich', 'Three Lakepointe Plaza, 2110 Water Ridge Parkway', 'Charlotte', 'NC', 28217),
(5103, 'American Institute of Clinical Massage', 'aicmtouch', '4365 Inverness Drive', 'Post Falls', 'ID', 83854),
(5104, 'The Art Institute of Fort Lauderdale Inc', 'aifl', '1799 SE 17th St', 'Fort Lauderdale', 'FL', 33316),
(5105, 'The Illinois Institute of Art - Chicago', 'aii', '350 N Orleans St', 'Chicago', 'IL', 60654),
(5106, 'Aiken School of Cosmetology', 'aikenschoolofcosmetology', '225 Richland Avenue E', 'Aiken', 'SC', 29801),
(5107, 'The Art Institute of California - Los Angeles', 'aila', '2900 31st St', 'Santa Monica', 'CA', 90405),
(5108, 'Ailano School of Cosmetology', 'ailanoschool', '541 West St', 'Brockton', 'MA', 2301),
(5109, 'The Art Institutes International Minnesota', 'aim', '15 S 9th St', 'Minneapolis', 'MN', 55402),
(5110, 'Aviation Institute of Maintenance - Atlanta', 'AIM-Atlanta', '2025 Satellite Point', 'Duluth', 'GA', 30096),
(5111, 'Atlanta Institute of Music', 'aim-music', '2875 Breckinridge Boulevard', 'Duluth', 'GA', 30096),
(5112, 'Acupuncture and Integrative Medicine College - Berkeley', 'aimc', '2550 Shattuck Ave', 'Berkeley', 'CA', 94704),
(5113, 'Aims Community College', 'aims', '5401 W. 20th St.', 'Greeley', 'CO', 80632),
(5114, 'American Institute of Massage Therapy', 'aimt', '416 E. Atlantic Blvd.', 'Pompano Beach', 'FL', 33060),
(5115, 'American Institute of Medical Technology', 'aimt-edu', '4500 South Garnett, Suite 110', 'Tulsa', 'OK', 74146),
(5116, 'American Institute of Massage Therapy - Santa Ana', 'aimtinc', '1506 East Warner Avenue, Suite 110', 'Santa Ana', 'CA', 92705),
(5117, 'The Art Institute of New York City', 'ainyc', '11-17 Beach Street', 'New York', 'NY', 10013),
(5118, 'American Institute of Allied Health', 'aioah', '1310 South Stemmons Freeway', 'Lewisville', 'TX', 75067),
(5119, 'Takoda Institute of Higher Education a Division of American Indian OIC', 'AIOIC', '1845 E. Franklin Ave', 'Minneapolis', 'MN', 55404),
(5120, 'The Art Institute of Pittsburgh', 'aip', '420 Boulevard of the Allies', 'Pittsburgh', 'PA', 15219),
(5121, 'The Art Institute of Portland', 'aipd', '1122 NW Davis St.', 'Portland', 'OR', 97209),
(5122, 'The Art Institute of Philadelphia', 'aiph', '1622 Chestnut Street', 'Philadelphia', 'PA', 19103),
(5123, 'American Institute of Pharmaceutical Technology', 'aiptnet', '210 Lee Place', 'Hackensack', 'NJ', 6701),
(5124, 'The Art Institute of Phoenix', 'aipx', '2233 W Dunlap Ave', 'Phoenix', 'AZ', 85021),
(5125, 'International Air and Hospitality Academy', 'airacademy', '2901 E Mill Plain Blvd', 'Vancouver', 'WA', 98661),
(5126, 'The Art Institute of Seattle', 'ais', '2323 Elliott Ave', 'Seattle', 'WA', 98121),
(5127, 'American Institute of Technology', 'ait-schools', '440 S 54th Ave', 'Phoenix', 'AZ', 85043),
(5128, 'Academy for Jewish Religion', 'ajrca', 'UCLA, 574 Hilgard Avenue', 'Los Angeles', 'CA', 90024),
(5129, 'Alaska Christian College', 'akcc', '35109 Royal Pl', 'Soldotna', 'AK', 99669),
(5130, 'Akron Machining Institute Inc', 'akronmach', '2959 Barber Rd', 'Norton', 'OH', 44203),
(5131, 'Alamance Community College', 'alamancecc', '1247 Jimmie Kerr Road', 'Graham', 'NC', 27253),
(5132, 'Alamdea Adult School', 'alameda', '2250 Central Avenue', 'Alameda', 'CA', 94501),
(5133, 'Northwest Vista College', 'alamo', '3535 North West Ellison Dr', 'San Antonio', 'TX', 78251),
(5134, 'Alaska Pacific University', 'alaskapacific', '4101 University Dr', 'Anchorage', 'AK', 99508),
(5135, 'Alabama State University', 'alasu', '915 S Jackson Street', 'Montgomery', 'AL', 36104),
(5136, 'SUNY at Albany', 'albany', '1400 Washington Avenue', 'Albany', 'NY', 12222),
(5137, 'Albany Technical College', 'albanytech', '1704 South Slappey Boulevard', 'Albany', 'GA', 31701),
(5138, 'College of the Albemarle', 'albemarle', '1208 North Road Street', 'Elizabeth City', 'NC', 27906),
(5139, 'Albertus Magnus College', 'albertus', '700 Prospect St', 'New Haven', 'CT', 6511),
(5140, 'Albion College', 'albion', '611 E Porter St', 'Albion', 'MI', 49224),
(5141, 'Carlos Albizu University', 'albizu', 'San Francisco St Old San Juan', 'San Juan', 'PR', 902),
(5142, 'Albright College', 'albright', '1621 N. 13th St.', 'Reading', 'PA', 19612),
(5143, 'Alice Lloyd College', 'alc', '100 Purpose Rd', 'Pippa Passes', 'KY', 41844),
(5144, 'Alcorn State University', 'alcorn', '1000 ASU Dr Ste 359', 'Alcorn State', 'MS', 39096),
(5145, 'Alegent Health School of Medical Assisting', 'alegent', '810 N. 96th Street', 'Omaha', 'NE', 68114),
(5146, 'MTTI /Montessori Teacher Training Institute (AMS)', 'alexandermontessori', '6050 S.W. 57th Ave.', 'Miami', 'FL', 33143),
(5147, 'Alexandria Technical College', 'alextech', '1601 Jefferson Streeet', 'Alexandria', 'MN', 56308),
(5148, 'Alfred University', 'alfred', 'One Saxon Dr', 'Alfred', 'NY', 14802),
(5149, 'Adler Graduate School', 'alfredadler', '1550 East 78th Street', 'Richfield', 'MN', 55423),
(5150, 'SUNY College of Technology at Alfred', 'alfredstate', 'Huntington Administration Building', 'Alfred', 'NY', 14802),
(5151, 'Alhambra Adult Education', 'alhambra', '217 N. Garfield Avenue', 'Alhambra', 'CA', 91801),
(5152, 'Allegany College of Maryland', 'allegany', '12401 Willowbrook Rd SE', 'Cumberland', 'MD', 21502),
(5153, 'Allegheny College', 'allegheny', '520 N Main St', 'Meadville', 'PA', 16335),
(5154, 'Allen County Community College', 'allencc', '1801 N Cottonwood', 'Iola', 'KS', 66749),
(5155, 'Allen College', 'allencollege', '1825 Logan Avenue', 'Waterloo', 'IA', 50703),
(5156, 'Allen School - Jamaica', 'allenschool', '163-18 Jamaica Avenue', 'Jamaica', 'NY', 11432),
(5157, 'Allen University', 'allenuniversity', '1530 Harden Street', 'Columbia', 'SC', 29204),
(5158, 'Alliant International University', 'alliant', '10455 Pomerado Road', 'San Diego', 'CA', 92131),
(5159, 'Allied American University', 'allied', '22952 Alcalde Drive, Suite 150', 'Laguna Hills', 'CA', 92653),
(5160, 'Allied Career Center', 'alliedcareercenter', '1933 East Frankford Road, Suite 110', 'Carrollton', 'TX', 75007),
(5161, 'Anthem College - Maryland Heights', 'alliedcollege', '13723 Riverport Drive, Suite 103', 'Maryland Heights', 'MO', 63043),
(5162, 'Allied Health Institute', 'alliedhealthinstitute', '51 North State Road 7', 'Plantation', 'FL', 33317),
(5163, 'Allied Business Schools', 'alliedschools', '22952 Alcalde Drive', 'Laguna Hills', 'CA', 92653),
(5164, 'Allied Medical and Technical Institute', 'alliedteched', '201 Willowbrook Blvd.', 'Wayne', 'NJ', 7470),
(5165, 'All Saints Bible College', 'allsaintsonline', '930 Mason Street', 'Memphis', 'TN', 38126),
(5166, 'All State Career School', 'allstatecareer', '1200 Lebanon Road, Suite 101', 'West Mifflin', 'PA', 15122),
(5167, 'Alma College', 'alma', '614 W. Superior Street', 'Alma', 'MI', 48801),
(5168, 'U.S. Army Logistics University', 'almc', '2401 Quarters Road', 'Fort Lee', 'VA', 23801),
(5169, 'Alpena Community College', 'alpenacc', '665 Johnson Street', 'Alpena', 'MI', 49707),
(5170, 'Alpine College', 'alpinecollege', '10020 E. Knox Ave. Suite 500', 'Spokane Valley', 'WA', 99206),
(5171, 'Albany Law School', 'als', '80 New Scotland Avenue', 'Albany', 'NY', 12208),
(5172, 'Altamaha Technical College', 'altamahatech', '1777 W Cherry St', 'Jesup', 'GA', 31545),
(5173, 'The Alternative Conjunction Clinic & School of MT', 'alternativeconjunction', '716 State Street', 'Lemoyne', 'PA', 17403),
(5174, 'Altoona Beauty School Inc', 'ALTOONABEAUTYSCHOOL', '1528 Valley View Blvd.', 'Altoona', 'PA', 16602),
(5175, 'Abraham Lincoln University', 'alu', '3530 Wilshire Boulevard, Suite 1430', 'Los Angeles', 'CA', 90010),
(5176, 'Alvernia College', 'alvernia', '400 Saint Bernardine St', 'Reading', 'PA', 19607),
(5177, 'Alverno College', 'alverno', '3400 S 43rd St', 'Milwaukee', 'WI', 53234),
(5178, 'Alvin Community College', 'alvincollege', '3110 Mustang Rd', 'Alvin', 'TX', 77511),
(5179, 'Amberton University', 'amberton', '1700 Eastgate Dr', 'Garland', 'TX', 75041),
(5180, 'Anabaptist Mennonite Biblical Seminary', 'ambs', '3003 Benham Ave', 'Elkhart', 'IN', 46517),
(5181, 'Albany Medical College', 'amc', '47 New Scotland Ave', 'Albany', 'NY', 12208),
(5182, 'Acupuncture and Massage College', 'AMCOLLEGE', '10506 N Kendall Dr', 'Miami', 'FL', 33176),
(5183, 'American Musical and Dramatic Academy - Los Angeles', 'amda', '6305 Yucca Street', 'Los Angeles', 'CA', 90028),
(5184, 'American College', 'amercoll', '270 Bryn Mawr Ave', 'Bryn Mawr', 'PA', 19010),
(5185, 'American University', 'american', '4400 Massachusetts Avenue N.W.', 'Washington', 'DC', 20016),
(5186, 'American Academy of Hair Design', 'americanacademy', '901 SW 37th St', 'Topeka', 'KS', 66611),
(5187, 'Americana College', 'americanacollege', '835 N. Western Avenue', 'Los Angeles', 'CA', 90029),
(5188, 'American Beauty Institute', 'americanbeautyinstitutes', '2009 North Main', 'McAlester', 'OK', 74502),
(5189, 'American Career College - Los Angeles', 'americancareer', '4021 Rosewood Avenue', 'Los Angeles', 'CA', 90004),
(5190, 'American College of Hairstyling - Des Moines', 'americancollegeofhair', '603 E Sixth St', 'Des Moines', 'IA', 50309),
(5191, 'American Health Institute', 'americanhealthinstitute', '10138 US Highway 19', 'Port Richey', 'FL', 34668),
(5192, 'American Institute for Paralegal', 'americanparalegal', '560 Lans Way', 'Ann Arbor', 'MI', 48103),
(5193, 'American Pathways University', 'americanpathways', '2227 Franklin Street', 'Denver', 'CO', 80205),
(5194, 'American School of Business', 'AMERICANSCHOOLOFBUSINESS', '702 Professional Drive North', 'Shreveport', 'LA', 71105),
(5195, 'American Sentinel University - Aurora', 'americansentinel', '2260 South Xanadu Way, Suite 310', 'Aurora', 'CO', 80014),
(5196, 'Lincoln Technical Institute - Fern Park', 'americareschools', '7275 Estapona Circle', 'Fern Park', 'FL', 32730),
(5197, 'AmeriTech College - Provo', 'ameritech', '2035 North 550 West', 'Provo', 'UT', 84604),
(5198, 'Abington Memorial Hospital', 'amh', '2500 Maryland Rd Ste 200', 'Willow Grove', 'PA', 19090),
(5199, 'Amherst College', 'amherst', 'Boltwood Avenue', 'Amherst', 'MA', 1002),
(5200, 'Wyotech', 'amiwrench', '3042 W International Speedway Blvd', 'Daytona Beach', 'FL', 32124),
(5201, 'American Museum of Natural History - Richard Gilder Graduate School', 'amnh', 'Central Park West at 79th Street', 'New York', 'NY', 10024),
(5202, 'Amridge University', 'amridgeuniversity', '1200 Taylor Rd', 'Montgomery', 'AL', 36117),
(5203, 'U. S. Army Management Staff College', 'amsc', '5500 21st Street, Ste. 1206', 'Ft. Belvoir', 'VA', 22060),
(5204, 'Alhambra Medical University', 'amuedu', '25 S. Raymond Avenue, Suite 201', 'Alhambra', 'CA', 91801),
(5205, 'Anaheim University', 'anaheim', '1240 S. State College Boulevard, Room 110', 'Anaheim', 'CA', 92806),
(5206, 'Arkansas Northeastern College', 'anc', '2501 South Division Street', 'Blytheville', 'AR', 72316),
(5207, 'Ancilla College', 'ancilla', '9601 Union Road', 'Donaldson', 'IN', 46513),
(5208, 'Anderson University', 'anderson', '1100 E 5th St', 'Anderson', 'IN', 46012),
(5209, 'Anderson Medical Career College', 'andersonmedicalcollege', '10752 Burbank Boulevard', 'North Hollywood', 'CA', 91601),
(5210, 'Anderson University', 'andersonuniversity', '316 Boulevard', 'Anderson', 'SC', 29621),
(5211, 'Andover College', 'ANDOVERCOLLEGE', '265 Western Avenue', 'South Portland', 'ME', 4106),
(5212, 'Andrew College', 'andrewcollege', '413 College St', 'Cuthbert', 'GA', 39840),
(5213, 'Andrews University', 'andrews', 'US 31 North', 'Berrien Springs', 'MI', 49104),
(5214, 'Charleston Area Medical Center- School of Nursing Anesthesia', 'anesthesiaschool', '3110 Mac Corkle Ave. SE Room 2041', 'Charleston', 'WV', 25304),
(5215, 'Angelina College', 'angelina', '3500 South First', 'Lufkin', 'TX', 75902),
(5216, 'Angelo State University', 'angelo', '2601 W Avenue N', 'San Angelo', 'TX', 76909),
(5217, 'Angley College', 'angley', '520 West Lake Mary Boulevard, Suite 300', 'Sanford', 'FL', 32773),
(5218, 'Anna Maria College', 'annamaria', '10 Sunset Lane', 'Paxton', 'MA', 1612),
(5219, 'Anoka-Ramsey Community College', 'anokaramsey', '11200 Mississippi Blvd. NW', 'Coon Rapids', 'MN', 55433),
(5220, 'Anoka Technical College', 'anokatech', '1355 W Hwy 10', 'Anoka', 'MN', 55303),
(5221, 'Saint Anselm College', 'anselm', '100 Saint Anselm Drive', 'Manchester', 'NH', 3102),
(5222, 'Antioch University', 'antioch', '900 Dayton Street', 'Yellow Springs', 'OH', 45387),
(5223, 'Antioch School of Church Planting and Leadership Development', 'antiochschool', '2400 Oakwood Road', 'Ames', 'IA', 50014),
(5224, 'Antonelli College - Cincinnati', 'ANTONELLI', '124 East Seventh Street', 'Cincinnati', 'OH', 45202),
(5225, 'Antonelli College - Jackson', 'antonellic', '2323 Lakeland Drive', 'Jackson', 'MS', 39232),
(5226, 'Andover Newton Theological School', 'ants', '210 Herrick Rd', 'Newton Centre', 'MA', 2459),
(5227, 'Cannella School of Hair Design', 'AOL', '12943 South Western Avenue', 'Blue Island', 'IL', 60406),
(5228, 'AOMA Graduate School of Integrative Medicine', 'aoma', '2700 W Anderson Ln Ste 204', 'Austin', 'TX', 78757),
(5229, 'Arnot Ogden Medical Center', 'aomc', '600 Roe Avenue', 'Elmira', 'NY', 14905),
(5230, 'Apex School of Theology', 'apexsot', '2945 South Miami Blvd Ste 114', 'Durham', 'NC', 27703),
(5231, 'Apex Technical School', 'apextechnical', '635 Ave of the Americas', 'New York', 'NY', 10011),
(5232, 'Academy for Practical Nursing and Health Occupations', 'APNHO', '5154 Okeechobee Blvd Ste 201', 'West Palm Beach', 'FL', 33417),
(5233, 'Apollo Career Center', 'APOLLOCAREERCENTER', '3325 Shawnee Rd', 'Lima', 'OH', 45801),
(5234, 'Carrington College - Phoenix', 'apollocollege', '8503 N 27th Ave', 'Phoenix', 'AZ', 85051),
(5235, 'Appalachian Technical College', 'appalachiantech', '100 Campus Drive', 'Jasper', 'GA', 30143),
(5236, 'The Apprenticeship School - Newport News Shipbuilding', 'apprenticeschool', '4101 Washington Avenue', 'Newport News', 'VA', 23607),
(5237, 'Appalachian State University', 'appstate', '', 'Boone', 'NC', 28608),
(5238, 'Austin Peay State University', 'apsu', '601 College St', 'Clarksville', 'TN', 37044),
(5239, 'Azusa Pacific Online University', 'apu', '511 West Citrus Edge Street', 'Glendora', 'CA', 91740),
(5240, 'American Public University System', 'apus', '111 West Congress Street', 'Charles Town', 'WV', 25414),
(5241, 'Aquinas College', 'aquinas', '1607 Robinson Rd SE', 'Grand Rapids', 'MI', 49506),
(5242, 'Aquinas College', 'aquinascollege', '4210 Harding Roadd', 'Nashville', 'TN', 32705),
(5243, 'Arapahoe Community College', 'arapahoe', '5900 S. Santa Fe Dr.', 'Littleton', 'CO', 80160),
(5244, 'Spring Arbor University', 'arbor', '106 E. Main St', 'Spring Arbor', 'MI', 49283),
(5245, 'Academy of Radio and Television Broadcasting', 'arbradio', '16052 Beach Boulevard, Suite 263N', 'Huntington Beach', 'CA', 92647),
(5246, 'American River College', 'arc', '4700 College Oak Dr', 'Sacramento', 'CA', 95841),
(5247, 'Arcadia University', 'arcadia', '450 S Easton Rd', 'Glenside', 'PA', 19038),
(5248, 'Saint Joseph''s Seminary', 'archny', '201 Seminary Ave (Dunwoodie)', 'Yonkers', 'NY', 10704),
(5249, 'Inter American University of Puerto Rico - Arecibo', 'arecibo', 'P.O. Box 4050, Bo. San Daniel Sector Las Canelas,', 'Arecibo', 'PR', 614),
(5250, 'University of Arizona', 'arizona', '1401 E University', 'Tucson', 'AZ', 85721),
(5251, 'Arizona Academy of Beauty - North', 'arizonaacademy', '4066 North Oracle Road', 'Tucson', 'AZ', 85705),
(5252, 'Arizona College', 'arizonacollege', '4425 W Olive Avenue, Suite 300', 'Glendale', 'AZ', 85302),
(5253, 'Howard, Mohorn & Associates Dale Carnegie Training', 'arkansas', '#3 Office Park Drive, Suite 104', 'Little Rock', 'AR', 72211),
(5254, 'Arkansas Baptist College', 'arkansasbaptist', '1621 Dr. Martin Luther King Drive', 'Little Rock', 'AR', 72202),
(5255, 'Arlington Career Institute', 'arlingtonci', '901 Ave K', 'Grand Prairie', 'TX', 75050),
(5256, 'Arlington Medical Institute', 'arlingtonmedicalinst', '1001 N.E. Green Oaks Boulevard, Suite 190', 'Arlington', 'TX', 76006),
(5257, 'Armstrong Atlantic State University', 'armstrong', '11935 Abercorn St', 'Savannah', 'GA', 31419),
(5258, 'Army Transportation and Aviation Logistics School', 'army', '711 B Avenue, Bldg 2300', 'Ft. Lee', 'VA', 23801),
(5259, 'Arnot Ogden Medical Center School of Radiologic Technology', 'arnothealth', '600 Roe Avenue', 'Elmira', 'NY', 14905),
(5260, 'Art Academy of Cincinnati', 'artacademy', '1212 Jackson Street', 'Cincinnati', 'OH', 45202),
(5261, 'Art Center College of Design', 'artcenter', '1700 Lida St', 'Pasadena', 'CA', 91103),
(5262, 'Arthur''s Beauty College, Inc. - Conway', 'arthursbeautycollege', '2320 Washington Avenue', 'Conway', 'AR', 72032),
(5263, 'School of the Art Institute of Chicago', 'artic', '37 S Wabash', 'Chicago', 'IL', 60603),
(5264, 'Miami International University of Art and Design', 'artinstitutes', '1501 Biscayne Boulevard', 'Miami', 'FL', 33132),
(5265, 'Art Instruction Schools', 'artinstructionschools', '3400 Technology Drive', 'Minneapolis', 'MN', 55418),
(5266, 'The Artistic Academy of Hair Design', 'artisticacademy', '301 Gibraltar Drive, Suite 1-A', 'Morris Plains', 'NJ', 7950),
(5267, 'ASA Institute of Business and Computer Technology', 'asa', '151 Lawrence Street', 'Brooklyn', 'NY', 11201),
(5268, 'Arizona School of Acupuncture and Oriental Medicine', 'asaom', '4646 East Fort Lowell Rd., Suite 103', 'Tucson', 'AZ', 85712),
(5269, 'Asbury University', 'asbury', '1 Macklem Drive', 'Wilmore', 'KY', 40390),
(5270, 'Asbury Theological Seminary', 'asburyseminary', '204 N Lexington Ave', 'Wilmore', 'KY', 40390),
(5271, 'Stroudsburg School of Cosmetology', 'asc-ssc', '100 North 8th St', 'Stroudsburg', 'PA', 18360),
(5272, 'Alabama Southern Community College', 'ascc', '2800 South Alabama Avenue', 'Monroeville', 'AL', 36460),
(5273, 'Ascension College', 'ascensioncollege', '320 E Ascension St', 'Gonzales', 'LA', 70737),
(5274, 'Academy of Somatic Healing Arts (ASHA)', 'ashamassage', '6251 Smithpointe Drive', 'Norcross', 'GA', 30092),
(5275, 'Asher College', 'asher', '1215 Howe Avenue, Suite 101', 'Sacramento', 'CA', 95825),
(5276, 'Ashford University', 'ashford', '400 North Bluff Blvd.', 'Clinton', 'IA', 52732),
(5277, 'Ashland Community and Technical College', 'ashland', '1400 College Drive', 'Ashland', 'KY', 41101),
(5278, 'Ashworth Career Programs', 'ashworthcollege', '6625 The Corners Parkway, Suite 500', 'Norcross', 'GA', 30092),
(5279, 'Asian Institute of Medical Studies', 'asianinstitute', '3131 N. Country Club Road, Suite 100', 'Tucson', 'AZ', 85716),
(5280, 'Appalachian School of Law', 'asl', '1169 Edgewater Drive', 'Grundy', 'VA', 24614),
(5281, 'Kaplan International Centers', 'aspectworld', '1531 Chapala Street, Suite 1', 'Santa Barbara', 'CA', 93101),
(5282, 'Aspen University', 'aspen', '720 South Colorado Boulevard, Suite 1150-N', 'Denver', 'CO', 80246),
(5283, 'ASPIRA, Inc. de Puerto Rico', 'aspirapr', 'P.O. Box 29132', 'San Juan', 'PR', 929),
(5284, 'Bergin University of Canine Studies', 'assistancedog', '5860 Labath Avenue', 'Rohnert Park', 'CA', 94928),
(5285, 'Associated Technical College', 'associatedtechcollege', '1593 E Vista Way, Suite C', 'Vista', 'CA', 92084),
(5286, 'Alexandria School of Scientific Therapeutics', 'assti', '809 S Harrison St', 'Alexandria', 'IN', 46001),
(5287, 'Assumption College', 'assumption', '500 Salisbury St', 'Worcester', 'MA', 1609),
(5288, 'American School of Technology', 'ast', '4599 Morse Center Road', 'Columbus', 'OH', 43229),
(5289, 'Arkansas State University', 'astate', 'P.O. Box 600', 'State University', 'AR', 72467),
(5290, 'Astrodome Career Centers', 'astrodomecareercenter', '2656 South Loop West, Suite 380', 'Houston', 'TX', 77054),
(5291, 'Arizona State University', 'asu', 'P.O. Box 2203', 'Tempe', 'AZ', 85287),
(5292, 'Arkansas State University - Beebe', 'ASUB', 'P.O. Box 1000', 'Beebe', 'AR', 72012),
(5293, 'Arkansas State University Mountain Home', 'asumh', '1600 South College Street', 'Mountain Home', 'AR', 72653),
(5294, 'Arkansas State University - Newport', 'asun', '7648 Victory Blvd.', 'Newport', 'AR', 72112),
(5295, 'At-Home Professions', 'at-homeprofessions', '2001 Lowe Street', 'Fort Collins', 'CO', 80525),
(5296, 'Aiken Technical College', 'atc', '2276 Jefferson Davis Highway', 'Graniteville', 'SC', 29829),
(5297, 'Athenaeum of Ohio', 'athenaeum', '6616 Beechmont Ave', 'Cincinnati', 'OH', 45230),
(5298, 'Athens State University', 'athens', '300 N Beaty St', 'Athens', 'AL', 35611),
(5299, 'Athens Technical College', 'athenstech', '800 US Hwy 29 N', 'Athens', 'GA', 30601),
(5300, 'ATI College - Santa Ana', 'ati', '1125 E. 17th Street, Suite N251', 'Santa Ana', 'CA', 92701),
(5301, 'ATI Career Training Center - Dallas', 'aticareertraining', '10003 Technology Blvd. West', 'Dallas', 'TX', 75220),
(5302, 'Atlanta Ballet Centre for Dance Education', 'atlantaballet', '1695 Marietta Boulevard', 'Atlanta', 'GA', 30318),
(5303, 'Atlanta School of Massage', 'atlantaschoolofmassage', '2 Dunwoody Park South', 'Atlanta', 'GA', 30338),
(5304, 'Atlanta Technical College', 'atlantatech', '1560 Metropolitan Pkwy, S.W.', 'Atlanta', 'GA', 30310),
(5305, 'Atlantic Cape Community College', 'ATLANTIC', '5100 Black Horse Pike', 'Mays Landing', 'NJ', 8330),
(5306, 'Atlantic University College', 'atlanticcollege-pr', 'Colton St. # 9', 'Guaynabo', 'PR', 970),
(5307, 'Morristown Memorial Hospital School of Cardiovascular Technology', 'atlantichealth', '100 Madison Avenue, Box 1956', 'Morristown', 'NJ', 7962),
(5308, 'Atlantic Technical Center', 'atlantictechcenter', '4700 Coconut Creek Parkway', 'Coconut Creek', 'FL', 33063),
(5309, 'Atlantic Acting School', 'atlantictheater', '76 Ninth Avenue, Suite 537', 'New York', 'NY', 10011),
(5310, 'Atlantic University', 'atlanticuniv', '215 67th Street', 'Virginia Beach', 'VA', 23451),
(5311, 'Atlantis University', 'atlantisuniversity', '1442 Biscayne Boulevard', 'Miami', 'FL', 33132),
(5312, 'Atlanta Metropolitan State College', 'atlm', '1630 Metropolitan Parkway, SW', 'Atlanta', 'GA', 30310),
(5313, 'Atlantic Institute of Oriental Medicine', 'atom', '100 E Broward Blvd, Suite 100', 'Fort Lauderdale', 'FL', 33301),
(5314, 'ATS Institute of Technology', 'atsinstitute', '325 Alpha Park Dr', 'Highland Heights', 'OH', 44143),
(5315, 'A. T. Still University of Health Sciences', 'ATSU', '800 W. Jefferson St.', 'Kirksville', 'MO', 63501),
(5316, 'Arkansas Tech University', 'atu', 'Administration Bldg. 200, 1509 North Boulder Avenue', 'Russellville', 'AR', 72801),
(5317, 'Air University', 'au', '55 LeMay Plaza South', 'Maxwell AFB', 'AL', 36112),
(5318, 'Auburn University Main Campus', 'auburn', '', 'Auburn University', 'AL', 36849),
(5319, 'Auburn Career Center', 'auburnCC', '8140 Auburn Rd', 'Painesville', 'OH', 44077),
(5320, 'Atlantic Union College', 'auc', '338 Main St', 'South Lancaster', 'MA', 1561),
(5321, 'Audio Recording Technology Institute', 'audiocareer', '4525 Vineland Rd Ste 201b', 'Orlando', 'FL', 32811),
(5322, 'Conservatory of Recording Arts and Sciences', 'AUDIORECORDINGSCHOOL', '2300 E Broadway Rd', 'Tempe', 'AZ', 85282),
(5323, 'Augusta State University', 'aug', '2500 Walton Way', 'Augusta', 'GA', 30904),
(5324, 'Augustana College', 'augie', '2001 S Summit Ave', 'Sioux Falls', 'SD', 57197),
(5325, 'Augsburg College', 'augsburg', '2211 Riverside Ave', 'Minneapolis', 'MN', 55454),
(5326, 'Augustana College', 'augustana', '639 38th St', 'Rock Island', 'IL', 61201),
(5327, 'Augusta Technical College', 'augustatech', '3200 Augusta Tech Drive', 'Augusta', 'GA', 30906),
(5328, 'Anaheim Adult Education School', 'auhsd', '1800 W. Ball Road, Room 31', 'Anaheim', 'CA', 92805),
(5329, 'Auburn University-Montgomery', 'aum', '7440 East Drive P.O. Box 244023', 'Montgomery', 'AL', 36117),
(5330, 'American University of Puerto Rico', 'aupr', 'Carr. #2, Km.14.7, Bo. Hato Tejas, P.O. Box 2037', 'Bayamon', 'PR', 960),
(5331, 'Aurora Health Care Southern Lakes CPE', 'aurora', 'W 3985 County Road NN', 'Elkhorn', 'WI', 53121),
(5332, 'Aurora St. Luke''s Medical Center', 'aurorahealthcare', '180 W. Grange Avenue', 'Milwaukee', 'WI', 53207),
(5333, 'Austin Community College', 'austincc', '5930 Middle Fiskville Rd', 'Austin', 'TX', 78752),
(5334, 'Austin College', 'austincollege', '900 N Grand Ave', 'Sherman', 'TX', 75090),
(5335, 'Austin Graduate School of Theology', 'austingrad', '1909 University Ave', 'Austin', 'TX', 78705),
(5336, 'Austin Presbyterian Theological Seminary', 'austinseminary', '100 E 27th St', 'Austin', 'TX', 78705),
(5337, 'Advanced Technology Institute', 'auto', '5700 Southern Blvd Ste 100', 'Virginia Beach', 'VA', 23462),
(5338, 'Automotive Dealership Institute', 'autodealerinstitute', '6613 N. Scottsdale Road, Suite 100', 'Scottsdale', 'AZ', 85250),
(5339, 'Automeca Technical College', 'automeca', 'Parque Industrial La Montana Lot #14', 'Aguadilla', 'PR', 605),
(5340, 'Automotive Training Center', 'autotraining', '114 Pickering Way', 'Exton', 'PA', 19341),
(5341, 'Autry Technology Center', 'autrytech', '1201 W Willow', 'Enid', 'OK', 73703),
(5342, 'Academy of Vocal Arts', 'avaopera', '1920 Spruce Street', 'Philadelphia', 'PA', 19103),
(5343, 'Antelope Valley College', 'avc', '3041 W Ave K', 'Lancaster', 'CA', 93536),
(5344, 'Aveda Institute', 'aveda', '400 Central Ave SE', 'Minneapolis', 'MN', 55414),
(5345, 'Aveda Institute - Covington', 'avedainstitutes', '1355 Polders Lane', 'Covington', 'LA', 70433),
(5346, 'Ave Maria University', 'avemaria', '5050 Ave Maria Boulevard', 'Ave Maria', 'FL', 34142),
(5347, 'Ave Maria School of Law', 'avemarialaw', '1025 Commons Circle', 'Naples', 'FL', 34119),
(5348, 'Avera Health', 'avera', '3900 W Avera Dr', 'Sioux Falls', 'SD', 57108),
(5349, 'Avera Sacred Heart Hospital', 'AVERASACREDHEART', '501 Summit', 'Yankton', 'SD', 57078),
(5350, 'Averett University', 'averett', '420 W Main St', 'Danville', 'VA', 24541),
(5351, 'Alabama Aviation College', 'aviation', '3405 South U.S. Highway 231', 'Ozark', 'AL', 36360),
(5352, 'Aviation Institute of Maintenance - Chesapeake', 'aviationinstitutes', '2211 South Military Highway', 'Chesapeake', 'VA', 23320),
(5353, 'Aviation Institute of Maintenance - Houston', 'aviationmaintenance', '7651 Airport Blvd.', 'Houston', 'TX', 77061),
(5354, 'Avila University', 'Avila', '11901 Wornall Rd', 'Kansas City', 'MO', 64145),
(5355, 'University of Antelope Valley', 'avmc', '44055 North Sierra Highway', 'Lancaster', 'CA', 93534),
(5356, 'Ayers Institute Inc', 'Ayersinstitute', '3010 Knight Street Suite 300', 'Shreveport', 'LA', 71105),
(5357, 'Azure College', 'azurecollege', '1525 NW 167 Street', 'Miami Gardens', 'FL', 33169),
(5358, 'Arizona Western College', 'azwestern', 'P.O. Box 929', 'Yuma', 'AZ', 85366),
(5359, 'Babel University Professional School of Translation', 'babel', '1110 University Avenue, Suite 510', 'Honolulu', 'HI', 96826),
(5360, 'Babson College', 'babson', 'Babson Park', 'Wellesley', 'MA', 2457),
(5361, 'Bacone College', 'bacone', '2299 Old Bacone Rd.', 'Muskogee', 'OK', 74403),
(5362, 'La''James International College', 'bahnercollege', '1660 N Grant', 'Fremont', 'NE', 68025),
(5363, 'Bainbridge State College', 'bainbridge', '2500 E Shotwell St', 'Bainbridge', 'GA', 39819),
(5364, 'Baker College', 'baker', '1050 West Bristol Road', 'Flint', 'MI', 48507),
(5365, 'George T Baker Aviation School', 'bakeraviation', '3275 NW 42nd Ave', 'Miami', 'FL', 33142),
(5366, 'Bakersfield College', 'bakersfieldcollege', '1801 Panorama Dr', 'Bakersfield', 'CA', 93305),
(5367, 'Baker University', 'bakeru', '618 Eighth Street', 'Baldwin City', 'KS', 66006),
(5368, 'Ballet Hispanico School', 'ballethispanico', '167 West 89th Street', 'New York', 'NY', 10024),
(5369, 'Ballet Idaho Academy', 'balletidaho', '501 South 8th Street', 'Boise', 'ID', 83702),
(5370, 'Baltimore Studio of Hair Design', 'baltimorestudio', '318 N Howard St', 'Baltimore', 'MD', 21201),
(5371, 'Bancroft School of Massage Therapy', 'bancroftsmt', '333 Shrewsbury St', 'Worcester', 'MA', 1604),
(5372, 'Bank Street College of Education', 'bankstreet', '610 W 112 St', 'New York', 'NY', 10025),
(5373, 'The Baptist College of Florida', 'baptistcollege', '5400 College Dr', 'Graceville', 'FL', 32440),
(5374, 'Baptist Health System Dietetic Internship', 'baptisthealthsystem', '111 Dallas Street', 'San Antonio', 'TX', 78205),
(5375, 'Central Baptist Theological Seminary of Virginia Beach', 'baptistseminary', '2221 Centerville Turnpike', 'Virginia Beach', 'VA', 23464),
(5376, 'Lincoln Technical Institute - East Windsor', 'baraninstitute', '97 Newberry Road', 'East Windsor', 'CT', 6088),
(5377, 'Barclay College', 'barclaycollege', '607 N Kingman', 'Haviland', 'KS', 67059),
(5378, 'Bard College', 'bard', '30 Campus Road', 'Annandale-On-Hudson', 'NY', 12504),
(5379, 'Barnard College', 'barnard', '3009 Broadway', 'New York', 'NY', 10027),
(5380, 'Goldfarb School of Nursing at Barnes-Jewish College', 'barnesjewishcollege', '306 S Kingshighway Blvd', 'St. Louis', 'MO', 63110),
(5381, 'BarPalma Beauty Careers Academy', 'barpalma', '3535 Franklin Road, S.W., Unit D', 'Roanoke', 'VA', 24014),
(5382, 'Barrett and Company School of Hair Design', 'barrett', '973 Kimberly Square', 'Nicholasville', 'KY', 40356),
(5383, 'Barry University', 'barry', '11300 NE 2nd Ave', 'Miami Shores', 'FL', 33161),
(5384, 'Barstow Community College', 'barstow', '2700 Barstow Road', 'Barstow', 'CA', 92311),
(5385, 'Barton College', 'barton', '200 Atlantic Christian College Drive', 'Wilson', 'NC', 27893),
(5386, 'Barton County Community College', 'bartonccc', '245 NE 30th Road', 'Great Bend', 'KS', 67530),
(5387, 'Baruch College of the City University of New York', 'baruch', 'One Bernard Baruch Way', 'New York', 'NY', 10010),
(5388, 'Bassett Adult School', 'bassett', '1314 N. Le Borgne', 'LaPuente', 'CA', 91746),
(5389, 'Bastyr University', 'bastyr', '14500 Juanita Drive NE', 'Kenmore', 'WA', 98028),
(5390, 'Bates College', 'bates', '2 Andrews Road, 2 Lane Hall', 'Lewiston', 'ME', 4240),
(5391, 'Winner Institute, Inc. Dale Carnegie Training', 'batonrouge', '519 Kimmeridge Drive, P.O. Box 40188', 'Baton Rouge', 'LA', 70835),
(5392, 'Bauder College', 'bauder', '384 Northyards Blvd., Suite 190', 'Atlanta', 'GA', 30313),
(5393, 'Tom P Haney Technical Center', 'bay', '3016 Hwy 77', 'Panama City', 'FL', 32405),
(5394, 'Bay de Noc Community College', 'baycollege', '2001 N Lincoln Road', 'Escanaba', 'MI', 49829),
(5395, 'Baylor University', 'baylor', '500 Speight Ave.', 'Waco', 'TX', 76798),
(5396, 'Bay Medical Center, Sacred Heart System Gooding Institute of Nurse Anesthesia', 'baymedical', '615 N Bonita Ave', 'Panama City', 'FL', 32401),
(5397, 'Bay Path College', 'baypath', '588 Longmeadow Street', 'Longmeadow', 'MA', 1106),
(5398, 'Bay State College - Boston', 'baystate', '122 Commonwealth Avenue', 'Boston', 'MA', 2116),
(5399, 'Bay State School of Technology', 'baystatetech', '225 Turnpike St', 'Canton', 'MA', 2021),
(5400, 'Baptist Bible College, Graduate School and Seminary', 'bbc', '538 Venard Rd', 'Clarks Summit', 'PA', 18411),
(5401, 'Boston College', 'BC', '140 Commonwealth Ave', 'Chestnut Hill', 'MA', 2467),
(5402, 'Butler County Community College', 'bc3', 'College Drive Oak Hills', 'Butler', 'PA', 16003),
(5403, 'Bronx Community College of the City University of New York', 'bcc', '2155 University Avenue', 'Bronx', 'NY', 10453),
(5404, 'Baltimore City Community College', 'bccc', '2901 Liberty Hts Ave', 'Baltimore', 'MD', 21215),
(5405, 'Bayamon Community College', 'bccpr', '17 Maceo St', 'Bayamon', 'PR', 959),
(5406, 'Baptist Memorial College of Health Sciences', 'bchs', '1003 Monroe Ave', 'Memphis', 'TN', 38104),
(5407, 'Baylor College of Medicine', 'bcm', 'One Baylor Plaza BCM 365', 'Houston', 'TX', 77030),
(5408, 'Boulder College of Massage Therapy', 'bcmt', '6255 Longbow Dr', 'Boulder', 'CO', 80301),
(5409, 'Bucks County School of Beauty Culture, Inc.', 'bcsbc', '1761 Bustleton Pike', 'Feasterville', 'PA', 19053),
(5410, 'Bethesda University of California', 'bcu', '730 N. Euclid St', 'Anaheim', 'CA', 92801),
(5411, 'Beacon College', 'beaconcollege', '105 E Main St', 'Leesburg', 'FL', 34748),
(5412, 'Beaufort County Community College', 'beaufortcc', '5337 Highway 264 East', 'Washington', 'NC', 27889),
(5413, 'Beau Monde College of Hair Design', 'beaumondecollege', '1221 SW 12th Avenue', 'Portland', 'OR', 97205),
(5414, 'GUTI, The Premier Beauty and Wellness Academy - Bradenton', 'BEAUTY-ACADEMY', '4212 Cortez Road West', 'Bradenton', 'FL', 34210),
(5415, 'La Belle Beauty Academy', 'beautyacademy', '2960 SW 8th Street', 'Miami', 'FL', 33135),
(5416, 'Beauty Academy of South Florida', 'beautyacademyofsouthflorida', '9800 NW 77th Avenue', 'Hialeah Gardens', 'FL', 33016),
(5417, 'Aveda Institute Lafayette', 'beautybasicsinc', '2922 Johnston Street', 'Lafayette', 'LA', 70503),
(5418, 'Beauty College of America', 'beautycl', '1171 Main St', 'Forest Park', 'GA', 30297),
(5419, 'Hair Professionals Career College', 'beautyschool', '10321 S Roberts Rd', 'Palos Hills', 'IL', 60465),
(5420, 'Paul Mitchell The School Louisville', 'beautyschooldirectory', '156 North Hurstbourne Parkway', 'Louisville', 'KY', 40222),
(5421, 'Huntington School of Beauty Culture-Main Campus', 'beautyschoolforyou', '5636 US Route 60 East, Suite #2', 'Huntington', 'WV', 25705),
(5422, 'Beauty Schools of America', 'beautyschoolsofamerica', '1060 West 49th Street', 'Hialeah', 'FL', 33012),
(5423, 'Becker College', 'beckercollege', '61 Sever St', 'Worcester', 'MA', 1609),
(5424, 'Beckfield College', 'beckfield', '16 Spiral Drive', 'Florence', 'KY', 41042),
(5425, 'Bel-Rea Institute of Animal Technology', 'bel-rea', '1681 S Dayton St', 'Denver', 'CO', 80247),
(5426, 'Belhaven University', 'belhaven', '1500 Peachtree St', 'Jackson', 'MS', 39202),
(5427, 'Bellarmine University', 'bellarmine', '2001 Newburg Rd', 'Louisville', 'KY', 40205),
(5428, 'Bellevue College', 'bellevuecollege', '3000 Landerholm Circle SE', 'Bellevue', 'WA', 98007),
(5429, 'Bellin College', 'bellincollege', '725 S Webster Ave', 'Green Bay', 'WI', 54301),
(5430, 'Belmont University', 'belmont', '1900 Belmont Blvd', 'Nashville', 'TN', 37212),
(5431, 'Belmont Abbey College', 'belmontabbeycollege', '100 Belmont-Mt Holly Road', 'Belmont', 'NC', 28012),
(5432, 'Beloit College', 'beloit', '700 College St', 'Beloit', 'WI', 53511),
(5433, 'Bemidji State University', 'bemidjistate', '1500 Birchmont Drive NE', 'Bemidji', 'MN', 56601),
(5434, 'Benedictine University', 'ben', '5700 College Road', 'Lisle', 'IL', 60532),
(5435, 'Benedict College', 'benedict', '1600 Harden Street', 'Columbia', 'SC', 29204),
(5436, 'Benedictine College', 'benedictine', '1020 N 2nd St', 'Atchison', 'KS', 66002),
(5437, 'Benefis Healthcare School of Radiologic Technology', 'benefis', '500 15th Ave S', 'Great Falls', 'MT', 59405),
(5438, 'Bennett College for Women', 'bennett', '900 E Washington St', 'Greensboro', 'NC', 27401),
(5439, 'Bennington College', 'bennington', 'One College Drive', 'Bennington', 'VT', 5201),
(5440, 'Bentley College', 'bentley', '175 Forest St', 'Waltham', 'MA', 2452),
(5441, 'Illinois Center for Broadcasting', 'beonair', '55 W. 22nd Street #240', 'Lombard', 'IL', 60148),
(5442, 'Berea College', 'berea', '101 Chestnut Street', 'Berea', 'KY', 40404),
(5443, 'Berean Institute', 'bereaninstitute', '1901 W Girard Ave', 'Philadelphia', 'PA', 19130),
(5444, 'Bergen Community College', 'bergen', '400 Paramus Rd', 'Paramus', 'NJ', 7652),
(5445, 'Berkeley Adult School', 'berkeley', '1222 University Avenue', 'Berkeley', 'CA', 94702),
(5446, 'Berkeley College', 'BerkeleyCollege', '44 Rifle Camp Rd', 'West Paterson', 'NJ', 7424),
(5447, 'Berklee College of Music', 'berklee', '1140 Boylston St', 'Boston', 'MA', 2215),
(5448, 'Berks Career and Technolgy Center', 'berkscareer', '1057 County Road', 'Leesport', 'PA', 19533),
(5449, 'Berkshire Community College', 'berkshirecc', '1350 West Street', 'Pittsfield', 'MA', 1201),
(5450, 'Berks Technical Institute', 'berkstech', '2205 Ridgewood Rd', 'Wyomissing', 'PA', 19610),
(5451, 'Berk Trade and Business School', 'berktradeschool', '33-09 Queens Boulevard', 'Long Island City', 'NY', 11101),
(5452, 'Berlitz Language Centers', 'berlitz', '400 Alexander Park', 'Princeton', 'NJ', 8540),
(5453, 'Mr. Bernard''s School of Hair Fashion, Inc.', 'BERNARDSCHOOLHAIRFASHION', '711 Lisbon Street', 'Lewiston', 'ME', 4243),
(5454, 'Berry College', 'berry', '2277 Martha Berry Hwy NW', 'Mount Berry', 'GA', 30149),
(5455, 'Centura College', 'betatech', '8088 Rivers Ave', 'North Charleston', 'SC', 29406),
(5456, 'Bethany University', 'bethany', '800 Bethany Dr', 'Scotts Valley', 'CA', 95066),
(5457, 'Bethany College', 'bethanylb', '335 E. Swensson Street', 'Lindsborg', 'KS', 67456),
(5458, 'Bethany Theological Seminary', 'BETHANYSEMINARY', '615 National Rd W', 'Richmond', 'IN', 47374),
(5459, 'Bethany Village Retirement Center', 'bethanyvillage', '325 Wesley Drive', 'Mechanicsburg', 'PA', 17055),
(5460, 'Bethany College', 'bethanywv', 'Old Main', 'Bethany', 'WV', 26032),
(5461, 'Bethel Seminary', 'bethel', '3949 Bethel Dr', 'Saint Paul', 'MN', 55112),
(5462, 'Bethel College', 'bethel-college', '1705 Todds Lane', 'Hampton', 'VA', 23666),
(5463, 'Bethel College', 'bethelcollege', '1001 W McKinley Ave', 'Mishawaka', 'IN', 46545),
(5464, 'Bethel College', 'bethelks', '300 E 27th St', 'North Newton', 'KS', 67117),
(5465, 'Bethel University', 'bethelu', '325 Cherry Avenue', 'McKenzie', 'TN', 38201),
(5466, 'Bethune - Cookman College', 'bethune', '640 Dr Mary McLeod Bethune Blvd', 'Daytona Beach', 'FL', 32114),
(5467, 'Beulah Heights University', 'beulah', '892 Berne St SE', 'Atlanta', 'GA', 30316),
(5468, 'Bexley Hall Seminary', 'bexley', '583 Sheridan Avenue', 'Columbus', 'OH', 43209),
(5469, 'Blackfeet Community College', 'bfcc', 'Highway 2 & 89', 'Browning', 'MT', 59417),
(5470, 'Benjamin Franklin Institute of Technology', 'bfit', '41 Berkeley St', 'Boston', 'MA', 2116),
(5471, 'Boston Graduate School of Psychoanalysis Inc', 'bgsp', '1581 Beacon St', 'Brookline', 'MA', 2446),
(5472, 'Bowling Green State University', 'bgsu', '1001 East Wooster Street', 'Bowling Green', 'OH', 43403),
(5473, 'Bakke Graduate University', 'bgu', '1013 8th Ave, Ste 401', 'Seattle', 'WA', 98104),
(5474, 'Black Hawk College - Quad-Cities Campus', 'bhc', '6600 34th Avenue', 'Moline', 'IL', 61265),
(5475, 'Bunker Hill Community College', 'bhcc', '250 New Rutherford Ave', 'Boston', 'MA', 2129),
(5476, 'Beauty and Health Institute', 'bhicareer', '11309 Countryway Boulevard', 'Tampa', 'FL', 33626),
(5477, 'Baptist Health Schools Little Rock', 'bhslr', '11900 Colonel Glenn Road, Suite 1000', 'Little Rock', 'AR', 72210),
(5478, 'Bridgeport Hospital', 'bhson', '200 Mill Hill Ave', 'Bridgeport', 'CT', 6610),
(5479, 'Black Hills State University', 'bhsu', '1200 University St', 'Spearfish', 'SD', 57799),
(5480, 'Baltimore Hebrew University Inc', 'bhu', '5800 Park Heights Avenue', 'Baltimore', 'MD', 21215),
(5481, 'Washington Bible College and Capital Bible Seminary', 'bible', '6511 Princess Garden Parkway', 'Lanham', 'MD', 20706),
(5482, 'Biblical Theological Seminary', 'biblical', '200 N Main St', 'Hatfield', 'PA', 19440),
(5483, 'Baltimore International College', 'bic', '17 Commerce Street, Commerce Exchange', 'Baltimore', 'MD', 21202),
(5484, 'Bidwell Training Center Inc', 'bidwell-training', '1815 Metropolitan St', 'Pittsburgh', 'PA', 15233),
(5485, 'Big Bend Community College', 'bigbend', '7662 Chanute Street', 'Moses Lake', 'WA', 98837),
(5486, 'Big Sandy Community and Technical College', 'bigsandy', 'One Bert Combs Dr', 'Prestonsburg', 'KY', 41653),
(5487, 'SUNY at Binghamton', 'binghamton', 'Vestal Pky E', 'Binghamton', 'NY', 13902),
(5488, 'BioHealth College', 'biohealthcollege', '2665 North First Street, Suite 102', 'San Jose', 'CA', 95134),
(5489, 'Biola University', 'biola', '13800 Biola Ave', 'La Mirada', 'CA', 90639);
INSERT INTO `colleges` (`id`, `name`, `short_name`, `address`, `city`, `state`, `zip`) VALUES
(5490, 'Laurel Technical Institute - Sharon', 'biop', '200 Sterling Avenue', 'Sharon', 'PA', 16146),
(5491, 'Covert & Associates Dale Carnegie Training', 'birmingham', '', 'Huntsville', 'AL', 35806),
(5492, 'Birthingway College of Midwifery', 'birthingway', '12113 SE Foster Rd', 'Portland', 'OR', 97266),
(5493, 'Birthwise Midwifery School', 'birthwisemidwifery', '24 South High Street', 'Bridgton', 'ME', 4009),
(5494, 'BIR Training Center', 'birtraining', '3601 W Devon Ste 210', 'Chicago', 'IL', 60659),
(5495, 'Bishop State Community College', 'bishop', '351 North Broad Street', 'Mobile', 'AL', 36603),
(5496, 'Bismarck State College', 'bismarckstate', 'P.O. Box 5587', 'Bismarck', 'ND', 58506),
(5497, 'Border Institute of Technology', 'BITELP', '9611 Acer Ave', 'El Paso', 'TX', 79925),
(5498, 'Ohio Academy - A Paul Mitchell Partner School', 'bizhosting', '434 Market St', 'Steubenville', 'OH', 43952),
(5499, 'BJ''s Beauty and Barber College', 'bjsbeautyandbarbercollege', '5239 S Tacoma Way', 'Tacoma', 'WA', 98409),
(5500, 'Bob Jones University', 'bju', '1700 Wade Hampton Boulevard', 'Greenville', 'SC', 29614),
(5501, 'Blackburn College', 'blackburn', '700 College Ave', 'Carlinville', 'IL', 62626),
(5502, 'Blackhawk Technical College', 'blackhawk', 'P.O. Box 5009, 6004 County Rd G', 'Janesville', 'WI', 53547),
(5503, 'Black River Technical College', 'blackrivertech', '1410 Hwy 304 East', 'Pocahontas', 'AR', 72455),
(5504, 'Blackstone Career Institute', 'blackstone', '1011 Brookside Road Suite 300', 'Allentown', 'PA', 18106),
(5505, 'Bladen Community College', 'bladencc', '7418 NC Highway 41 West', 'Dublin', 'NC', 28332),
(5506, 'Empire Beauty School - Framingham', 'blainebeautyschools', '624 Worcester Road', 'Framingham', 'MA', 1701),
(5507, 'Blanton-Peale Institute', 'blantonpeale', '3 West 29th St.', 'New York', 'NY', 10001),
(5508, 'Bethany Lutheran College', 'blc', '700 Luther Dr', 'Mankato', 'MN', 56001),
(5509, 'Blessed John XXIII National Seminary', 'blessedjohnxxiii', '558 South Ave', 'Weston', 'MA', 2493),
(5510, 'Blessing Hospital', 'blessinghospital', '1005 Broadway, P.O. Box 7005', 'Quincy', 'IL', 62305),
(5511, 'Blinn College', 'blinn', '902 College Ave', 'Brenham', 'TX', 77833),
(5512, 'Bloomfield College', 'bloomfield', '467 Franklin St', 'Bloomfield', 'NJ', 7003),
(5513, 'Bloomsburg University of Pennsylvania', 'bloomu', '400 E Second St', 'Bloomsburg', 'PA', 17815),
(5514, 'Blue Mountain Community College', 'bluecc', '2411 NW Carden Ave', 'Pendleton', 'OR', 97801),
(5515, 'Blue Cliff College - Alexandria', 'bluecliffcollege', '1505 Metro Drive, Suite I', 'Alexandria', 'LA', 71301),
(5516, 'Bluefield College', 'bluefield', '3000 College Dr', 'Bluefield', 'VA', 24605),
(5517, 'Bluefield State College', 'bluefieldstate', '219 Rock St', 'Bluefield', 'WV', 24701),
(5518, 'Bluegrass Community and Technical College', 'bluegrass', '470 Cooper Drive', 'Lexington', 'KY', 40506),
(5519, 'Blue Hills Regional Technical School', 'bluehills', '800 Randolph St', 'Canton', 'MA', 2021),
(5520, 'Blue Ridge Community College', 'blueridge', '180 West Campus Drive', 'Flat Rock', 'NC', 28731),
(5521, 'Blue Sky School of Professional Massage - DePere', 'blueskyedu', '2299 American Boulevard', 'DePere', 'WI', 54155),
(5522, 'Bluffton University', 'bluffton', '1 University Drive', 'Bluffton', 'OH', 45817),
(5523, 'Baptist Missionary Association Theological Seminary', 'bmats', '1530 E Pine St', 'Jacksonville', 'TX', 75766),
(5524, 'Blue Mountain College', 'bmc', '201 W Main St', 'Blue Mountain', 'MS', 38610),
(5525, 'Brown Mackie College - Salina', 'bmcaec', '2106 South 9th Street', 'Salina', 'KS', 67401),
(5526, 'Bay Mills Community College', 'bmcc', '12214 W Lakeshore Dr', 'Brimley', 'MI', 49715),
(5527, 'Bloomington-Normal School of Radiography', 'bnradiography', '900 Franklin Avenue', 'Normal', 'IL', 61761),
(5528, 'Jefferson-Lewis-Hamilton-Herkimer-Oneida BOCES', 'boces', '20104 State Rte 3', 'Watertown', 'NY', 13601),
(5529, 'Albany-Schoharie-Schenectady BOCES', 'bocescareertech', '1015 Watervliet Shaker Rd', 'Albany', 'NY', 12205),
(5530, 'Boise Bible College', 'BOISEBIBLE', '8695 W Marigold St', 'Boise', 'ID', 83714),
(5531, 'Boise State University', 'boisestate', '1910 University Dr', 'Boise', 'ID', 83725),
(5532, 'Bon Secours Memorial College of Nursing', 'bonsecours', '8550 Magellan Pkwy #1100', 'Richmond', 'VA', 23227),
(5533, 'Boricua College', 'boricuacollege', '3755 Broadway', 'New York', 'NY', 10032),
(5534, 'Don Bosco Technical Institute', 'boscotech', '1151 San Gabriel Blvd', '