-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.html
8373 lines (6232 loc) · 312 KB
/
versions.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="icon" href="/favicon.ico">
<title>Versions – Code for IATI Analytics</title>
</head>
<body>
<div id="wrap">
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand" data-c4i-toggle="sidebar" aria-controls="c4i-sidebar" aria-expanded="false" aria-label="Toggle Code for IATI sidebar"><img src="https://codeforiati.org/assets/img/logo.png" alt="Code for IATI" /></a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li ><a href="/">Home</a></li>
<li ><a href="/headlines.html">Headlines</a></li>
<li class="active"><a href="/data_quality.html">Data Quality</a></li>
<li ><a href="/publishing_stats.html">Publishing Statistics</a></li>
<li ><a href="/exploring_data.html">Exploring Data</a></li>
<li ><a href="/faq.html">FAQ</a></li>
</ul>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/download.html">Download Errors</a></li>
<li><a href="/xml.html">XML Errors</a></li>
<li><a href="/validation.html">Validation</a></li>
<li class="active"><a href="/versions.html">Versions</a></li>
<li><a href="/licenses.html">Licenses</a></li>
<li><a href="/organisation.html">Organisation XML</a></li>
<li><a href="/identifiers.html">Duplicate Identifiers</a></li>
<li><a href="/reporting_orgs.html">Reporting Orgs</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="page-header">
<h1>Versions</h1>
<p class="lead">Which <a href="https://iatistandard.org/en/iati-standard/upgrades/how-we-manage-the-standard/versions/">versions of the IATI Standard</a> are being used?</p>
<p>Files are reported against a specific version of the IATI Standard, using the <code>version</code> attribute in the <code>iati-activities</code> element.</p>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span id="files-per-version-(expected)" class="title-number"></span>
<span class="title-text">Files per version (expected)</span>
</h3>
<a href="https://stats.codeforiati.org/gitaggregate-dated/versions.json" style="float:right">(J)</a>
<div class="clearfix"></div>
</div>
<div class="panel-body">
<p>Count of files per IATI version, over time. Expected: these are actual versions of the IATI Standard.</p>
<img src="versions_expected.png" width="100%" />
<img src="versions_expected_legend.png" width="100%" />
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span id="files-per-version-(other)" class="title-number"></span>
<span class="title-text">Files per version (other)</span>
</h3>
<a href="https://stats.codeforiati.org/gitaggregate-dated/versions.json" style="float:right">(J)</a>
<div class="clearfix"></div>
</div>
<div class="panel-body">
<p>Count of files per other versions, over time. These values do not actually exist as IATI versions.</p>
<img src="versions_other.png" width="100%" />
<img src="versions_other_legend.png" width="100%" />
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span id="publishers-per-version-(expected)" class="title-number"></span>
<span class="title-text">Publishers per version (expected)</span>
</h3>
<a href="https://stats.codeforiati.org/gitaggregate-dated/publishers_per_version.json" style="float:right">(J)</a>
<div class="clearfix"></div>
</div>
<div class="panel-body">
<p>Count of publishers per IATI version, over time. Note: If a publisher utilises two or more versions, they are counted for each.</p>
<img src="publishers_per_version_expected.png" width="100%" />
<img src="versions_expected_legend.png" width="100%" />
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<span id="publishers-per-version-(other)" class="title-number"></span>
<span class="title-text">Publishers per version (other)</span>
</h3>
<a href="https://stats.codeforiati.org/gitaggregate-dated/publishers_per_version.json" style="float:right">(J)</a>
<div class="clearfix"></div>
</div>
<div class="panel-body">
<p>Count of publishers per other version, over time</p>
<img src="publishers_per_version_other.png" width="100%" />
<img src="versions_other_legend.png" width="100%" />
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<h2>Publishers by version</h2>
<p>(<a href="https://stats.codeforiati.org/current/inverted-publisher/versions.json">In JSON format</a>)</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Expected versions</h3>
</div>
<div class="panel-body">
<p>Listing of publishers per IATI version. Click on any publisher name for more information.</p>
<div class="row">
<div class="col-md-4">
<code>1.01</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/wwfpakistan.html">World Wide Fund for Nature - Pakistan</a></td>
</tr>
<tr>
<td><a href="/publisher/foundation_center.html">The Foundation Center</a></td>
</tr>
<tr>
<td><a href="/publisher/ciks.html">Centre for Indian Knowledge Systems</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<code>1.02</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/art19.html">Article19</a></td>
</tr>
<tr>
<td><a href="/publisher/ff.html">Freedom Forum</a></td>
</tr>
<tr>
<td><a href="/publisher/hi.html">Homeless International</a></td>
</tr>
<tr>
<td><a href="/publisher/wacc-uk.html">World Association for Christian Communication (UK)</a></td>
</tr>
<tr>
<td><a href="/publisher/cic.html">Children in Crisis</a></td>
</tr>
<tr>
<td><a href="/publisher/acaa.html">Afghanistan and Central Asian Association</a></td>
</tr>
<tr>
<td><a href="/publisher/hpa.html">Health Poverty Action</a></td>
</tr>
<tr>
<td><a href="/publisher/fm.html">Forests Monitor</a></td>
</tr>
<tr>
<td><a href="/publisher/basicneeds.html">BasicNeeds</a></td>
</tr>
<tr>
<td><a href="/publisher/arfh.html">Association for Reproductive and Family Health</a></td>
</tr>
<tr>
<td><a href="/publisher/fyf.html">Find Your Feet</a></td>
</tr>
<tr>
<td><a href="/publisher/buildafrica.html">Build Africa</a></td>
</tr>
<tr>
<td><a href="/publisher/tlmew.html">The Leprosy Mission England and Wales</a></td>
</tr>
<tr>
<td><a href="/publisher/cda.html">CDA Collaborative Learning Projects</a></td>
</tr>
<tr>
<td><a href="/publisher/blueventures.html">Blue Ventures Conservation</a></td>
</tr>
<tr>
<td><a href="/publisher/wsup.html">Water & Sanitation for the Urban Poor (WSUP)</a></td>
</tr>
<tr>
<td><a href="/publisher/rem.html">Resource Extraction Monitoring</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<code>1.03</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/shelterbox.html">ShelterBox</a></td>
</tr>
<tr>
<td><a href="/publisher/mamta_himc.html">MAMTA - Health Institute for Mother and Child</a></td>
</tr>
<tr>
<td><a href="/publisher/mapaction.html">MapAction</a></td>
</tr>
<tr>
<td><a href="/publisher/signal.html">Signal</a></td>
</tr>
<tr>
<td><a href="/publisher/bauk.html">Bees Abroad UK</a></td>
</tr>
<tr>
<td><a href="/publisher/growmovement_admin.html">Grow Movement</a></td>
</tr>
<tr>
<td><a href="/publisher/af.html">Adaptation Fund</a></td>
</tr>
<tr>
<td><a href="/publisher/simone_sympany.html">Sympany+</a></td>
</tr>
<tr>
<td><a href="/publisher/rfpap.html">Rahnuma-Family Planning Assocation of Pakistan</a></td>
</tr>
<tr>
<td><a href="/publisher/wccuk.html">World Child Cancer UK</a></td>
</tr>
<tr>
<td><a href="/publisher/theict.html">The International Children's Trust</a></td>
</tr>
<tr>
<td><a href="/publisher/lcd_admin.html">Leonard Cheshire Disability</a></td>
</tr>
<tr>
<td><a href="/publisher/dc.html">Digital Campus</a></td>
</tr>
<tr>
<td><a href="/publisher/addinternational.html">ADD International (Action on Disability and Development)</a></td>
</tr>
<tr>
<td><a href="/publisher/france.html">France - Ministry for Europe and Foreign Affairs</a></td>
</tr>
<tr>
<td><a href="/publisher/welbodipartnership.html">Welbodi Partnership</a></td>
</tr>
<tr>
<td><a href="/publisher/peopleinaid.html">People In Aid</a></td>
</tr>
<tr>
<td><a href="/publisher/allwecan.html">All We Can (formerly Methodist Relief and Development Fund)</a></td>
</tr>
<tr>
<td><a href="/publisher/pumpaid.html">Pump Aid</a></td>
</tr>
<tr>
<td><a href="/publisher/cww.html">Carers Worldwide</a></td>
</tr>
<tr>
<td><a href="/publisher/ri-uk.html">Relief International UK</a></td>
</tr>
<tr>
<td><a href="/publisher/humana_houben.html">Stichting Humana</a></td>
</tr>
<tr>
<td><a href="/publisher/anda.html">ANDA</a></td>
</tr>
<tr>
<td><a href="/publisher/aasaman.html">Aasaman Nepal</a></td>
</tr>
<tr>
<td><a href="/publisher/cuammtrustees.html">CUAMM Trustees</a></td>
</tr>
<tr>
<td><a href="/publisher/wwfpakistan.html">World Wide Fund for Nature - Pakistan</a></td>
</tr>
<tr>
<td><a href="/publisher/sossaheluk.html">SOS Sahel International UK</a></td>
</tr>
<tr>
<td><a href="/publisher/mic-uk.html">MICAIA</a></td>
</tr>
<tr>
<td><a href="/publisher/hwa-zm.html">Hilfswerk Austria Zimbabwe</a></td>
</tr>
<tr>
<td><a href="/publisher/acord.html">Agency for Cooperation and Research in Development (ACORD)</a></td>
</tr>
<tr>
<td><a href="/publisher/ip-india.html">iPartner India</a></td>
</tr>
<tr>
<td><a href="/publisher/wcf.html">Women and Children First (UK)</a></td>
</tr>
<tr>
<td><a href="/publisher/mgcubed.html">GEMS Education Solutions</a></td>
</tr>
<tr>
<td><a href="/publisher/kepa.html">Kepa ry</a></td>
</tr>
<tr>
<td><a href="/publisher/nrc.html">Norwegian Refugee Council</a></td>
</tr>
<tr>
<td><a href="/publisher/acted.html">ACTED</a></td>
</tr>
<tr>
<td><a href="/publisher/pontis.html">Pontis Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/hauk.html">Hospice Africa Ltd</a></td>
</tr>
<tr>
<td><a href="/publisher/hagar_uk.html">Hagar International UK</a></td>
</tr>
<tr>
<td><a href="/publisher/livelyminds.html">Lively Minds</a></td>
</tr>
<tr>
<td><a href="/publisher/excellent.html">Excellent Development</a></td>
</tr>
<tr>
<td><a href="/publisher/dochas.html">Dóchas - Irish Association of Non Governmental Development Organisations</a></td>
</tr>
<tr>
<td><a href="/publisher/soscvkenya.html">SOS Children's Villages Kenya</a></td>
</tr>
<tr>
<td><a href="/publisher/diltuk.html">Developments In Literacy Trust UK</a></td>
</tr>
<tr>
<td><a href="/publisher/plan_ireland.html">Plan Ireland Charitable Assistance Limited</a></td>
</tr>
<tr>
<td><a href="/publisher/alfalit.html">Alfalit</a></td>
</tr>
<tr>
<td><a href="/publisher/tripleline_crownagents.html">Triple Line</a></td>
</tr>
<tr>
<td><a href="/publisher/onetoonecf.html">One to One Children's Fund</a></td>
</tr>
<tr>
<td><a href="/publisher/cecily.html">Cecily's Fund</a></td>
</tr>
<tr>
<td><a href="/publisher/m2m_sa.html">mothers2mothers</a></td>
</tr>
<tr>
<td><a href="/publisher/gan.html">Global Action Nepal</a></td>
</tr>
<tr>
<td><a href="/publisher/retrak.html">Retrak</a></td>
</tr>
<tr>
<td><a href="/publisher/mlf.html">MicroLoan Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/cr.html">Conciliation Resources</a></td>
</tr>
<tr>
<td><a href="/publisher/ffi_publisher.html">Fauna & Flora International</a></td>
</tr>
<tr>
<td><a href="/publisher/childfund.html">ChildFund International</a></td>
</tr>
<tr>
<td><a href="/publisher/hsa.html">Heifer International South Africa</a></td>
</tr>
<tr>
<td><a href="/publisher/starsfoundation.html">Stars Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/jeevika_trust.html">Jeevika Trust</a></td>
</tr>
<tr>
<td><a href="/publisher/w4p.html">Water for People</a></td>
</tr>
<tr>
<td><a href="/publisher/zet.html">Zimbabwe Educational Trust</a></td>
</tr>
<tr>
<td><a href="/publisher/tfacmalawi.html">Theatre for a Change Malawi</a></td>
</tr>
<tr>
<td><a href="/publisher/frankwater.html">FRANK Water</a></td>
</tr>
<tr>
<td><a href="/publisher/evc.html">EveryChild</a></td>
</tr>
<tr>
<td><a href="/publisher/sinda.html">Scotland's International Development Alliance</a></td>
</tr>
<tr>
<td><a href="/publisher/street_child.html">Street Child</a></td>
</tr>
<tr>
<td><a href="/publisher/cifal.html">CIFAL Scotland</a></td>
</tr>
<tr>
<td><a href="/publisher/mia_india.html">Micro Insurance Academy</a></td>
</tr>
<tr>
<td><a href="/publisher/phase-nepal.html">PHASE Nepal</a></td>
</tr>
<tr>
<td><a href="/publisher/htspe.html">HTSPE</a></td>
</tr>
<tr>
<td><a href="/publisher/viva.html">Viva</a></td>
</tr>
<tr>
<td><a href="/publisher/phe.html">Project Harar</a></td>
</tr>
<tr>
<td><a href="/publisher/eel.html">Exeter Ethiopia Link</a></td>
</tr>
<tr>
<td><a href="/publisher/wtk.html">Windle Trust Kenya</a></td>
</tr>
<tr>
<td><a href="/publisher/dapp.html">Development Aid from People to People (DAPP) Malawi</a></td>
</tr>
<tr>
<td><a href="/publisher/crane.html">CRANE</a></td>
</tr>
<tr>
<td><a href="/publisher/icn.html">InterClimate Network</a></td>
</tr>
<tr>
<td><a href="/publisher/sacbc.html">Southern African Catholic Bishops' Conference Aids Office</a></td>
</tr>
<tr>
<td><a href="/publisher/si.html">StreetInvest</a></td>
</tr>
<tr>
<td><a href="/publisher/sense_international.html">Sense International</a></td>
</tr>
<tr>
<td><a href="/publisher/waronwant.html">War on Want</a></td>
</tr>
<tr>
<td><a href="/publisher/irishaid.html">Ireland - Department of Foreign Affairs</a></td>
</tr>
<tr>
<td><a href="/publisher/arfh.html">Association for Reproductive and Family Health</a></td>
</tr>
<tr>
<td><a href="/publisher/sdc_ch.html">Switzerland - Swiss Agency for Development and Cooperation (SDC)</a></td>
</tr>
<tr>
<td><a href="/publisher/vao.html">Vision Aid Overseas</a></td>
</tr>
<tr>
<td><a href="/publisher/wwf-uk.html">WWF-UK</a></td>
</tr>
<tr>
<td><a href="/publisher/dthfxx12.html">Desmond Tutu HIV Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/ukmod.html">UK - Ministry of Defence</a></td>
</tr>
<tr>
<td><a href="/publisher/hha.html">Haiti Hospital Appeal</a></td>
</tr>
<tr>
<td><a href="/publisher/ctc.html">Child-to-Child</a></td>
</tr>
<tr>
<td><a href="/publisher/gecfundmanagerpwc.html">Girls’ Education Challenge – Fund Manager PwC</a></td>
</tr>
<tr>
<td><a href="/publisher/tamtf.html">Teach A Man To Fish</a></td>
</tr>
<tr>
<td><a href="/publisher/vso.html">Voluntary Service Overseas (VSO)</a></td>
</tr>
<tr>
<td><a href="/publisher/iww_publish.html">Interact Worldwide</a></td>
</tr>
<tr>
<td><a href="/publisher/canoncollinstrust.html">Canon Collins Trust</a></td>
</tr>
<tr>
<td><a href="/publisher/ke-ngc-3372.html">I Choose Life Africa</a></td>
</tr>
<tr>
<td><a href="/publisher/zing.html">Zing</a></td>
</tr>
<tr>
<td><a href="/publisher/targettb.html">Target TB</a></td>
</tr>
<tr>
<td><a href="/publisher/across.html">Across</a></td>
</tr>
<tr>
<td><a href="/publisher/coda.html">CODA International</a></td>
</tr>
<tr>
<td><a href="/publisher/wusc.html">World University Service of Canada</a></td>
</tr>
<tr>
<td><a href="/publisher/foe-ghana.html">Friends of the Earth-Ghana</a></td>
</tr>
<tr>
<td><a href="/publisher/wowni.html">War on Want NI</a></td>
</tr>
<tr>
<td><a href="/publisher/tccec.html">The Coca-Cola Export Corporation</a></td>
</tr>
<tr>
<td><a href="/publisher/power.html">Power International</a></td>
</tr>
<tr>
<td><a href="/publisher/adrasom.html">Adventist Development and Relief Agency (ADRA Somalia)</a></td>
</tr>
<tr>
<td><a href="/publisher/cord.html">Cord</a></td>
</tr>
<tr>
<td><a href="/publisher/cal.html">Crown Agents Limited</a></td>
</tr>
<tr>
<td><a href="/publisher/mag.html">MAG</a></td>
</tr>
<tr>
<td><a href="/publisher/simlab.html">Social Impact Lab CIC</a></td>
</tr>
<tr>
<td><a href="/publisher/ewb_canada.html">Engineers Without Borders Canada</a></td>
</tr>
<tr>
<td><a href="/publisher/rainfoundation.html">RAIN Foundation (former)</a></td>
</tr>
<tr>
<td><a href="/publisher/ciks.html">Centre for Indian Knowledge Systems</a></td>
</tr>
<tr>
<td><a href="/publisher/ics.html">ICS</a></td>
</tr>
<tr>
<td><a href="/publisher/imcw_admin.html">IMC WORLDWIDE</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<code>1.04</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/wateraid.html">WaterAid</a></td>
</tr>
<tr>
<td><a href="/publisher/aiddata.html">AidData</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<code>1.05</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/france.html">France - Ministry for Europe and Foreign Affairs</a></td>
</tr>
<tr>
<td><a href="/publisher/spark.html">SPARK</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<code>2.01</code>
<table class="table table-striped">
<tr>
<td><a href="/publisher/ebrd.html">European Bank for Reconstruction and Development</a></td>
</tr>
<tr>
<td><a href="/publisher/options.html">Options Consultancy Services</a></td>
</tr>
<tr>
<td><a href="/publisher/growmovement_admin.html">Grow Movement</a></td>
</tr>
<tr>
<td><a href="/publisher/varkeyfoundation.html">Varkey Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/inasp.html">International Network for Advancing Science and Policy</a></td>
</tr>
<tr>
<td><a href="/publisher/simone_sympany.html">Sympany+</a></td>
</tr>
<tr>
<td><a href="/publisher/rfpap.html">Rahnuma-Family Planning Assocation of Pakistan</a></td>
</tr>
<tr>
<td><a href="/publisher/wateraid.html">WaterAid</a></td>
</tr>
<tr>
<td><a href="/publisher/millenniumchallenge.html">Millennium Challenge Corporation</a></td>
</tr>
<tr>
<td><a href="/publisher/planinternationalfinland.html">Plan International Finland</a></td>
</tr>
<tr>
<td><a href="/publisher/theict.html">The International Children's Trust</a></td>
</tr>
<tr>
<td><a href="/publisher/lhcf.html">LAMB Health Care Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/dc.html">Digital Campus</a></td>
</tr>
<tr>
<td><a href="/publisher/uaf-africa.html">Urgent Action Fund-Africa</a></td>
</tr>
<tr>
<td><a href="/publisher/france.html">France - Ministry for Europe and Foreign Affairs</a></td>
</tr>
<tr>
<td><a href="/publisher/gb-chc-220949.html">British Red Cross</a></td>
</tr>
<tr>
<td><a href="/publisher/alcis.html">Alcis Holdings Limited</a></td>
</tr>
<tr>
<td><a href="/publisher/hi.html">Homeless International</a></td>
</tr>
<tr>
<td><a href="/publisher/mie-1134415.html">MADE in Europe</a></td>
</tr>
<tr>
<td><a href="/publisher/cuammtrustees.html">CUAMM Trustees</a></td>
</tr>
<tr>
<td><a href="/publisher/rfuk.html">Rainforest Foundation UK</a></td>
</tr>
<tr>
<td><a href="/publisher/ced.html">Christian Engineers in Development</a></td>
</tr>
<tr>
<td><a href="/publisher/itad.html">Itad</a></td>
</tr>
<tr>
<td><a href="/publisher/acord.html">Agency for Cooperation and Research in Development (ACORD)</a></td>
</tr>
<tr>
<td><a href="/publisher/ip-india.html">iPartner India</a></td>
</tr>
<tr>
<td><a href="/publisher/finance_canada.html">Canada Department of Finance / Ministère des Finances Canada</a></td>
</tr>
<tr>
<td><a href="/publisher/mgcubed.html">GEMS Education Solutions</a></td>
</tr>
<tr>
<td><a href="/publisher/lcds.html">Link Community Development Scotland</a></td>
</tr>
<tr>
<td><a href="/publisher/hhc.html">Hope and Homes for Children</a></td>
</tr>
<tr>
<td><a href="/publisher/eiuk.html">Emmanuel International UK</a></td>
</tr>
<tr>
<td><a href="/publisher/bioclimate.html">Bioclimate Research and Development</a></td>
</tr>
<tr>
<td><a href="/publisher/hagar_uk.html">Hagar International UK</a></td>
</tr>
<tr>
<td><a href="/publisher/livelyminds.html">Lively Minds</a></td>
</tr>
<tr>
<td><a href="/publisher/diltuk.html">Developments In Literacy Trust UK</a></td>
</tr>
<tr>
<td><a href="/publisher/phase_worldwide.html">PHASE Worldwide</a></td>
</tr>
<tr>
<td><a href="/publisher/onetoonecf.html">One to One Children's Fund</a></td>
</tr>
<tr>
<td><a href="/publisher/nl-kvk-54436222-27541.html">CNV Internationaal</a></td>
</tr>
<tr>
<td><a href="/publisher/cecily.html">Cecily's Fund</a></td>
</tr>
<tr>
<td><a href="/publisher/m2m_sa.html">mothers2mothers</a></td>
</tr>
<tr>
<td><a href="/publisher/sacu.html">Send a Cow Uganda</a></td>
</tr>
<tr>
<td><a href="/publisher/cic.html">Children in Crisis</a></td>
</tr>
<tr>
<td><a href="/publisher/ybi.html">Youth Business International</a></td>
</tr>
<tr>
<td><a href="/publisher/tib.html">Transparency International Bangladesh</a></td>
</tr>
<tr>
<td><a href="/publisher/nfn.html">NGO Federation of Nepal</a></td>
</tr>
<tr>
<td><a href="/publisher/hewlett-foundation.html">The William and Flora Hewlett Foundation</a></td>
</tr>
<tr>
<td><a href="/publisher/hp_12.html">HealthProm</a></td>
</tr>
<tr>
<td><a href="/publisher/ipa.html">International Procurement Agency</a></td>
</tr>
<tr>
<td><a href="/publisher/mstamp.html">Maxwell Stamp PLC</a></td>
</tr>