-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdelegations_array.php
executable file
·170 lines (169 loc) · 2.3 KB
/
delegations_array.php
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
<?php
$delegations = array('', // for 0
'Afghanistan',
'Albania',
'Algeria',
'Amnesty International',
'Angola',
'Argentina',
'Armenia',
'Australia',
'Austria',
'Azerbaijan',
'Bahamas',
'Bahrain',
'Bangladesh',
'Barbados',
'Belarus',
'Belgium',
'Belize',
'Bhutan',
'Bolivia',
'Bosnia and Herzegovina',
'Botswana',
'Brazil',
'Bulgaria',
'Burkina Faso',
'Cambodia',
'Cameroon',
'Canada',
'Cape Verde',
'Central African Republic',
'Chad',
'Chile',
'China',
'Colombia',
'Congo (Republic of the)',
'Costa Rica',
'Côte d\'Ivoire',
'Croatia',
'Cuba',
'Cyprus',
'Czech Republic',
'D.P.R. of Korea ',
'D.R. of the Congo',
'Denmark',
'Djibouti',
'Dominican Republic',
'Ecuador',
'Egypt',
'El Salvador',
'Eritrea',
'Estonia',
'Ethiopia',
'Fiji',
'Finland',
'France',
'Gabon',
'Georgia',
'Germany',
'Ghana',
'Greece',
'Guatemala',
'Guinea',
'Guyana',
'Haiti',
'Holy See',
'Honduras',
'Human Rights Watch',
'Hungary',
'Iceland',
'India',
'Indonesia',
'International Crisis Group',
'Int\'l Committee of the Red Cross',
'Int\'l Institute for Env\'t and Devlopment',
'Iran (Islamic Republic of)',
'Iraq',
'Ireland',
'Israel',
'Italy',
'Jamaica',
'Japan',
'Jordan',
'Kazakhstan',
'Kenya',
'Kuwait',
'Kyrgyzstan',
'Lao People\'s Dem. Rep.',
'Latvia',
'Lebanon',
'Lesotho',
'Libyan Arab Jamahiriya',
'Liechtenstein ',
'Lithuania',
'Luxembourg',
'Macedonia (The F.Y.R of)',
'Madagascar',
'Malaysia',
'Maldives',
'Malta',
'Mauritius',
'Médecins Sans Frontières',
'Mexico',
'Moldova',
'Mongolia',
'Montenegro',
'Morocco',
'Mozambique',
'Myanmar',
'Nepal',
'Netherlands',
'New Zealand',
'Nicaragua',
'Nigeria',
'Norway',
'Oman',
'Oxfam International',
'Pakistan',
'Palestine',
'Panama',
'Paraguay',
'Peru',
'Philippines',
'Poland',
'Portugal',
'Qatar',
'Republic of Korea',
'Romania',
'Russian Federation',
'Rwanda',
'Saudi Arabia',
'Senegal',
'Serbia',
'Sierra Leone',
'Singapore',
'Slovakia',
'Slovenia',
'Somalia',
'South Africa',
'Spain',
'Sri Lanka',
'Sudan',
'Swaziland',
'Sweden',
'Switzerland',
'Syrian Arab Republic',
'Tajikistan',
'Thailand',
'Timor-Leste',
'Togo',
'Trinidad and Tobago',
'Tunisia',
'Turkey',
'Turkmenistan',
'Uganda',
'UK of GB and NI',
'Ukraine',
'United Arab Emirates',
'United Republic of Tanzania',
'United States of America',
'Uruguay',
'Uzbekistan',
'Venezuela (Bolivarian Rep. of)',
'Viet Nam',
'Yemen',
'Zambia',
'Zimbabwe',
);
?>