-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathus.json
1652 lines (1652 loc) · 51.8 KB
/
us.json
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
{
"http://adfs.ad.und.edu/adfs/services/trust": {
"en": "University of North Dakota"
},
"http://adfs.nic.edu/adfs/services/trust": {
"en": "North Idaho College"
},
"http://adfs.nku.edu/adfs/services/trust": {
"en": "Northern Kentucky University"
},
"http://adfs.otc.edu/adfs/services/trust": {
"en": "Ozarks Technical Community College"
},
"http://adfs.philau.edu/adfs/services/trust": {
"en": "Philadelphia University"
},
"http://adfs.ppd.com/adfs/services/trust": {
"en": "PPD"
},
"http://adfs.sso.passhe.edu/adfs/services/trust": {
"en": "PA State System of Higher Education"
},
"http://adfs.uwsp.edu/adfs/services/trust": {
"en": "University of Wisconsin - Stevens Point"
},
"http://bcadfs.bridgewater.edu/adfs/services/trust": {
"en": "Bridgewater College"
},
"http://federate.bsu.edu/sso": {
"en": "Ball State University"
},
"http://fs.albmolecular.com/adfs/services/trust": {
"en": "Curia Global, Inc."
},
"http://fs.carilionclinic.org/adfs/services/trust": {
"en": "Carilion Clinic"
},
"http://fs.uwp.edu/adfs/services/trust": {
"en": "University of Wisconsin-Parkside"
},
"http://ksufed.kennesaw.edu/adfs/services/trust": {
"en": "Kennesaw State University"
},
"http://login.mayo.edu/adfs/services/trust": {
"en": "Mayo Clinic"
},
"http://sso.oit.edu/idp": {
"en": "Oregon Institute of Technology"
},
"http://sso.quinnipiac.edu/adfs/services/trust": {
"en": "Quinnipiac University"
},
"http://ssologin.cei.edu/adfs/services/trust": {
"en": "College of Eastern Idaho"
},
"http://sts.clackamas.edu/adfs/services/trust": {
"en": "Clackamas Community College"
},
"http://sts.uidaho.edu/adfs/services/trust": {
"en": "University of Idaho"
},
"https://academica.aws.wayne.edu/saml2/trust": {
"en": "Wayne State University"
},
"https://access-ci.org/idp": {
"en": "ACCESS CI"
},
"https://access.research.cchmc.org/fed/idp": {
"en": "Cincinnati Children's Hospital Medical Center"
},
"https://account.vcccd.edu": {
"en": "Ventura County Comm College District"
},
"https://ahu.edu/idp": {
"en": "AdventHealth University (new)"
},
"https://alumidp.princeton.edu/idp/shibboleth": {
"en": "Princeton University Alumni"
},
"https://amidp.drew.edu/nidp/saml2/metadata": {
"en": "Drew University"
},
"https://auth-incommon.siu.edu": {
"en": "Southern Illinois University"
},
"https://auth-proxy.kent.edu/idp/shibboleth": {
"en": "Kent State University"
},
"https://auth.chaminade.edu/idp/shibboleth": {
"en": "Chaminade University of Honolulu"
},
"https://auth.creighton.edu/idp/shibboleth": {
"en": "Creighton University"
},
"https://auth.dickinson.edu/idp/shibboleth": {
"en": "Dickinson College"
},
"https://auth.geneseo.edu/simplesaml/saml2/idp/metadata.php": {
"en": "SUNY Geneseo"
},
"https://auth.it.marist.edu/idp": {
"en": "Marist College"
},
"https://auth.lmu.edu/idp/shibboleth": {
"en": "Loyola Marymount University"
},
"https://auth.manhattan.edu/idp/shibboleth": {
"en": "Manhattan College"
},
"https://auth.owens.edu": {
"en": "Owens Community College"
},
"https://auth.unk.edu/idp/shibboleth": {
"en": "University of Nebraska At Kearney"
},
"https://auth.unomaha.edu/idp": {
"en": "University of Nebraska at Omaha"
},
"https://auth.yale.edu/idp/shibboleth": {
"en": "Yale University"
},
"https://auth1.isu.edu/idp": {
"en": "Idaho State University"
},
"https://authentic.txstate.edu/idp/shibboleth": {
"en": "Texas State University"
},
"https://authidp.shsu.edu/idp/shibboleth": {
"en": "Sam Houston State University"
},
"https://awsanubis.ringling.edu/idp/shibboleth": {
"en": "Ringling College of Art and Design"
},
"https://cas.auth.sc.edu/cas/idp": {
"en": "University of South Carolina - CAS"
},
"https://cas.byu.edu/cas/idp/metadata": {
"en": "Brigham Young University"
},
"https://cas.coloradocollege.edu/cas/idp": {
"en": "Colorado College"
},
"https://cas.conncoll.edu/idp/shibboleth": {
"en": "Connecticut College"
},
"https://cas.kumc.edu/idp/shibboleth": {
"en": "University of Kansas Medical Center"
},
"https://cas2.tcnj.edu/cas/idp": {
"en": "The College of New Jersey"
},
"https://certify.skidmore.edu/idp/shibboleth": {
"en": "Skidmore College"
},
"https://chaffey.ondemandlogin.com": {
"en": "Chaffey Community College"
},
"https://cma-shibboleth.csum.edu/idp/shibboleth": {
"en": "California Maritime Academy"
},
"https://connect.drexel.edu/idp": {
"en": "Drexel University"
},
"https://cumin.plu.edu/idp/shibboleth": {
"en": "Pacific Lutheran University"
},
"https://eidp.llnl.gov": {
"en": "Lawrence Livermore National Laboratory"
},
"https://enterprise.login.utexas.edu/idp/shibboleth": {
"en": "University of Texas at Austin"
},
"https://falconidp.uwrf.edu/idp/shibboleth": {
"en": "University of Wisconsin-River Falls"
},
"https://fandm.us001-rapididentity.com/idp": {
"en": "Franklin & Marshall College"
},
"https://fed.huit.harvard.edu/idp/shibboleth": {
"en": "Harvard University"
},
"https://fed.nebraska.edu/idp/shibboleth": {
"en": "University of Nebraska"
},
"https://fedauth.colorado.edu/idp/shibboleth": {
"en": "University of Colorado at Boulder"
},
"https://fedidp.bcm.edu/idp/shibboleth": {
"en": "Baylor College of Medicine"
},
"https://fedidp.uh.edu/idp/shibboleth": {
"en": "University of Houston"
},
"https://ffunam.fairfield.edu:8443/nidp/saml2/metadata": {
"en": "Fairfield University IDM"
},
"https://fido.flatironinstitute.org/idp": {
"en": "Flatiron Institute FIDO"
},
"https://fim.temple.edu/idp/shibboleth": {
"en": "Temple University"
},
"https://fsr.uchc.edu/adfs/services/trust": {
"en": "UCONN HEALTH"
},
"https://hartnell.edu/idp": {
"en": "Hartnell Community College District"
},
"https://iaf33ab2bbb7164bf5aead757b53eb28e8.dev-rapididentity.com/idp": {
"en": "RapidIdentity"
},
"https://icarus.sdstate.edu/idp/shibboleth": {
"en": "South Dakota State University"
},
"https://icidp.osrhe.edu/idp/shibboleth": {
"en": "Oklahoma State Regents for Higher Education/OneNet"
},
"https://id.csn.edu/idp": {
"en": "College of Southern Nevada"
},
"https://id.dri.edu/idp": {
"en": "Desert Research Institute"
},
"https://id.gbcnv.edu/idp": {
"en": "Great Basin College"
},
"https://id.nevadastate.edu/idp": {
"en": "Nevada State University"
},
"https://id.nps.edu/idp/shibboleth": {
"en": "Naval Postgraduate School"
},
"https://id.nshe.nevada.edu/idp": {
"en": "Nevada System of Higher Education - SA/SCS"
},
"https://id.tmcc.edu/idp": {
"en": "Truckee Meadows Community College"
},
"https://id.uakron.edu/idp/shibboleth": {
"en": "University of Akron, Main Campus, The"
},
"https://id.uwgb.edu/idp": {
"en": "University of Wisconsin - Green Bay"
},
"https://id.uwlax.edu/idp": {
"en": "University of Wisconsin La Crosse"
},
"https://id.uwp.edu/idp": {
"en": "University of Wisconsin - Parkside"
},
"https://id.uwsp.edu/idp": {
"en": "University of Wisconsin - Stevens Point - 1"
},
"https://id.uwstout.edu/idp": {
"en": "University of Wisconsin-Stout"
},
"https://id.uwsuper.edu/idp": {
"en": "University of Wisconsin-Superior"
},
"https://id.uww.edu/idp": {
"en": "University of Wisconsin - Whitewater -"
},
"https://id.wnc.edu/idp": {
"en": "Western Nevada College"
},
"https://idcs-6dfbdd810afa4d509f6cfc191d612acd.identity.oraclecloud.com:443/fed": {
"en": "University of Colorado Denver | Anschutz Medical Campus"
},
"https://identity.colgate.edu/idp/shibboleth": {
"en": "Colgate University"
},
"https://identity.gettysburg.edu/idp/shibboleth": {
"en": "Gettysburg College SSO"
},
"https://identity.hmc.edu/idp": {
"en": "Harvey Mudd College"
},
"https://identity.research.gov/sso": {
"en": "NSF (National Science Foundation ) Researcher Login"
},
"https://identityprovider.anl.gov/idp/shibboleth": {
"en": "Argonne National Laboratory"
},
"https://idp-co.calstate.edu/idp/shibboleth": {
"en": "California State University, Office of the Chancellor"
},
"https://idp-prod.cc.ucf.edu/idp/shibboleth": {
"en": "University of Central Florida"
},
"https://idp-staging.fsu.edu": {
"en": "Florida State University - Staging"
},
"https://idp.allegheny.edu/openathens": {
"en": "Allegheny College"
},
"https://idp.american.edu/idp/shibboleth": {
"en": "American University"
},
"https://idp.ameslab.gov/idp/shibboleth": {
"en": "Ames Laboratory"
},
"https://idp.apu.edu/shibboleth": {
"en": "Azusa Pacific University"
},
"https://idp.aub.edu.lb/idp/shibboleth": {
"en": "American University of Beirut"
},
"https://idp.bgsu.edu/idp": {
"en": "Bowling Green State University"
},
"https://idp.bnl.gov/idp/shibboleth": {
"en": "Brookhaven National Laboratory"
},
"https://idp.boisestate.edu/idp/shibboleth": {
"en": "Boise State University"
},
"https://idp.bridgeport.edu/idp/shibboleth": {
"en": "University of Bridgeport"
},
"https://idp.brynmawr.edu/idp/shibboleth": {
"en": "Bryn Mawr College"
},
"https://idp.calpoly.edu/idp/shibboleth": {
"en": "California Polytechnic State University-San Luis Obispo"
},
"https://idp.caltech.edu/idp/shibboleth": {
"en": "California Institute of Technology"
},
"https://idp.cc.binghamton.edu/idp/shibboleth": {
"en": "Binghamton University"
},
"https://idp.chapman.edu/idp": {
"en": "Chapman University"
},
"https://idp.chop.edu/idp/shibboleth": {
"en": "Children's Hospital of Philadelphia"
},
"https://idp.cirrusidentity.com/idp": {
"en": "Cirrus Identity, Inc."
},
"https://idp.cloud.unizin.org/idp/shibboleth": {
"en": "Unizin"
},
"https://idp.cmccd.edu/idp/shibboleth": {
"en": "Copper Mountain Community College District"
},
"https://idp.cos.edu/": {
"en": "MyGiant - Sequoias Community College District"
},
"https://idp.cpp.edu/idp/shibboleth": {
"en": "California State Polytechnic University, Pomona"
},
"https://idp.csudh.edu/idp/shibboleth": {
"en": "California State University, Dominguez Hills"
},
"https://idp.csus.edu/idp/shibboleth": {
"en": "California State University, Sacramento"
},
"https://idp.csusb.edu/idp/shibboleth": {
"en": "California State University, San Bernardino"
},
"https://idp.csusm.edu/idp/shibboleth": {
"en": "California State University, San Marcos"
},
"https://idp.csustan.edu/idp/shibboleth": {
"en": "California State University, Stanislaus"
},
"https://idp.cwu.edu/idp/shibboleth": {
"en": "Central Washington University"
},
"https://idp.depauw.edu/openathens": {
"en": "DePauw University InCommon IDP"
},
"https://idp.du.edu/idp/shibboleth": {
"en": "The University of Denver"
},
"https://idp.duq.edu/idp/shibboleth": {
"en": "Duquesne University"
},
"https://idp.educause.edu/idp/shibboleth": {
"en": "EDUCAUSE"
},
"https://idp.elon.edu/idp/shibboleth": {
"en": "Elon University"
},
"https://idp.es.net/idp/shibboleth": {
"en": "ESnet"
},
"https://idp.famu.edu:443/idp/shibboleth": {
"en": "Florida A&M University"
},
"https://idp.fdu.edu/idp/shibboleth": {
"en": "Fairleigh Dickinson University"
},
"https://idp.fnal.gov/idp/shibboleth": {
"en": "Fermi National Accelerator Laboratory"
},
"https://idp.fsu.edu": {
"en": "Florida State University"
},
"https://idp.gatech.edu/idp/shibboleth": {
"en": "Georgia Institute of Technology"
},
"https://idp.getinclusive.com/simplesaml/saml2/idp/metadata.php": {
"en": "Getinclusive IDP"
},
"https://idp.getty.edu/idp": {
"en": "J. Paul Getty Trust"
},
"https://idp.greatplains.net": {
"en": "Great Plains Network"
},
"https://idp.grinnell.edu/idp/shibboleth": {
"en": "Grinnell College"
},
"https://idp.gsu.edu/idp/shibboleth": {
"en": "Georgia State University"
},
"https://idp.haverford.edu/idp/shibboleth": {
"en": "Haverford College"
},
"https://idp.hawaii.edu/idp/shibboleth": {
"en": "University of Hawaii"
},
"https://idp.huc.edu/idp/shibboleth": {
"en": "Hebrew Union College - Jewish Institute of Religion"
},
"https://idp.ias.edu/idp/shibboleth": {
"en": "Institute for Advanced Study"
},
"https://idp.iastate.edu/shibboleth": {
"en": "Iowa State University"
},
"https://idp.jefferson.edu/idp/shibboleth": {
"en": "Thomas Jefferson University"
},
"https://idp.kutztown.edu/idp/shibboleth": {
"en": "Kutztown University"
},
"https://idp.login.iu.edu/idp/shibboleth": {
"en": "Indiana University"
},
"https://idp.louisville.edu/idp": {
"en": "University of Louisville (New)"
},
"https://idp.lsuhs.edu/idp/shibboleth": {
"en": "LSU Health Shreveport"
},
"https://idp.ltcc.edu/idp/shibboleth": {
"en": "Lake Tahoe Community College"
},
"https://idp.maine.edu/idp/shibboleth": {
"en": "University of Maine System"
},
"https://idp.malone.edu/idp/shibboleth": {
"en": "Malone University"
},
"https://idp.marshall.edu/idp/shibboleth": {
"en": "Marshall University"
},
"https://idp.mbl.edu/idp/shibboleth": {
"en": "Marine Biological Laboratory"
},
"https://idp.merit.edu": {
"en": "Merit Network, Inc."
},
"https://idp.mica.edu/idp/shibboleth": {
"en": "Maryland Institute College of Art"
},
"https://idp.millersville.edu/idp/shibboleth": {
"en": "Millersville University of Pennsylvania"
},
"https://idp.mines.edu/idp/shibboleth": {
"en": "Colorado School of Mines"
},
"https://idp.morgan.edu/idp/shibboleth": {
"en": "Morgan State University"
},
"https://idp.mtsac.edu/idp/shibboleth": {
"en": "Mt. San Antonio Community College District"
},
"https://idp.nccu.edu/idp/shibboleth": {
"en": "North Carolina Central University"
},
"https://idp.ncsa.illinois.edu/idp/shibboleth": {
"en": "National Center for Supercomputing Applications"
},
"https://idp.ndsu.edu/idp/shibboleth": {
"en": "North Dakota State University"
},
"https://idp.niu.edu/idp/shibboleth": {
"en": "Northern Illinois University"
},
"https://idp.nss.udel.edu/idp/shibboleth": {
"en": "University of Delaware"
},
"https://idp.oh-tech.org/idp/shibboleth": {
"en": "Ohio Technology Consortium (OH-TECH)"
},
"https://idp.ohsu.edu/idp/shibboleth": {
"en": "Oregon Health & Science University"
},
"https://idp.okstate.edu/idp/shibboleth": {
"en": "Oklahoma State University Main Campus"
},
"https://idp.omnipasskey.com/idp/shibboleth": {
"en": "OmniPasskey"
},
"https://idp.ornl.gov/idp": {
"en": "Oak Ridge National Laboratory"
},
"https://idp.osc.edu/realms/osc": {
"en": "Ohio Supercomputer Center (OSC)"
},
"https://idp.oxy.edu/idp": {
"en": "Occidental College"
},
"https://idp.pct.edu/idp/shibboleth": {
"en": "Pennsylvania College of Technology"
},
"https://idp.pennkey.upenn.edu/idp/shibboleth": {
"en": "University of Pennsylvania"
},
"https://idp.pima.edu/idp/shibboleth": {
"en": "Pima County Community College District"
},
"https://idp.princeton.edu/idp/shibboleth": {
"en": "Princeton University"
},
"https://idp.purdue.edu/idp/shibboleth": {
"en": "Purdue University Main Campus"
},
"https://idp.radford.edu/idp/shibboleth": {
"en": "Radford University"
},
"https://idp.reed.edu/idp/shibboleth": {
"en": "Reed College"
},
"https://idp.rice.edu/idp/shibboleth": {
"en": "Rice University"
},
"https://idp.sbcc.edu/idp/shibboleth": {
"en": "Santa Barbara City College"
},
"https://idp.scccd.edu/idp/shibboleth": {
"en": "State Center Community College District"
},
"https://idp.sdcc.bnl.gov/idp": {
"en": "Brookhaven National Laboratory - SDCC.BNL.GOV"
},
"https://idp.sdsu.edu/idp/shibboleth": {
"en": "San Diego State University"
},
"https://idp.sfsu.edu/idp/shibboleth": {
"en": "San Francisco State University"
},
"https://idp.shibboleth.ttu.edu/idp/shibboleth": {
"en": "Texas Tech University"
},
"https://idp.ship.edu/idp/shibboleth": {
"en": "Shippensburg University of Pennsylvania"
},
"https://idp.si.edu/idp/shibboleth": {
"en": "Smithsonian Institution"
},
"https://idp.simmons.edu/idp/shibboleth": {
"en": "Simmons University"
},
"https://idp.smu.edu/idp/shibboleth": {
"en": "Southern Methodist University"
},
"https://idp.tamucc.edu/idp/shibboleth": {
"en": "Texas A&M University-Corpus Christi"
},
"https://idp.tamusa.edu/idp/shibboleth": {
"en": "Texas A&M University - San Antonio"
},
"https://idp.tcu.edu/idp": {
"en": "Texas Christian University"
},
"https://idp.touro.edu/idp/shibboleth": {
"en": "Touro College"
},
"https://idp.tulane.edu/idp/shibboleth": {
"en": "Tulane University"
},
"https://idp.ua.edu/idp/shibboleth": {
"en": "University of Alabama, The"
},
"https://idp.uark.edu/idp/shibboleth": {
"en": "University of Arkansas"
},
"https://idp.ubalt.edu/idp/shibboleth": {
"en": "University of Baltimore"
},
"https://idp.uhd.edu/idp/shibboleth": {
"en": "University of Houston-Downtown"
},
"https://idp.umassd.edu/idp/shibboleth": {
"en": "University of Massachusetts - Dartmouth"
},
"https://idp.unicon.net/idp/shibboleth": {
"en": "Unicon, Inc."
},
"https://idp.unmc.edu/idp/shibboleth": {
"en": "University of Nebraska Medical Center"
},
"https://idp.usm.edu/idp/shibboleth": {
"en": "University of Southern Mississippi"
},
"https://idp.uta.edu/idp/shibboleth": {
"en": "University of Texas at Arlington"
},
"https://idp.utdallas.edu/idp/shibboleth": {
"en": "University of Texas at Dallas"
},
"https://idp.utk.edu/idp/shibboleth": {
"en": "University of Tennessee"
},
"https://idp.utmb.edu/idp/shibboleth": {
"en": "University of Texas Medical Branch At Galveston"
},
"https://idp.utsystem.edu/idp/shibboleth": {
"en": "University of Texas System"
},
"https://idp.uttyler.edu/idp/shibboleth": {
"en": "University of Texas At Tyler"
},
"https://idp.uvm.edu/idp/shibboleth": {
"en": "University of Vermont"
},
"https://idp.uwf.edu/idp/shibboleth": {
"en": "University of West Florida"
},
"https://idp.uwm.edu/idp/shibboleth": {
"en": "University of Wisconsin-Milwaukee"
},
"https://idp.va.gov/idp/liblynx": {
"en": "Department of Veterans Affairs"
},
"https://idp.weber.edu/idp": {
"en": "Weber State University"
},
"https://idp.willamette.edu/idp": {
"en": "Willamette University"
},
"https://idp.williams.edu/idp/shibboleth": {
"en": "Williams College"
},
"https://idp.wm.edu/idp/shibboleth": {
"en": "William & Mary"
},
"https://idp.wmich.edu/idp/shibboleth": {
"en": "Western Michigan University"
},
"https://idp.wooster.edu/idp/shibboleth": {
"en": "The College of Wooster"
},
"https://idp.wpi.edu/idp/shibboleth": {
"en": "Worcester Polytechnic Institute"
},
"https://idp.wpunj.edu/idp/shibboleth": {
"en": "William Paterson University"
},
"https://idp.wvu.edu/idp/shibboleth": {
"en": "West Virginia University"
},
"https://idp01.broadinstitute.org/idp/shibboleth": {
"en": "Broad Institute of MIT and Harvard"
},
"https://idp01.sjsu.edu/idp/shibboleth": {
"en": "San Jose State University"
},
"https://idp2.unr.edu/idp/shibboleth": {
"en": "University of Nevada, Reno"
},
"https://idpp.calstatela.edu/idp": {
"en": "California State University, Los Angeles"
},
"https://incommon.coloradomesa.edu": {
"en": "Colorado Mesa University"
},
"https://incommon.esu.edu/idp/shibboleth": {
"en": "East Stroudsburg University of Pennsylvania"
},
"https://infp-shib-01.uthct.edu/idp/shibboleth": {
"en": "University of Texas Health Science Center At Tyler"
},
"https://its-shib.its.csulb.edu/idp/shibboleth": {
"en": "California State University, Long Beach"
},
"https://jidp.jlab.org/idp/shibboleth": {
"en": "Thomas Jefferson National Accelerator Facility"
},
"https://login.aus.edu/idp/shibboleth": {
"en": "American University of Sharjah"
},
"https://login.bard.edu/idp": {
"en": "Bard College"
},
"https://login.bc.edu/idp/shibboleth": {
"en": "Boston College"
},
"https://login.brockport.edu": {
"en": "SUNY The College at Brockport"
},
"https://login.bshp.edu": {
"en": "Baptist Health System School of Health Professions"
},
"https://login.cmu.edu/idp/shibboleth": {
"en": "Carnegie Mellon University"
},
"https://login.du.edu/idp": {
"en": "University of Denver"
},
"https://login.emory.edu/idp/shibboleth": {
"en": "Emory University"
},
"https://login.icermali.org/idp/shibboleth": {
"en": "ICER - Mali"
},
"https://login.iceruganda.org/idp/shibboleth": {
"en": "ICER - Uganda"
},
"https://login.iit.edu/cas/idp": {
"en": "Illinois Institute of Technology NEW"
},
"https://login.ithaca.edu/idp/shibboleth": {
"en": "Ithaca College"
},
"https://login.lemoyne.edu": {
"en": "LeMoyne College"
},
"https://login.ligo.org/idp/shibboleth": {
"en": "LIGO Scientific Collaboration"
},
"https://login.montana.edu/idp/shibboleth": {
"en": "Montana State University"
},
"https://login.msjc.edu/sso/": {
"en": "Mt. San Jacinto Community College District"
},
"https://login.mtholyoke.edu/idp/shibboleth": {
"en": "Mount Holyoke College Login Service"
},
"https://login.nd.edu/idp/shibboleth": {
"en": "University of Notre Dame"
},
"https://login.nyumc.org/idp/shibboleth": {
"en": "NYU Langone Health"
},
"https://login.ohlone.edu/idp/shibboleth": {
"en": "Ohlone Community College District"
},
"https://login.oregonstate.edu/idp/shibboleth": {
"en": "Oregon State University"
},
"https://login.rowan.edu": {
"en": "Rowan University"
},
"https://login.scu.edu/idp/shibboleth": {
"en": "Santa Clara University"
},
"https://login.smith.edu/idp/shibboleth": {
"en": "Smith College"
},
"https://login.sonoma.edu/shibboleth": {
"en": "Sonoma State University"
},
"https://login.sru.edu/samlsso": {
"en": "Slippery Rock University of Pennsylvania"
},
"https://login.stolaf.edu/idp/shibboleth": {
"en": "St. Olaf College"
},
"https://login.system.tamus.edu/adfs/services/trust": {
"en": "Texas A&M University System Offices"
},
"https://login.uc.edu/idp/shibboleth": {
"en": "University of Cincinnati Main Campus"
},
"https://login.uconn.edu/cas/idp/metadata": {
"en": "University of Connecticut"
},
"https://login.ufl.edu/idp/shibboleth": {
"en": "University of Florida"
},
"https://login.umt.edu/idp/shibboleth": {
"en": "The University of Montana"
},
"https://login.unlv.edu/FIM/sps/MyShib/saml20": {
"en": "University of Nevada-Las Vegas"
},
"https://login.weill.cornell.edu/idp": {
"en": "Weill Cornell Medicine"
},
"https://login.wellesley.edu/saml2/idp/metadata.php": {
"en": "Wellesley College"
},
"https://login.wisc.edu/idp/shibboleth": {
"en": "University of Wisconsin-Madison"
},
"https://login.wustl.edu/idp/shibboleth": {
"en": "Washington University in St. Louis"
},
"https://loginp.fordham.edu/idp/shibboleth": {
"en": "Fordham University"
},
"https://mckinley.csuci.edu/idp/shibboleth": {
"en": "California State University, Channel Islands"
},
"https://miracosta.fedgw.com/gateway": {
"en": "MiraCosta College"
},
"https://mycomidp.marin.edu": {
"en": "Marin Community College District"
},
"https://myid.vsc.edu/idp/shibboleth": {
"en": "Vermont State Colleges"
},
"https://myidp.nmsu.edu": {
"en": "New Mexico State University"
},
"https://myncf.ncf.edu/": {
"en": "New College of Florida"
},
"https://myqlidp.fgcu.edu": {
"en": "Florida Gulf Coast University"
},
"https://myqlidp.marin.edu": {
"en": "College of Marin"
},
"https://myqlidp.otis.edu": {
"en": "Otis College QuickLaunch"
},
"https://myresearchid.idp.cirrusidentity.com/idp": {
"en": "MyResearchID"
},
"https://netid.uwosh.edu/idp/shibboleth": {
"en": "University of Wisconsin Oshkosh"
},
"https://neuidmsso.neu.edu/idp/shibboleth": {
"en": "Northeastern University"
},
"https://passport.pitt.edu/idp/shibboleth": {
"en": "University of Pittsburgh"
},
"https://peridot.truman.edu/idp": {
"en": "Truman State University"
},
"https://pgsso.cccd.edu/sso": {
"en": "Coast Community College District"
},
"https://poseidon.springfield.edu/idp/shibboleth": {
"en": "Springfield College"
},
"https://prdidp.uncg.edu/idp/shibboleth": {
"en": "University of North Carolina at Greensboro"
},
"https://saml.nelnet.net": {
"en": "Nelnet Business Solutions"
},
"https://satosa-dev.es.net/satosafrontend/proxy.xml": {
"en": "ESnet Satosa-Dev"
},
"https://secure.stevenson.edu/idp/shibboleth": {
"en": "Stevenson University"
},
"https://shfed.augusta.edu/idp/shibboleth": {
"en": "Augusta University"
},
"https://shib-idp.its.csufresno.edu/idp/shibboleth": {
"en": "California State University, Fresno"
},
"https://shib-idp.rpi.edu/idp/shibboleth": {
"en": "Rensselaer Polytechnic Institute"
},
"https://shib-idp.tufts.edu/idp/shibboleth": {
"en": "Tufts University"
},
"https://shib-idp.umsystem.edu/idp/shibboleth": {
"en": "University of Missouri System"
},
"https://shib-idp2.uth.tmc.edu/idp/shibboleth": {
"en": "University of Texas Health Science Center At Houston"
},
"https://shib.auth.usf.edu/idp/shibboleth": {
"en": "University of South Florida"
},
"https://shib.bu.edu/idp/shibboleth": {
"en": "Boston University"
},
"https://shib.bucknell.edu/idp/shibboleth": {
"en": "Bucknell University"
},
"https://shib.csub.edu/idp/shibboleth": {
"en": "California State University, Bakersfield"
},
"https://shib.fortlewis.edu/idp/shibboleth": {
"en": "Fort Lewis College"
},
"https://shib.marymount.edu/idp/shibboleth": {
"en": "Marymount University"
},
"https://shib.mcw.edu/idp/shibboleth": {
"en": "Medical College of Wisconsin"
},
"https://shib.mdanderson.org/idp/shibboleth": {
"en": "University of Texas MD Anderson Cancer Center"
},
"https://shib.ou.edu/idp/shibboleth": {
"en": "University of Oklahoma"
},
"https://shib.sou.edu/idp/shibboleth": {
"en": "Southern Oregon University"
},
"https://shib.towson.edu/idp/shibboleth": {
"en": "Towson University"
},
"https://shib.unf.edu/idp/shibboleth": {
"en": "UNF InCommon"
},
"https://shib.uni.edu/idp/shibboleth": {
"en": "University of Northern Iowa"
},
"https://shib.unl.edu/idp/shibboleth": {
"en": "University of Nebraska-Lincoln"
},
"https://shib.uthscsa.edu/idp/shibboleth": {
"en": "University of Texas Health Science Center At San Antonio"
},
"https://shib.uvu.edu/idp/shibboleth": {
"en": "Utah Valley University"
},
"https://shib.wichita.edu/idp/shibboleth": {
"en": "Wichita State University"
},
"https://shib.wit.edu/idp/shibboleth": {
"en": "Wentworth Institute of Technology"
},
"https://shib.wsc.edu/idp/shibboleth": {
"en": "Wayne State College"
},
"https://shib01.vassar.edu/idp/shibboleth": {
"en": "Vassar College"
},
"https://shib1.coastal.edu/idp/shibboleth": {
"en": "Coastal Carolina University"
},
"https://shib1.uwplatt.edu/idp/shibboleth": {
"en": "University of Wisconsin-Platteville"
},
"https://shib2.swmed.edu/idp/shibboleth": {
"en": "University of Texas Southwestern Medical Center at Dallas"
},
"https://shib2.utep.edu/idp/shibboleth": {
"en": "University of Texas at El Paso"
},
"https://shibb-idp.georgetown.edu/idp/shibboleth": {
"en": "Georgetown University"
},
"https://shibb.its.appstate.edu/idp/shibboleth": {
"en": "Appalachian State University"
},
"https://shibb.utpb.edu/idp/shibboleth": {
"en": "University of Texas of the Permian Basin"
},
"https://shibboleth-2.baylor.edu/idp/shibboleth": {
"en": "Baylor University"
},
"https://shibboleth.aws.eckerd.edu/idp/shibboleth": {
"en": "Eckerd College"
},
"https://shibboleth.brandeis.edu/idp/shibboleth": {
"en": "Brandeis University"
},
"https://shibboleth.cmich.edu/idp/shibboleth": {
"en": "Central Michigan University"
},
"https://shibboleth.csuchico.edu/idp/shibboleth": {
"en": "California State University, Chico"
},
"https://shibboleth.fullerton.edu/idp/shibboleth": {
"en": "California State University, Fullerton"
},
"https://shibboleth.gmu.edu/idp/shibboleth": {
"en": "George Mason University"
},
"https://shibboleth.hamilton.edu/idp/shibboleth": {
"en": "Hamilton College"
},
"https://shibboleth.its.msstate.edu/idp/shibboleth": {
"en": "Mississippi State University"
},
"https://shibboleth.lib.uh.edu/idp/shibboleth": {
"en": "University of Houston Libraries"
},
"https://shibboleth.liberty.edu/idp/shibboleth": {
"en": "Liberty University"
},