forked from alanorth/DSpace
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcg-contributor-affiliation.xml
1037 lines (1037 loc) · 65.3 KB
/
cg-contributor-affiliation.xml
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
<?xml version="1.0" encoding="utf-8"?>
<node id="Author affiliations" label="">
<isComposedBy>
<node id="1" label="Aarhus University" />
<node id="2" label="Aberystwyth University" />
<node id="3" label="Accelerating Impacts of CGIAR Climate Research for Africa" />
<node id="4" label="ACDI/VOCA" />
<node id="5" label="Acharya N.G. Ranga Agricultural University" />
<node id="6" label="Addis Ababa Science and Technology University" />
<node id="7" label="Addis Ababa University" />
<node id="8" label="Africa Business Group" />
<node id="9" label="African Agricultural Technology Foundation" />
<node id="10" label="African Climate Policy Centre" />
<node id="11" label="African Development Bank" />
<node id="12" label="African Group of Negotiators Experts Support" />
<node id="13" label="African Plant Nutrition Institute" />
<node id="14" label="African Union" />
<node id="15" label="African Union Interafrican Bureau for Animal Resources" />
<node id="16" label="Africa Rice Center" />
<node id="17" label="Agence Française de Développement" />
<node id="18" label="Agence Nationale de l'Aviation Civile et de la Météorologie, Senegal" />
<node id="19" label="AgResearch, New Zealand" />
<node id="20" label="AGRHYMET" />
<node id="21" label="Agribusiness TV" />
<node id="22" label="Agricultural Biotechnology Research Institute of Iran" />
<node id="23" label="Agricultural Research Center, Egypt" />
<node id="24" label="Agricultural Research Corporation, Sudan" />
<node id="25" label="Agricultural Research Council, South Africa" />
<node id="26" label="Agricultural Research Organization, Israel" />
<node id="27" label="Agriculture and Agri-Food Canada" />
<node id="28" label="Agriculture Victoria, Australia" />
<node id="29" label="Agriterra" />
<node id="30" label="Agro-Insight" />
<node id="31" label="AgroParisTech" />
<node id="32" label="Agroscope" />
<node id="33" label="Ahmadu Bello University" />
<node id="34" label="Aide à la Décision Economique" />
<node id="35" label="Ain Shams University" />
<node id="36" label="AKADEMIYA2063" />
<node id="37" label="Albert-Ludwigs-Universität Freiburg" />
<node id="38" label="Alemaya University" />
<node id="39" label="Alex Ekwueme Federal University" />
<node id="40" label="Alliance for a Green Revolution in Africa" />
<node id="41" label="Alliance of Bioversity International and CIAT" />
<node id="42" label="Ambo University" />
<node id="43" label="Ambrose Alli University" />
<node id="44" label="Amhara Regional Agricultural Research Institute, Ethiopia" />
<node id="45" label="Arba Minch University" />
<node id="46" label="Arid Regions Institute" />
<node id="47" label="Arizona State University" />
<node id="48" label="Arsi University" />
<node id="49" label="Asian Development Bank" />
<node id="50" label="Asian Institute of Technology" />
<node id="51" label="Asian Vegetable Research and Development Center" />
<node id="52" label="Asociación para la Diversificación y el Desarrollo Agrícola Comunal" />
<node id="53" label="Asociación Regional Campesina Ch'orti'" />
<node id="54" label="Assam Agricultural University" />
<node id="55" label="Association for Strengthening Agricultural Research in East and Central Africa" />
<node id="56" label="Association for Strengthening Agricultural Research in Eastern and Central Africa" />
<node id="57" label="Association les Amis de Capte Tunisie" />
<node id="58" label="Association Malienne d'Éveil au Développement Durable" />
<node id="59" label="Association of Uganda Professional Women in Agriculture and Environment" />
<node id="60" label="Association Tunisienne d'Agriculture Environnementale" />
<node id="61" label="Auburn University" />
<node id="62" label="Australian Animal Health Laboratory" />
<node id="63" label="Australian Centre for International Agricultural Research" />
<node id="64" label="Australian National University" />
<node id="65" label="Bahir Dar University" />
<node id="66" label="BAIF Development Research Foundation" />
<node id="67" label="Banaras Hindu University" />
<node id="68" label="Bangladesh Agricultural Research Institute" />
<node id="69" label="Bangladesh Agricultural University" />
<node id="70" label="Bangladesh Rice Research Institute" />
<node id="71" label="Bangladesh Wheat and Maize Research Institute" />
<node id="72" label="Bangor University" />
<node id="73" label="Basque Centre for Climate Change" />
<node id="74" label="Bayero University" />
<node id="75" label="Bern University of Applied Sciences" />
<node id="76" label="Bihar Agricultural University" />
<node id="77" label="Bill & Melinda Gates Foundation" />
<node id="78" label="Biodiversity for Food and Nutrition Project, Brazil" />
<node id="79" label="Bioversity International" />
<node id="80" label="BlueGreen Labs, Belgium" />
<node id="81" label="Bogor Agricultural University" />
<node id="82" label="Bonga Agricultural Research Center, Ethiopia" />
<node id="83" label="Borlaug Institute for South Asia" />
<node id="84" label="Boston University" />
<node id="85" label="Bowen University" />
<node id="86" label="Boyce Thompson Institute for Plant Research" />
<node id="87" label="Brawijaya University" />
<node id="88" label="Brunel University" />
<node id="89" label="Bvumbwe Agriculture Research Station, Malawi" />
<node id="90" label="CAB International" />
<node id="91" label="Cairo University" />
<node id="92" label="California Institute of Technology" />
<node id="93" label="California State University" />
<node id="94" label="Can Tho University" />
<node id="95" label="Cardiff University" />
<node id="96" label="CARE" />
<node id="97" label="CARE International" />
<node id="98" label="Caritas" />
<node id="99" label="Carleton University" />
<node id="100" label="Catholic Relief Services" />
<node id="101" label="Center for Development Research, Germany" />
<node id="102" label="Center for International Forestry Research" />
<node id="103" label="Centers for Disease Control and Prevention" />
<node id="104" label="Central Soil Salinity Research Institute, India" />
<node id="105" label="Centre de Coopération Internationale en Recherche Agronomique pour le Développement" />
<node id="106" label="Centre for Coordination of Agricultural Research and Development for Southern Africa" />
<node id="107" label="Centre for Ecology and Hydrology, United Kingdom" />
<node id="108" label="Centre for Forest Biotechnology and Tree Improvement Research and Development" />
<node id="109" label="Centre for Livestock and Agriculture Development, Cambodia" />
<node id="110" label="Centre for Tropical Livestock Genetics and Health" />
<node id="111" label="Centre International de Recherche-Développement sur l'Élevage en zone Subhumide, Burkina Faso" />
<node id="112" label="Centre National de la Recherche Scientifique, France" />
<node id="113" label="Centre National de Recherche Agronomique, Côte d'Ivoire" />
<node id="114" label="Centre National de Recherche appliquée au Développement Rural, Madagascar" />
<node id="115" label="Centre Suisse de Recherches Scientifiques en Côte d'Ivoire" />
<node id="116" label="Centro Agronómico Tropical de Investigación y Enseñanza" />
<node id="117" label="Centro de Investigaciones Amazónicas Macagual, Colombia" />
<node id="118" label="CGIAR" />
<node id="119" label="CGIAR Challenge Program on Water and Food" />
<node id="120" label="CGIAR Consortium" />
<node id="121" label="CGIAR Consortium Board" />
<node id="122" label="CGIAR Consortium Office" />
<node id="123" label="CGIAR Excellence in Breeding Platform" />
<node id="124" label="CGIAR FOCUS Climate Security" />
<node id="125" label="CGIAR Fund Office" />
<node id="126" label="CGIAR Gender and Diversity Program" />
<node id="127" label="CGIAR GENDER Impact Platform" />
<node id="128" label="CGIAR GENDER Platform" />
<node id="129" label="CGIAR Genebank Platform" />
<node id="130" label="CGIAR Impact Platform on Climate Change" />
<node id="131" label="CGIAR Impact Platform on Environmental Health and Biodiversity" />
<node id="132" label="CGIAR Impact Platform on Gender" />
<node id="133" label="CGIAR Impact Platform on Nutrition, Health and Food Security" />
<node id="134" label="CGIAR Impact Platform on Poverty Reduction, Livelihoods and Jobs" />
<node id="135" label="CGIAR Independent Advisory and Evaluation Service" />
<node id="136" label="CGIAR Independent Evaluation Arrangement" />
<node id="137" label="CGIAR Independent Science and Partnership Council" />
<node id="138" label="CGIAR Independent Science for Development Council" />
<node id="139" label="CGIAR Initiative on Accelerated Breeding" />
<node id="140" label="CGIAR Initiative on AgriLAC Resiliente" />
<node id="141" label="CGIAR Initiative on Agroecology" />
<node id="142" label="CGIAR Initiative on Aquatic Foods" />
<node id="143" label="CGIAR Initiative on Asian Mega-Deltas" />
<node id="144" label="CGIAR Initiative on Breeding Resources" />
<node id="145" label="CGIAR Initiative on Climate Resilience" />
<node id="146" label="CGIAR Initiative on Digital Innovation" />
<node id="147" label="CGIAR Initiative on Diversification in East and Southern Africa" />
<node id="148" label="CGIAR Initiative on Excellence in Agronomy" />
<node id="149" label="CGIAR Initiative on Foresight" />
<node id="150" label="CGIAR Initiative on Fragility, Conflict, and Migration" />
<node id="151" label="CGIAR Initiative on Fragility to Resilience in Central and West Asia and North Africa" />
<node id="152" label="CGIAR Initiative on Fruit and Vegetables for Sustainable Healthy Diets" />
<node id="153" label="CGIAR Initiative on Gender Equality" />
<node id="154" label="CGIAR Initiative on Genebanks" />
<node id="155" label="CGIAR Initiative on Livestock and Climate" />
<node id="156" label="CGIAR Initiative on Low-Emission Food Systems" />
<node id="157" label="CGIAR Initiative on Market Intelligence" />
<node id="158" label="CGIAR Initiative on Mixed Farming Systems" />
<node id="159" label="CGIAR Initiative on National Policies and Strategies" />
<node id="160" label="CGIAR Initiative on Nature-Positive Solutions" />
<node id="161" label="CGIAR Initiative on NEXUS Gains" />
<node id="162" label="CGIAR Initiative on One Health" />
<node id="163" label="CGIAR Initiative on Plant Health" />
<node id="164" label="CGIAR Initiative on Resilient Cities" />
<node id="165" label="CGIAR Initiative on Rethinking Food Markets" />
<node id="166" label="CGIAR Initiative on Seed Equal" />
<node id="167" label="CGIAR Initiative on Sustainable Animal Productivity" />
<node id="168" label="CGIAR Initiative on Sustainable Healthy Diets" />
<node id="169" label="CGIAR Initiative on Transforming Agrifood Systems in South Asia" />
<node id="170" label="CGIAR Initiative on West and Central African Food Systems Transformation" />
<node id="171" label="CGIAR Platform for Big Data in Agriculture" />
<node id="172" label="CGIAR Research Program for Managing and Sustaining Crop Collections" />
<node id="173" label="CGIAR Research Program on Agriculture for Nutrition and Health" />
<node id="174" label="CGIAR Research Program on Aquatic Agricultural Systems" />
<node id="175" label="CGIAR Research Program on Climate Change, Agriculture and Food Security" />
<node id="176" label="CGIAR Research Program on Dryland Cereals" />
<node id="177" label="CGIAR Research Program on Dryland Cereals and Legumes" />
<node id="178" label="CGIAR Research Program on Dryland Systems" />
<node id="179" label="CGIAR Research Program on Fish" />
<node id="180" label="CGIAR Research Program on Forests, Trees and Agroforestry" />
<node id="181" label="CGIAR Research Program on Grain Legumes" />
<node id="182" label="CGIAR Research Program on Grain Legumes and Dryland Cereals" />
<node id="183" label="CGIAR Research Program on Integrated Systems for the Humid Tropics" />
<node id="184" label="CGIAR Research Program on Livestock" />
<node id="185" label="CGIAR Research Program on Livestock and Fish" />
<node id="186" label="CGIAR Research Program on Maize" />
<node id="187" label="CGIAR Research Program on Policies, Institutions, and Markets" />
<node id="188" label="CGIAR Research Program on Rice" />
<node id="189" label="CGIAR Research Program on Roots, Tubers and Bananas" />
<node id="190" label="CGIAR Research Program on Water, Land and Ecosystems" />
<node id="191" label="CGIAR Research Program on Wheat" />
<node id="192" label="CGIAR Science Council" />
<node id="193" label="CGIAR Secretariat" />
<node id="194" label="CGIAR Standing Panel on Impact Assessment" />
<node id="195" label="CGIAR System Management Office" />
<node id="196" label="CGIAR System Organization" />
<node id="197" label="CGIAR System-wide Genetic Resources Programme" />
<node id="198" label="CGIAR Technical Advisory Committee" />
<node id="199" label="Charles Darwin University" />
<node id="200" label="Chatham House" />
<node id="201" label="Chiang Mai University" />
<node id="202" label="China Agricultural University" />
<node id="203" label="Chinese Academy of Agricultural Sciences" />
<node id="204" label="Chinese Academy of Forestry" />
<node id="205" label="Chinese Academy of Sciences" />
<node id="206" label="Chinese Academy of Tropical Agricultural Sciences" />
<node id="207" label="Chitedze Agricultural Research Station, Malawi" />
<node id="208" label="Chuka University" />
<node id="209" label="Chungbuk National University" />
<node id="210" label="Chungnam National University" />
<node id="211" label="CIFOR-ICRAF" />
<node id="212" label="CIRAD" />
<node id="213" label="Clark University" />
<node id="214" label="Clemson University" />
<node id="215" label="Clima Soluciones" />
<node id="216" label="Clim-Eat" />
<node id="217" label="Cocoa Research Institute of Ghana" />
<node id="218" label="Colegio de Postgraduados, Mexico" />
<node id="219" label="Colorado State University" />
<node id="220" label="Columbia University" />
<node id="221" label="Commonwealth Scientific and Industrial Research Organisation, Australia" />
<node id="222" label="Community Technology Development Trust, Zimbabwe" />
<node id="223" label="Conseil Ouest et Centre Africain pour la Recherche et le Développement Agricoles" />
<node id="224" label="Consejo Nacional de Investigaciones Científicas y Técnicas, Argentina" />
<node id="225" label="Conservation International" />
<node id="226" label="Consiglio Nazionale delle Ricerche, Italy" />
<node id="227" label="Consorcio para el Desarrollo Sostenible de la Ecorregion Andina" />
<node id="228" label="Contactivity" />
<node id="229" label="Cornell University" />
<node id="230" label="Corporación Colombiana de Investigación Agropecuaria" />
<node id="231" label="Corteva Agriscience" />
<node id="232" label="Council for Scientific and Industrial Research, Ghana" />
<node id="233" label="Council for Scientific and Industrial Research, South Africa" />
<node id="234" label="Covenant University" />
<node id="235" label="Crops for the Future" />
<node id="236" label="Cultural Practice" />
<node id="237" label="Czech Academy of Sciences" />
<node id="238" label="Czech University of Life Sciences" />
<node id="239" label="Deakin University" />
<node id="240" label="Debre Berhan Agricultural Research Center, Ethiopia" />
<node id="241" label="Debre Berhan University" />
<node id="242" label="Delft University of Technology" />
<node id="243" label="Department of Agriculture, Forestry and Fisheries, South Africa" />
<node id="244" label="Department of Agriculture, Philippines" />
<node id="245" label="Department of Agriculture, Sri Lanka" />
<node id="246" label="Department of Crop Production" />
<node id="247" label="Department of Research and Specialist Services, Zimbabwe" />
<node id="248" label="Deutsche Gesellschaft für Internationale Zusammenarbeit" />
<node id="249" label="Deutsche Sammlung von Mikroorganismen und Zellkulturen" />
<node id="250" label="Digital Green" />
<node id="251" label="Direction Générale des Forêts, Tunisia" />
<node id="252" label="Directorate of Veterinary Services, Kenya" />
<node id="253" label="Donald Danforth Plant Science Center" />
<node id="254" label="Duke University" />
<node id="255" label="Earlham Institute" />
<node id="256" label="Earth Innovation Institute" />
<node id="257" label="East Africa Dairy Development Project" />
<node id="258" label="Eastern Africa Farmers Federation" />
<node id="259" label="Eastern Africa Grain Council" />
<node id="260" label="EAT Foundation" />
<node id="261" label="Ebonyi State University" />
<node id="262" label="Ecole Inter Etats des Sciences et Médecine Vétérinaires de Dakar" />
<node id="263" label="École Nationale d'Agriculture de Meknès" />
<node id="264" label="Ecole Supérieure d'Agriculture de Mateur" />
<node id="265" label="Econnect Communication" />
<node id="266" label="Egerton University" />
<node id="267" label="Emory University" />
<node id="268" label="Empresa Brasileira de Pesquisa Agropecuária" />
<node id="269" label="Erasmus University" />
<node id="270" label="ESOKO" />
<node id="271" label="Esoko Limited" />
<node id="272" label="Ethiopian Biodiversity Institute" />
<node id="273" label="Ethiopian Biotechnology Institute" />
<node id="274" label="Ethiopian Institute of Agricultural Research" />
<node id="275" label="Ethiopian Meteorology Institute" />
<node id="276" label="Ethiopian Public Health Institute" />
<node id="277" label="Ethiopian Veterinary Association" />
<node id="278" label="ETH Zürich" />
<node id="279" label="Euro-Mediterranean Center on Climate Change" />
<node id="280" label="European Commission for the Control of Foot-and-Mouth Disease" />
<node id="281" label="European Cooperative Programme for Crop Genetic Resources Networks" />
<node id="282" label="European Cooperative Programme for Plant Genetic Resources" />
<node id="283" label="European Forest Genetic Resources Programme" />
<node id="284" label="European Forest Institute" />
<node id="285" label="European Union" />
<node id="286" label="Farm Radio International" />
<node id="287" label="Federal Institute for Risk Assessment, Germany" />
<node id="288" label="Federal University of Agriculture, Abeokuta" />
<node id="289" label="Federal University of Agriculture, Nigeria" />
<node id="290" label="Federal University of Rio Grande do Sul" />
<node id="291" label="Federal University of Technology, Nigeria" />
<node id="292" label="Finnish Meteorological Institute" />
<node id="293" label="Florida International University" />
<node id="294" label="Fondazione Edmund Mach" />
<node id="295" label="Food, Agriculture and Natural Resources Policy Analysis Network" />
<node id="296" label="Food and Agriculture Organization of the United Nations" />
<node id="297" label="Food and Environment Research Agency, United Kingdom" />
<node id="298" label="Forest Action" />
<node id="299" label="Forest Research Institute of Malaysia" />
<node id="300" label="Forschungszentrum Jülich" />
<node id="301" label="Forum for Agricultural Research in Africa" />
<node id="302" label="Foundation for Ecological Security, India" />
<node id="303" label="Freie Universität Berlin" />
<node id="304" label="Friedrich-Loeffler-Institut" />
<node id="305" label="Fundación PROINPA" />
<node id="306" label="Gansu Agricultural University" />
<node id="307" label="Georg-August-Universität Göttingen" />
<node id="308" label="George Mason University" />
<node id="309" label="Georgetown University" />
<node id="310" label="German Centre for Integrative Biodiversity Research" />
<node id="311" label="Ghana Meteorological Agency" />
<node id="312" label="Ghent University" />
<node id="313" label="Global Alliance for Improved Nutrition" />
<node id="314" label="Global Alliance for Livestock Veterinary Medicines" />
<node id="315" label="Global Crop Diversity Trust" />
<node id="316" label="Global Forum on Agricultural Research" />
<node id="317" label="Global Research Alliance on Agricultural Greenhouse Gases" />
<node id="318" label="Global Water Partnership" />
<node id="319" label="Government of Odisha, India" />
<node id="320" label="Graphic Harvest" />
<node id="321" label="Griffith University" />
<node id="322" label="Gulu University" />
<node id="323" label="Hanoi School of Public Health" />
<node id="324" label="Hanoi University of Public Health" />
<node id="325" label="Haramaya University" />
<node id="326" label="Harvard T.H. Chan School of Public Health" />
<node id="327" label="Harvard University" />
<node id="328" label="HarvestPlus" />
<node id="329" label="Hawassa University" />
<node id="330" label="Heifer International" />
<node id="331" label="Helen Keller International" />
<node id="332" label="Helmholtz Centre for Environmental Research" />
<node id="333" label="Henan Agricultural University" />
<node id="334" label="Hivos" />
<node id="335" label="Hochschule Geisenheim University" />
<node id="336" label="Hokkaido University" />
<node id="337" label="Huazhong Agricultural University" />
<node id="338" label="Humboldt-Universität zu Berlin" />
<node id="339" label="IGAD Sheikh Technical Veterinary School" />
<node id="340" label="IHE Delft Institute for Water Education" />
<node id="341" label="Imperial College London" />
<node id="342" label="Independent / Not associated" />
<node id="343" label="Indian Agricultural Research Institute" />
<node id="344" label="Indiana University" />
<node id="345" label="Indian Council of Agricultural Research" />
<node id="346" label="Indian Institute of Maize Research" />
<node id="347" label="Indian Veterinary Research Institute" />
<node id="348" label="Indonesian Institute of Sciences" />
<node id="349" label="Ingénieurs Sans Frontières Cameroun" />
<node id="350" label="Inland Norway University of Applied Sciences" />
<node id="351" label="Inner Mongolia Agricultural University" />
<node id="352" label="Institut Agronomique et Vétérinaire Hassan II" />
<node id="353" label="Institut d'Économie Rurale, Mali" />
<node id="354" label="Institut de l'Environnement et de Recherches Agricoles" />
<node id="355" label="Institut de l'Environnement et de Recherches Agricoles, Burkina Faso" />
<node id="356" label="Institut d'Elevage et de Medecine Veterinaire des Pays Tropicaux" />
<node id="357" label="Institut de Recherche Agricole pour le Développement, Cameroon" />
<node id="358" label="Institut de Recherche Agronomique de Guinée" />
<node id="359" label="Institut de Recherche en Écologie Tropicale, Gabon" />
<node id="360" label="Institut de Recherche pour le Développement, France" />
<node id="361" label="Institut des Sciences Agronomiques du Burundi" />
<node id="362" label="Institut des Sciences Agronomiques du Rwanda" />
<node id="363" label="Institute of Agricultural Research" />
<node id="364" label="Institute of Agricultural Research and Training, Nigeria" />
<node id="365" label="Institute of Agricultural Sciences, Switzerland" />
<node id="366" label="Institute of Development Studies, United Kingdom" />
<node id="367" label="Institute of Soil Science" />
<node id="368" label="Institute of Tropical Medicine, Antwerp" />
<node id="369" label="Institute of Virology and Immunology, Switzerland" />
<node id="370" label="Institute of Water Resources Planning, Vietnam" />
<node id="371" label="Institut Facultaire de Science Agronomiques de Yangambi" />
<node id="372" label="Institution de la Recherche et de l'Enseignement Supérieur Agricoles, Tunisia" />
<node id="373" label="Institution of Research and Higher Agricultural Education" />
<node id="374" label="Institut National Agronomique de Tunisie" />
<node id="375" label="Institut National de la Recherche Agronomique de Tunisie" />
<node id="376" label="Institut National de la Recherche Agronomique du Niger" />
<node id="377" label="Institut National de la Recherche Agronomique, France" />
<node id="378" label="Institut National de la Recherche Agronomique, Morocco" />
<node id="379" label="Institut National de la Recherche en Génie Rural, Eaux et Forêts, Tunisia" />
<node id="380" label="Institut national de recherche pour l'agriculture, l'alimentation et l'environnement, France" />
<node id="381" label="Institut National des Grandes Cultures - Bousalem" />
<node id="382" label="Institut National des Recherches Agricoles du Bénin" />
<node id="383" label="Institut National pour l'Étude et la Recherche Agronomiques, Democratic Republic of Congo" />
<node id="384" label="Instituto de Investigação Agrária de Moçambique" />
<node id="385" label="Instituto de Investigación de Recursos Biológicos Alexander von Humboldt, Colombia" />
<node id="386" label="Instituto de Investigaciones Agropecuarias, Chile" />
<node id="387" label="Instituto de Investigaciones de la Amazonia Peruana" />
<node id="388" label="Instituto Interamericano de Cooperación para la Agricultura" />
<node id="389" label="Instituto Nacional de Innovación Agraria, Peru" />
<node id="390" label="Instituto Nacional de Investigaciones Agropecuarias, Ecuador" />
<node id="391" label="Instituto Nacional de Investigaciones Forestales, Agrícolas y Pecuarias, Mexico" />
<node id="392" label="Instituto Nacional de Tecnología Agropecuaria, Argentina" />
<node id="393" label="Institut Pasteur" />
<node id="394" label="Institut Polytechnique Rural de Formation et de Recherche Appliquée" />
<node id="395" label="Institut Sénégalais de Recherches Agricoles" />
<node id="396" label="Institut Togolais de Recherche Agronomique" />
<node id="397" label="Inter-American Development Bank" />
<node id="398" label="International Atomic Energy Agency" />
<node id="399" label="International Bamboo and Rattan Organisation" />
<node id="400" label="International Board for Plant Genetic Resources" />
<node id="401" label="International Center for Agricultural Research in the Dry Areas" />
<node id="402" label="International Center for Tropical Agriculture" />
<node id="404" label="International Centre of Insect Physiology and Ecology" />
<node id="405" label="International Council for Research in Agroforestry" />
<node id="406" label="International Crops Research Institute for the Semi-Arid Tropics" />
<node id="407" label="International Development Research Centre" />
<node id="408" label="International Fertilizer Development Center" />
<node id="410" label="International Food Policy Research Institute" />
<node id="411" label="International Fund for Agricultural Development" />
<node id="412" label="International Institute for Applied Systems Analysis" />
<node id="413" label="International Institute for Communication and Development" />
<node id="414" label="International Institute for Environment and Development" />
<node id="415" label="International Institute of Rural Reconstruction" />
<node id="416" label="International Institute of Tropical Agriculture" />
<node id="417" label="International Irrigation Management Institute" />
<node id="418" label="International Laboratory for Research on Animal Diseases" />
<node id="419" label="International Land Coalition" />
<node id="420" label="International Livestock Centre for Africa" />
<node id="421" label="International Livestock Research Institute" />
<node id="422" label="International Maize and Wheat Improvement Center" />
<node id="423" label="International Network for the Improvement of Banana and Plantain" />
<node id="424" label="International Plant Genetic Resources Institute" />
<node id="425" label="International Plant Nutrition Institute" />
<node id="426" label="International Potato Center" />
<node id="427" label="International Research Institute for Climate and Society" />
<node id="429" label="International Rice Research Institute" />
<node id="430" label="International Service for National Agricultural Research" />
<node id="431" label="International Service for the Acquisition of Agri-biotech Applications AfriCenter" />
<node id="432" label="International Treaty on Plant Genetic Resources for Food and Agriculture" />
<node id="433" label="International Union for Conservation of Nature" />
<node id="434" label="International Water Management Institute" />
<node id="435" label="Interpeace" />
<node id="436" label="Iowa State University" />
<node id="437" label="IPB University" />
<node id="438" label="James Cook University" />
<node id="439" label="James Hutton Institute" />
<node id="440" label="Japan International Research Center for Agricultural Sciences" />
<node id="441" label="Jaramogi Oginga Odinga University of Science and Technology" />
<node id="442" label="J. Craig Venter Institute" />
<node id="443" label="Jimma University" />
<node id="444" label="Johann Heinrich von Thünen-Institut" />
<node id="445" label="John Innes Centre" />
<node id="446" label="Johns Hopkins University" />
<node id="447" label="Jomo Kenyatta University of Agriculture and Technology" />
<node id="448" label="Julius Kühn-Institut" />
<node id="449" label="Justus-Liebig-University Gießen" />
<node id="450" label="Kafrelsheikh University" />
<node id="451" label="Kagoshima University" />
<node id="452" label="Kansas State University" />
<node id="453" label="Karlsruhe Institute of Technology" />
<node id="454" label="Karolinska Institute" />
<node id="455" label="Kasetsart University" />
<node id="456" label="Katholieke Universiteit Leuven" />
<node id="457" label="Kawanda Agricultural Research Institute, Uganda" />
<node id="458" label="Kenya Agricultural and Livestock Research Organization" />
<node id="459" label="Kenya Agricultural Research Institute" />
<node id="460" label="Kenya Institute for Public Policy Research and Analysis" />
<node id="461" label="Kenya Medical Research Institute" />
<node id="462" label="Kenya Plant Health Inspectorate Services" />
<node id="463" label="Kenyatta University" />
<node id="464" label="Kenya Wildlife Service" />
<node id="465" label="Khon Kaen University" />
<node id="466" label="King Abdullah University of Science and Technology" />
<node id="467" label="King Saud University" />
<node id="468" label="King's College London" />
<node id="469" label="Kisii University" />
<node id="470" label="KM4D Associates" />
<node id="471" label="Kunming Institute of Botany, China" />
<node id="472" label="Kwame Nkrumah University of Science and Technology" />
<node id="473" label="Kwara State University" />
<node id="474" label="Kyambogo University" />
<node id="475" label="Kyeema Foundation" />
<node id="476" label="Kyoto University" />
<node id="477" label="Kyungpook National University" />
<node id="478" label="Laboratoire Central Vétérinaire, Mali" />
<node id="479" label="Ladoke Akintola University of Technology" />
<node id="480" label="Lancaster University" />
<node id="481" label="Land O'Lakes Venture37" />
<node id="482" label="Lanzhou University" />
<node id="483" label="La Trobe University" />
<node id="484" label="Laval University" />
<node id="485" label="Lawrence Berkeley National Laboratory" />
<node id="486" label="Lebanese Agricultural Research Institute" />
<node id="487" label="Leibniz Centre for Agricultural Landscape Research, Germany" />
<node id="488" label="Leibniz Institute of Agricultural Development in Transition Economies" />
<node id="489" label="Leibniz Institute of Plant Genetics and Crop Plant Research" />
<node id="490" label="Leibniz Universität Hannover" />
<node id="491" label="Leiden University" />
<node id="492" label="Leuphana Universität Lüneburg" />
<node id="493" label="Leverhulme Centre for Integrated Research on Agriculture and Health" />
<node id="494" label="Lilongwe University of Agriculture and Natural Resources" />
<node id="495" label="Lincoln University" />
<node id="496" label="Liverpool School of Tropical Medicine" />
<node id="497" label="Livestock Development for Community Livelihood, Cambodia" />
<node id="498" label="Local Initiatives for Biodiversity, Research and Development" />
<node id="499" label="London School of Economics and Political Science" />
<node id="500" label="London School of Hygiene and Tropical Medicine" />
<node id="501" label="Louisiana State University" />
<node id="502" label="Lund University" />
<node id="503" label="Macquarie University" />
<node id="504" label="Mahidol University" />
<node id="505" label="Makerere University" />
<node id="506" label="Malaysian Agricultural Research and Development Institute" />
<node id="507" label="Manaaki Whenua Landcare Research" />
<node id="508" label="Manchester Metropolitan University" />
<node id="509" label="Martin-Luther-Universität Halle-Wittenberg" />
<node id="510" label="Masaka District Local Government, Uganda" />
<node id="511" label="Maseno University" />
<node id="512" label="Masinde Muliro University of Science and Technology" />
<node id="513" label="Massachusetts Institute of Technology" />
<node id="514" label="Massey University" />
<node id="515" label="Max Planck Institute for Biogeochemistry" />
<node id="516" label="Mbarara University of Science and Technology" />
<node id="517" label="McGill University" />
<node id="518" label="Meise Botanic Garden, Belgium" />
<node id="519" label="Mekelle University" />
<node id="520" label="Melkassa Agricultural Research Center, Ethiopia" />
<node id="521" label="Michael Okpara University of Agriculture" />
<node id="522" label="Michigan State University" />
<node id="523" label="Mikocheni Agricultural Research Institute, Tanzania" />
<node id="524" label="Ministry of Agriculture and Forestry, Laos" />
<node id="525" label="Ministry of Agriculture and Rural Development, Cameroon" />
<node id="526" label="Ministry of Agriculture and Rural Development, Vietnam" />
<node id="527" label="Ministry of Agriculture, Animal Industry and Fisheries, Uganda" />
<node id="528" label="Ministry of Agriculture, Ethiopia" />
<node id="529" label="Ministry of Agriculture, Livestock and Fisheries, Kenya" />
<node id="530" label="Ministry of Agriculture, Livestock and Fisheries, Tanzania" />
<node id="531" label="Ministry of Agriculture, Livestock, Fisheries and Co-operatives, Kenya" />
<node id="532" label="Ministry of Agriculture, Livestock, Fisheries and Cooperatives, Kenya" />
<node id="533" label="Ministry of Agriculture, Livestock, Fisheries and Irrigation, Kenya" />
<node id="534" label="Ministry of Agriculture, Water Resources and Fisheries, Directorate General of Planning and Conservation of Agricultural Land" />
<node id="535" label="Ministry of Environment and Forestry of Indonesia" />
<node id="536" label="Ministry of Food and Agriculture, Ghana" />
<node id="537" label="Ministry of Health, Kenya" />
<node id="538" label="Ministry of Health, Uganda" />
<node id="539" label="Ministry of Livestock and Fisheries, Tanzania" />
<node id="540" label="Minzu University of China" />
<node id="541" label="Mississippi State University" />
<node id="542" label="Moi University" />
<node id="543" label="Monash University" />
<node id="544" label="Montana State University" />
<node id="545" label="Montpellier SupAgro" />
<node id="546" label="Mount Kenya University" />
<node id="547" label="M.S. Swaminathan Research Foundation" />
<node id="548" label="Murdoch University" />
<node id="549" label="Nagoya University" />
<node id="550" label="Naliendele Agricultural Research Institute, Tanzania" />
<node id="551" label="Namulonge Agricultural and Animal Production Research Institute, Uganda" />
<node id="552" label="Nanjing Agricultural University" />
<node id="553" label="National Aeronautics and Space Administration" />
<node id="554" label="National Agricultural Research Institute of Tunisia" />
<node id="555" label="National Agricultural Research Institute, Papua New Guinea" />
<node id="556" label="National Agricultural Research Laboratories, Uganda" />
<node id="557" label="National Agricultural Research Organisation, Uganda" />
<node id="558" label="National Agriculture and Food Research Organization, Japan" />
<node id="559" label="National Agriculture and Forestry Research Institute, Laos" />
<node id="560" label="National Agriculture Genetic Resources Centre, Nepal" />
<node id="561" label="National Agronomic Institute of Tunisia" />
<node id="562" label="National Animal Health and Production Research Institute, Cambodia" />
<node id="563" label="National Animal Health Diagnostic and Investigation Center, Ethiopia" />
<node id="564" label="National Cereals Research Institute, Nigeria" />
<node id="565" label="National Crops Resources Research Institute, Uganda" />
<node id="566" label="National Dairy Research Institute, India" />
<node id="567" label="National Horticultural Research Institute, Nigeria" />
<node id="568" label="National Institute of Agricultural Botany, United Kingdom" />
<node id="569" label="National Institute of Animal Science, Republic of Korea" />
<node id="570" label="National Institute of Animal Sciences, Vietnam" />
<node id="571" label="National Institute of Hygiene and Epidemiology, Vietnam" />
<node id="572" label="National Institute of Nutrition, Vietnam" />
<node id="573" label="National Institute of Veterinary Epidemiology and Disease Informatics, India" />
<node id="574" label="National Institute of Veterinary Research, Vietnam" />
<node id="575" label="National Livestock Resources Research Institute, Uganda" />
<node id="576" label="National Museums of Kenya" />
<node id="577" label="National Research Institute of Rural Engineering, Water and Forest" />
<node id="578" label="National Root Crops Research Institute, Nigeria" />
<node id="579" label="National University of Ireland" />
<node id="580" label="National University of Laos" />
<node id="581" label="National University of Singapore" />
<node id="582" label="National Veterinary Institute, Sweden" />
<node id="583" label="National Veterinary Research Institute, Nigeria" />
<node id="584" label="Naturalis Biodiversity Center, The Netherlands" />
<node id="585" label="Natural Resources Institute" />
<node id="586" label="Natural Resources Institute, Finland" />
<node id="587" label="Natural Resources Institute, United Kingdom" />
<node id="588" label="Nature Conservancy" />
<node id="589" label="Nature Heritage" />
<node id="590" label="Nelson Mandela Africa Institution of Science and Technology" />
<node id="591" label="Nelson Mandela African Institution of Science and Technology" />
<node id="592" label="Nepal Agricultural Research Council" />
<node id="593" label="Netherlands Development Organisation" />
<node id="594" label="Newcastle University" />
<node id="595" label="New Mexico State University" />
<node id="596" label="New Partnership for Africa's Development" />
<node id="597" label="New York University" />
<node id="598" label="New Zealand Agricultural Greenhouse Gas Research Centre" />
<node id="599" label="Njala University" />
<node id="600" label="Nong Lam University" />
<node id="601" label="North Carolina State University" />
<node id="602" label="North Dakota State University" />
<node id="603" label="Northern Arizona University" />
<node id="604" label="Northern Mountainous Agriculture and Forestry Science Institute, Vietnam" />
<node id="605" label="Northwest A&F University" />
<node id="606" label="North-West University" />
<node id="607" label="Norwegian Institute of Bioeconomy Research" />
<node id="608" label="Norwegian University of Life Sciences" />
<node id="609" label="Obafemi Awolowo University" />
<node id="610" label="Ocean University of China" />
<node id="611" label="Office de l'Élevage et des Paturages, Tunisia" />
<node id="612" label="Office of Livestock and Pasture Authority" />
<node id="613" label="Ohio State University" />
<node id="614" label="Oklahoma State University" />
<node id="615" label="Olabisi Onabanjo University" />
<node id="616" label="Olam International Ltd" />
<node id="617" label="Olive Institute" />
<node id="618" label="Oregon State University" />
<node id="619" label="Organization of African Unity" />
<node id="620" label="Oromia Agricultural Research Institute, Ethiopia" />
<node id="621" label="Overseas Development Institute" />
<node id="622" label="Oxfam" />
<node id="623" label="Oxford University" />
<node id="624" label="Pacific Community" />
<node id="625" label="Pan-Africa Bean Research Alliance" />
<node id="626" label="Pan African University" />
<node id="627" label="Pandia Consulting" />
<node id="628" label="Peking University" />
<node id="629" label="Pennsylvania State University" />
<node id="630" label="Philippine Rice Research Institute" />
<node id="631" label="Pirbright Institute" />
<node id="632" label="Plant Genetic Resources Centre, Sri Lanka" />
<node id="633" label="Polish Academy of Sciences" />
<node id="634" label="Pontificia Universidad Católica de Chile" />
<node id="635" label="Pontificia Universidad Católica del Perú" />
<node id="636" label="Pontificia Universidad Javeriana" />
<node id="637" label="Potsdam Institute for Climate Impact Research" />
<node id="638" label="Princeton University" />
<node id="639" label="Public Health Foundation of India" />
<node id="640" label="Punjab Agricultural University" />
<node id="641" label="Purdue University" />
<node id="642" label="Quaid-i-Azam University" />
<node id="643" label="Queensland Department of Agriculture and Fisheries" />
<node id="644" label="Queensland University of Technology" />
<node id="645" label="Queen's University Belfast" />
<node id="646" label="Rabobank" />
<node id="647" label="Radboud University Nijmegen" />
<node id="648" label="Rainforest Alliance" />
<node id="649" label="Rakuno Gakuen University" />
<node id="650" label="Regional Universities Forum for Capacity Building in Agriculture" />
<node id="651" label="Research Institute of Organic Agriculture, Switzerland" />
<node id="652" label="Rhine-Waal University of Applied Sciences" />
<node id="653" label="Rivers State University of Science and Technology" />
<node id="654" label="Rockefeller Foundation" />
<node id="655" label="Ross University" />
<node id="656" label="Rothamsted Research" />
<node id="657" label="Royal Botanic Garden Edinburgh" />
<node id="658" label="Royal Botanic Gardens, London" />
<node id="659" label="Royal Holloway University of London" />
<node id="660" label="Royal Museum for Central Africa, Belgium" />
<node id="661" label="Royal Roads University" />
<node id="662" label="Royal Swedish Academy of Sciences" />
<node id="663" label="Royal Tropical Institute" />
<node id="664" label="Royal Veterinary and Agricultural University, Denmark" />
<node id="665" label="Royal Veterinary College" />
<node id="666" label="Royal Veterinary College, United Kingdom" />
<node id="667" label="RTI International" />
<node id="668" label="Rural Development Administration, Republic of Korea" />
<node id="669" label="Russian Academy of Sciences" />
<node id="670" label="Rutgers University" />
<node id="671" label="Rwanda Agriculture and Animal Resources Development Board" />
<node id="672" label="Rwanda Agriculture Board" />
<node id="673" label="Saint Louis University" />
<node id="674" label="San Diego Botanic Garden" />
<node id="675" label="São Paulo State University" />
<node id="676" label="Save the Children" />
<node id="677" label="SBC4D" />
<node id="678" label="Scotland's Rural College" />
<node id="679" label="Scuola Superiore Sant'Anna" />
<node id="680" label="Secretariat of the Pacific Community" />
<node id="681" label="Selian Agricultural Research Institute, Tanzania" />
<node id="682" label="Seoul National University" />
<node id="683" label="Shinshu University" />
<node id="684" label="Sichuan Agricultural University" />
<node id="685" label="Sierra Leone Agricultural Research Institute" />
<node id="686" label="Silpakorn University" />
<node id="687" label="Silsoe Research Institute" />
<node id="688" label="Sirinka Agricultural Research Center, Ethiopia" />
<node id="689" label="Smallholder Dairy Project" />
<node id="690" label="Smithsonian Institution" />
<node id="691" label="SNV Netherlands Development Organisation" />
<node id="692" label="Sokoine University of Agriculture" />
<node id="693" label="Sorbonne Université" />
<node id="694" label="South African National Biodiversity Institute" />
<node id="695" label="South China Agricultural University" />
<node id="696" label="South Dakota State University" />
<node id="697" label="South Eastern Kenya University" />
<node id="698" label="Southern African Confederation of Agricultural Unions" />
<node id="699" label="Southern Agricultural Research Institute, Ethiopia" />
<node id="700" label="Southern Cross University" />
<node id="701" label="Spanish National Research Council" />
<node id="702" label="Stanford University" />
<node id="703" label="State University of New York" />
<node id="704" label="Stellenbosch University" />
<node id="705" label="Stockholm Environment Institute" />
<node id="706" label="Stockholm Resilience Centre" />
<node id="707" label="Stockholm University" />
<node id="708" label="Sugarcane Research Institute, Tanzania" />
<node id="709" label="Swedish University of Agricultural Sciences" />
<node id="710" label="Swisscontact" />
<node id="711" label="Swiss Federal Institute of Aquatic Science and Technology" />
<node id="712" label="Swiss Federal Institute of Technology" />
<node id="713" label="Swiss Federal Laboratories for Materials Science and Technology" />
<node id="714" label="Swiss Tropical and Public Health Institute" />
<node id="715" label="Syngenta Foundation for Sustainable Agriculture" />
<node id="716" label="Taita Taveta University" />
<node id="717" label="Tamil Nadu Agricultural University" />
<node id="718" label="Tanzania Agricultural Research Institute" />
<node id="719" label="Tanzania Food and Nutrition Centre" />
<node id="720" label="Tanzania Livestock Research Institute" />
<node id="721" label="Tanzania Veterinary Laboratory Agency" />
<node id="722" label="Technical Centre for Agricultural and Rural Cooperation" />
<node id="723" label="Technical University of Denmark" />
<node id="724" label="Technical University of Madrid" />
<node id="725" label="Technische Universität Dresden" />
<node id="726" label="Technische Universität München" />
<node id="727" label="Technologies for African Agricultural Transformation" />
<node id="728" label="TechnoServe" />
<node id="729" label="Tel Aviv University" />
<node id="730" label="Tennessee State University" />
<node id="731" label="Terra Nuova" />
<node id="732" label="Texas A&M University" />
<node id="733" label="The Institution of Research and Higher Agricultural Education" />
<node id="734" label="Tigray Agricultural Research Institute, Ethiopia" />
<node id="735" label="Tokyo University of Agriculture" />
<node id="736" label="Tribhuvan University" />
<node id="737" label="Trinity College Dublin" />
<node id="738" label="Tropenbos International" />
<node id="739" label="Tshwane University of Technology" />
<node id="740" label="Tufts University" />
<node id="741" label="Uganda Virus Research Institute" />
<node id="742" label="UK Centre for Ecology and Hydrology" />
<node id="743" label="Ukiriguru Agricultural Research Institute, Tanzania" />
<node id="744" label="Umeå University" />
<node id="745" label="UNIQUE forestry and land use GmbH" />
<node id="746" label="United Nations Development Programme" />
<node id="747" label="United Nations Economic Commission for Africa" />
<node id="748" label="United Nations Educational, Scientific and Cultural Organization" />
<node id="749" label="United Nations Environment Programme" />
<node id="750" label="United Nations International Children's Emergency Fund" />
<node id="751" label="United Nations University" />
<node id="752" label="United Nations Women" />
<node id="753" label="United States Agency for International Development" />
<node id="754" label="United States Department of Agriculture" />
<node id="755" label="United States Forest Service" />
<node id="756" label="United States Geological Survey" />
<node id="757" label="Universidad Austral de Chile" />
<node id="758" label="Universidad Autónoma de Yucatán" />
<node id="759" label="Universidad de Antioquia" />
<node id="760" label="Universidad de Córdoba" />
<node id="761" label="Universidad de Costa Rica" />
<node id="762" label="Universidad de la Amazonía" />
<node id="763" label="Universidad de la República, Uruguay" />
<node id="764" label="Universidad del Cauca" />
<node id="765" label="Universidad de los Andes" />
<node id="766" label="Universidad del Rosario Bogotá" />
<node id="767" label="Universidad del Valle" />
<node id="768" label="Universidade de Lisboa" />
<node id="769" label="Universidade de São Paulo" />
<node id="770" label="Universidade Eduardo Mondlane" />
<node id="771" label="Universidade Estadual Paulista" />
<node id="772" label="Universidade Federal de Lavras" />
<node id="773" label="Universidade Federal de Pernambuco" />
<node id="774" label="Universidade Federal de Viçosa" />
<node id="775" label="Universidade Federal do Rio de Janeiro" />
<node id="776" label="Universidade Federal do Rio Grande do Sul" />
<node id="777" label="Universidad Icesi" />
<node id="778" label="Universidad Nacional Agraria, Nicaragua" />
<node id="779" label="Universidad Nacional Agraria, Peru" />
<node id="780" label="Universidad Nacional Autónoma de México" />
<node id="781" label="Universidad Nacional de Colombia" />
<node id="782" label="Universidad Nacional de Córdoba" />
<node id="783" label="Universidad para la Cooperación Internacional" />
<node id="784" label="Universidad Politécnica de Madrid" />
<node id="785" label="Universitat Autònoma de Barcelona" />
<node id="786" label="Universität Hannover" />
<node id="787" label="Universität Hohenheim" />
<node id="788" label="Universität Kassel" />
<node id="789" label="Université Catholique de Bukavu" />
<node id="790" label="Université Catholique de Louvain" />
<node id="791" label="Université Catholique du Graben" />
<node id="792" label="Université Cheikh Anta Diop de Dakar" />
<node id="793" label="Université d'Agriculture de Kétou" />
<node id="794" label="Université de Bordeaux" />
<node id="795" label="Université de Carthage" />
<node id="796" label="Université de Dakar" />
<node id="797" label="Université de Douala" />
<node id="798" label="Université de Dschang" />
<node id="799" label="Université de Kisangani" />
<node id="800" label="Université de la Manouba" />
<node id="801" label="Université de Liège" />
<node id="802" label="Université de Lomé" />
<node id="803" label="Université de Montpellier" />
<node id="804" label="Université de Ngaoundéré" />
<node id="805" label="Université de Ouagadougou" />
<node id="806" label="Université de Parakou" />
<node id="807" label="Université de Paris-Saclay" />
<node id="808" label="Université de Toulouse" />
<node id="809" label="Université de Yaoundé" />
<node id="810" label="Université de Yaoundé I" />
<node id="811" label="Université du Bénin" />
<node id="812" label="Université Évangélique en Afrique" />
<node id="813" label="Université Félix Houphouët-Boigny" />
<node id="814" label="Université Gaston Berger" />
<node id="815" label="Université Joseph Ki-Zerbo" />
<node id="816" label="Université Laval" />
<node id="817" label="Université Libre de Bruxelles" />
<node id="818" label="Université Mohammed V" />
<node id="819" label="Université Mohammed VI Polytechnique" />
<node id="820" label="Université Montpellier" />
<node id="821" label="Université Nangui Abrogoua" />
<node id="822" label="Université Nationale d'Agriculture, Bénin" />
<node id="823" label="Université Nazi Boni de Bobo-Dioulasso" />
<node id="824" label="Université Paris-Saclay" />
<node id="825" label="University College Cork" />
<node id="826" label="University College Dublin" />
<node id="827" label="University College London" />
<node id="828" label="University for Development Studies" />
<node id="829" label="University for Development Studies, Ghana" />
<node id="830" label="University of Aberdeen" />
<node id="831" label="University of Abomey-Calavi" />
<node id="832" label="University of Adelaide" />
<node id="833" label="University of Agricultural Sciences, India" />
<node id="834" label="University of Agriculture, Abeokuta" />
<node id="835" label="University of Agriculture, Makurdi" />
<node id="836" label="University of Agriculture, Pakistan" />
<node id="837" label="University of Alberta" />
<node id="838" label="University of Amsterdam" />
<node id="839" label="University of Antananarivo" />
<node id="840" label="University of Antwerp" />
<node id="841" label="University of Arizona" />
<node id="842" label="University of Arkansas" />
<node id="843" label="University of Bamenda" />
<node id="844" label="University of Basel" />
<node id="845" label="University of Bayreuth" />
<node id="846" label="University of Bern" />
<node id="847" label="University of Birmingham" />
<node id="848" label="University of Bologna" />
<node id="849" label="University of Bonn" />
<node id="850" label="University of Botswana" />
<node id="851" label="University of Bristol" />
<node id="852" label="University of British Columbia" />
<node id="853" label="University of Buea" />
<node id="854" label="University of Burundi" />
<node id="855" label="University of Calabar" />
<node id="856" label="University of California" />
<node id="857" label="University of Cambridge" />
<node id="858" label="University of Canterbury" />
<node id="859" label="University of Cape Coast" />
<node id="860" label="University of Cape Town" />
<node id="861" label="University of Catania" />
<node id="862" label="University of Chicago" />
<node id="863" label="University of Chinese Academy Sciences" />
<node id="864" label="University of Colorado" />
<node id="865" label="University of Connecticut" />
<node id="866" label="University of Copenhagen" />
<node id="867" label="University of Dar es Salaam" />
<node id="868" label="University of Delhi" />
<node id="869" label="University of Dodoma" />
<node id="870" label="University of Douala" />
<node id="871" label="University of Dschang" />
<node id="872" label="University of East Anglia" />
<node id="873" label="University of Eastern Finland" />
<node id="874" label="University of Edinburgh" />
<node id="875" label="University of Eldoret" />
<node id="876" label="University of Embu" />
<node id="877" label="University of Energy and Natural Resources, Ghana" />
<node id="878" label="University of Exeter" />
<node id="879" label="University of Florence" />
<node id="880" label="University of Florida" />
<node id="881" label="University of Freiburg" />
<node id="882" label="University of Geneva" />
<node id="883" label="University of Georgia" />
<node id="884" label="University of Ghana" />
<node id="885" label="University of Giessen" />
<node id="886" label="University of Glasgow" />
<node id="887" label="University of Gondar" />
<node id="888" label="University of Göttingen" />
<node id="889" label="University of Greenwich" />
<node id="890" label="University of Groningen" />
<node id="891" label="University of Guelph" />
<node id="892" label="University of Hamburg" />
<node id="893" label="University of Hawaii" />
<node id="894" label="University of Helsinki" />
<node id="895" label="University of Hohenheim" />
<node id="896" label="University of Hong Kong" />
<node id="897" label="University of Ibadan" />
<node id="898" label="University of Idaho" />
<node id="899" label="University of Illinois" />
<node id="900" label="University of Ilorin" />
<node id="901" label="University of Jordan" />
<node id="902" label="University of Jos" />
<node id="903" label="University of Juba" />
<node id="904" label="University of Kassel" />
<node id="905" label="University of Kent" />
<node id="906" label="University of Khartoum" />
<node id="907" label="University of Kinshasa" />
<node id="908" label="University of Kisangani" />
<node id="909" label="University of KwaZulu-Natal" />
<node id="910" label="University of Lagos" />
<node id="911" label="University of Lausanne" />
<node id="912" label="University of Leeds" />
<node id="913" label="University of Leicester" />
<node id="914" label="University of Leuven" />
<node id="915" label="University of Liège" />
<node id="916" label="University of Liverpool" />
<node id="917" label="University of London" />
<node id="918" label="University of Maiduguri" />
<node id="919" label="University of Maine" />
<node id="920" label="University of Malawi" />
<node id="921" label="University of Manchester" />
<node id="922" label="University of Maroua" />
<node id="923" label="University of Maryland" />
<node id="924" label="University of Massachusetts" />
<node id="925" label="University of Melbourne" />
<node id="926" label="University of Michigan" />
<node id="927" label="University of Milan" />
<node id="928" label="University of Minnesota" />
<node id="929" label="University of Missouri" />
<node id="930" label="University of Miyazaki" />
<node id="931" label="University of Montpellier" />
<node id="932" label="University of Nairobi" />
<node id="933" label="University of Naples" />
<node id="934" label="University of Natural Resources and Life Sciences, Vienna" />
<node id="935" label="University of Nebraska" />
<node id="936" label="University of New England" />
<node id="937" label="University of New Hampshire" />
<node id="938" label="University of New South Wales" />
<node id="939" label="University of Ngaoundéré" />
<node id="940" label="University of Nigeria" />
<node id="941" label="University of North Carolina" />
<node id="942" label="University of Nottingham" />
<node id="943" label="University of Ottawa" />
<node id="944" label="University of Oxford" />
<node id="945" label="University of Peradeniya" />
<node id="946" label="University of Port Harcourt" />
<node id="947" label="University of Potsdam" />
<node id="948" label="University of Pretoria" />
<node id="949" label="University of Prince Edward Island" />
<node id="950" label="University of Queensland" />
<node id="951" label="University of Reading" />
<node id="952" label="University of Rostock" />
<node id="953" label="University of Rwanda" />
<node id="954" label="University of São Paulo" />
<node id="955" label="University of Saskatchewan" />
<node id="956" label="University of Sheffield" />
<node id="957" label="University of South Africa" />
<node id="958" label="University of Southampton" />
<node id="959" label="University of South Carolina" />
<node id="960" label="University of Southern Queensland" />
<node id="961" label="University of Stellenbosch" />
<node id="962" label="University of Stirling" />
<node id="963" label="University of Sussex" />
<node id="964" label="University of Sydney" />
<node id="965" label="University of Tasmania" />
<node id="966" label="University of Tennessee" />
<node id="967" label="University of Texas" />
<node id="968" label="University of the Free State" />
<node id="969" label="University of the Philippines" />
<node id="970" label="University of the Sunshine Coast" />
<node id="971" label="University of the Western Cape" />
<node id="972" label="University of the West Indies" />
<node id="973" label="University of the Witwatersrand" />
<node id="974" label="University of Tokyo" />
<node id="975" label="University of Toronto" />
<node id="976" label="University of Twente" />
<node id="977" label="University of Vermont" />
<node id="978" label="University of Victoria" />
<node id="979" label="University of Vienna" />
<node id="980" label="University of Virginia" />
<node id="981" label="University of Warwick" />
<node id="982" label="University of Washington" />
<node id="983" label="University of Waterloo" />
<node id="984" label="University of Western Australia" />
<node id="985" label="University of Wisconsin" />
<node id="986" label="University of Wollongong" />
<node id="987" label="University of York" />
<node id="988" label="University of Zambia" />
<node id="989" label="University of Zimbabwe" />
<node id="990" label="University of Zürich" />
<node id="991" label="Uppsala University" />
<node id="992" label="Utrecht University" />
<node id="993" label="Vaal University of Technology" />
<node id="994" label="Vétérinaires Sans Frontières" />
<node id="995" label="Vietnam Academy of Agricultural Sciences" />
<node id="996" label="Vietnam National University" />
<node id="997" label="Vietnam National University of Agriculture" />
<node id="998" label="Virginia Polytechnic Institute and State University" />
<node id="999" label="Virginia Tech" />
<node id="1000" label="Vrije Universiteit Amsterdam" />