-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay_names_country.json
21035 lines (21035 loc) · 872 KB
/
display_names_country.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
{
"africa": {
"https://asren-iam.asren.org/idp/shibboleth": {
"en": "ASREN"
},
"https://asren-idp.asren.net/auth/realms/asren": {
"en": "Arab State Research and Education Network"
},
"https://proxy.eduid.africa/idp/saml2": {
"en": "eduID.africa Proxy IdP"
},
"https://ubuntunet.eduid.africa/saml2/idp/metadata.php": {
"en": "UbuntuNet Alliance Staff IdP"
},
"https://udus.eduid.ng/saml2/idp/metadata.php": {
"en": "Usmanu Danfodiyo University Sokoto"
},
"https://wacren.wacren.eduid.africa/saml2/idp/metadata.php": {
"en": "WACREN IDP"
}
},
"al": {
"https://idp.rash.al/simplesaml/saml2/idp/metadata.php": {
"en": "Albanian Academic Network - RASH"
}
},
"am": {
"https://afire.asnet.am/idp/shibboleth": {
"en": "Academic Scientific Research Computer Network of Armenia (ASNET-AM)",
"hy": "Հայաստանի ակադեմիական գիտահետազոտական կոմպյուտերային ցանց (ASNET-AM)"
}
},
"at": {
"http://adfs.noc-science.at/adfs/services/trust": {
"de": "Bundesministerium für Bildung, Wissenschaft, Forschung",
"en": "Austrian Federal Ministry of Education, Science and Research"
},
"https://aai-01.internet.ufg.ac.at/idp/shibboleth": {
"de": "Universität für künstlerische und industrielle Gestaltung Linz",
"en": "University for Art and Design Linz"
},
"https://auth.fh-kufstein.ac.at/idp/shibboleth": {
"de": "FH Kufstein",
"en": "University of Applied Science Kufstein"
},
"https://auth.ph-noe.ac.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Niederösterreich",
"en": "University College of Teacher Education in Lower Austria"
},
"https://david.technikum-wien.at/idp/shibboleth": {
"de": "FH Technikum Wien",
"en": "University of Applied Sciences Technikum Wien"
},
"https://eduid.campus02.at/idp/shibboleth": {
"de": "FH CAMPUS 02",
"en": "FH CAMPUS 02"
},
"https://eduid.geosphere.at/idp/entity": {
"de": "GeoSphere Austria",
"en": "GeoSphere Austria"
},
"https://eduid.ph-kaernten.ac.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Kärnten",
"en": "University College of Teacher Education Carinthia"
},
"https://idp.aco.net/idp/shibboleth": {
"de": "ACOnet Team",
"en": "ACOnet staff"
},
"https://idp.akbild.ac.at/idp/shibboleth": {
"de": "Akademie der bildenden Künste Wien",
"en": "Academy of Fine Arts Vienna"
},
"https://idp.boku.ac.at/idp/shibboleth": {
"de": "Universität für Bodenkultur Wien",
"en": "University of Natural Resources and Life Sciences, Vienna"
},
"https://idp.donau-uni.ac.at/idp/shibboleth": {
"de": "Donau-Universität Krems",
"en": "Danube University Krems"
},
"https://idp.fernfh.ac.at/idp/shibboleth": {
"de": "Ferdinand Porsche FernFH",
"en": "Ferdinand Porsche FernFH"
},
"https://idp.fh-burgenland.at/idp/shibboleth": {
"de": "Hochschule Burgenland",
"en": "University of Applied Sciences Burgenland"
},
"https://idp.fh-joanneum.at/idp/shibboleth": {
"de": "FH Joanneum",
"en": "FH Joanneum"
},
"https://idp.fh-kaernten.at/idp/shibboleth": {
"de": "FH Kärnten",
"en": "Carinthia University of Applied Sciences"
},
"https://idp.fh-wien.ac.at/idp/shibboleth": {
"de": "FH Wien der WKW",
"en": "FH Wien – University of Applied Sciences for Management & Communication"
},
"https://idp.gmpu.ac.at/idp/shibboleth": {
"de": "Gustav Mahler Privatuniversität",
"en": "Gustav Mahler Private University"
},
"https://idp.iiasa.ac.at/idp/shibboleth": {
"de": "International Institute for Applied Systems Analysis (IIASA)",
"en": "International Institute for Applied Systems Analysis (IIASA)"
},
"https://idp.ista.ac.at/idp/shibboleth": {
"de": "Institute of Science and Technology Austria (ISTA)",
"en": "Institute of Science and Technology Austria (ISTA)"
},
"https://idp.jhp.ac.at/idp/shibboleth": {
"de": "Joseph Haydn Privathochschule",
"en": "Joseph Haydn Private University"
},
"https://idp.kl.ac.at/idp/shibboleth": {
"de": "Karl Landsteiner Privatuniversität für Gesundheitswissenschaften",
"en": "Karl Landsteiner University of Health Sciences"
},
"https://idp.kphvie.ac.at/idp/shibboleth": {
"de": "Kirchliche Pädagogische Hochschule Wien/Krems (KPH)",
"en": "University College of Teacher Education Vienna/Krems (KPH)"
},
"https://idp.mci4me.at/idp/shibboleth": {
"de": "Management Center Innsbruck",
"en": "Management Center Innsbruck"
},
"https://idp.meduni-graz.at/idp/shibboleth": {
"de": "Medizinische Universität Graz",
"en": "Medical University of Graz"
},
"https://idp.meduniwien.ac.at/idp/shibboleth": {
"de": "Medizinische Universität Wien",
"en": "Medical University of Vienna"
},
"https://idp.ph-burgenland.at/idp/shibboleth": {
"de": "Private Pädagogische Hochschule Burgenland",
"en": "University College for Teacher Education Burgenland"
},
"https://idp.ph-tirol.ac.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Tirol",
"en": "University College of Teacher Education Tyrol"
},
"https://idp.phsalzburg.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Salzburg Stefan Zweig",
"en": "Salzburg University of Education Stefan Zweig"
},
"https://idp.phst.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Steiermark",
"en": "University College of Teacher Education Styria"
},
"https://idp.phwien.ac.at/idp": {
"de": "Pädagogische Hochschule Wien",
"en": "University College of Teacher Education Vienna"
},
"https://idp.tirol-kliniken.at/idp/shibboleth": {
"de": "Tirol Kliniken | fh gesundheit",
"en": "Tirol Kliniken | Health University of Applied Sciences Tyrol"
},
"https://idp.tmw.at/idp/shibboleth": {
"de": "Technisches Museum Wien",
"en": "Vienna Museum of Science and Technology"
},
"https://idp.uibk.ac.at/idp/shibboleth": {
"de": "Universität Innsbruck",
"en": "University of Innsbruck"
},
"https://idp.umit-tirol.at/idp/shibboleth": {
"de": "UMIT Tirol – Die Tiroler Privatuniversität",
"en": "UMIT Tirol – The Tyrolean Private University"
},
"https://idp.vu-wien.ac.at/idp/shibboleth": {
"de": "Veterinärmedizinische Universität Wien",
"en": "University of Veterinary Medicine, Vienna"
},
"https://idp.wu.ac.at/idp/shibboleth": {
"de": "Wirtschaftsuniversität Wien",
"en": "Vienna University of Economics and Business"
},
"https://idp.zid.tuwien.ac.at/saml2": {
"de": "Technische Universität Wien",
"en": "TU Wien"
},
"https://login.bruckneruni.at/idp/shibboleth": {
"de": "Anton Bruckner Privatuniversität",
"en": "Anton Bruckner Private University"
},
"https://login.fh-campuswien.ac.at/idp/shibboleth": {
"de": "FH Campus Wien",
"en": "FH Campus Wien – University of Applied Sciences"
},
"https://login.fhv.at/shibboleth": {
"de": "FH Vorarlberg",
"en": "Vorarlberg University of Applied Sciences"
},
"https://login.kug.ac.at/idp/shibboleth": {
"de": "Universität für Musik und darstellende Kunst Graz",
"en": "University of Music and Performing Arts Graz"
},
"https://login.spengergasse.at/idp/shibboleth": {
"de": "HTL Spengergasse",
"en": "HTL Spengergasse"
},
"https://nhm-eduid.nhm-wien.ac.at/idp/shibboleth": {
"de": "Naturhistorisches Museum Wien (NHM)",
"en": "Natural History Museum Vienna (NHM)"
},
"https://sblt.fh-krems.ac.at/idp/shibboleth": {
"de": "IMC Krems",
"en": "IMC University of Applied Sciences Krems/Austria"
},
"https://secure.salzburgresearch.at/idp/shibboleth": {
"de": "Salzburg Research",
"en": "Salzburg Research"
},
"https://shib.ihs.ac.at/idp/shibboleth": {
"de": "Institut für Höhere Studien (IHS)",
"en": "Institute for Advanced Studies (IHS)"
},
"https://shib.mdw.ac.at/idp/shibboleth": {
"de": "Universität für Musik und darstellende Kunst Wien",
"en": "University of Music and Performing Arts Vienna"
},
"https://shib.uni-klu.ac.at/idp/shibboleth": {
"de": "Universität Klagenfurt",
"en": "University of Klagenfurt"
},
"https://shibboleth.fh-vie.ac.at/idp/shibboleth": {
"de": "FH des BFI Wien",
"en": "University of Applied Sciences BFI Vienna"
},
"https://shibboleth.fhwn.ac.at/idp/shibboleth": {
"de": "FH Wiener Neustadt",
"en": "University of Applied Sciences Wiener Neustadt"
},
"https://shibboleth.i-med.ac.at/idp/shibboleth": {
"de": "Medizinische Universität Innsbruck",
"en": "Medical University of Innsbruck"
},
"https://shibboleth.im.jku.at/idp/shibboleth": {
"de": "Johannes Kepler Universität Linz",
"en": "Johannes Kepler University Linz"
},
"https://shibboleth.khm.at/idp/shibboleth": {
"de": "KHM-Museumsverband",
"en": "KHM-Museumsverband"
},
"https://shibboleth.moz.ac.at/idp/shibboleth": {
"de": "Universität Mozarteum Salzburg",
"en": "Mozarteum University Salzburg"
},
"https://shibboleth.uni-ak.ac.at/idp/shibboleth": {
"de": "Universität für angewandte Kunst Wien",
"en": "University of Applied Arts Vienna"
},
"https://shibboleth.vbc.ac.at/idp/shibboleth": {
"de": "Campus Vienna Biocenter (GMI, IMBA, IMP, VBCF, CLIP)",
"en": "Campus Vienna Biocenter (GMI, IMBA, IMP, VBCF, CLIP)"
},
"https://sso.fh-salzburg.ac.at/idp/shibboleth": {
"de": "FH Salzburg",
"en": "Salzburg University of Applied Sciences"
},
"https://sso.fhgooe.ac.at/idp/shibboleth": {
"de": "FH Gesundheitsberufe OÖ",
"en": "University of Applied Sciences for Health Professions Upper Austria"
},
"https://sso.fhstp.ac.at/idp/shibboleth": {
"de": "FH St. Pölten",
"en": "St. Pölten University of Applied Sciences"
},
"https://sso.fwf.ac.at/auth/realms/sso": {
"de": "FWF Österreichischer Wissenschaftsfonds",
"en": "FWF Austrian Science Fund"
},
"https://sso.haup.ac.at/idp/shibboleth": {
"de": "Hochschule für Agrar- und Umweltpädagogik",
"en": "University College for Agricultural and Environmental Education"
},
"https://sso.kph-es.at/idp/shibboleth": {
"de": "Kirchliche Pädagogische Hochschule Edith Stein",
"en": "KPH Edith Stein"
},
"https://sso.kphgraz.at/idp/shibboleth": {
"de": "PPH Augustinum Graz",
"en": "PPH Augustinum Graz"
},
"https://sso.ku-linz.at/idp/shibboleth": {
"de": "Katholische Privatuniversität Linz",
"en": "Catholic Private University Linz"
},
"https://sso.lbs.ac.at/idp/shibboleth": {
"de": "Lauder Business School",
"en": "Lauder Business School"
},
"https://sso.ndu.ac.at/idp/shibboleth": {
"de": "New Design University",
"en": "New Design University"
},
"https://sso.ph-linz.at/idp/shibboleth": {
"de": "Private Pädagogische Hochschule der Diözese Linz",
"en": "Private University of Education, Diocese of Linz"
},
"https://sso.ph-ooe.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Oberösterreich",
"en": "University of Teacher Education Upper Austria"
},
"https://sso.ph-vorarlberg.ac.at/idp/shibboleth": {
"de": "Pädagogische Hochschule Vorarlberg",
"en": "University College of Teacher Education Vorarlberg"
},
"https://sso.pmu.ac.at/idp": {
"de": "Paracelsus Medizinische Privatuniversität",
"en": "Paracelsus Medical University"
},
"https://sso.sbg.ac.at/idp/shibboleth": {
"de": "Paris Lodron Universität Salzburg",
"en": "Paris Lodron University of Salzburg"
},
"https://sso.suttneruni.at/idp/shibboleth": {
"de": "Bertha von Suttner Privatuniversität",
"en": "Bertha von Suttner Private University"
},
"https://sso.tugraz.at/idp/shibboleth": {
"de": "Technische Universität Graz",
"en": "Graz University of Technology"
},
"https://weblogin.fh-ooe.at/idp/shibboleth": {
"de": "FH Oberösterreich",
"en": "University of Applied Sciences Upper Austria"
},
"https://weblogin.oeaw.ac.at/idp/shibboleth": {
"de": "Österreichische Akademie der Wissenschaften",
"en": "Austrian Academy of Sciences"
},
"https://weblogin.unileoben.ac.at/idp/shibboleth": {
"de": "Montanuniversität Leoben",
"en": "Montanuniversitaet Leoben"
},
"https://weblogin.univie.ac.at/shibboleth": {
"de": "Universität Wien",
"en": "University of Vienna"
},
"https://zididp.uni-graz.at/idp/shibboleth": {
"de": "Universität Graz",
"en": "University of Graz"
}
},
"au": {
"https://aaf-login.uts.edu.au/idp/shibboleth": {
"en": "University of Technology Sydney"
},
"https://aaf.unsw.edu.au/idp/shibboleth": {
"en": "The University of New South Wales (UNSW)"
},
"https://aaf1-idp.its.utas.edu.au/idp/shibboleth": {
"en": "University of Tasmania"
},
"https://aafidp.tafensw.edu.au/idp/shibboleth": {
"en": "TAFE NSW"
},
"https://federation.sydney.edu.au/idp/shibboleth": {
"en": "The University of Sydney"
},
"https://idp-aaf-prd.usq.edu.au/idp/shibboleth": {
"en": "University of Southern Queensland"
},
"https://idp-aaf.qimrberghofer.edu.au/idp/adfs": {
"en": "QIMR Berghofer"
},
"https://idp.actorscentreaustralia.com.au/idp/shibboleth": {
"en": "Actors Centre Australia"
},
"https://idp.canberra.edu.au/idp/shibboleth": {
"en": "University of Canberra"
},
"https://idp.caudit.edu.au/idp/shibboleth": {
"en": "CAUDIT"
},
"https://idp.cc.swin.edu.au/idp/shibboleth": {
"en": "Swinburne University of Technology"
},
"https://idp.cmri.org.au/idp/shibboleth": {
"en": "Children’s Medical Research Institute"
},
"https://idp.flinders.edu.au/idp/shibboleth": {
"en": "Flinders University"
},
"https://idp.monash.edu.au/idp/shibboleth": {
"en": "Monash University"
},
"https://idp.murdoch.edu.au/idp/shibboleth": {
"en": "Murdoch University"
},
"https://idp.newcastle.edu.au/idp/shibboleth": {
"en": "University of Newcastle"
},
"https://idp.qut.edu.au/idp/shibboleth": {
"en": "Queensland University of Technology"
},
"https://idp.une.edu.au/idp/shibboleth": {
"en": "University of New England"
},
"https://idp.unimelb.edu.au/idp/shibboleth": {
"en": "The University of Melbourne"
},
"https://idp.uow.edu.au/idp/shibboleth": {
"en": "The University of Wollongong"
},
"https://idp.uwa.edu.au/idp/shibboleth": {
"en": "The University of Western Australia"
},
"https://idp.uws.edu.au/idp/shibboleth": {
"en": "Western Sydney University"
},
"https://idp.wehi.edu.au/idp/shibboleth": {
"en": "The Walter and Eliza Hall Institute of Medical Research"
},
"https://idp1.griffith.edu.au/idp/shibboleth": {
"en": "Griffith University"
},
"https://idp2.anu.edu.au/idp/shibboleth": {
"en": "Australian National University"
},
"https://idpp1.curtin.edu.au/idp/shibboleth": {
"en": "Curtin University"
},
"https://idpweb1.vu.edu.au/idp/shibboleth": {
"en": "Victoria University"
},
"https://shibboleth.aarnet.edu.au/idp/shibboleth": {
"en": "AARNet"
},
"https://signon.deakin.edu.au/idp/shibboleth": {
"en": "Deakin University"
},
"https://unisa.edu.au/idp/shibboleth": {
"en": "University of South Australia"
},
"https://vho.aaf.edu.au/idp/shibboleth": {
"en": "AAF Virtual Home"
},
"urn:mace:federation.org.au:testfed:au-idp.adelaide.edu.au": {
"en": "University of Adelaide"
},
"urn:mace:federation.org.au:testfed:mq.edu.au": {
"en": "Macquarie University"
},
"urn:mace:federation.org.au:testfed:uq.edu.au": {
"en": "The University of Queensland"
}
},
"az": {
"https://idp1.azsciencenet.az/simplesaml": {
"az": "AzScienceNet",
"en": "AzScienceNet"
}
},
"bd": {
"https://idp.apacfilesender.asia/idp/shibboleth": {
"en": "APAC Virtual Home"
},
"https://idp.aub.ac.bd/idp/shibboleth": {
"en": "ASIAN UNIVERSITY OF BANGLADESH"
},
"https://idp.aust.edu/idp/shibboleth": {
"en": "Ahsanullah University of Science and Technology"
},
"https://idp.bau.edu.bd/idp/shibboleth": {
"en": "Bangladesh Agricultural University"
},
"https://idp.bdren.net.bd/idp/shibboleth": {
"en": "Bangladesh Research and Education Network"
},
"https://idp.buet.ac.bd/idp/shibboleth": {
"en": "Bangladesh University of Engineering and Technology"
},
"https://idp.green.ac.bd/idp/shibboleth": {
"en": "Green University of Bangladesh"
},
"https://idp.iiuc.ac.bd/idp/shibboleth": {
"en": "International Islamic University Chittagong"
},
"https://idp.juniv.edu/idp/shibboleth": {
"en": "Jahangirnagar University"
},
"https://idp.just.edu.bd/idp/shibboleth": {
"en": "Jashore University of Science and Technology"
},
"https://idp.kuet.ac.bd/idp/shibboleth": {
"en": "Khulna University of Engineering and Technology"
},
"https://idp.nu.ac.bd/idp/shibboleth": {
"en": "National University Bangladesh"
},
"https://idp.sau.edu.bd/idp/shibboleth": {
"en": "Sher-e-Bangla Agricultural University"
},
"https://idp.stamforduniversity.edu.bd/idp/shibboleth": {
"en": "Stamford University Bangladesh"
},
"https://idp.tigerfed.com.bd/idp/shibboleth": {
"en": "TIEGRfedcom"
},
"https://idp.uiu.ac.bd/idp/shibboleth": {
"en": "United International University"
},
"https://idp.wub.edu.bd/idp/shibboleth": {
"en": "World University of Bangladesh"
},
"https://idp4.tigerfed.net.bd/idp/shibboleth": {
"en": "TIGERfed Virtual Organization"
}
},
"be": {
"http://adfs.ilvo.be/adfs/services/trust": {
"en": "Instituut voor Landbouw-, Visserij- en Voedingsonderzoek"
},
"http://adfs01.naturalsciences.be/adfs/services/trust": {
"en": "Royal Belgian Institute of Natural Sciences"
},
"http://federation.helb-prigogine.be/adfs/services/trust": {
"en": "Haute Ecole Libre de Bruxelles Ilya Prigogine"
},
"https://accounts.google.com/o/saml2?idpid=C02lghgox": {
"en": "IAD-ARTS"
},
"https://auth.henallux.be": {
"en": "Henallux"
},
"https://auth.ulb.be/idp": {
"en": "Universite Libre de Bruxelles (ULB)",
"fr": "Universite Libre de Bruxelles (ULB)"
},
"https://bertrix.usaintlouis.be/idp/shibboleth": {
"en": "Universite Saint-Louis - Bruxelles",
"fr": "Universite Saint-Louis - Bruxelles"
},
"https://edugain.ichec.be/idp": {
"en": "ICHEC Brussels Management School"
},
"https://edugain.vinci.be/adfs/services/trust": {
"en": "Haute Ecole Léonard de Vinci"
},
"https://fdr2.itg.be/idp/shibboleth": {
"en": "Instituut voor Tropische Geneeskunde Identity Provider"
},
"https://identity.howest.be/idp/shibboleth": {
"en": "Howest"
},
"https://identity.ugent.be/simplesaml/saml2/idp/metadata.php": {
"en": "Ghent University",
"nl": "Universiteit Gent"
},
"https://identity.unamur.be/idp/shibboleth": {
"en": "University of Namur",
"fr": "Universite de Namur"
},
"https://idp-acc.he-ferrer.eu/idp/shibboleth": {
"en": "IdP 01 He-ferrer"
},
"https://idp-ef.provincedeliege.be/idp": {
"en": "Higher Education Institution of the Province of Liege (HEPL)",
"fr": "Haute Ecole de la Province de Liege (HEPL)"
},
"https://idp-fed.hech.be/simplesaml/saml2/idp/metadata.php": {
"en": "Haute Ecole Charlemagne (HECh)",
"fr": "Haute Ecole Charlemagne (HECh)"
},
"https://idp-fed.hers.be/simplesaml/saml2/idp/metadata.php": {
"en": "Haute Ecole Robert Schuman (HERS)",
"fr": "Haute Ecole Robert Schuman (HERS)"
},
"https://idp-fed.uliege.be/simplesaml/saml2/idp/metadata.php": {
"en": "Liege University - (ULiege / ULg)",
"fr": "Université de Liège - (ULiège / ULg)"
},
"https://idp-staff-duomfa.belnet.be/idp/shibboleth": {
"en": "Belnet Staff Login with Duo"
},
"https://idp-staff-mfa.belnet.be/shibboleth": {
"en": "Belnet Staff IdP with MFA"
},
"https://idp.cenaero.be/idp/shibboleth": {
"en": "Cenaero"
},
"https://idp.condorcet.be/idp/shibboleth": {
"en": "Haute Ecole Condorcet (HEPH-Condorcet)",
"fr": "Haute Ecole Condorcet (HEPH-Condorcet)"
},
"https://idp.eduhainaut.be/idp/shibboleth": {
"en": "Enseignement Secondaire de la Province de Hainaut (eduHainaut)",
"fr": "Enseignement Secondaire de la Province de Hainaut (eduHainaut)"
},
"https://idp.hainaut-promsoc.be/idp/shibboleth": {
"en": "Hainaut PromSoc",
"fr": "Hainaut PromSoc"
},
"https://idp.he-ferrer.eu/idp/shibboleth": {
"en": "IdP 01 He-ferrer"
},
"https://idp.he2b.be/idp/shibboleth": {
"en": "Haute École Bruxelles-Brabant (HE2B)"
},
"https://idp.heaj.be/idp/shibboleth": {
"en": "Higher Education Institution Albert Jacquard (HEAJ)",
"fr": "Haute Ecole Albert Jacquard (HEAJ)"
},
"https://idp.heh.be/idp/shibboleth": {
"en": "Haute Ecole en Hainaut"
},
"https://idp.helha.be/idp/shibboleth": {
"en": "HELHa"
},
"https://idp.hogent.be/idp": {
"en": "Hogent"
},
"https://idp.kmkg-mrah.be/idp/shibboleth": {
"en": "Royal Museums of Art and History, Brussels",
"fr": "Musées royaux d'Art et d'Histoire, Bruxelles"
},
"https://idp.observatory.be/saml2/idp/metadata.php": {
"en": "Royal Observatory of Belgium",
"fr": "Observatoire royal de Belgique"
},
"https://idp.orsi.be/shibboleth": {
"en": "Orsi Academy"
},
"https://idp.uclouvain.be/idp/shibboleth": {
"en": "Catholic University of Louvain",
"fr": "Universite catholique de Louvain"
},
"https://idp.uhasselt.be:443/idp/shibboleth": {
"en": "Hasselt University",
"nl": "Universiteit Hasselt"
},
"https://idp.umons.ac.be/idp/shibboleth": {
"en": "University of Mons (UMONS)",
"fr": "Universite de Mons (UMONS)"
},
"https://idp.vliz.be/idp/shibboleth": {
"en": "Flanders Marine Institute (VLIZ)"
},
"https://idp.vub.be/idp/sso": {
"en": "Vrije Universiteit Brussel"
},
"https://idpx.ua.ac.be/idp/shibboleth": {
"en": "Universiteit Antwerpen"
},
"https://kcsso.vib.be/simplesaml/saml2/idp/metadata.php": {
"en": "VIB",
"nl": "VIB"
},
"https://saml.aeronomie.be/saml2/idp/metadata.php": {
"en": "Royal Belgian Institute for Space Aeronomy",
"fr": "Institut royal d'Aéronomie Spatiale de Belgique"
},
"https://secure-acc.etnic.be/nidp/saml2/metadata": {
"en": "MFWB"
},
"https://secure.etnic.be/nidp/saml2/metadata": {
"en": "FWB"
},
"https://sso.irc.ugent.be/auth/realms/irc": {
"en": "VIB-UGent IRC"
},
"https://sts.windows.net/2d5e4aeb-342c-4a81-9613-e9c0294096ae/": {
"en": "Royal Museum of Fine Arts of Belgium"
},
"https://sts.windows.net/9e2777ed-8237-4ab9-9278-2c144d6f6da3/": {
"en": "VITO"
},
"https://sts.windows.net/a72d5a72-25ee-40f0-9bd1-067cb5b770d4/": {
"en": "imec"
},
"https://sts.windows.net/b6e080ea-adb9-4c79-9303-6dcf826fb854/": {
"en": "ArteveldeHogeschool"
},
"urn:mace:kuleuven.be:kulassoc:kuleuven.be": {
"en": "KU Leuven Association",
"nl": "Associatie KU Leuven"
}
},
"bg": {
"https://edugain.mu-pleven.bg/idp/shibboleth": {
"bg": "Медицински университет Плевен",
"en": "Medical University Pleven"
},
"https://eid.swu.bg/idp/shibboleth": {
"bg": "Югозападен университет \"Неофит Рилски\"",
"en": "South-West Unversity \"Neofit Rilski\""
},
"https://ewp.unibit.bg/idp/shibboleth": {
"bg": "Университет по библиотекознание и информационни технологии.",
"en": "University of Library Studies and Information technologies"
},
"https://idp.bas.bg/idp/shibboleth": {
"bg": "Българска Академия на Науките",
"en": "Bulgarian Academy of Science"
},
"https://idp.bfu.bg/idp/saml2/idp/metadata.php": {
"bg": "Бургаски свободен университет",
"en": "Burgas Free University"
},
"https://idp.cc.bas.bg/idp/shibboleth": {
"bg": "Лабораторията по телематика",
"en": "Laboratory of Telematics"
},
"https://idp.naval-acad.bg/idp/shibboleth": {
"bg": "Висше военноморско училище \"Н. Й. Вапцаров\"",
"en": "Nikola Vaptsarov Naval Academy"
},
"https://idp.nbu.bg/idp/shibboleth": {
"bg": "Нов български университет",
"en": "New Bulgarian University"
},
"https://idp.tu-sofia.bg/idp/shibboleth": {
"bg": "Технически Университет - София",
"en": "Technical University of Sofia"
},
"https://idp.uctm.edu/idp/saml2/idp/metadata.php": {
"bg": "Химикотехнологичен и металургичен университет (ХТМУ)",
"en": "University of Chemical Technology and Metallurgy (UCTM)"
},
"https://idp.uni-ruse.bg/idp/shibboleth": {
"bg": "Русенски университет Ангел Кънчев",
"en": "University Of Ruse Angel Kunchev"
},
"https://sso.nvu.bg/idp/shibboleth": {
"bg": "Национален военен университет \"Васил Левски\"",
"en": "National Military University \"Vasil Levski\""
},
"https://sso.rndc.bg/idp/shibboleth": {
"bg": "Военна академия Г. С. Раковски",
"en": "Rakovski National Defence College"
},
"https://sso.ue-varna.bg": {
"bg": "Икономически университет - Варна",
"en": "University of Economics - Varna"
},
"https://sso.uni-sofia.bg/idp/shibboleth": {
"en": "Sofia University \"St. Kliment Ohridski\""
},
"https://vnshibo.vfu.bg/idp/shibboleth": {
"bg": "Варненски свободен университет Черноризец Храбър",
"en": "Varna Free University Chernorizets Hrabar"
}
},
"br": {
"https://040cafe602.up.edu.br/idp/shibboleth": {
"en": "UP - Universidade Positivo",
"pt-br": "UP - Universidade Positivo"
},
"https://1010se17fam-v18.famerp.br/idp/shibboleth": {
"en": "FAMERP - Faculdade de Medicina de Rio Preto",
"pt-br": "FAMERP - Faculdade de Medicina de Rio Preto"
},
"https://acesso.ufabc.edu.br/idp/shibboleth": {
"en": "UFABC - Universidade Federal do ABC",
"pt-br": "UFABC - Universidade Federal do ABC"
},
"https://aclxpcafe.accamargo.org.br/idp/shibboleth": {
"en": "ACCAMARGO - AC Camargo Cancer Center",
"pt-br": "ACCAMARGO - AC Camargo Cancer Center"
},
"https://araripe.uece.br/idp/shibboleth": {
"en": "UECE - Universidade Estadual do Ceara",
"pt-br": "UECE - Universidade Estadual do Ceara"
},
"https://azor.ufpe.br/idp/shibboleth": {
"en": "UFPE - Universidade Federal de Pernambuco",
"pt-br": "UFPE - Universidade Federal de Pernambuco"
},
"https://barista2.pucsp.br/idp/shibboleth": {
"en": "PUCSP - Pontificia Universidade Catolica de Sao Paulo",
"pt-br": "PUCSP - Pontificia Universidade Catolica de Sao Paulo"
},
"https://cafe-01.uffs.edu.br/idp/shibboleth": {
"en": "UFFS - Universidade Federal da Fronteira Sul",
"pt-br": "UFFS - Universidade Federal da Fronteira Sul"
},
"https://cafe-gateway.ifce.edu.br/idp/shibboleth": {
"en": "IFCE - Instituto Federal do Ceara",
"pt-br": "IFCE - Instituto Federal do Ceara"
},
"https://cafe-idp.ifnmg.edu.br/idp/shibboleth": {
"en": "IFNMG - Instituto Federal do Norte de Minas Gerais",
"pt-br": "IFNMG - Instituto Federal do Norte de Minas Gerais"
},
"https://cafe-idp.ufc.br/idp/shibboleth": {
"en": "UFC - Universidade Federal do Ceara",
"pt-br": "UFC - Universidade Federal do Ceara"
},
"https://cafe-idp.ufrrj.br/idp/shibboleth": {
"en": "UFRRJ - Universidade Federal Rural do Rio de Janeiro",
"pt-br": "UFRRJ - Universidade Federal Rural do Rio de Janeiro"
},
"https://cafe-idp.unicentro.br/idp/shibboleth": {
"en": "UNICENTRO - Universidade Estadual do Centro-Oeste",
"pt-br": "UNICENTRO - Universidade Estadual do Centro-Oeste"
},
"https://cafe-idp.unirio.br/idp/shibboleth": {
"en": "UNIRIO - Universidade Federal do Estado do Rio de Janeiro",
"pt-br": "UNIRIO - Universidade Federal do Estado do Rio de Janeiro"
},
"https://cafe-idp.unisantos.br/idp/shibboleth": {
"en": "UNISANTOS - Universidade Catolica de Santos",
"pt-br": "UNISANTOS - Universidade Catolica de Santos"
},
"https://cafe-school.cesar.org.br/idp/shibboleth": {
"en": "CESAR - Centro de Estudos e Sistemas Avancados do Recife",
"pt-br": "CESAR - Centro de Estudos e Sistemas Avancados do Recife"
},
"https://cafe-v3.upf.br/idp/shibboleth": {
"en": "UPF - Universidade de Passo Fundo",
"pt-br": "UPF - Universidade de Passo Fundo"
},
"https://cafe.apps.uern.br/idp/shibboleth": {
"en": "UERN - Universidade do Estado do Rio Grande do Norte",
"pt-br": "UERN - Universidade do Estado do Rio Grande do Norte"
},
"https://cafe.cbpf.br/idp/shibboleth": {
"en": "CBPF - Centro Brasileiro de Pesquisas Fisicas",
"pt-br": "CBPF - Centro Brasileiro de Pesquisas Fisicas"
},
"https://cafe.cefet-rj.br/idp/shibboleth": {
"en": "CEFET-RJ - Centro Fed. Educ. Tecnol. Celso S. Fonseca",
"pt-br": "CEFET-RJ - Centro Fed. Educ. Tecnol. Celso S. Fonseca"
},
"https://cafe.cnpq.br/idp/shibboleth": {
"en": "CNPQ - Conselho Nacional de Desenvolvimento Cientifico e Tecnologico",
"pt-br": "CNPQ - Conselho Nacional de Desenvolvimento Cientifico e Tecnologico"
},
"https://cafe.cruzeirodosul.edu.br/idp/shibboleth": {
"en": "UNICSUL - Universidade Cruzeiro do Sul",
"pt-br": "UNICSUL - Universidade Cruzeiro do Sul"
},
"https://cafe.eldorado.org.br/idp/shibboleth": {
"en": "IPE - Instituto de Pesquisas Eldorado",
"pt-br": "IPE - Instituto de Pesquisas Eldorado"
},
"https://cafe.esg.br/idp/shibboleth": {
"en": "ESG - Escola Superior de Guerra",
"pt-br": "ESG - Escola Superior de Guerra"
},
"https://cafe.espm.br/idp/shibboleth": {
"en": "ESPM - Escola Superior de Propaganda e Marketing",
"pt-br": "ESPM - Escola Superior de Propaganda e Marketing"
},
"https://cafe.fmc-campos.com.br/idp/shibboleth": {
"en": "FMC - Faculdade de Medicina de Campos",
"pt-br": "FMC - Faculdade de Medicina de Campos"
},
"https://cafe.fucape.br/idp/shibboleth": {
"en": "FUCAPE - Fundacao Instituto Capixaba de Pesquisa em Cont. Econ. e Financas",
"pt-br": "FUCAPE - Fundacao Instituto Capixaba de Pesquisa em Cont. Econ. e Financas"
},
"https://cafe.fumec.br/idp/shibboleth": {
"en": "FUMEC - Fundacao Mineira de Educacao e Cultura",
"pt-br": "FUMEC - Fundacao Mineira de Educacao e Cultura"
},
"https://cafe.funesa.se.gov.br/idp/shibboleth": {
"en": "FUNESA - Fundacao Estadual de Saude",
"pt-br": "FUNESA - Fundacao Estadual de Saude"
},
"https://cafe.furg.br/idp/shibboleth": {
"en": "FURG - Universidade Federal do Rio Grande",
"pt-br": "FURG - Universidade Federal do Rio Grande"
},
"https://cafe.ibict.br/idp/shibboleth": {
"en": "IBICT - Inst. Brasileiro de Info. em Ciencia e Tecnologia",
"pt-br": "IBICT - Inst. Brasileiro de Info. em Ciencia e Tecnologia"
},
"https://cafe.idp.edu.br/idp/shibboleth": {
"en": "IDP - Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa de Brasilia",
"pt-br": "IDP - Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa de Brasilia"
},
"https://cafe.iec.gov.br/idp/shibboleth": {
"en": "IEC - Instituto Evandro Chagas",
"pt-br": "IEC - Instituto Evandro Chagas"
},
"https://cafe.ien.gov.br/idp/shibboleth": {
"en": "IEN - Instituto de Engenharia Nuclear",
"pt-br": "IEN - Instituto de Engenharia Nuclear"
},
"https://cafe.ifma.edu.br/idp/shibboleth": {
"en": "IFMA - Instituto Federal do Maranhao",
"pt-br": "IFMA - Instituto Federal do Maranhao"
},
"https://cafe.ifrj.edu.br/idp/shibboleth": {
"en": "IFRJ - Instituto Federal de Educacao do Rio de Janeiro",
"pt-br": "IFRJ - Instituto Federal de Educacao do Rio de Janeiro"
},
"https://cafe.ifro.edu.br/idp/shibboleth": {
"en": "IFRO - Instituto Federal de Rondonia",
"pt-br": "IFRO - Instituto Federal de Rondonia"
},
"https://cafe.ifrs.edu.br/idp/shibboleth": {
"en": "IFRS - Instituto Federal de Educacao Ciencia e Tecnologia do Rio Grande do Sul",
"pt-br": "IFRS - Instituto Federal de Educacao Ciencia e Tecnologia do Rio Grande do Sul"
},
"https://cafe.ime.eb.br/idp/shibboleth": {
"en": "IME - Instituto Militar de Engenharia",
"pt-br": "IME - Instituto Militar de Engenharia"
},
"https://cafe.ipa.br/idp/shibboleth": {
"en": "IPA - Instituto Agronomico de Pernambuco",
"pt-br": "IPA - Instituto Agronomico de Pernambuco"
},
"https://cafe.ita.br/idp/shibboleth": {
"en": "ITA - Instituto Tecnologico de Aeronautica",
"pt-br": "ITA - Instituto Tecnologico de Aeronautica"
},
"https://cafe.itaipuparquetec.org.br/idp/shibboleth": {
"en": "FPTI - Fundacao Parque Tecnologico Itaipu",
"pt-br": "FPTI - Fundacao Parque Tecnologico Itaipu"
},
"https://cafe.itvds.org/idp/shibboleth": {
"en": "ITV - Instituto Tecnologico Vale",
"pt-br": "ITV - Instituto Tecnologico Vale"
},
"https://cafe.mamiraua.org.br/idp/shibboleth": {
"en": "IDSM - Instituto de Desenvolvimento Sutentavel Mamiraua",
"pt-br": "IDSM - Instituto de Desenvolvimento Sutentavel Mamiraua"
},
"https://cafe.prefeitura.sp.gov.br/idp/shibboleth": {
"en": "SMS - Secretaria Municipal da Saude - SP",
"pt-br": "SMS - Secretaria Municipal da Saude - SP"
},
"https://cafe.pucgoias.edu.br/idp/shibboleth": {
"en": "PUCGOIAS - Pontificia Universidade Catolica de Goias",
"pt-br": "PUCGOIAS - Pontificia Universidade Catolica de Goias"
},
"https://cafe.pucminas.br/idp/shibboleth": {
"en": "PUC MINAS - pontificia Universidade Catolica de Minas Gerais",
"pt-br": "PUC MINAS - pontificia Universidade Catolica de Minas Gerais"
},
"https://cafe.pucpr.br/idp/shibboleth": {
"en": "PUCPR - Pontificia Universidade Catolica do Parana",
"pt-br": "PUCPR - Pontificia Universidade Catolica do Parana"
},
"https://cafe.saude.gov.br/idp/shibboleth": {
"en": "MS - Ministerio da Saude",
"pt-br": "MS - Ministerio da Saude"
},
"https://cafe.sede.embrapa.br/idp/shibboleth": {
"en": "EMBRAPA - Empresa Brasileira de Pesquisa Agropecuaria",
"pt-br": "EMBRAPA - Empresa Brasileira de Pesquisa Agropecuaria"
},
"https://cafe.sgb.gov.br/idp/shibboleth": {
"en": "SGB - Servico Geologico do Brasil",
"pt-br": "SGB - Servico Geologico do Brasil"
},
"https://cafe.ucs.br/idp/shibboleth": {
"en": "UCS - Universidade de Caxias do Sul",
"pt-br": "UCS - Universidade de Caxias do Sul"
},
"https://cafe.ucsal.br/idp/shibboleth": {
"en": "UCSAL - Universidade Catolica do Salvador",
"pt-br": "UCSAL - Universidade Catolica do Salvador"
},
"https://cafe.uemg.br/idp/shibboleth": {
"en": "UEMG - Universidade do Estado de Minas Gerais",
"pt-br": "UEMG - Universidade do Estado de Minas Gerais"
},
"https://cafe.uerr.edu.br/idp/shibboleth": {
"en": "UERR - Universidade Estadual De Roraima",
"pt-br": "UERR - Universidade Estadual De Roraima"
},
"https://cafe.ufam.edu.br/idp/shibboleth": {
"en": "UFAM - Universidade Federal do Amazonas",
"pt-br": "UFAM - Universidade Federal do Amazonas"
},
"https://cafe.ufba.br/idp/shibboleth": {
"en": "UFBA - Universidade Federal da Bahia",
"pt-br": "UFBA - Universidade Federal da Bahia"
},
"https://cafe.uff.br/idp/shibboleth": {
"en": "UFF - Universidade Federal Fluminense",
"pt-br": "UFF - Universidade Federal Fluminense"
},
"https://cafe.ufmg.br/idp/shibboleth": {
"en": "UFMG - Universidade Federal de Minas Gerais",
"pt-br": "UFMG - Universidade Federal de Minas Gerais"
},
"https://cafe.ufnt.edu.br/idp/shibboleth": {
"en": "UFNT - Universidade Federal do Norte do Tocantins",
"pt-br": "UFNT - Universidade Federal do Norte do Tocantins"
},
"https://cafe.ufpa.br/idp/shibboleth": {
"en": "UFPA - Universidade Federal do Para",
"pt-br": "UFPA - Universidade Federal do Para"
},
"https://cafe.ufpel.edu.br/idp/shibboleth": {
"en": "UFPEL - Universidade Federal de Pelotas",
"pt-br": "UFPEL - Universidade Federal de Pelotas"
},
"https://cafe.ufpi.br/idp/shibboleth": {