@thenovaweb/druid-ogold-rn-sdk 0.0.39 → 0.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/lib/commonjs/assets/data/countries.json +2738 -999
  2. package/lib/commonjs/assets/data/form.json +36 -0
  3. package/lib/commonjs/components/BasicInput.js +18 -4
  4. package/lib/commonjs/components/BasicInput.js.map +1 -1
  5. package/lib/commonjs/components/Checkbox.js +4 -3
  6. package/lib/commonjs/components/Checkbox.js.map +1 -1
  7. package/lib/commonjs/components/DatePicker.js +4 -3
  8. package/lib/commonjs/components/DatePicker.js.map +1 -1
  9. package/lib/commonjs/components/DocumentCard.js +10 -2
  10. package/lib/commonjs/components/DocumentCard.js.map +1 -1
  11. package/lib/commonjs/components/DropdownComponent.js +10 -9
  12. package/lib/commonjs/components/DropdownComponent.js.map +1 -1
  13. package/lib/commonjs/components/Navigator.js +6 -1
  14. package/lib/commonjs/components/Navigator.js.map +1 -1
  15. package/lib/commonjs/components/UploadImageModal.js +3 -4
  16. package/lib/commonjs/components/UploadImageModal.js.map +1 -1
  17. package/lib/commonjs/components/ogold/CountrySelectionBottomSheet.js +3 -3
  18. package/lib/commonjs/components/ogold/CountrySelectionBottomSheet.js.map +1 -1
  19. package/lib/commonjs/components/ogold/OGoldCountry.js +8 -7
  20. package/lib/commonjs/components/ogold/OGoldCountry.js.map +1 -1
  21. package/lib/commonjs/index.js.map +1 -1
  22. package/lib/commonjs/screens/DocumentsScreen.js +29 -59
  23. package/lib/commonjs/screens/DocumentsScreen.js.map +1 -1
  24. package/lib/commonjs/screens/DraftInstructionsScreen.js +29 -2
  25. package/lib/commonjs/screens/DraftInstructionsScreen.js.map +1 -1
  26. package/lib/commonjs/screens/FormScreen.js +33 -5
  27. package/lib/commonjs/screens/FormScreen.js.map +1 -1
  28. package/lib/commonjs/screens/LivenessScreen.js +9 -1
  29. package/lib/commonjs/screens/LivenessScreen.js.map +1 -1
  30. package/lib/commonjs/screens/ReportScreen.js +128 -7
  31. package/lib/commonjs/screens/ReportScreen.js.map +1 -1
  32. package/lib/commonjs/state/slices/customerSlice.js +48 -5
  33. package/lib/commonjs/state/slices/customerSlice.js.map +1 -1
  34. package/lib/commonjs/state/slices/formSlice.js +22 -10
  35. package/lib/commonjs/state/slices/formSlice.js.map +1 -1
  36. package/lib/commonjs/state/slices/immutableOcrSlice.js +20 -1
  37. package/lib/commonjs/state/slices/immutableOcrSlice.js.map +1 -1
  38. package/lib/commonjs/state/slices/ocrSlice.js +210 -15
  39. package/lib/commonjs/state/slices/ocrSlice.js.map +1 -1
  40. package/lib/commonjs/state/slices/ocrTypes.js +2 -0
  41. package/lib/commonjs/state/slices/ocrTypes.js.map +1 -0
  42. package/lib/commonjs/utils/constants.js +23 -3
  43. package/lib/commonjs/utils/constants.js.map +1 -1
  44. package/lib/commonjs/utils/helpers.js +45 -9
  45. package/lib/commonjs/utils/helpers.js.map +1 -1
  46. package/lib/commonjs/utils/validators.js +29 -3
  47. package/lib/commonjs/utils/validators.js.map +1 -1
  48. package/lib/module/assets/data/countries.json +2738 -999
  49. package/lib/module/assets/data/form.json +36 -0
  50. package/lib/module/components/BasicInput.js +18 -4
  51. package/lib/module/components/BasicInput.js.map +1 -1
  52. package/lib/module/components/Checkbox.js +4 -3
  53. package/lib/module/components/Checkbox.js.map +1 -1
  54. package/lib/module/components/DatePicker.js +4 -3
  55. package/lib/module/components/DatePicker.js.map +1 -1
  56. package/lib/module/components/DocumentCard.js +11 -3
  57. package/lib/module/components/DocumentCard.js.map +1 -1
  58. package/lib/module/components/DropdownComponent.js +10 -9
  59. package/lib/module/components/DropdownComponent.js.map +1 -1
  60. package/lib/module/components/Navigator.js +6 -1
  61. package/lib/module/components/Navigator.js.map +1 -1
  62. package/lib/module/components/UploadImageModal.js +3 -4
  63. package/lib/module/components/UploadImageModal.js.map +1 -1
  64. package/lib/module/components/ogold/CountrySelectionBottomSheet.js +3 -3
  65. package/lib/module/components/ogold/CountrySelectionBottomSheet.js.map +1 -1
  66. package/lib/module/components/ogold/OGoldCountry.js +8 -7
  67. package/lib/module/components/ogold/OGoldCountry.js.map +1 -1
  68. package/lib/module/index.js.map +1 -1
  69. package/lib/module/screens/DocumentsScreen.js +30 -60
  70. package/lib/module/screens/DocumentsScreen.js.map +1 -1
  71. package/lib/module/screens/DraftInstructionsScreen.js +29 -2
  72. package/lib/module/screens/DraftInstructionsScreen.js.map +1 -1
  73. package/lib/module/screens/FormScreen.js +33 -5
  74. package/lib/module/screens/FormScreen.js.map +1 -1
  75. package/lib/module/screens/LivenessScreen.js +9 -1
  76. package/lib/module/screens/LivenessScreen.js.map +1 -1
  77. package/lib/module/screens/ReportScreen.js +129 -8
  78. package/lib/module/screens/ReportScreen.js.map +1 -1
  79. package/lib/module/state/slices/customerSlice.js +50 -7
  80. package/lib/module/state/slices/customerSlice.js.map +1 -1
  81. package/lib/module/state/slices/formSlice.js +23 -11
  82. package/lib/module/state/slices/formSlice.js.map +1 -1
  83. package/lib/module/state/slices/immutableOcrSlice.js +18 -0
  84. package/lib/module/state/slices/immutableOcrSlice.js.map +1 -1
  85. package/lib/module/state/slices/ocrSlice.js +211 -16
  86. package/lib/module/state/slices/ocrSlice.js.map +1 -1
  87. package/lib/module/state/slices/ocrTypes.js +2 -0
  88. package/lib/module/state/slices/ocrTypes.js.map +1 -0
  89. package/lib/module/utils/constants.js +23 -3
  90. package/lib/module/utils/constants.js.map +1 -1
  91. package/lib/module/utils/helpers.js +46 -10
  92. package/lib/module/utils/helpers.js.map +1 -1
  93. package/lib/module/utils/validators.js +27 -2
  94. package/lib/module/utils/validators.js.map +1 -1
  95. package/lib/typescript/commonjs/src/components/BasicInput.d.ts.map +1 -1
  96. package/lib/typescript/commonjs/src/components/Checkbox.d.ts.map +1 -1
  97. package/lib/typescript/commonjs/src/components/DatePicker.d.ts.map +1 -1
  98. package/lib/typescript/commonjs/src/components/DocumentCard.d.ts.map +1 -1
  99. package/lib/typescript/commonjs/src/components/Navigator.d.ts.map +1 -1
  100. package/lib/typescript/commonjs/src/components/UploadImageModal.d.ts.map +1 -1
  101. package/lib/typescript/commonjs/src/components/ogold/CountrySelectionBottomSheet.d.ts +8 -2
  102. package/lib/typescript/commonjs/src/components/ogold/CountrySelectionBottomSheet.d.ts.map +1 -1
  103. package/lib/typescript/commonjs/src/components/ogold/OGoldCountry.d.ts.map +1 -1
  104. package/lib/typescript/commonjs/src/index.d.ts +3 -0
  105. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  106. package/lib/typescript/commonjs/src/screens/DocumentsScreen.d.ts.map +1 -1
  107. package/lib/typescript/commonjs/src/screens/DraftInstructionsScreen.d.ts.map +1 -1
  108. package/lib/typescript/commonjs/src/screens/FormScreen.d.ts.map +1 -1
  109. package/lib/typescript/commonjs/src/screens/LivenessScreen.d.ts.map +1 -1
  110. package/lib/typescript/commonjs/src/screens/ReportScreen.d.ts.map +1 -1
  111. package/lib/typescript/commonjs/src/state/hooks.d.ts +2 -2
  112. package/lib/typescript/commonjs/src/state/slices/customerSlice.d.ts +50 -0
  113. package/lib/typescript/commonjs/src/state/slices/customerSlice.d.ts.map +1 -1
  114. package/lib/typescript/commonjs/src/state/slices/formSlice.d.ts.map +1 -1
  115. package/lib/typescript/commonjs/src/state/slices/immutableOcrSlice.d.ts +24 -7
  116. package/lib/typescript/commonjs/src/state/slices/immutableOcrSlice.d.ts.map +1 -1
  117. package/lib/typescript/commonjs/src/state/slices/ocrSlice.d.ts +2509 -410
  118. package/lib/typescript/commonjs/src/state/slices/ocrSlice.d.ts.map +1 -1
  119. package/lib/typescript/commonjs/src/state/slices/ocrTypes.d.ts +74 -0
  120. package/lib/typescript/commonjs/src/state/slices/ocrTypes.d.ts.map +1 -0
  121. package/lib/typescript/commonjs/src/state/store.d.ts +2 -2
  122. package/lib/typescript/commonjs/src/utils/constants.d.ts +11 -1
  123. package/lib/typescript/commonjs/src/utils/constants.d.ts.map +1 -1
  124. package/lib/typescript/commonjs/src/utils/helpers.d.ts +4 -4
  125. package/lib/typescript/commonjs/src/utils/helpers.d.ts.map +1 -1
  126. package/lib/typescript/commonjs/src/utils/types.d.ts +14 -0
  127. package/lib/typescript/commonjs/src/utils/types.d.ts.map +1 -1
  128. package/lib/typescript/commonjs/src/utils/validators.d.ts +5 -1
  129. package/lib/typescript/commonjs/src/utils/validators.d.ts.map +1 -1
  130. package/lib/typescript/module/src/components/BasicInput.d.ts.map +1 -1
  131. package/lib/typescript/module/src/components/Checkbox.d.ts.map +1 -1
  132. package/lib/typescript/module/src/components/DatePicker.d.ts.map +1 -1
  133. package/lib/typescript/module/src/components/DocumentCard.d.ts.map +1 -1
  134. package/lib/typescript/module/src/components/Navigator.d.ts.map +1 -1
  135. package/lib/typescript/module/src/components/UploadImageModal.d.ts.map +1 -1
  136. package/lib/typescript/module/src/components/ogold/CountrySelectionBottomSheet.d.ts +8 -2
  137. package/lib/typescript/module/src/components/ogold/CountrySelectionBottomSheet.d.ts.map +1 -1
  138. package/lib/typescript/module/src/components/ogold/OGoldCountry.d.ts.map +1 -1
  139. package/lib/typescript/module/src/index.d.ts +3 -0
  140. package/lib/typescript/module/src/index.d.ts.map +1 -1
  141. package/lib/typescript/module/src/screens/DocumentsScreen.d.ts.map +1 -1
  142. package/lib/typescript/module/src/screens/DraftInstructionsScreen.d.ts.map +1 -1
  143. package/lib/typescript/module/src/screens/FormScreen.d.ts.map +1 -1
  144. package/lib/typescript/module/src/screens/LivenessScreen.d.ts.map +1 -1
  145. package/lib/typescript/module/src/screens/ReportScreen.d.ts.map +1 -1
  146. package/lib/typescript/module/src/state/hooks.d.ts +2 -2
  147. package/lib/typescript/module/src/state/slices/customerSlice.d.ts +50 -0
  148. package/lib/typescript/module/src/state/slices/customerSlice.d.ts.map +1 -1
  149. package/lib/typescript/module/src/state/slices/formSlice.d.ts.map +1 -1
  150. package/lib/typescript/module/src/state/slices/immutableOcrSlice.d.ts +24 -7
  151. package/lib/typescript/module/src/state/slices/immutableOcrSlice.d.ts.map +1 -1
  152. package/lib/typescript/module/src/state/slices/ocrSlice.d.ts +2509 -410
  153. package/lib/typescript/module/src/state/slices/ocrSlice.d.ts.map +1 -1
  154. package/lib/typescript/module/src/state/slices/ocrTypes.d.ts +74 -0
  155. package/lib/typescript/module/src/state/slices/ocrTypes.d.ts.map +1 -0
  156. package/lib/typescript/module/src/state/store.d.ts +2 -2
  157. package/lib/typescript/module/src/utils/constants.d.ts +11 -1
  158. package/lib/typescript/module/src/utils/constants.d.ts.map +1 -1
  159. package/lib/typescript/module/src/utils/helpers.d.ts +4 -4
  160. package/lib/typescript/module/src/utils/helpers.d.ts.map +1 -1
  161. package/lib/typescript/module/src/utils/types.d.ts +14 -0
  162. package/lib/typescript/module/src/utils/types.d.ts.map +1 -1
  163. package/lib/typescript/module/src/utils/validators.d.ts +5 -1
  164. package/lib/typescript/module/src/utils/validators.d.ts.map +1 -1
  165. package/package.json +1 -1
@@ -1,1002 +1,2741 @@
1
1
  [
2
2
  {
3
- "value": "Afghanistan",
4
- "image": "https://img.icons8.com/?size=100&id=HVxwrj5XZX5J&format=png&color=000000",
5
- "dial_code": "+93"
6
- },
7
- {
8
- "value": "Albania",
9
- "image": "https://img.icons8.com/?size=100&id=J0pOhDQDNT47&format=png&color=000000",
10
- "dial_code": "+355"
11
- },
12
- {
13
- "value": "Algeria",
14
- "image": "https://img.icons8.com/?size=100&id=ohQGuW5WrzUc&format=png&color=000000",
15
- "dial_code": "+213"
16
- },
17
- {
18
- "value": "Andorra",
19
- "image": "https://img.icons8.com/?size=100&id=D6SQnPUqkSDz&format=png&color=000000",
20
- "dial_code": "+376"
21
- },
22
- {
23
- "value": "Angola",
24
- "image": "https://img.icons8.com/?size=100&id=lhY9u5hriVM0&format=png&color=000000",
25
- "dial_code": "+244"
26
- },
27
- {
28
- "value": "Antigua and Barbuda",
29
- "image": "https://img.icons8.com/?size=100&id=FOUsVf5JP0Yk&format=png&color=000000",
30
- "dial_code": "+1-268"
31
- },
32
- {
33
- "value": "Argentina",
34
- "image": "https://img.icons8.com/?size=100&id=ibqKXaaqCBHo&format=png&color=000000",
35
- "dial_code": "+54"
36
- },
37
- {
38
- "value": "Armenia",
39
- "image": "https://img.icons8.com/?size=100&id=cPDPVfgeUA2l&format=png&color=000000",
40
- "dial_code": "+374"
41
- },
42
- {
43
- "value": "Australia",
44
- "image": "https://img.icons8.com/?size=100&id=UN34m1KGQG9v&format=png&color=000000",
45
- "dial_code": "+61"
46
- },
47
- {
48
- "value": "Austria",
49
- "image": "https://img.icons8.com/?size=100&id=6Hs1IM1NzN7p&format=png&color=000000",
50
- "dial_code": "+43"
51
- },
52
- {
53
- "value": "Azerbaijan",
54
- "image": "https://img.icons8.com/?size=100&id=nTcULYnn7dkC&format=png&color=000000",
55
- "dial_code": "+994"
56
- },
57
- {
58
- "value": "Bahamas",
59
- "image": "https://img.icons8.com/?size=100&id=TfFnu2ecDfTT&format=png&color=000000",
60
- "dial_code": "+1-242"
61
- },
62
- {
63
- "value": "Bahrain",
64
- "image": "https://img.icons8.com/?size=100&id=LoaYivEJp4MV&format=png&color=000000",
65
- "dial_code": "+973"
66
- },
67
- {
68
- "value": "Bangladesh",
69
- "image": "https://img.icons8.com/?size=100&id=TyDZNgOeTyqW&format=png&color=000000",
70
- "dial_code": "+880"
71
- },
72
- {
73
- "value": "Barbados",
74
- "image": "https://img.icons8.com/?size=100&id=FTVBeIPzPAXg&format=png&color=000000",
75
- "dial_code": "+1-246"
76
- },
77
- {
78
- "value": "Belarus",
79
- "image": "https://img.icons8.com/?size=100&id=MvQ8Pu9VD4gT&format=png&color=000000",
80
- "dial_code": "+375"
81
- },
82
- {
83
- "value": "Belgium",
84
- "image": "https://img.icons8.com/?size=100&id=ARmbqGBLERSo&format=png&color=000000",
85
- "dial_code": "+32"
86
- },
87
- {
88
- "value": "Belize",
89
- "image": "https://img.icons8.com/?size=100&id=4fUkZtYzJwxs&format=png&color=000000",
90
- "dial_code": "+501"
91
- },
92
- {
93
- "value": "Benin",
94
- "image": "https://img.icons8.com/?size=100&id=SUXVXWPCfQeF&format=png&color=000000",
95
- "dial_code": "+229"
96
- },
97
- {
98
- "value": "Bhutan",
99
- "image": "https://img.icons8.com/?size=100&id=kNP1AoC0D6cR&format=png&color=000000",
100
- "dial_code": "+975"
101
- },
102
- {
103
- "value": "Bolivia",
104
- "image": "https://img.icons8.com/?size=100&id=KuDAQKPk7dlU&format=png&color=000000",
105
- "dial_code": "+591"
106
- },
107
- {
108
- "value": "Bosnia and Herzegovina",
109
- "image": "https://img.icons8.com/?size=100&id=wWA0WNSSxJ4g&format=png&color=000000",
110
- "dial_code": "+387"
111
- },
112
- {
113
- "value": "Botswana",
114
- "image": "https://img.icons8.com/?size=100&id=lopsM2MYKMJK&format=png&color=000000",
115
- "dial_code": "+267"
116
- },
117
- {
118
- "value": "Brazil",
119
- "image": "https://img.icons8.com/?size=100&id=iHI2gDXCsMzH&format=png&color=000000",
120
- "dial_code": "+55"
121
- },
122
- {
123
- "value": "Brunei",
124
- "image": "https://img.icons8.com/?size=100&id=aQIkU7tcnZtt&format=png&color=000000",
125
- "dial_code": "+673"
126
- },
127
- {
128
- "value": "Bulgaria",
129
- "image": "https://img.icons8.com/?size=100&id=D8d97JyA7dc6&format=png&color=000000",
130
- "dial_code": "+359"
131
- },
132
- {
133
- "value": "Burkina Faso",
134
- "image": "https://img.icons8.com/?size=100&id=5AYLedQUrHYi&format=png&color=000000",
135
- "dial_code": "+226"
136
- },
137
- {
138
- "value": "Burundi",
139
- "image": "https://img.icons8.com/?size=100&id=sXRBzrhiPLNG&format=png&color=000000",
140
- "dial_code": "+257"
141
- },
142
- {
143
- "value": "Cape Verde",
144
- "image": "https://img.icons8.com/?size=100&id=7BZN4cVPswUB&format=png&color=000000",
145
- "dial_code": "+238"
146
- },
147
- {
148
- "value": "Cambodia",
149
- "image": "https://img.icons8.com/?size=100&id=cuPwZyT32YLA&format=png&color=000000",
150
- "dial_code": "+855"
151
- },
152
- {
153
- "value": "Cameroon",
154
- "image": "https://img.icons8.com/?size=100&id=b6s4tU1sF3zC&format=png&color=000000",
155
- "dial_code": "+237"
156
- },
157
- {
158
- "value": "Canada",
159
- "image": "https://img.icons8.com/?size=100&id=Dum84gAXfBP6&format=png&color=000000",
160
- "dial_code": "+1"
161
- },
162
- {
163
- "value": "Central African Republic",
164
- "image": "https://img.icons8.com/?size=100&id=m83C5D78XBm8&format=png&color=000000",
165
- "dial_code": "+236"
166
- },
167
- {
168
- "value": "Chad",
169
- "image": "https://img.icons8.com/?size=100&id=senHCgyCYidl&format=png&color=000000",
170
- "dial_code": "+235"
171
- },
172
- {
173
- "value": "Chile",
174
- "image": "https://img.icons8.com/?size=100&id=oBEl4fKQY7gE&format=png&color=000000",
175
- "dial_code": "+56"
176
- },
177
- {
178
- "value": "China",
179
- "image": "https://img.icons8.com/?size=100&id=OafC2pWK4RV4&format=png&color=000000",
180
- "dial_code": "+86"
181
- },
182
- {
183
- "value": "Colombia",
184
- "image": "https://img.icons8.com/?size=100&id=N8GN5w7Vt8qp&format=png&color=000000",
185
- "dial_code": "+57"
186
- },
187
- {
188
- "value": "Comoros",
189
- "image": "https://img.icons8.com/?size=100&id=k5fkI0aMANUY&format=png&color=000000",
190
- "dial_code": "+269"
191
- },
192
- {
193
- "value": "Congo (Congo-Brazzaville)",
194
- "image": "https://img.icons8.com/?size=100&id=OFeHmiNwGhbN&format=png&color=000000",
195
- "dial_code": "+242"
196
- },
197
- {
198
- "value": "Republic of the Congo",
199
- "image": "https://img.icons8.com/?size=100&id=QwgMHovQbJkO&format=png&color=000000",
200
- "dial_code": "+242"
201
- },
202
- {
203
- "value": "Costa Rica",
204
- "image": "https://img.icons8.com/?size=100&id=5ltp63P4dj0r&format=png&color=000000",
205
- "dial_code": "+506"
206
- },
207
- {
208
- "value": "Croatia",
209
- "image": "https://img.icons8.com/?size=100&id=NneB5FIUGHEe&format=png&color=000000",
210
- "dial_code": "+385"
211
- },
212
- {
213
- "value": "Cuba",
214
- "image": "https://img.icons8.com/?size=100&id=14cQ5Y3V852x&format=png&color=000000",
215
- "dial_code": "+53"
216
- },
217
- {
218
- "value": "Cyprus",
219
- "image": "https://img.icons8.com/?size=100&id=NfWY6fD0nzVl&format=png&color=000000",
220
- "dial_code": "+357"
221
- },
222
- {
223
- "value": "Czech Republic",
224
- "image": "https://img.icons8.com/?size=100&id=E22mnB0L10Nv&format=png&color=000000",
225
- "dial_code": "+420"
226
- },
227
- {
228
- "value": "Denmark",
229
- "image": "https://img.icons8.com/?size=100&id=WpPbz1F98VUy&format=png&color=000000",
230
- "dial_code": "+45"
231
- },
232
- {
233
- "value": "Djibouti",
234
- "image": "https://img.icons8.com/?size=100&id=KlYceB9IQZWW&format=png&color=000000",
235
- "dial_code": "+253"
236
- },
237
- {
238
- "value": "Dominica",
239
- "image": "https://img.icons8.com/?size=100&id=o08g7jRL63ki&format=png&color=000000",
240
- "dial_code": "+1-767"
241
- },
242
- {
243
- "value": "Dominican Republic",
244
- "image": "https://img.icons8.com/?size=100&id=Xtd6MUL8UCpP&format=png&color=000000",
245
- "dial_code": "+1-809,+1-829,+1-849"
246
- },
247
- {
248
- "value": "Ecuador",
249
- "image": "https://img.icons8.com/?size=100&id=Gp7ZO2LREDvq&format=png&color=000000",
250
- "dial_code": "+593"
251
- },
252
- {
253
- "value": "Egypt",
254
- "image": "https://img.icons8.com/?size=100&id=URAZ6JFhZFg8&format=png&color=000000",
255
- "dial_code": "+20"
256
- },
257
- {
258
- "value": "El Salvador",
259
- "image": "https://img.icons8.com/?size=100&id=gOaDa6s8dXWp&format=png&color=000000",
260
- "dial_code": "+503"
261
- },
262
- {
263
- "value": "Equatorial Guinea",
264
- "image": "https://img.icons8.com/?size=100&id=3tiPUoAtewMb&format=png&color=000000",
265
- "dial_code": "+240"
266
- },
267
- {
268
- "value": "Eritrea",
269
- "image": "https://img.icons8.com/?size=100&id=6N8MwoOL06V7&format=png&color=000000",
270
- "dial_code": "+291"
271
- },
272
- {
273
- "value": "Estonia",
274
- "image": "https://img.icons8.com/?size=100&id=U06I1aoQSzr7&format=png&color=000000",
275
- "dial_code": "+372"
276
- },
277
- {
278
- "value": "Eswatini (Swaziland)",
279
- "image": "https://img.icons8.com/?size=100&id=RUS2EGYyn6TO&format=png&color=000000",
280
- "dial_code": "+268"
281
- },
282
- {
283
- "value": "Ethiopia",
284
- "image": "https://img.icons8.com/?size=100&id=Gj4LI8fsA2Qv&format=png&color=000000",
285
- "dial_code": "+251"
286
- },
287
- {
288
- "value": "Fiji",
289
- "image": "https://img.icons8.com/?size=100&id=ctarB89CRGGm&format=png&color=000000",
290
- "dial_code": "+679"
291
- },
292
- {
293
- "value": "Finland",
294
- "image": "https://img.icons8.com/?size=100&id=1prIDfxA5f6g&format=png&color=000000",
295
- "dial_code": "+358"
296
- },
297
- {
298
- "value": "France",
299
- "image": "https://img.icons8.com/?size=100&id=5RtaKEr09Jy6&format=png&color=000000",
300
- "dial_code": "+33"
301
- },
302
- {
303
- "value": "Gabon",
304
- "image": "https://img.icons8.com/?size=100&id=k76DrpvVgPdx&format=png&color=000000",
305
- "dial_code": "+241"
306
- },
307
- {
308
- "value": "Gambia",
309
- "image": "https://img.icons8.com/?size=100&id=vZxzmu4WPdkL&format=png&color=000000",
310
- "dial_code": "+220"
311
- },
312
- {
313
- "value": "Georgia",
314
- "image": "https://img.icons8.com/?size=100&id=ib9GZIDk6aiv&format=png&color=000000",
315
- "dial_code": "+995"
316
- },
317
- {
318
- "value": "Germany",
319
- "image": "https://img.icons8.com/?size=100&id=OyqucOGoByl9&format=png&color=000000",
320
- "dial_code": "+49"
321
- },
322
- {
323
- "value": "Ghana",
324
- "image": "https://img.icons8.com/?size=100&id=miuwSDC4iBWJ&format=png&color=000000",
325
- "dial_code": "+233"
326
- },
327
- {
328
- "value": "Gibraltar",
329
- "image": "https://img.icons8.com/?size=100&id=faKjgaJJmADB&format=png&color=000000",
330
- "dial_code": "+350"
331
- },
332
- {
333
- "value": "Greece",
334
- "image": "https://img.icons8.com/?size=100&id=1xhydKzjnswq&format=png&color=000000",
335
- "dial_code": "+30"
336
- },
337
- {
338
- "value": "Greenland",
339
- "image": "https://img.icons8.com/?size=100&id=IyLOGQiG3XKQ&format=png&color=000000",
340
- "dial_code": "+299"
341
- },
342
- {
343
- "value": "Grenada",
344
- "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000",
345
- "dial_code": "+1-473"
346
- },
347
- {
348
- "value": "Guatemala",
349
- "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000",
350
- "dial_code": "+502"
351
- },
352
- {
353
- "value": "Guinea",
354
- "image": "https://img.icons8.com/?size=100&id=klhYUnMRbRpB&format=png&color=000000",
355
- "dial_code": "+224"
356
- },
357
- {
358
- "value": "Guinea-Bissau",
359
- "image": "https://img.icons8.com/?size=100&id=zqtbOjlHjkz5&format=png&color=000000",
360
- "dial_code": "+245"
361
- },
362
- {
363
- "value": "Guyana",
364
- "image": "https://img.icons8.com/?size=100&id=IZvZTnD6yvKD&format=png&color=000000",
365
- "dial_code": "+592"
366
- },
367
- {
368
- "value": "Haiti",
369
- "image": "https://img.icons8.com/?size=100&id=axkxqpHx4DcP&format=png&color=000000",
370
- "dial_code": "+509"
371
- },
372
- {
373
- "value": "Honduras",
374
- "image": "https://img.icons8.com/?size=100&id=nvOnWmwpRx0v&format=png&color=000000",
375
- "dial_code": "+504"
376
- },
377
- {
378
- "value": "Hungary",
379
- "image": "https://img.icons8.com/?size=100&id=fZxAZSGO7Y9O&format=png&color=000000",
380
- "dial_code": "+36"
381
- },
382
- {
383
- "value": "Iceland",
384
- "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000",
385
- "dial_code": "+354"
386
- },
387
- {
388
- "value": "India",
389
- "image": "https://img.icons8.com/?size=100&id=HgrhrvtEzvc1&format=png&color=000000",
390
- "dial_code": "+91"
391
- },
392
- {
393
- "value": "Indonesia",
394
- "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000",
395
- "dial_code": "+62"
396
- },
397
- {
398
- "value": "Iran",
399
- "image": "https://img.icons8.com/?size=100&id=fFSAB8w06EdS&format=png&color=000000",
400
- "dial_code": "+98"
401
- },
402
- {
403
- "value": "Iraq",
404
- "image": "https://img.icons8.com/?size=100&id=YAow50FOci1Q&format=png&color=000000",
405
- "dial_code": "+964"
406
- },
407
- {
408
- "value": "Ireland",
409
- "image": "https://img.icons8.com/?size=100&id=UtF7eqZKX1PP&format=png&color=000000",
410
- "dial_code": "+353"
411
- },
412
- {
413
- "value": "Israel",
414
- "image": "https://img.icons8.com/?size=100&id=3pIpA27MPjIB&format=png&color=000000",
415
- "dial_code": "+972"
416
- },
417
- {
418
- "value": "Italy",
419
- "image": "https://img.icons8.com/?size=100&id=JfBHeXaPw7Gu&format=png&color=000000",
420
- "dial_code": "+39"
421
- },
422
- {
423
- "value": "Jamaica",
424
- "image": "https://img.icons8.com/?size=100&id=VuSnTDp6qwND&format=png&color=000000",
425
- "dial_code": "+1-876"
426
- },
427
- {
428
- "value": "Japan",
429
- "image": "https://img.icons8.com/?size=100&id=KvglG3FkCenH&format=png&color=000000",
430
- "dial_code": "+81"
431
- },
432
- {
433
- "value": "Jordan",
434
- "image": "https://img.icons8.com/?size=100&id=YL7vldB3JyFQ&format=png&color=000000",
435
- "dial_code": "+962"
436
- },
437
- {
438
- "value": "Kazakhstan",
439
- "image": "https://img.icons8.com/?size=100&id=bTwapbmoLtc6&format=png&color=000000",
440
- "dial_code": "+7"
441
- },
442
- {
443
- "value": "Kenya",
444
- "image": "https://img.icons8.com/?size=100&id=Zc4y1uKmKn17&format=png&color=000000",
445
- "dial_code": "+254"
446
- },
447
- {
448
- "value": "Kiribati",
449
- "image": "https://img.icons8.com/?size=100&id=sdt8u79Sp2JE&format=png&color=000000",
450
- "dial_code": "+686"
451
- },
452
- {
453
- "value": "Kuwait",
454
- "image": "https://img.icons8.com/?size=100&id=OOIQuQ0hPQ5e&format=png&color=000000",
455
- "dial_code": "+965"
456
- },
457
- {
458
- "value": "Kyrgyzstan",
459
- "image": "https://img.icons8.com/?size=100&id=lsAqyiWXuktO&format=png&color=000000",
460
- "dial_code": "+996"
461
- },
462
- {
463
- "value": "Laos",
464
- "image": "https://img.icons8.com/?size=100&id=twzsfdyhg1sl&format=png&color=000000",
465
- "dial_code": "+856"
466
- },
467
- {
468
- "value": "Latvia",
469
- "image": "https://img.icons8.com/?size=100&id=nH2vLKzUCvFr&format=png&color=000000",
470
- "dial_code": "+371"
471
- },
472
- {
473
- "value": "Lebanon",
474
- "image": "https://img.icons8.com/?size=100&id=B1PQYc0h2MS8&format=png&color=000000",
475
- "dial_code": "+961"
476
- },
477
- {
478
- "value": "Lesotho",
479
- "image": "https://img.icons8.com/?size=100&id=etM2vzIjzMs0&format=png&color=000000",
480
- "dial_code": "+266"
481
- },
482
- {
483
- "value": "Liberia",
484
- "image": "https://img.icons8.com/?size=100&id=uuRAtTzhLyT5&format=png&color=000000",
485
- "dial_code": "+231"
486
- },
487
- {
488
- "value": "Libya",
489
- "image": "https://img.icons8.com/?size=100&id=V6o0Ho74eYye&format=png&color=000000",
490
- "dial_code": "+218"
491
- },
492
- {
493
- "value": "Liechtenstein",
494
- "image": "https://img.icons8.com/?size=100&id=Gnqf4gdzkOQB&format=png&color=000000",
495
- "dial_code": "+423"
496
- },
497
- {
498
- "value": "Lithuania",
499
- "image": "https://img.icons8.com/?size=100&id=OK36NncBzfOL&format=png&color=000000",
500
- "dial_code": "+370"
501
- },
502
- {
503
- "value": "Luxembourg",
504
- "image": "https://img.icons8.com/?size=100&id=FC8jYfZj81i1&format=png&color=000000",
505
- "dial_code": "+352"
506
- },
507
- {
508
- "value": "Madagascar",
509
- "image": "https://img.icons8.com/?size=100&id=uIkIG9VtQhit&format=png&color=000000",
510
- "dial_code": "+261"
511
- },
512
- {
513
- "value": "Malawi",
514
- "image": "https://img.icons8.com/?size=100&id=xrBcegmys1vF&format=png&color=000000",
515
- "dial_code": "+265"
516
- },
517
- {
518
- "value": "Malaysia",
519
- "image": "https://img.icons8.com/?size=100&id=KsbAg9A20Twe&format=png&color=000000",
520
- "dial_code": "+60"
521
- },
522
- {
523
- "value": "Maldives",
524
- "image": "https://img.icons8.com/?size=100&id=TZRoXrlVzvtq&format=png&color=000000",
525
- "dial_code": "+960"
526
- },
527
- {
528
- "value": "Mali",
529
- "image": "https://img.icons8.com/?size=100&id=EzM7O4uKa1pa&format=png&color=000000",
530
- "dial_code": "+223"
531
- },
532
- {
533
- "value": "Malta",
534
- "image": "https://img.icons8.com/?size=100&id=PGrLpqnqOmfY&format=png&color=000000",
535
- "dial_code": "+356"
536
- },
537
- {
538
- "value": "Marshall Islands",
539
- "image": "https://img.icons8.com/?size=100&id=0SRNdGyvreLf&format=png&color=000000",
540
- "dial_code": "+692"
541
- },
542
- {
543
- "value": "Mauritania",
544
- "image": "https://img.icons8.com/?size=100&id=lQjEiBWP58M4&format=png&color=000000",
545
- "dial_code": "+222"
546
- },
547
- {
548
- "value": "Mauritius",
549
- "image": "https://img.icons8.com/?size=100&id=sghglUoFAtE7&format=png&color=000000",
550
- "dial_code": "+230"
551
- },
552
- {
553
- "value": "Mexico",
554
- "image": "https://img.icons8.com/?size=100&id=YdToLHA8MpDK&format=png&color=000000",
555
- "dial_code": "+52"
556
- },
557
- {
558
- "value": "Micronesia",
559
- "image": "https://img.icons8.com/?size=100&id=VuDtDU6OASxV&format=png&color=000000",
560
- "dial_code": "+691"
561
- },
562
- {
563
- "value": "Moldova",
564
- "image": "https://img.icons8.com/?size=100&id=0PV7wUbTWcAJ&format=png&color=000000",
565
- "dial_code": "+373"
566
- },
567
- {
568
- "value": "Monaco",
569
- "image": "https://img.icons8.com/?size=100&id=QaW8bqIcKydR&format=png&color=000000",
570
- "dial_code": "+377"
571
- },
572
- {
573
- "value": "Mongolia",
574
- "image": "https://img.icons8.com/?size=100&id=NM1SAQei4b64&format=png&color=000000",
575
- "dial_code": "+976"
576
- },
577
- {
578
- "value": "Montenegro",
579
- "image": "https://img.icons8.com/?size=100&id=eRadEC2G3qg6&format=png&color=000000",
580
- "dial_code": "+382"
581
- },
582
- {
583
- "value": "Morocco",
584
- "image": "https://img.icons8.com/?size=100&id=VCP1NmeRnI3Y&format=png&color=000000",
585
- "dial_code": "+212"
586
- },
587
- {
588
- "value": "Mozambique",
589
- "image": "https://img.icons8.com/?size=100&id=EWNEq2WbP6D4&format=png&color=000000",
590
- "dial_code": "+258"
591
- },
592
- {
593
- "value": "Myanmar",
594
- "image": "https://img.icons8.com/?size=100&id=Ng5oLA8HaJIC&format=png&color=000000",
595
- "dial_code": "+95"
596
- },
597
- {
598
- "value": "Namibia",
599
- "image": "https://img.icons8.com/?size=100&id=Gq87btxMiTaS&format=png&color=000000",
600
- "dial_code": "+264"
601
- },
602
- {
603
- "value": "Nauru",
604
- "image": "https://img.icons8.com/?size=100&id=qK7z31xvk14Z&format=png&color=000000",
605
- "dial_code": "+674"
606
- },
607
- {
608
- "value": "Nepal",
609
- "image": "https://img.icons8.com/?size=100&id=D11CBKsFvp32&format=png&color=000000",
610
- "dial_code": "+977"
611
- },
612
- {
613
- "value": "Netherlands",
614
- "image": "https://img.icons8.com/?size=100&id=7Rco5PqWIoaC&format=png&color=000000",
615
- "dial_code": "+31"
616
- },
617
- {
618
- "value": "New Caledonia",
619
- "image": "https://img.icons8.com/?size=100&id=z2DcLk5XE7Va&format=png&color=000000",
620
- "dial_code": "+687"
621
- },
622
- {
623
- "value": "New Zealand",
624
- "image": "https://img.icons8.com/?size=100&id=0a7FEoHu4nJX&format=png&color=000000",
625
- "dial_code": "+64"
626
- },
627
- {
628
- "value": "Nicaragua",
629
- "image": "https://img.icons8.com/?size=100&id=onHR7ptd33nw&format=png&color=000000",
630
- "dial_code": "+505"
631
- },
632
- {
633
- "value": "Niger",
634
- "image": "https://img.icons8.com/?size=100&id=ZW6uYioMmJdp&format=png&color=000000",
635
- "dial_code": "+227"
636
- },
637
- {
638
- "value": "Nigeria",
639
- "image": "https://img.icons8.com/?size=100&id=Qbb2whnonplQ&format=png&color=000000",
640
- "dial_code": "+234"
641
- },
642
- {
643
- "value": "Niue",
644
- "image": "https://img.icons8.com/?size=100&id=ExFXuF9cDMWN&format=png&color=000000",
645
- "dial_code": "+683"
646
- },
647
- {
648
- "value": "North Korea",
649
- "image": "https://img.icons8.com/?size=100&id=ENks8ysXsOtX&format=png&color=000000",
650
- "dial_code": "+850"
651
- },
652
- {
653
- "value": "North Macedonia",
654
- "image": "https://img.icons8.com/?size=100&id=LlEDiLzu2TnT&format=png&color=000000",
655
- "dial_code": "+389"
656
- },
657
- {
658
- "value": "Norway",
659
- "image": "https://img.icons8.com/?size=100&id=JZr09lm1sOOE&format=png&color=000000",
660
- "dial_code": "+47"
661
- },
662
- {
663
- "value": "Oman",
664
- "image": "https://img.icons8.com/?size=100&id=sepNJobrTO2e&format=png&color=000000",
665
- "dial_code": "+968"
666
- },
667
- {
668
- "value": "Pakistan",
669
- "image": "https://img.icons8.com/?size=100&id=rW6BKNNuxTDd&format=png&color=000000",
670
- "dial_code": "+92"
671
- },
672
- {
673
- "value": "Palau",
674
- "image": "https://img.icons8.com/?size=100&id=aQmK36Bxsw4R&format=png&color=000000",
675
- "dial_code": "+680"
676
- },
677
- {
678
- "value": "Panama",
679
- "image": "https://img.icons8.com/?size=100&id=kXqcsqoApAjm&format=png&color=000000",
680
- "dial_code": "+507"
681
- },
682
- {
683
- "value": "Papua New Guinea",
684
- "image": "https://img.icons8.com/?size=100&id=SbuwwRxB4j7n&format=png&color=000000",
685
- "dial_code": "+675"
686
- },
687
- {
688
- "value": "Paraguay",
689
- "image": "https://img.icons8.com/?size=100&id=4DTgNMRGzkyB&format=png&color=000000",
690
- "dial_code": "+595"
691
- },
692
- {
693
- "value": "Peru",
694
- "image": "https://img.icons8.com/?size=100&id=NHeZBF9H8ztb&format=png&color=000000",
695
- "dial_code": "+51"
696
- },
697
- {
698
- "value": "Philippines",
699
- "image": "https://img.icons8.com/?size=100&id=fcKQPjqEVc7z&format=png&color=000000",
700
- "dial_code": "+63"
701
- },
702
- {
703
- "value": "Poland",
704
- "image": "https://img.icons8.com/?size=100&id=xO4eugbOFV13&format=png&color=000000",
705
- "dial_code": "+48"
706
- },
707
- {
708
- "value": "Portugal",
709
- "image": "https://img.icons8.com/?size=100&id=U7gojzqjuzog&format=png&color=000000",
710
- "dial_code": "+351"
711
- },
712
- {
713
- "value": "Qatar",
714
- "image": "https://img.icons8.com/?size=100&id=A7XOFIOr8m8T&format=png&color=000000",
715
- "dial_code": "+974"
716
- },
717
- {
718
- "value": "Romania",
719
- "image": "https://img.icons8.com/?size=100&id=xkOxfMSiGhEq&format=png&color=000000",
720
- "dial_code": "+40"
721
- },
722
- {
723
- "value": "Russia",
724
- "image": "https://img.icons8.com/?size=100&id=hT4UdesmXlvG&format=png&color=000000",
725
- "dial_code": "+7"
726
- },
727
- {
728
- "value": "Rwanda",
729
- "image": "https://img.icons8.com/?size=100&id=mtAkNA30WLik&format=png&color=000000",
730
- "dial_code": "+250"
731
- },
732
- {
733
- "value": "Saint Barthelemy",
734
- "image": "https://img.icons8.com/?size=100&id=zGhOtq2R9bNA&format=png&color=000000",
735
- "dial_code": "+590"
736
- },
737
- {
738
- "value": "Saint Helena",
739
- "image": "https://img.icons8.com/?size=100&id=jiG4px095E65&format=png&color=000000",
740
- "dial_code": "+290"
741
- },
742
- {
743
- "value": "Saint Kitts and Nevis",
744
- "image": "https://img.icons8.com/?size=100&id=Hnwb7qDLD33U&format=png&color=000000",
745
- "dial_code": "+1-869"
746
- },
747
- {
748
- "value": "Saint Lucia",
749
- "image": "https://img.icons8.com/?size=100&id=z1A0Gd7avvVb&format=png&color=000000",
750
- "dial_code": "+1-758"
751
- },
752
- {
753
- "value": "Saint Pierre and the Miquelon",
754
- "image": "https://img.icons8.com/?size=100&id=6aH7lwJAuvhP&format=png&color=000000",
755
- "dial_code": "+508"
756
- },
757
- {
758
- "value": "Saint Vincent and the Grenadines",
759
- "image": "https://img.icons8.com/?size=100&id=zvb3Npzz2In4&format=png&color=000000",
760
- "dial_code": "+1-784"
761
- },
762
- {
763
- "value": "Samoa",
764
- "image": "https://img.icons8.com/?size=100&id=5BxNN95CLpGb&format=png&color=000000",
765
- "dial_code": "+685"
766
- },
767
- {
768
- "value": "San Marino",
769
- "image": "https://img.icons8.com/?size=100&id=p6mKe0WfwTHr&format=png&color=000000",
770
- "dial_code": "+378"
771
- },
772
- {
773
- "value": "Sao Tome and Principe",
774
- "image": "https://img.icons8.com/?size=100&id=HHwba2jK3d0H&format=png&color=000000",
775
- "dial_code": "+239"
776
- },
777
- {
778
- "value": "Saudi Arabia",
779
- "image": "https://img.icons8.com/?size=100&id=ZVRmMM44IJUW&format=png&color=000000",
780
- "dial_code": "+966"
781
- },
782
- {
783
- "value": "Senegal",
784
- "image": "https://img.icons8.com/?size=100&id=QpU3DlDnMdlj&format=png&color=000000",
785
- "dial_code": "+221"
786
- },
787
- {
788
- "value": "Serbia",
789
- "image": "https://img.icons8.com/?size=100&id=qBERnFK6lLrh&format=png&color=000000",
790
- "dial_code": "+381"
791
- },
792
- {
793
- "value": "Seychelles",
794
- "image": "https://img.icons8.com/?size=100&id=TOjc0Gt2FTtz&format=png&color=000000",
795
- "dial_code": "+248"
796
- },
797
- {
798
- "value": "Sierra Leone",
799
- "image": "https://img.icons8.com/?size=100&id=yci0A5xBsZt9&format=png&color=000000",
800
- "dial_code": "+232"
801
- },
802
- {
803
- "value": "Singapore",
804
- "image": "https://img.icons8.com/?size=100&id=7PcP1AnTKBDc&format=png&color=000000",
805
- "dial_code": "+65"
806
- },
807
- {
808
- "value": "Slovakia",
809
- "image": "https://img.icons8.com/?size=100&id=8b0Y5pzFsCFU&format=png&color=000000",
810
- "dial_code": "+421"
811
- },
812
- {
813
- "value": "Slovenia",
814
- "image": "https://img.icons8.com/?size=100&id=VLKK6MVJuoXO&format=png&color=000000",
815
- "dial_code": "+386"
816
- },
817
- {
818
- "value": "Solomon Islands",
819
- "image": "https://img.icons8.com/?size=100&id=j1nDt1GzI6IY&format=png&color=000000",
820
- "dial_code": "+677"
821
- },
822
- {
823
- "value": "Somalia",
824
- "image": "https://img.icons8.com/?size=100&id=exqa6Bvswweq&format=png&color=000000",
825
- "dial_code": "+252"
826
- },
827
- {
828
- "value": "South Africa",
829
- "image": "https://img.icons8.com/?size=100&id=RbNYuxlloexJ&format=png&color=000000",
830
- "dial_code": "+27"
831
- },
832
- {
833
- "value": "South Korea",
834
- "image": "https://img.icons8.com/?size=100&id=uCynf758t5TG&format=png&color=000000",
835
- "dial_code": "+82"
836
- },
837
- {
838
- "value": "South Sudan",
839
- "image": "https://img.icons8.com/?size=100&id=KoxirtH42D0h&format=png&color=000000",
840
- "dial_code": "+211"
841
- },
842
- {
843
- "value": "Spain",
844
- "image": "https://img.icons8.com/?size=100&id=ZGEFKpJoPdJQ&format=png&color=000000",
845
- "dial_code": "+34"
846
- },
847
- {
848
- "value": "Sri Lanka",
849
- "image": "https://img.icons8.com/?size=100&id=6kxTaT3MGXjV&format=png&color=000000",
850
- "dial_code": "+94"
851
- },
852
- {
853
- "value": "Sudan",
854
- "image": "https://img.icons8.com/?size=100&id=zt8Jf7JdIs3A&format=png&color=000000",
855
- "dial_code": "+249"
856
- },
857
- {
858
- "value": "Suriname",
859
- "image": "https://img.icons8.com/?size=100&id=PGJsf3Ywq7zb&format=png&color=000000",
860
- "dial_code": "+597"
861
- },
862
- {
863
- "value": "Sweden",
864
- "image": "https://img.icons8.com/?size=100&id=INQZPwNNw3L8&format=png&color=000000",
865
- "dial_code": "+46"
866
- },
867
- {
868
- "value": "Switzerland",
869
- "image": "https://img.icons8.com/?size=100&id=nz6Zx2vJbzRG&format=png&color=000000",
870
- "dial_code": "+41"
871
- },
872
- {
873
- "value": "Syria",
874
- "image": "https://img.icons8.com/?size=100&id=VLi099FS1KKp&format=png&color=000000",
875
- "dial_code": "+963"
876
- },
877
- {
878
- "value": "Taiwan",
879
- "image": "https://img.icons8.com/?size=100&id=bk4OWjKLox79&format=png&color=000000",
880
- "dial_code": "+886"
881
- },
882
- {
883
- "value": "Tajikistan",
884
- "image": "https://img.icons8.com/?size=100&id=UD86Iig3CPEo&format=png&color=000000",
885
- "dial_code": "+992"
886
- },
887
- {
888
- "value": "Tanzania",
889
- "image": "https://img.icons8.com/?size=100&id=tKTNmFIOAIAt&format=png&color=000000",
890
- "dial_code": "+255"
891
- },
892
- {
893
- "value": "Thailand",
894
- "image": "https://img.icons8.com/?size=100&id=FEav4DJ1yMx7&format=png&color=000000",
895
- "dial_code": "+66"
896
- },
897
- {
898
- "value": "Timor-Leste",
899
- "image": "https://img.icons8.com/?size=100&id=gklKvzSLQKjr&format=png&color=000000",
900
- "dial_code": "+670"
901
- },
902
- {
903
- "value": "Togo",
904
- "image": "https://img.icons8.com/?size=100&id=iaep8gymdwVp&format=png&color=000000",
905
- "dial_code": "+228"
906
- },
907
- {
908
- "value": "Tonga",
909
- "image": "https://img.icons8.com/?size=100&id=wMXSJVSumKDP&format=png&color=000000",
910
- "dial_code": "+676"
911
- },
912
- {
913
- "value": "Trinidad and Tobago",
914
- "image": "https://img.icons8.com/?size=100&id=1jv6shXZUucO&format=png&color=000000",
915
- "dial_code": "+1-868"
916
- },
917
- {
918
- "value": "Tunisia",
919
- "image": "https://img.icons8.com/?size=100&id=G218aoNvqk85&format=png&color=000000",
920
- "dial_code": "+216"
921
- },
922
- {
923
- "value": "Turkey",
924
- "image": "https://img.icons8.com/?size=100&id=nJGqu5tRdUdC&format=png&color=000000",
925
- "dial_code": "+90"
926
- },
927
- {
928
- "value": "Turkmenistan",
929
- "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000",
930
- "dial_code": "+993"
931
- },
932
- {
933
- "value": "Tuvalu",
934
- "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000",
935
- "dial_code": "+688"
936
- },
937
- {
938
- "value": "Uganda",
939
- "image": "https://img.icons8.com/?size=100&id=mkzV8cqzfcfC&format=png&color=000000",
940
- "dial_code": "+256"
941
- },
942
- {
943
- "value": "Ukraine",
944
- "image": "https://img.icons8.com/?size=100&id=2dThoYcv8J73&format=png&color=000000",
945
- "dial_code": "+380"
946
- },
947
- {
948
- "value": "United Arab Emirates",
949
- "image": "https://img.icons8.com/?size=100&id=muBaktrtkHc5&format=png&color=000000",
950
- "dial_code": "+971"
951
- },
952
- {
953
- "value": "United Kingdom",
954
- "image": "https://img.icons8.com/?size=100&id=xapj7ZzAUZKI&format=png&color=000000",
955
- "dial_code": "+44"
956
- },
957
- {
958
- "value": "United States",
959
- "image": "https://img.icons8.com/?size=100&id=yzSggttkqLf4&format=png&color=000000",
960
- "dial_code": "+1"
961
- },
962
- {
963
- "value": "Uruguay",
964
- "image": "https://img.icons8.com/?size=100&id=tOs8JNg5GEGu&format=png&color=000000",
965
- "dial_code": "+598"
966
- },
967
- {
968
- "value": "Uzbekistan",
969
- "image": "https://img.icons8.com/?size=100&id=S29dqEC4xS0j&format=png&color=000000",
970
- "dial_code": "+998"
971
- },
972
- {
973
- "value": "Vanuatu",
974
- "image": "https://img.icons8.com/?size=100&id=DS62mGn77q8Q&format=png&color=000000",
975
- "dial_code": "+678"
976
- },
977
- {
978
- "value": "Venezuela",
979
- "image": "https://img.icons8.com/?size=100&id=1r7fsP5SQK4D&format=png&color=000000",
980
- "dial_code": "+58"
981
- },
982
- {
983
- "value": "Vietnam",
984
- "image": "https://img.icons8.com/?size=100&id=Wjhd8tSYkD8r&format=png&color=000000",
985
- "dial_code": "+84"
986
- },
987
- {
988
- "value": "Yemen",
989
- "image": "https://img.icons8.com/?size=100&id=jJgFBlhYSW2s&format=png&color=000000",
990
- "dial_code": "+967"
991
- },
992
- {
993
- "value": "Zambia",
994
- "image": "https://img.icons8.com/?size=100&id=uRmB4og4w5P7&format=png&color=000000",
995
- "dial_code": "+260"
996
- },
997
- {
998
- "value": "Zimbabwe",
999
- "image": "https://img.icons8.com/?size=100&id=HpweXtU8yqOx&format=png&color=000000",
1000
- "dial_code": "+263"
3
+ "num_code": "004",
4
+ "alpha2": "AF",
5
+ "alpha3": "AFG",
6
+ "name": "Afghanistan",
7
+ "nationality": "Afghan",
8
+ "dial_code": "+93",
9
+ "image": "https://flagcdn.com/w160/af.png",
10
+ "region": "Asia",
11
+ "sub_region": "Southern Asia"
12
+ },
13
+ {
14
+ "num_code": "248",
15
+ "alpha2": "AX",
16
+ "alpha3": "ALA",
17
+ "name": "Åland Islands",
18
+ "nationality": "Åland Island",
19
+ "dial_code": "+358",
20
+ "image": "https://flagcdn.com/w160/ax.png",
21
+ "region": "Europe",
22
+ "sub_region": "Northern Europe"
23
+ },
24
+ {
25
+ "num_code": "008",
26
+ "alpha2": "AL",
27
+ "alpha3": "ALB",
28
+ "name": "Albania",
29
+ "nationality": "Albanian",
30
+ "dial_code": "+355",
31
+ "image": "https://flagcdn.com/w160/al.png",
32
+ "region": "Europe",
33
+ "sub_region": "Southern Europe"
34
+ },
35
+ {
36
+ "num_code": "012",
37
+ "alpha2": "DZ",
38
+ "alpha3": "DZA",
39
+ "name": "Algeria",
40
+ "nationality": "Algerian",
41
+ "dial_code": "+213",
42
+ "image": "https://flagcdn.com/w160/dz.png",
43
+ "region": "Africa",
44
+ "sub_region": "Northern Africa"
45
+ },
46
+ {
47
+ "num_code": "016",
48
+ "alpha2": "AS",
49
+ "alpha3": "ASM",
50
+ "name": "American Samoa",
51
+ "nationality": "American Samoan",
52
+ "dial_code": "+1-684",
53
+ "image": "https://flagcdn.com/w160/as.png",
54
+ "region": "Oceania",
55
+ "sub_region": "Polynesia"
56
+ },
57
+ {
58
+ "num_code": "020",
59
+ "alpha2": "AD",
60
+ "alpha3": "AND",
61
+ "name": "Andorra",
62
+ "nationality": "Andorran",
63
+ "dial_code": "+376",
64
+ "image": "https://flagcdn.com/w160/ad.png",
65
+ "region": "Europe",
66
+ "sub_region": "Southern Europe"
67
+ },
68
+ {
69
+ "num_code": "024",
70
+ "alpha2": "AO",
71
+ "alpha3": "AGO",
72
+ "name": "Angola",
73
+ "nationality": "Angolan",
74
+ "dial_code": "+244",
75
+ "image": "https://flagcdn.com/w160/ao.png",
76
+ "region": "Africa",
77
+ "sub_region": "Sub-Saharan Africa"
78
+ },
79
+ {
80
+ "num_code": "660",
81
+ "alpha2": "AI",
82
+ "alpha3": "AIA",
83
+ "name": "Anguilla",
84
+ "nationality": "Anguillan",
85
+ "dial_code": "+1-264",
86
+ "image": "https://flagcdn.com/w160/ai.png",
87
+ "region": "Americas",
88
+ "sub_region": "Latin America and the Caribbean"
89
+ },
90
+ {
91
+ "num_code": "010",
92
+ "alpha2": "AQ",
93
+ "alpha3": "ATA",
94
+ "name": "Antarctica",
95
+ "nationality": "Antarctic",
96
+ "dial_code": "+672",
97
+ "image": "https://flagcdn.com/w160/aq.png",
98
+ "region": "",
99
+ "sub_region": ""
100
+ },
101
+ {
102
+ "num_code": "028",
103
+ "alpha2": "AG",
104
+ "alpha3": "ATG",
105
+ "name": "Antigua and Barbuda",
106
+ "nationality": "Antiguan or Barbudan",
107
+ "dial_code": "+1-268",
108
+ "image": "https://flagcdn.com/w160/ag.png",
109
+ "region": "Americas",
110
+ "sub_region": "Latin America and the Caribbean"
111
+ },
112
+ {
113
+ "num_code": "032",
114
+ "alpha2": "AR",
115
+ "alpha3": "ARG",
116
+ "name": "Argentina",
117
+ "nationality": "Argentine",
118
+ "dial_code": "+54",
119
+ "image": "https://flagcdn.com/w160/ar.png",
120
+ "region": "Americas",
121
+ "sub_region": "Latin America and the Caribbean"
122
+ },
123
+ {
124
+ "num_code": "051",
125
+ "alpha2": "AM",
126
+ "alpha3": "ARM",
127
+ "name": "Armenia",
128
+ "nationality": "Armenian",
129
+ "dial_code": "+374",
130
+ "image": "https://flagcdn.com/w160/am.png",
131
+ "region": "Asia",
132
+ "sub_region": "Western Asia"
133
+ },
134
+ {
135
+ "num_code": "533",
136
+ "alpha2": "AW",
137
+ "alpha3": "ABW",
138
+ "name": "Aruba",
139
+ "nationality": "Aruban",
140
+ "dial_code": "+297",
141
+ "image": "https://flagcdn.com/w160/aw.png",
142
+ "region": "Americas",
143
+ "sub_region": "Latin America and the Caribbean"
144
+ },
145
+ {
146
+ "num_code": "036",
147
+ "alpha2": "AU",
148
+ "alpha3": "AUS",
149
+ "name": "Australia",
150
+ "nationality": "Australian",
151
+ "dial_code": "+61",
152
+ "image": "https://flagcdn.com/w160/au.png",
153
+ "region": "Oceania",
154
+ "sub_region": "Australia and New Zealand"
155
+ },
156
+ {
157
+ "num_code": "040",
158
+ "alpha2": "AT",
159
+ "alpha3": "AUT",
160
+ "name": "Austria",
161
+ "nationality": "Austrian",
162
+ "dial_code": "+43",
163
+ "image": "https://flagcdn.com/w160/at.png",
164
+ "region": "Europe",
165
+ "sub_region": "Western Europe"
166
+ },
167
+ {
168
+ "num_code": "031",
169
+ "alpha2": "AZ",
170
+ "alpha3": "AZE",
171
+ "name": "Azerbaijan",
172
+ "nationality": "Azerbaijani, Azeri",
173
+ "dial_code": "+994",
174
+ "image": "https://flagcdn.com/w160/az.png",
175
+ "region": "Asia",
176
+ "sub_region": "Western Asia"
177
+ },
178
+ {
179
+ "num_code": "044",
180
+ "alpha2": "BS",
181
+ "alpha3": "BHS",
182
+ "name": "Bahamas",
183
+ "nationality": "Bahamian",
184
+ "dial_code": "+1-242",
185
+ "image": "https://flagcdn.com/w160/bs.png",
186
+ "region": "Americas",
187
+ "sub_region": "Latin America and the Caribbean"
188
+ },
189
+ {
190
+ "num_code": "048",
191
+ "alpha2": "BH",
192
+ "alpha3": "BHR",
193
+ "name": "Bahrain",
194
+ "nationality": "Bahraini",
195
+ "dial_code": "+973",
196
+ "image": "https://flagcdn.com/w160/bh.png",
197
+ "region": "Asia",
198
+ "sub_region": "Western Asia"
199
+ },
200
+ {
201
+ "num_code": "050",
202
+ "alpha2": "BD",
203
+ "alpha3": "BGD",
204
+ "name": "Bangladesh",
205
+ "nationality": "Bangladeshi",
206
+ "dial_code": "+880",
207
+ "image": "https://flagcdn.com/w160/bd.png",
208
+ "region": "Asia",
209
+ "sub_region": "Southern Asia"
210
+ },
211
+ {
212
+ "num_code": "052",
213
+ "alpha2": "BB",
214
+ "alpha3": "BRB",
215
+ "name": "Barbados",
216
+ "nationality": "Barbadian",
217
+ "dial_code": "+1-246",
218
+ "image": "https://flagcdn.com/w160/bb.png",
219
+ "region": "Americas",
220
+ "sub_region": "Latin America and the Caribbean"
221
+ },
222
+ {
223
+ "num_code": "112",
224
+ "alpha2": "BY",
225
+ "alpha3": "BLR",
226
+ "name": "Belarus",
227
+ "nationality": "Belarusian",
228
+ "dial_code": "+375",
229
+ "image": "https://flagcdn.com/w160/by.png",
230
+ "region": "Europe",
231
+ "sub_region": "Eastern Europe"
232
+ },
233
+ {
234
+ "num_code": "056",
235
+ "alpha2": "BE",
236
+ "alpha3": "BEL",
237
+ "name": "Belgium",
238
+ "nationality": "Belgian",
239
+ "dial_code": "+32",
240
+ "image": "https://flagcdn.com/w160/be.png",
241
+ "region": "Europe",
242
+ "sub_region": "Western Europe"
243
+ },
244
+ {
245
+ "num_code": "084",
246
+ "alpha2": "BZ",
247
+ "alpha3": "BLZ",
248
+ "name": "Belize",
249
+ "nationality": "Belizean",
250
+ "dial_code": "+501",
251
+ "image": "https://flagcdn.com/w160/bz.png",
252
+ "region": "Americas",
253
+ "sub_region": "Latin America and the Caribbean"
254
+ },
255
+ {
256
+ "num_code": "204",
257
+ "alpha2": "BJ",
258
+ "alpha3": "BEN",
259
+ "name": "Benin",
260
+ "nationality": "Beninese, Beninois",
261
+ "dial_code": "+229",
262
+ "image": "https://flagcdn.com/w160/bj.png",
263
+ "region": "Africa",
264
+ "sub_region": "Sub-Saharan Africa"
265
+ },
266
+ {
267
+ "num_code": "060",
268
+ "alpha2": "BM",
269
+ "alpha3": "BMU",
270
+ "name": "Bermuda",
271
+ "nationality": "Bermudian, Bermudan",
272
+ "dial_code": "+1-441",
273
+ "image": "https://flagcdn.com/w160/bm.png",
274
+ "region": "Americas",
275
+ "sub_region": "Northern America"
276
+ },
277
+ {
278
+ "num_code": "064",
279
+ "alpha2": "BT",
280
+ "alpha3": "BTN",
281
+ "name": "Bhutan",
282
+ "nationality": "Bhutanese",
283
+ "dial_code": "+975",
284
+ "image": "https://flagcdn.com/w160/bt.png",
285
+ "region": "Asia",
286
+ "sub_region": "Southern Asia"
287
+ },
288
+ {
289
+ "num_code": "068",
290
+ "alpha2": "BO",
291
+ "alpha3": "BOL",
292
+ "name": "Bolivia, Plurinational State of",
293
+ "nationality": "Bolivian",
294
+ "dial_code": "+591",
295
+ "image": "https://flagcdn.com/w160/bo.png",
296
+ "region": "Americas",
297
+ "sub_region": "Latin America and the Caribbean"
298
+ },
299
+ {
300
+ "num_code": "535",
301
+ "alpha2": "BQ",
302
+ "alpha3": "BES",
303
+ "name": "Bonaire, Sint Eustatius and Saba",
304
+ "nationality": "Bonaire",
305
+ "dial_code": "+599",
306
+ "image": "https://flagcdn.com/w160/bq.png",
307
+ "region": "Americas",
308
+ "sub_region": "Latin America and the Caribbean"
309
+ },
310
+ {
311
+ "num_code": "070",
312
+ "alpha2": "BA",
313
+ "alpha3": "BIH",
314
+ "name": "Bosnia and Herzegovina",
315
+ "nationality": "Bosnian or Herzegovinian",
316
+ "dial_code": "+387",
317
+ "image": "https://flagcdn.com/w160/ba.png",
318
+ "region": "Europe",
319
+ "sub_region": "Southern Europe"
320
+ },
321
+ {
322
+ "num_code": "072",
323
+ "alpha2": "BW",
324
+ "alpha3": "BWA",
325
+ "name": "Botswana",
326
+ "nationality": "Motswana, Botswanan",
327
+ "dial_code": "+267",
328
+ "image": "https://flagcdn.com/w160/bw.png",
329
+ "region": "Africa",
330
+ "sub_region": "Sub-Saharan Africa"
331
+ },
332
+ {
333
+ "num_code": "074",
334
+ "alpha2": "BV",
335
+ "alpha3": "BVT",
336
+ "name": "Bouvet Island",
337
+ "nationality": "Bouvet Island",
338
+ "dial_code": "+47",
339
+ "image": "https://flagcdn.com/w160/bv.png",
340
+ "region": "Americas",
341
+ "sub_region": "Latin America and the Caribbean"
342
+ },
343
+ {
344
+ "num_code": "076",
345
+ "alpha2": "BR",
346
+ "alpha3": "BRA",
347
+ "name": "Brazil",
348
+ "nationality": "Brazilian",
349
+ "dial_code": "+55",
350
+ "image": "https://flagcdn.com/w160/br.png",
351
+ "region": "Americas",
352
+ "sub_region": "Latin America and the Caribbean"
353
+ },
354
+ {
355
+ "num_code": "086",
356
+ "alpha2": "IO",
357
+ "alpha3": "IOT",
358
+ "name": "British Indian Ocean Territory",
359
+ "nationality": "BIOT",
360
+ "dial_code": "+246",
361
+ "image": "https://flagcdn.com/w160/io.png",
362
+ "region": "Africa",
363
+ "sub_region": "Sub-Saharan Africa"
364
+ },
365
+ {
366
+ "num_code": "096",
367
+ "alpha2": "BN",
368
+ "alpha3": "BRN",
369
+ "name": "Brunei Darussalam",
370
+ "nationality": "Bruneian",
371
+ "dial_code": "+673",
372
+ "image": "https://flagcdn.com/w160/bn.png",
373
+ "region": "Asia",
374
+ "sub_region": "South-eastern Asia"
375
+ },
376
+ {
377
+ "num_code": "100",
378
+ "alpha2": "BG",
379
+ "alpha3": "BGR",
380
+ "name": "Bulgaria",
381
+ "nationality": "Bulgarian",
382
+ "dial_code": "+359",
383
+ "image": "https://flagcdn.com/w160/bg.png",
384
+ "region": "Europe",
385
+ "sub_region": "Eastern Europe"
386
+ },
387
+ {
388
+ "num_code": "854",
389
+ "alpha2": "BF",
390
+ "alpha3": "BFA",
391
+ "name": "Burkina Faso",
392
+ "nationality": "Burkinabé",
393
+ "dial_code": "+226",
394
+ "image": "https://flagcdn.com/w160/bf.png",
395
+ "region": "Africa",
396
+ "sub_region": "Sub-Saharan Africa"
397
+ },
398
+ {
399
+ "num_code": "108",
400
+ "alpha2": "BI",
401
+ "alpha3": "BDI",
402
+ "name": "Burundi",
403
+ "nationality": "Burundian",
404
+ "dial_code": "+257",
405
+ "image": "https://flagcdn.com/w160/bi.png",
406
+ "region": "Africa",
407
+ "sub_region": "Sub-Saharan Africa"
408
+ },
409
+ {
410
+ "num_code": "132",
411
+ "alpha2": "CV",
412
+ "alpha3": "CPV",
413
+ "name": "Cabo Verde",
414
+ "nationality": "Cabo Verdean",
415
+ "dial_code": "+238",
416
+ "image": "https://flagcdn.com/w160/cv.png",
417
+ "region": "Africa",
418
+ "sub_region": "Sub-Saharan Africa"
419
+ },
420
+ {
421
+ "num_code": "116",
422
+ "alpha2": "KH",
423
+ "alpha3": "KHM",
424
+ "name": "Cambodia",
425
+ "nationality": "Cambodian",
426
+ "dial_code": "+855",
427
+ "image": "https://flagcdn.com/w160/kh.png",
428
+ "region": "Asia",
429
+ "sub_region": "South-eastern Asia"
430
+ },
431
+ {
432
+ "num_code": "120",
433
+ "alpha2": "CM",
434
+ "alpha3": "CMR",
435
+ "name": "Cameroon",
436
+ "nationality": "Cameroonian",
437
+ "dial_code": "+237",
438
+ "image": "https://flagcdn.com/w160/cm.png",
439
+ "region": "Africa",
440
+ "sub_region": "Sub-Saharan Africa"
441
+ },
442
+ {
443
+ "num_code": "124",
444
+ "alpha2": "CA",
445
+ "alpha3": "CAN",
446
+ "name": "Canada",
447
+ "nationality": "Canadian",
448
+ "dial_code": "+1",
449
+ "image": "https://flagcdn.com/w160/ca.png",
450
+ "region": "Americas",
451
+ "sub_region": "Northern America"
452
+ },
453
+ {
454
+ "num_code": "136",
455
+ "alpha2": "KY",
456
+ "alpha3": "CYM",
457
+ "name": "Cayman Islands",
458
+ "nationality": "Caymanian",
459
+ "dial_code": "+1-345",
460
+ "image": "https://flagcdn.com/w160/ky.png",
461
+ "region": "Americas",
462
+ "sub_region": "Latin America and the Caribbean"
463
+ },
464
+ {
465
+ "num_code": "140",
466
+ "alpha2": "CF",
467
+ "alpha3": "CAF",
468
+ "name": "Central African Republic",
469
+ "nationality": "Central African",
470
+ "dial_code": "+236",
471
+ "image": "https://flagcdn.com/w160/cf.png",
472
+ "region": "Africa",
473
+ "sub_region": "Sub-Saharan Africa"
474
+ },
475
+ {
476
+ "num_code": "148",
477
+ "alpha2": "TD",
478
+ "alpha3": "TCD",
479
+ "name": "Chad",
480
+ "nationality": "Chadian",
481
+ "dial_code": "+235",
482
+ "image": "https://flagcdn.com/w160/td.png",
483
+ "region": "Africa",
484
+ "sub_region": "Sub-Saharan Africa"
485
+ },
486
+ {
487
+ "num_code": "152",
488
+ "alpha2": "CL",
489
+ "alpha3": "CHL",
490
+ "name": "Chile",
491
+ "nationality": "Chilean",
492
+ "dial_code": "+56",
493
+ "image": "https://flagcdn.com/w160/cl.png",
494
+ "region": "Americas",
495
+ "sub_region": "Latin America and the Caribbean"
496
+ },
497
+ {
498
+ "num_code": "156",
499
+ "alpha2": "CN",
500
+ "alpha3": "CHN",
501
+ "name": "China",
502
+ "nationality": "Chinese",
503
+ "dial_code": "+86",
504
+ "image": "https://flagcdn.com/w160/cn.png",
505
+ "region": "Asia",
506
+ "sub_region": "Eastern Asia"
507
+ },
508
+ {
509
+ "num_code": "162",
510
+ "alpha2": "CX",
511
+ "alpha3": "CXR",
512
+ "name": "Christmas Island",
513
+ "nationality": "Christmas Island",
514
+ "dial_code": "+61",
515
+ "image": "https://flagcdn.com/w160/cx.png",
516
+ "region": "Oceania",
517
+ "sub_region": "Australia and New Zealand"
518
+ },
519
+ {
520
+ "num_code": "166",
521
+ "alpha2": "CC",
522
+ "alpha3": "CCK",
523
+ "name": "Cocos (Keeling) Islands",
524
+ "nationality": "Cocos Island",
525
+ "dial_code": "+61",
526
+ "image": "https://flagcdn.com/w160/cc.png",
527
+ "region": "Oceania",
528
+ "sub_region": "Australia and New Zealand"
529
+ },
530
+ {
531
+ "num_code": "170",
532
+ "alpha2": "CO",
533
+ "alpha3": "COL",
534
+ "name": "Colombia",
535
+ "nationality": "Colombian",
536
+ "dial_code": "+57",
537
+ "image": "https://flagcdn.com/w160/co.png",
538
+ "region": "Americas",
539
+ "sub_region": "Latin America and the Caribbean"
540
+ },
541
+ {
542
+ "num_code": "174",
543
+ "alpha2": "KM",
544
+ "alpha3": "COM",
545
+ "name": "Comoros",
546
+ "nationality": "Comoran, Comorian",
547
+ "dial_code": "+269",
548
+ "image": "https://flagcdn.com/w160/km.png",
549
+ "region": "Africa",
550
+ "sub_region": "Sub-Saharan Africa"
551
+ },
552
+ {
553
+ "num_code": "178",
554
+ "alpha2": "CG",
555
+ "alpha3": "COG",
556
+ "name": "Congo",
557
+ "nationality": "Congolese",
558
+ "dial_code": "+242",
559
+ "image": "https://flagcdn.com/w160/cg.png",
560
+ "region": "Africa",
561
+ "sub_region": "Sub-Saharan Africa"
562
+ },
563
+ {
564
+ "num_code": "180",
565
+ "alpha2": "CD",
566
+ "alpha3": "COD",
567
+ "name": "Congo, Democratic Republic of the",
568
+ "nationality": "Congolese",
569
+ "dial_code": "+243",
570
+ "image": "https://flagcdn.com/w160/cd.png",
571
+ "region": "Africa",
572
+ "sub_region": "Sub-Saharan Africa"
573
+ },
574
+ {
575
+ "num_code": "184",
576
+ "alpha2": "CK",
577
+ "alpha3": "COK",
578
+ "name": "Cook Islands",
579
+ "nationality": "Cook Island",
580
+ "dial_code": "+682",
581
+ "image": "https://flagcdn.com/w160/ck.png",
582
+ "region": "Oceania",
583
+ "sub_region": "Polynesia"
584
+ },
585
+ {
586
+ "num_code": "188",
587
+ "alpha2": "CR",
588
+ "alpha3": "CRI",
589
+ "name": "Costa Rica",
590
+ "nationality": "Costa Rican",
591
+ "dial_code": "+506",
592
+ "image": "https://flagcdn.com/w160/cr.png",
593
+ "region": "Americas",
594
+ "sub_region": "Latin America and the Caribbean"
595
+ },
596
+ {
597
+ "num_code": "384",
598
+ "alpha2": "CI",
599
+ "alpha3": "CIV",
600
+ "name": "Côte d'Ivoire",
601
+ "nationality": "Ivorian",
602
+ "dial_code": "+225",
603
+ "image": "https://flagcdn.com/w160/ci.png",
604
+ "region": "Africa",
605
+ "sub_region": "Sub-Saharan Africa"
606
+ },
607
+ {
608
+ "num_code": "191",
609
+ "alpha2": "HR",
610
+ "alpha3": "HRV",
611
+ "name": "Croatia",
612
+ "nationality": "Croatian",
613
+ "dial_code": "+385",
614
+ "image": "https://flagcdn.com/w160/hr.png",
615
+ "region": "Europe",
616
+ "sub_region": "Southern Europe"
617
+ },
618
+ {
619
+ "num_code": "192",
620
+ "alpha2": "CU",
621
+ "alpha3": "CUB",
622
+ "name": "Cuba",
623
+ "nationality": "Cuban",
624
+ "dial_code": "+53",
625
+ "image": "https://flagcdn.com/w160/cu.png",
626
+ "region": "Americas",
627
+ "sub_region": "Latin America and the Caribbean"
628
+ },
629
+ {
630
+ "num_code": "531",
631
+ "alpha2": "CW",
632
+ "alpha3": "CUW",
633
+ "name": "Curaçao",
634
+ "nationality": "Curaçaoan",
635
+ "dial_code": "+599",
636
+ "image": "https://flagcdn.com/w160/cw.png",
637
+ "region": "Americas",
638
+ "sub_region": "Latin America and the Caribbean"
639
+ },
640
+ {
641
+ "num_code": "196",
642
+ "alpha2": "CY",
643
+ "alpha3": "CYP",
644
+ "name": "Cyprus",
645
+ "nationality": "Cypriot",
646
+ "dial_code": "+357",
647
+ "image": "https://flagcdn.com/w160/cy.png",
648
+ "region": "Asia",
649
+ "sub_region": "Western Asia"
650
+ },
651
+ {
652
+ "num_code": "203",
653
+ "alpha2": "CZ",
654
+ "alpha3": "CZE",
655
+ "name": "Czechia",
656
+ "nationality": "Czech",
657
+ "dial_code": "+420",
658
+ "image": "https://flagcdn.com/w160/cz.png",
659
+ "region": "Europe",
660
+ "sub_region": "Eastern Europe"
661
+ },
662
+ {
663
+ "num_code": "208",
664
+ "alpha2": "DK",
665
+ "alpha3": "DNK",
666
+ "name": "Denmark",
667
+ "nationality": "Danish",
668
+ "dial_code": "+45",
669
+ "image": "https://flagcdn.com/w160/dk.png",
670
+ "region": "Europe",
671
+ "sub_region": "Northern Europe"
672
+ },
673
+ {
674
+ "num_code": "262",
675
+ "alpha2": "DJ",
676
+ "alpha3": "DJI",
677
+ "name": "Djibouti",
678
+ "nationality": "Djiboutian",
679
+ "dial_code": "+253",
680
+ "image": "https://flagcdn.com/w160/dj.png",
681
+ "region": "Africa",
682
+ "sub_region": "Sub-Saharan Africa"
683
+ },
684
+ {
685
+ "num_code": "212",
686
+ "alpha2": "DM",
687
+ "alpha3": "DMA",
688
+ "name": "Dominica",
689
+ "nationality": "Dominican",
690
+ "dial_code": "+1-767",
691
+ "image": "https://flagcdn.com/w160/dm.png",
692
+ "region": "Americas",
693
+ "sub_region": "Latin America and the Caribbean"
694
+ },
695
+ {
696
+ "num_code": "214",
697
+ "alpha2": "DO",
698
+ "alpha3": "DOM",
699
+ "name": "Dominican Republic",
700
+ "nationality": "Dominican",
701
+ "dial_code": "+1-809",
702
+ "image": "https://flagcdn.com/w160/do.png",
703
+ "region": "Americas",
704
+ "sub_region": "Latin America and the Caribbean"
705
+ },
706
+ {
707
+ "num_code": "218",
708
+ "alpha2": "EC",
709
+ "alpha3": "ECU",
710
+ "name": "Ecuador",
711
+ "nationality": "Ecuadorian",
712
+ "dial_code": "+593",
713
+ "image": "https://flagcdn.com/w160/ec.png",
714
+ "region": "Americas",
715
+ "sub_region": "Latin America and the Caribbean"
716
+ },
717
+ {
718
+ "num_code": "818",
719
+ "alpha2": "EG",
720
+ "alpha3": "EGY",
721
+ "name": "Egypt",
722
+ "nationality": "Egyptian",
723
+ "dial_code": "+20",
724
+ "image": "https://flagcdn.com/w160/eg.png",
725
+ "region": "Africa",
726
+ "sub_region": "Northern Africa"
727
+ },
728
+ {
729
+ "num_code": "222",
730
+ "alpha2": "SV",
731
+ "alpha3": "SLV",
732
+ "name": "El Salvador",
733
+ "nationality": "Salvadoran",
734
+ "dial_code": "+503",
735
+ "image": "https://flagcdn.com/w160/sv.png",
736
+ "region": "Americas",
737
+ "sub_region": "Latin America and the Caribbean"
738
+ },
739
+ {
740
+ "num_code": "226",
741
+ "alpha2": "GQ",
742
+ "alpha3": "GNQ",
743
+ "name": "Equatorial Guinea",
744
+ "nationality": "Equatorial Guinean, Equatoguinean",
745
+ "dial_code": "+240",
746
+ "image": "https://flagcdn.com/w160/gq.png",
747
+ "region": "Africa",
748
+ "sub_region": "Sub-Saharan Africa"
749
+ },
750
+ {
751
+ "num_code": "232",
752
+ "alpha2": "ER",
753
+ "alpha3": "ERI",
754
+ "name": "Eritrea",
755
+ "nationality": "Eritrean",
756
+ "dial_code": "+291",
757
+ "image": "https://flagcdn.com/w160/er.png",
758
+ "region": "Africa",
759
+ "sub_region": "Sub-Saharan Africa"
760
+ },
761
+ {
762
+ "num_code": "233",
763
+ "alpha2": "EE",
764
+ "alpha3": "EST",
765
+ "name": "Estonia",
766
+ "nationality": "Estonian",
767
+ "dial_code": "+372",
768
+ "image": "https://flagcdn.com/w160/ee.png",
769
+ "region": "Europe",
770
+ "sub_region": "Northern Europe"
771
+ },
772
+ {
773
+ "num_code": "748",
774
+ "alpha2": "SZ",
775
+ "alpha3": "SWZ",
776
+ "name": "Eswatini",
777
+ "nationality": "Swazi",
778
+ "dial_code": "+268",
779
+ "image": "https://flagcdn.com/w160/sz.png",
780
+ "region": "Africa",
781
+ "sub_region": "Sub-Saharan Africa"
782
+ },
783
+ {
784
+ "num_code": "231",
785
+ "alpha2": "ET",
786
+ "alpha3": "ETH",
787
+ "name": "Ethiopia",
788
+ "nationality": "Ethiopian",
789
+ "dial_code": "+251",
790
+ "image": "https://flagcdn.com/w160/et.png",
791
+ "region": "Africa",
792
+ "sub_region": "Sub-Saharan Africa"
793
+ },
794
+ {
795
+ "num_code": "238",
796
+ "alpha2": "FK",
797
+ "alpha3": "FLK",
798
+ "name": "Falkland Islands (Malvinas)",
799
+ "nationality": "Falkland Island",
800
+ "dial_code": "+500",
801
+ "image": "https://flagcdn.com/w160/fk.png",
802
+ "region": "Americas",
803
+ "sub_region": "Latin America and the Caribbean"
804
+ },
805
+ {
806
+ "num_code": "234",
807
+ "alpha2": "FO",
808
+ "alpha3": "FRO",
809
+ "name": "Faroe Islands",
810
+ "nationality": "Faroese",
811
+ "dial_code": "+298",
812
+ "image": "https://flagcdn.com/w160/fo.png",
813
+ "region": "Europe",
814
+ "sub_region": "Northern Europe"
815
+ },
816
+ {
817
+ "num_code": "242",
818
+ "alpha2": "FJ",
819
+ "alpha3": "FJI",
820
+ "name": "Fiji",
821
+ "nationality": "Fijian",
822
+ "dial_code": "+679",
823
+ "image": "https://flagcdn.com/w160/fj.png",
824
+ "region": "Oceania",
825
+ "sub_region": "Melanesia"
826
+ },
827
+ {
828
+ "num_code": "246",
829
+ "alpha2": "FI",
830
+ "alpha3": "FIN",
831
+ "name": "Finland",
832
+ "nationality": "Finnish",
833
+ "dial_code": "+358",
834
+ "image": "https://flagcdn.com/w160/fi.png",
835
+ "region": "Europe",
836
+ "sub_region": "Northern Europe"
837
+ },
838
+ {
839
+ "num_code": "250",
840
+ "alpha2": "FR",
841
+ "alpha3": "FRA",
842
+ "name": "France",
843
+ "nationality": "French",
844
+ "dial_code": "+33",
845
+ "image": "https://flagcdn.com/w160/fr.png",
846
+ "region": "Europe",
847
+ "sub_region": "Western Europe"
848
+ },
849
+ {
850
+ "num_code": "254",
851
+ "alpha2": "GF",
852
+ "alpha3": "GUF",
853
+ "name": "French Guiana",
854
+ "nationality": "French Guianese",
855
+ "dial_code": "+594",
856
+ "image": "https://flagcdn.com/w160/gf.png",
857
+ "region": "Americas",
858
+ "sub_region": "Latin America and the Caribbean"
859
+ },
860
+ {
861
+ "num_code": "258",
862
+ "alpha2": "PF",
863
+ "alpha3": "PYF",
864
+ "name": "French Polynesia",
865
+ "nationality": "French Polynesian",
866
+ "dial_code": "+689",
867
+ "image": "https://flagcdn.com/w160/pf.png",
868
+ "region": "Oceania",
869
+ "sub_region": "Polynesia"
870
+ },
871
+ {
872
+ "num_code": "260",
873
+ "alpha2": "TF",
874
+ "alpha3": "ATF",
875
+ "name": "French Southern Territories",
876
+ "nationality": "French Southern Territories",
877
+ "dial_code": "+262",
878
+ "image": "https://flagcdn.com/w160/tf.png",
879
+ "region": "Africa",
880
+ "sub_region": "Sub-Saharan Africa"
881
+ },
882
+ {
883
+ "num_code": "266",
884
+ "alpha2": "GA",
885
+ "alpha3": "GAB",
886
+ "name": "Gabon",
887
+ "nationality": "Gabonese",
888
+ "dial_code": "+241",
889
+ "image": "https://flagcdn.com/w160/ga.png",
890
+ "region": "Africa",
891
+ "sub_region": "Sub-Saharan Africa"
892
+ },
893
+ {
894
+ "num_code": "270",
895
+ "alpha2": "GM",
896
+ "alpha3": "GMB",
897
+ "name": "Gambia",
898
+ "nationality": "Gambian",
899
+ "dial_code": "+220",
900
+ "image": "https://flagcdn.com/w160/gm.png",
901
+ "region": "Africa",
902
+ "sub_region": "Sub-Saharan Africa"
903
+ },
904
+ {
905
+ "num_code": "268",
906
+ "alpha2": "GE",
907
+ "alpha3": "GEO",
908
+ "name": "Georgia",
909
+ "nationality": "Georgian",
910
+ "dial_code": "+995",
911
+ "image": "https://flagcdn.com/w160/ge.png",
912
+ "region": "Asia",
913
+ "sub_region": "Western Asia"
914
+ },
915
+ {
916
+ "num_code": "276",
917
+ "alpha2": "DE",
918
+ "alpha3": "DEU",
919
+ "name": "Germany",
920
+ "nationality": "German",
921
+ "dial_code": "+49",
922
+ "image": "https://flagcdn.com/w160/de.png",
923
+ "region": "Europe",
924
+ "sub_region": "Western Europe"
925
+ },
926
+ {
927
+ "num_code": "288",
928
+ "alpha2": "GH",
929
+ "alpha3": "GHA",
930
+ "name": "Ghana",
931
+ "nationality": "Ghanaian",
932
+ "dial_code": "+233",
933
+ "image": "https://flagcdn.com/w160/gh.png",
934
+ "region": "Africa",
935
+ "sub_region": "Sub-Saharan Africa"
936
+ },
937
+ {
938
+ "num_code": "292",
939
+ "alpha2": "GI",
940
+ "alpha3": "GIB",
941
+ "name": "Gibraltar",
942
+ "nationality": "Gibraltar",
943
+ "dial_code": "+350",
944
+ "image": "https://flagcdn.com/w160/gi.png",
945
+ "region": "Europe",
946
+ "sub_region": "Southern Europe"
947
+ },
948
+ {
949
+ "num_code": "300",
950
+ "alpha2": "GR",
951
+ "alpha3": "GRC",
952
+ "name": "Greece",
953
+ "nationality": "Greek, Hellenic",
954
+ "dial_code": "+30",
955
+ "image": "https://flagcdn.com/w160/gr.png",
956
+ "region": "Europe",
957
+ "sub_region": "Southern Europe"
958
+ },
959
+ {
960
+ "num_code": "304",
961
+ "alpha2": "GL",
962
+ "alpha3": "GRL",
963
+ "name": "Greenland",
964
+ "nationality": "Greenlandic",
965
+ "dial_code": "+290",
966
+ "image": "https://flagcdn.com/w160/gl.png",
967
+ "region": "Americas",
968
+ "sub_region": "Northern America"
969
+ },
970
+ {
971
+ "num_code": "308",
972
+ "alpha2": "GD",
973
+ "alpha3": "GRD",
974
+ "name": "Grenada",
975
+ "nationality": "Grenadian",
976
+ "dial_code": "+1-473",
977
+ "image": "https://flagcdn.com/w160/gd.png",
978
+ "region": "Americas",
979
+ "sub_region": "Latin America and the Caribbean"
980
+ },
981
+ {
982
+ "num_code": "312",
983
+ "alpha2": "GP",
984
+ "alpha3": "GLP",
985
+ "name": "Guadeloupe",
986
+ "nationality": "Guadeloupe",
987
+ "dial_code": "+590",
988
+ "image": "https://flagcdn.com/w160/gp.png",
989
+ "region": "Americas",
990
+ "sub_region": "Latin America and the Caribbean"
991
+ },
992
+ {
993
+ "num_code": "316",
994
+ "alpha2": "GU",
995
+ "alpha3": "GUM",
996
+ "name": "Guam",
997
+ "nationality": "Guamanian, Guambat",
998
+ "dial_code": "+1-671",
999
+ "image": "https://flagcdn.com/w160/gu.png",
1000
+ "region": "Oceania",
1001
+ "sub_region": "Micronesia"
1002
+ },
1003
+ {
1004
+ "num_code": "320",
1005
+ "alpha2": "GT",
1006
+ "alpha3": "GTM",
1007
+ "name": "Guatemala",
1008
+ "nationality": "Guatemalan",
1009
+ "dial_code": "+502",
1010
+ "image": "https://flagcdn.com/w160/gt.png",
1011
+ "region": "Americas",
1012
+ "sub_region": "Latin America and the Caribbean"
1013
+ },
1014
+ {
1015
+ "num_code": "831",
1016
+ "alpha2": "GG",
1017
+ "alpha3": "GGY",
1018
+ "name": "Guernsey",
1019
+ "nationality": "Channel Island",
1020
+ "dial_code": "+44",
1021
+ "image": "https://flagcdn.com/w160/gg.png",
1022
+ "region": "Europe",
1023
+ "sub_region": "Northern Europe"
1024
+ },
1025
+ {
1026
+ "num_code": "324",
1027
+ "alpha2": "GN",
1028
+ "alpha3": "GIN",
1029
+ "name": "Guinea",
1030
+ "nationality": "Guinean",
1031
+ "dial_code": "+224",
1032
+ "image": "https://flagcdn.com/w160/gn.png",
1033
+ "region": "Africa",
1034
+ "sub_region": "Sub-Saharan Africa"
1035
+ },
1036
+ {
1037
+ "num_code": "624",
1038
+ "alpha2": "GW",
1039
+ "alpha3": "GNB",
1040
+ "name": "Guinea-Bissau",
1041
+ "nationality": "Bissau-Guinean",
1042
+ "dial_code": "+245",
1043
+ "image": "https://flagcdn.com/w160/gw.png",
1044
+ "region": "Africa",
1045
+ "sub_region": "Sub-Saharan Africa"
1046
+ },
1047
+ {
1048
+ "num_code": "328",
1049
+ "alpha2": "GY",
1050
+ "alpha3": "GUY",
1051
+ "name": "Guyana",
1052
+ "nationality": "Guyanese",
1053
+ "dial_code": "+592",
1054
+ "image": "https://flagcdn.com/w160/gy.png",
1055
+ "region": "Americas",
1056
+ "sub_region": "Latin America and the Caribbean"
1057
+ },
1058
+ {
1059
+ "num_code": "332",
1060
+ "alpha2": "HT",
1061
+ "alpha3": "HTI",
1062
+ "name": "Haiti",
1063
+ "nationality": "Haitian",
1064
+ "dial_code": "+509",
1065
+ "image": "https://flagcdn.com/w160/ht.png",
1066
+ "region": "Americas",
1067
+ "sub_region": "Latin America and the Caribbean"
1068
+ },
1069
+ {
1070
+ "num_code": "334",
1071
+ "alpha2": "HM",
1072
+ "alpha3": "HMD",
1073
+ "name": "Heard Island and McDonald Islands",
1074
+ "nationality": "Heard Island or McDonald Islands",
1075
+ "dial_code": "+672",
1076
+ "image": "https://flagcdn.com/w160/hm.png",
1077
+ "region": "Oceania",
1078
+ "sub_region": "Australia and New Zealand"
1079
+ },
1080
+ {
1081
+ "num_code": "336",
1082
+ "alpha2": "VA",
1083
+ "alpha3": "VAT",
1084
+ "name": "Holy See",
1085
+ "nationality": "Vatican",
1086
+ "dial_code": "+379",
1087
+ "image": "https://flagcdn.com/w160/va.png",
1088
+ "region": "Europe",
1089
+ "sub_region": "Southern Europe"
1090
+ },
1091
+ {
1092
+ "num_code": "340",
1093
+ "alpha2": "HN",
1094
+ "alpha3": "HND",
1095
+ "name": "Honduras",
1096
+ "nationality": "Honduran",
1097
+ "dial_code": "+504",
1098
+ "image": "https://flagcdn.com/w160/hn.png",
1099
+ "region": "Americas",
1100
+ "sub_region": "Latin America and the Caribbean"
1101
+ },
1102
+ {
1103
+ "num_code": "344",
1104
+ "alpha2": "HK",
1105
+ "alpha3": "HKG",
1106
+ "name": "Hong Kong",
1107
+ "nationality": "Hong Kong, Hong Kongese",
1108
+ "dial_code": "+852",
1109
+ "image": "https://flagcdn.com/w160/hk.png",
1110
+ "region": "Asia",
1111
+ "sub_region": "Eastern Asia"
1112
+ },
1113
+ {
1114
+ "num_code": "348",
1115
+ "alpha2": "HU",
1116
+ "alpha3": "HUN",
1117
+ "name": "Hungary",
1118
+ "nationality": "Hungarian, Magyar",
1119
+ "dial_code": "+36",
1120
+ "image": "https://flagcdn.com/w160/hu.png",
1121
+ "region": "Europe",
1122
+ "sub_region": "Eastern Europe"
1123
+ },
1124
+ {
1125
+ "num_code": "352",
1126
+ "alpha2": "IS",
1127
+ "alpha3": "ISL",
1128
+ "name": "Iceland",
1129
+ "nationality": "Icelandic",
1130
+ "dial_code": "+354",
1131
+ "image": "https://flagcdn.com/w160/is.png",
1132
+ "region": "Europe",
1133
+ "sub_region": "Northern Europe"
1134
+ },
1135
+ {
1136
+ "num_code": "356",
1137
+ "alpha2": "IN",
1138
+ "alpha3": "IND",
1139
+ "name": "India",
1140
+ "nationality": "Indian",
1141
+ "dial_code": "+91",
1142
+ "image": "https://flagcdn.com/w160/in.png",
1143
+ "region": "Asia",
1144
+ "sub_region": "Southern Asia"
1145
+ },
1146
+ {
1147
+ "num_code": "360",
1148
+ "alpha2": "ID",
1149
+ "alpha3": "IDN",
1150
+ "name": "Indonesia",
1151
+ "nationality": "Indonesian",
1152
+ "dial_code": "+62",
1153
+ "image": "https://flagcdn.com/w160/id.png",
1154
+ "region": "Asia",
1155
+ "sub_region": "South-eastern Asia"
1156
+ },
1157
+ {
1158
+ "num_code": "364",
1159
+ "alpha2": "IR",
1160
+ "alpha3": "IRN",
1161
+ "name": "Iran, Islamic Republic of",
1162
+ "nationality": "Iranian, Persian",
1163
+ "dial_code": "+98",
1164
+ "image": "https://flagcdn.com/w160/ir.png",
1165
+ "region": "Asia",
1166
+ "sub_region": "Southern Asia"
1167
+ },
1168
+ {
1169
+ "num_code": "368",
1170
+ "alpha2": "IQ",
1171
+ "alpha3": "IRQ",
1172
+ "name": "Iraq",
1173
+ "nationality": "Iraqi",
1174
+ "dial_code": "+964",
1175
+ "image": "https://flagcdn.com/w160/iq.png",
1176
+ "region": "Asia",
1177
+ "sub_region": "Western Asia"
1178
+ },
1179
+ {
1180
+ "num_code": "372",
1181
+ "alpha2": "IE",
1182
+ "alpha3": "IRL",
1183
+ "name": "Ireland",
1184
+ "nationality": "Irish",
1185
+ "dial_code": "+353",
1186
+ "image": "https://flagcdn.com/w160/ie.png",
1187
+ "region": "Europe",
1188
+ "sub_region": "Northern Europe"
1189
+ },
1190
+ {
1191
+ "num_code": "833",
1192
+ "alpha2": "IM",
1193
+ "alpha3": "IMN",
1194
+ "name": "Isle of Man",
1195
+ "nationality": "Manx",
1196
+ "dial_code": "+44",
1197
+ "image": "https://flagcdn.com/w160/im.png",
1198
+ "region": "Europe",
1199
+ "sub_region": "Northern Europe"
1200
+ },
1201
+ {
1202
+ "num_code": "376",
1203
+ "alpha2": "IL",
1204
+ "alpha3": "ISR",
1205
+ "name": "Israel",
1206
+ "nationality": "Israeli",
1207
+ "dial_code": "+972",
1208
+ "image": "https://flagcdn.com/w160/il.png",
1209
+ "region": "Asia",
1210
+ "sub_region": "Western Asia"
1211
+ },
1212
+ {
1213
+ "num_code": "380",
1214
+ "alpha2": "IT",
1215
+ "alpha3": "ITA",
1216
+ "name": "Italy",
1217
+ "nationality": "Italian",
1218
+ "dial_code": "+39",
1219
+ "image": "https://flagcdn.com/w160/it.png",
1220
+ "region": "Europe",
1221
+ "sub_region": "Southern Europe"
1222
+ },
1223
+ {
1224
+ "num_code": "388",
1225
+ "alpha2": "JM",
1226
+ "alpha3": "JAM",
1227
+ "name": "Jamaica",
1228
+ "nationality": "Jamaican",
1229
+ "dial_code": "+1-876",
1230
+ "image": "https://flagcdn.com/w160/jm.png",
1231
+ "region": "Americas",
1232
+ "sub_region": "Latin America and the Caribbean"
1233
+ },
1234
+ {
1235
+ "num_code": "392",
1236
+ "alpha2": "JP",
1237
+ "alpha3": "JPN",
1238
+ "name": "Japan",
1239
+ "nationality": "Japanese",
1240
+ "dial_code": "+81",
1241
+ "image": "https://flagcdn.com/w160/jp.png",
1242
+ "region": "Asia",
1243
+ "sub_region": "Eastern Asia"
1244
+ },
1245
+ {
1246
+ "num_code": "832",
1247
+ "alpha2": "JE",
1248
+ "alpha3": "JEY",
1249
+ "name": "Jersey",
1250
+ "nationality": "Channel Island",
1251
+ "dial_code": "+44",
1252
+ "image": "https://flagcdn.com/w160/je.png",
1253
+ "region": "Europe",
1254
+ "sub_region": "Northern Europe"
1255
+ },
1256
+ {
1257
+ "num_code": "400",
1258
+ "alpha2": "JO",
1259
+ "alpha3": "JOR",
1260
+ "name": "Jordan",
1261
+ "nationality": "Jordanian",
1262
+ "dial_code": "+962",
1263
+ "image": "https://flagcdn.com/w160/jo.png",
1264
+ "region": "Asia",
1265
+ "sub_region": "Western Asia"
1266
+ },
1267
+ {
1268
+ "num_code": "398",
1269
+ "alpha2": "KZ",
1270
+ "alpha3": "KAZ",
1271
+ "name": "Kazakhstan",
1272
+ "nationality": "Kazakhstani, Kazakh",
1273
+ "dial_code": "+7",
1274
+ "image": "https://flagcdn.com/w160/kz.png",
1275
+ "region": "Asia",
1276
+ "sub_region": "Central Asia"
1277
+ },
1278
+ {
1279
+ "num_code": "404",
1280
+ "alpha2": "KE",
1281
+ "alpha3": "KEN",
1282
+ "name": "Kenya",
1283
+ "nationality": "Kenyan",
1284
+ "dial_code": "+254",
1285
+ "image": "https://flagcdn.com/w160/ke.png",
1286
+ "region": "Africa",
1287
+ "sub_region": "Sub-Saharan Africa"
1288
+ },
1289
+ {
1290
+ "num_code": "296",
1291
+ "alpha2": "KI",
1292
+ "alpha3": "KIR",
1293
+ "name": "Kiribati",
1294
+ "nationality": "I-Kiribati",
1295
+ "dial_code": "+686",
1296
+ "image": "https://flagcdn.com/w160/ki.png",
1297
+ "region": "Oceania",
1298
+ "sub_region": "Micronesia"
1299
+ },
1300
+ {
1301
+ "num_code": "408",
1302
+ "alpha2": "KP",
1303
+ "alpha3": "PRK",
1304
+ "name": "Korea, Democratic People's Republic of",
1305
+ "nationality": "North Korean",
1306
+ "dial_code": "+850",
1307
+ "image": "https://flagcdn.com/w160/kp.png",
1308
+ "region": "Asia",
1309
+ "sub_region": "Eastern Asia"
1310
+ },
1311
+ {
1312
+ "num_code": "410",
1313
+ "alpha2": "KR",
1314
+ "alpha3": "KOR",
1315
+ "name": "Korea, Republic of",
1316
+ "nationality": "South Korean",
1317
+ "dial_code": "+82",
1318
+ "image": "https://flagcdn.com/w160/kr.png",
1319
+ "region": "Asia",
1320
+ "sub_region": "Eastern Asia"
1321
+ },
1322
+ {
1323
+ "num_code": "414",
1324
+ "alpha2": "KW",
1325
+ "alpha3": "KWT",
1326
+ "name": "Kuwait",
1327
+ "nationality": "Kuwaiti",
1328
+ "dial_code": "+965",
1329
+ "image": "https://flagcdn.com/w160/kw.png",
1330
+ "region": "Asia",
1331
+ "sub_region": "Western Asia"
1332
+ },
1333
+ {
1334
+ "num_code": "417",
1335
+ "alpha2": "KG",
1336
+ "alpha3": "KGZ",
1337
+ "name": "Kyrgyzstan",
1338
+ "nationality": "Kyrgyzstani, Kyrgyz, Kirgiz, Kirghiz",
1339
+ "dial_code": "+996",
1340
+ "image": "https://flagcdn.com/w160/kg.png",
1341
+ "region": "Asia",
1342
+ "sub_region": "Central Asia"
1343
+ },
1344
+ {
1345
+ "num_code": "418",
1346
+ "alpha2": "LA",
1347
+ "alpha3": "LAO",
1348
+ "name": "Lao People's Democratic Republic",
1349
+ "nationality": "Lao, Laotian",
1350
+ "dial_code": "+856",
1351
+ "image": "https://flagcdn.com/w160/la.png",
1352
+ "region": "Asia",
1353
+ "sub_region": "South-eastern Asia"
1354
+ },
1355
+ {
1356
+ "num_code": "428",
1357
+ "alpha2": "LV",
1358
+ "alpha3": "LVA",
1359
+ "name": "Latvia",
1360
+ "nationality": "Latvian",
1361
+ "dial_code": "+371",
1362
+ "image": "https://flagcdn.com/w160/lv.png",
1363
+ "region": "Europe",
1364
+ "sub_region": "Northern Europe"
1365
+ },
1366
+ {
1367
+ "num_code": "422",
1368
+ "alpha2": "LB",
1369
+ "alpha3": "LBN",
1370
+ "name": "Lebanon",
1371
+ "nationality": "Lebanese",
1372
+ "dial_code": "+961",
1373
+ "image": "https://flagcdn.com/w160/lb.png",
1374
+ "region": "Asia",
1375
+ "sub_region": "Western Asia"
1376
+ },
1377
+ {
1378
+ "num_code": "426",
1379
+ "alpha2": "LS",
1380
+ "alpha3": "LSO",
1381
+ "name": "Lesotho",
1382
+ "nationality": "Basotho",
1383
+ "dial_code": "+266",
1384
+ "image": "https://flagcdn.com/w160/ls.png",
1385
+ "region": "Africa",
1386
+ "sub_region": "Sub-Saharan Africa"
1387
+ },
1388
+ {
1389
+ "num_code": "430",
1390
+ "alpha2": "LR",
1391
+ "alpha3": "LBR",
1392
+ "name": "Liberia",
1393
+ "nationality": "Liberian",
1394
+ "dial_code": "+231",
1395
+ "image": "https://flagcdn.com/w160/lr.png",
1396
+ "region": "Africa",
1397
+ "sub_region": "Sub-Saharan Africa"
1398
+ },
1399
+ {
1400
+ "num_code": "434",
1401
+ "alpha2": "LY",
1402
+ "alpha3": "LBY",
1403
+ "name": "Libya",
1404
+ "nationality": "Libyan",
1405
+ "dial_code": "+218",
1406
+ "image": "https://flagcdn.com/w160/ly.png",
1407
+ "region": "Africa",
1408
+ "sub_region": "Northern Africa"
1409
+ },
1410
+ {
1411
+ "num_code": "438",
1412
+ "alpha2": "LI",
1413
+ "alpha3": "LIE",
1414
+ "name": "Liechtenstein",
1415
+ "nationality": "Liechtenstein",
1416
+ "dial_code": "+423",
1417
+ "image": "https://flagcdn.com/w160/li.png",
1418
+ "region": "Europe",
1419
+ "sub_region": "Western Europe"
1420
+ },
1421
+ {
1422
+ "num_code": "440",
1423
+ "alpha2": "LT",
1424
+ "alpha3": "LTU",
1425
+ "name": "Lithuania",
1426
+ "nationality": "Lithuanian",
1427
+ "dial_code": "+370",
1428
+ "image": "https://flagcdn.com/w160/lt.png",
1429
+ "region": "Europe",
1430
+ "sub_region": "Northern Europe"
1431
+ },
1432
+ {
1433
+ "num_code": "442",
1434
+ "alpha2": "LU",
1435
+ "alpha3": "LUX",
1436
+ "name": "Luxembourg",
1437
+ "nationality": "Luxembourg, Luxembourgish",
1438
+ "dial_code": "+352",
1439
+ "image": "https://flagcdn.com/w160/lu.png",
1440
+ "region": "Europe",
1441
+ "sub_region": "Western Europe"
1442
+ },
1443
+ {
1444
+ "num_code": "446",
1445
+ "alpha2": "MO",
1446
+ "alpha3": "MAC",
1447
+ "name": "Macao",
1448
+ "nationality": "Macanese, Chinese",
1449
+ "dial_code": "+853",
1450
+ "image": "https://flagcdn.com/w160/mo.png",
1451
+ "region": "Asia",
1452
+ "sub_region": "Eastern Asia"
1453
+ },
1454
+ {
1455
+ "num_code": "450",
1456
+ "alpha2": "MG",
1457
+ "alpha3": "MDG",
1458
+ "name": "Madagascar",
1459
+ "nationality": "Malagasy",
1460
+ "dial_code": "+261",
1461
+ "image": "https://flagcdn.com/w160/mg.png",
1462
+ "region": "Africa",
1463
+ "sub_region": "Sub-Saharan Africa"
1464
+ },
1465
+ {
1466
+ "num_code": "454",
1467
+ "alpha2": "MW",
1468
+ "alpha3": "MWI",
1469
+ "name": "Malawi",
1470
+ "nationality": "Malawian",
1471
+ "dial_code": "+265",
1472
+ "image": "https://flagcdn.com/w160/mw.png",
1473
+ "region": "Africa",
1474
+ "sub_region": "Sub-Saharan Africa"
1475
+ },
1476
+ {
1477
+ "num_code": "458",
1478
+ "alpha2": "MY",
1479
+ "alpha3": "MYS",
1480
+ "name": "Malaysia",
1481
+ "nationality": "Malaysian",
1482
+ "dial_code": "+60",
1483
+ "image": "https://flagcdn.com/w160/my.png",
1484
+ "region": "Asia",
1485
+ "sub_region": "South-eastern Asia"
1486
+ },
1487
+ {
1488
+ "num_code": "462",
1489
+ "alpha2": "MV",
1490
+ "alpha3": "MDV",
1491
+ "name": "Maldives",
1492
+ "nationality": "Maldivian",
1493
+ "dial_code": "+960",
1494
+ "image": "https://flagcdn.com/w160/mv.png",
1495
+ "region": "Asia",
1496
+ "sub_region": "Southern Asia"
1497
+ },
1498
+ {
1499
+ "num_code": "466",
1500
+ "alpha2": "ML",
1501
+ "alpha3": "MLI",
1502
+ "name": "Mali",
1503
+ "nationality": "Malian, Malinese",
1504
+ "dial_code": "+223",
1505
+ "image": "https://flagcdn.com/w160/ml.png",
1506
+ "region": "Africa",
1507
+ "sub_region": "Sub-Saharan Africa"
1508
+ },
1509
+ {
1510
+ "num_code": "470",
1511
+ "alpha2": "MT",
1512
+ "alpha3": "MLT",
1513
+ "name": "Malta",
1514
+ "nationality": "Maltese",
1515
+ "dial_code": "+356",
1516
+ "image": "https://flagcdn.com/w160/mt.png",
1517
+ "region": "Europe",
1518
+ "sub_region": "Southern Europe"
1519
+ },
1520
+ {
1521
+ "num_code": "584",
1522
+ "alpha2": "MH",
1523
+ "alpha3": "MHL",
1524
+ "name": "Marshall Islands",
1525
+ "nationality": "Marshallese",
1526
+ "dial_code": "+692",
1527
+ "image": "https://flagcdn.com/w160/mh.png",
1528
+ "region": "Oceania",
1529
+ "sub_region": "Micronesia"
1530
+ },
1531
+ {
1532
+ "num_code": "474",
1533
+ "alpha2": "MQ",
1534
+ "alpha3": "MTQ",
1535
+ "name": "Martinique",
1536
+ "nationality": "Martiniquais, Martinican",
1537
+ "dial_code": "+596",
1538
+ "image": "https://flagcdn.com/w160/mq.png",
1539
+ "region": "Americas",
1540
+ "sub_region": "Latin America and the Caribbean"
1541
+ },
1542
+ {
1543
+ "num_code": "478",
1544
+ "alpha2": "MR",
1545
+ "alpha3": "MRT",
1546
+ "name": "Mauritania",
1547
+ "nationality": "Mauritanian",
1548
+ "dial_code": "+222",
1549
+ "image": "https://flagcdn.com/w160/mr.png",
1550
+ "region": "Africa",
1551
+ "sub_region": "Sub-Saharan Africa"
1552
+ },
1553
+ {
1554
+ "num_code": "480",
1555
+ "alpha2": "MU",
1556
+ "alpha3": "MUS",
1557
+ "name": "Mauritius",
1558
+ "nationality": "Mauritian",
1559
+ "dial_code": "+230",
1560
+ "image": "https://flagcdn.com/w160/mu.png",
1561
+ "region": "Africa",
1562
+ "sub_region": "Sub-Saharan Africa"
1563
+ },
1564
+ {
1565
+ "num_code": "175",
1566
+ "alpha2": "YT",
1567
+ "alpha3": "MYT",
1568
+ "name": "Mayotte",
1569
+ "nationality": "Mahoran",
1570
+ "dial_code": "+262",
1571
+ "image": "https://flagcdn.com/w160/yt.png",
1572
+ "region": "Africa",
1573
+ "sub_region": "Sub-Saharan Africa"
1574
+ },
1575
+ {
1576
+ "num_code": "484",
1577
+ "alpha2": "MX",
1578
+ "alpha3": "MEX",
1579
+ "name": "Mexico",
1580
+ "nationality": "Mexican",
1581
+ "dial_code": "+52",
1582
+ "image": "https://flagcdn.com/w160/mx.png",
1583
+ "region": "Americas",
1584
+ "sub_region": "Latin America and the Caribbean"
1585
+ },
1586
+ {
1587
+ "num_code": "583",
1588
+ "alpha2": "FM",
1589
+ "alpha3": "FSM",
1590
+ "name": "Micronesia, Federated States of",
1591
+ "nationality": "Micronesian",
1592
+ "dial_code": "+691",
1593
+ "image": "https://flagcdn.com/w160/fm.png",
1594
+ "region": "Oceania",
1595
+ "sub_region": "Micronesia"
1596
+ },
1597
+ {
1598
+ "num_code": "498",
1599
+ "alpha2": "MD",
1600
+ "alpha3": "MDA",
1601
+ "name": "Moldova, Republic of",
1602
+ "nationality": "Moldovan",
1603
+ "dial_code": "+373",
1604
+ "image": "https://flagcdn.com/w160/md.png",
1605
+ "region": "Europe",
1606
+ "sub_region": "Eastern Europe"
1607
+ },
1608
+ {
1609
+ "num_code": "492",
1610
+ "alpha2": "MC",
1611
+ "alpha3": "MCO",
1612
+ "name": "Monaco",
1613
+ "nationality": "Monégasque, Monacan",
1614
+ "dial_code": "+377",
1615
+ "image": "https://flagcdn.com/w160/mc.png",
1616
+ "region": "Europe",
1617
+ "sub_region": "Western Europe"
1618
+ },
1619
+ {
1620
+ "num_code": "496",
1621
+ "alpha2": "MN",
1622
+ "alpha3": "MNG",
1623
+ "name": "Mongolia",
1624
+ "nationality": "Mongolian",
1625
+ "dial_code": "+976",
1626
+ "image": "https://flagcdn.com/w160/mn.png",
1627
+ "region": "Asia",
1628
+ "sub_region": "Eastern Asia"
1629
+ },
1630
+ {
1631
+ "num_code": "499",
1632
+ "alpha2": "ME",
1633
+ "alpha3": "MNE",
1634
+ "name": "Montenegro",
1635
+ "nationality": "Montenegrin",
1636
+ "dial_code": "+382",
1637
+ "image": "https://flagcdn.com/w160/me.png",
1638
+ "region": "Europe",
1639
+ "sub_region": "Southern Europe"
1640
+ },
1641
+ {
1642
+ "num_code": "500",
1643
+ "alpha2": "MS",
1644
+ "alpha3": "MSR",
1645
+ "name": "Montserrat",
1646
+ "nationality": "Montserratian",
1647
+ "dial_code": "+1-664",
1648
+ "image": "https://flagcdn.com/w160/ms.png",
1649
+ "region": "Americas",
1650
+ "sub_region": "Latin America and the Caribbean"
1651
+ },
1652
+ {
1653
+ "num_code": "504",
1654
+ "alpha2": "MA",
1655
+ "alpha3": "MAR",
1656
+ "name": "Morocco",
1657
+ "nationality": "Moroccan",
1658
+ "dial_code": "+212",
1659
+ "image": "https://flagcdn.com/w160/ma.png",
1660
+ "region": "Africa",
1661
+ "sub_region": "Northern Africa"
1662
+ },
1663
+ {
1664
+ "num_code": "508",
1665
+ "alpha2": "MZ",
1666
+ "alpha3": "MOZ",
1667
+ "name": "Mozambique",
1668
+ "nationality": "Mozambican",
1669
+ "dial_code": "+258",
1670
+ "image": "https://flagcdn.com/w160/mz.png",
1671
+ "region": "Africa",
1672
+ "sub_region": "Sub-Saharan Africa"
1673
+ },
1674
+ {
1675
+ "num_code": "104",
1676
+ "alpha2": "MM",
1677
+ "alpha3": "MMR",
1678
+ "name": "Myanmar",
1679
+ "nationality": "Burmese",
1680
+ "dial_code": "+95",
1681
+ "image": "https://flagcdn.com/w160/mm.png",
1682
+ "region": "Asia",
1683
+ "sub_region": "South-eastern Asia"
1684
+ },
1685
+ {
1686
+ "num_code": "516",
1687
+ "alpha2": "NA",
1688
+ "alpha3": "NAM",
1689
+ "name": "Namibia",
1690
+ "nationality": "Namibian",
1691
+ "dial_code": "+264",
1692
+ "image": "https://flagcdn.com/w160/na.png",
1693
+ "region": "Africa",
1694
+ "sub_region": "Sub-Saharan Africa"
1695
+ },
1696
+ {
1697
+ "num_code": "520",
1698
+ "alpha2": "NR",
1699
+ "alpha3": "NRU",
1700
+ "name": "Nauru",
1701
+ "nationality": "Nauruan",
1702
+ "dial_code": "+674",
1703
+ "image": "https://flagcdn.com/w160/nr.png",
1704
+ "region": "Oceania",
1705
+ "sub_region": "Micronesia"
1706
+ },
1707
+ {
1708
+ "num_code": "524",
1709
+ "alpha2": "NP",
1710
+ "alpha3": "NPL",
1711
+ "name": "Nepal",
1712
+ "nationality": "Nepali, Nepalese",
1713
+ "dial_code": "+977",
1714
+ "image": "https://flagcdn.com/w160/np.png",
1715
+ "region": "Asia",
1716
+ "sub_region": "Southern Asia"
1717
+ },
1718
+ {
1719
+ "num_code": "528",
1720
+ "alpha2": "NL",
1721
+ "alpha3": "NLD",
1722
+ "name": "Netherlands, Kingdom of the",
1723
+ "nationality": "Dutch, Netherlandic",
1724
+ "dial_code": "+31",
1725
+ "image": "https://flagcdn.com/w160/nl.png",
1726
+ "region": "Europe",
1727
+ "sub_region": "Western Europe"
1728
+ },
1729
+ {
1730
+ "num_code": "540",
1731
+ "alpha2": "NC",
1732
+ "alpha3": "NCL",
1733
+ "name": "New Caledonia",
1734
+ "nationality": "New Caledonian",
1735
+ "dial_code": "+687",
1736
+ "image": "https://flagcdn.com/w160/nc.png",
1737
+ "region": "Oceania",
1738
+ "sub_region": "Melanesia"
1739
+ },
1740
+ {
1741
+ "num_code": "554",
1742
+ "alpha2": "NZ",
1743
+ "alpha3": "NZL",
1744
+ "name": "New Zealand",
1745
+ "nationality": "New Zealand, NZ",
1746
+ "dial_code": "+64",
1747
+ "image": "https://flagcdn.com/w160/nz.png",
1748
+ "region": "Oceania",
1749
+ "sub_region": "Australia and New Zealand"
1750
+ },
1751
+ {
1752
+ "num_code": "558",
1753
+ "alpha2": "NI",
1754
+ "alpha3": "NIC",
1755
+ "name": "Nicaragua",
1756
+ "nationality": "Nicaraguan",
1757
+ "dial_code": "+505",
1758
+ "image": "https://flagcdn.com/w160/ni.png",
1759
+ "region": "Americas",
1760
+ "sub_region": "Latin America and the Caribbean"
1761
+ },
1762
+ {
1763
+ "num_code": "562",
1764
+ "alpha2": "NE",
1765
+ "alpha3": "NER",
1766
+ "name": "Niger",
1767
+ "nationality": "Nigerien",
1768
+ "dial_code": "+227",
1769
+ "image": "https://flagcdn.com/w160/ne.png",
1770
+ "region": "Africa",
1771
+ "sub_region": "Sub-Saharan Africa"
1772
+ },
1773
+ {
1774
+ "num_code": "566",
1775
+ "alpha2": "NG",
1776
+ "alpha3": "NGA",
1777
+ "name": "Nigeria",
1778
+ "nationality": "Nigerian",
1779
+ "dial_code": "+234",
1780
+ "image": "https://flagcdn.com/w160/ng.png",
1781
+ "region": "Africa",
1782
+ "sub_region": "Sub-Saharan Africa"
1783
+ },
1784
+ {
1785
+ "num_code": "570",
1786
+ "alpha2": "NU",
1787
+ "alpha3": "NIU",
1788
+ "name": "Niue",
1789
+ "nationality": "Niuean",
1790
+ "dial_code": "+683",
1791
+ "image": "https://flagcdn.com/w160/nu.png",
1792
+ "region": "Oceania",
1793
+ "sub_region": "Polynesia"
1794
+ },
1795
+ {
1796
+ "num_code": "574",
1797
+ "alpha2": "NF",
1798
+ "alpha3": "NFK",
1799
+ "name": "Norfolk Island",
1800
+ "nationality": "Norfolk Island",
1801
+ "dial_code": "+672",
1802
+ "image": "https://flagcdn.com/w160/nf.png",
1803
+ "region": "Oceania",
1804
+ "sub_region": "Australia and New Zealand"
1805
+ },
1806
+ {
1807
+ "num_code": "807",
1808
+ "alpha2": "MK",
1809
+ "alpha3": "MKD",
1810
+ "name": "North Macedonia",
1811
+ "nationality": "Macedonian",
1812
+ "dial_code": "+389",
1813
+ "image": "https://flagcdn.com/w160/mk.png",
1814
+ "region": "Europe",
1815
+ "sub_region": "Southern Europe"
1816
+ },
1817
+ {
1818
+ "num_code": "580",
1819
+ "alpha2": "MP",
1820
+ "alpha3": "MNP",
1821
+ "name": "Northern Mariana Islands",
1822
+ "nationality": "Northern Marianan",
1823
+ "dial_code": "+1-670",
1824
+ "image": "https://flagcdn.com/w160/mp.png",
1825
+ "region": "Oceania",
1826
+ "sub_region": "Micronesia"
1827
+ },
1828
+ {
1829
+ "num_code": "578",
1830
+ "alpha2": "NO",
1831
+ "alpha3": "NOR",
1832
+ "name": "Norway",
1833
+ "nationality": "Norwegian",
1834
+ "dial_code": "+47",
1835
+ "image": "https://flagcdn.com/w160/no.png",
1836
+ "region": "Europe",
1837
+ "sub_region": "Northern Europe"
1838
+ },
1839
+ {
1840
+ "num_code": "512",
1841
+ "alpha2": "OM",
1842
+ "alpha3": "OMN",
1843
+ "name": "Oman",
1844
+ "nationality": "Omani",
1845
+ "dial_code": "+968",
1846
+ "image": "https://flagcdn.com/w160/om.png",
1847
+ "region": "Asia",
1848
+ "sub_region": "Western Asia"
1849
+ },
1850
+ {
1851
+ "num_code": "586",
1852
+ "alpha2": "PK",
1853
+ "alpha3": "PAK",
1854
+ "name": "Pakistan",
1855
+ "nationality": "Pakistani",
1856
+ "dial_code": "+92",
1857
+ "image": "https://flagcdn.com/w160/pk.png",
1858
+ "region": "Asia",
1859
+ "sub_region": "Southern Asia"
1860
+ },
1861
+ {
1862
+ "num_code": "585",
1863
+ "alpha2": "PW",
1864
+ "alpha3": "PLW",
1865
+ "name": "Palau",
1866
+ "nationality": "Palauan",
1867
+ "dial_code": "+680",
1868
+ "image": "https://flagcdn.com/w160/pw.png",
1869
+ "region": "Oceania",
1870
+ "sub_region": "Micronesia"
1871
+ },
1872
+ {
1873
+ "num_code": "275",
1874
+ "alpha2": "PS",
1875
+ "alpha3": "PSE",
1876
+ "name": "Palestine, State of",
1877
+ "nationality": "Palestinian",
1878
+ "dial_code": "+970",
1879
+ "image": "https://flagcdn.com/w160/ps.png",
1880
+ "region": "Asia",
1881
+ "sub_region": "Western Asia"
1882
+ },
1883
+ {
1884
+ "num_code": "591",
1885
+ "alpha2": "PA",
1886
+ "alpha3": "PAN",
1887
+ "name": "Panama",
1888
+ "nationality": "Panamanian",
1889
+ "dial_code": "+507",
1890
+ "image": "https://flagcdn.com/w160/pa.png",
1891
+ "region": "Americas",
1892
+ "sub_region": "Latin America and the Caribbean"
1893
+ },
1894
+ {
1895
+ "num_code": "598",
1896
+ "alpha2": "PG",
1897
+ "alpha3": "PNG",
1898
+ "name": "Papua New Guinea",
1899
+ "nationality": "Papua New Guinean, Papuan",
1900
+ "dial_code": "+675",
1901
+ "image": "https://flagcdn.com/w160/pg.png",
1902
+ "region": "Oceania",
1903
+ "sub_region": "Melanesia"
1904
+ },
1905
+ {
1906
+ "num_code": "600",
1907
+ "alpha2": "PY",
1908
+ "alpha3": "PRY",
1909
+ "name": "Paraguay",
1910
+ "nationality": "Paraguayan",
1911
+ "dial_code": "+595",
1912
+ "image": "https://flagcdn.com/w160/py.png",
1913
+ "region": "Americas",
1914
+ "sub_region": "Latin America and the Caribbean"
1915
+ },
1916
+ {
1917
+ "num_code": "604",
1918
+ "alpha2": "PE",
1919
+ "alpha3": "PER",
1920
+ "name": "Peru",
1921
+ "nationality": "Peruvian",
1922
+ "dial_code": "+51",
1923
+ "image": "https://flagcdn.com/w160/pe.png",
1924
+ "region": "Americas",
1925
+ "sub_region": "Latin America and the Caribbean"
1926
+ },
1927
+ {
1928
+ "num_code": "608",
1929
+ "alpha2": "PH",
1930
+ "alpha3": "PHL",
1931
+ "name": "Philippines",
1932
+ "nationality": "Philippine, Filipino",
1933
+ "dial_code": "+63",
1934
+ "image": "https://flagcdn.com/w160/ph.png",
1935
+ "region": "Asia",
1936
+ "sub_region": "South-eastern Asia"
1937
+ },
1938
+ {
1939
+ "num_code": "612",
1940
+ "alpha2": "PN",
1941
+ "alpha3": "PCN",
1942
+ "name": "Pitcairn",
1943
+ "nationality": "Pitcairn Island",
1944
+ "dial_code": "+64",
1945
+ "image": "https://flagcdn.com/w160/pn.png",
1946
+ "region": "Oceania",
1947
+ "sub_region": "Polynesia"
1948
+ },
1949
+ {
1950
+ "num_code": "616",
1951
+ "alpha2": "PL",
1952
+ "alpha3": "POL",
1953
+ "name": "Poland",
1954
+ "nationality": "Polish",
1955
+ "dial_code": "+48",
1956
+ "image": "https://flagcdn.com/w160/pl.png",
1957
+ "region": "Europe",
1958
+ "sub_region": "Eastern Europe"
1959
+ },
1960
+ {
1961
+ "num_code": "620",
1962
+ "alpha2": "PT",
1963
+ "alpha3": "PRT",
1964
+ "name": "Portugal",
1965
+ "nationality": "Portuguese",
1966
+ "dial_code": "+351",
1967
+ "image": "https://flagcdn.com/w160/pt.png",
1968
+ "region": "Europe",
1969
+ "sub_region": "Southern Europe"
1970
+ },
1971
+ {
1972
+ "num_code": "630",
1973
+ "alpha2": "PR",
1974
+ "alpha3": "PRI",
1975
+ "name": "Puerto Rico",
1976
+ "nationality": "Puerto Rican",
1977
+ "dial_code": "+1-787",
1978
+ "image": "https://flagcdn.com/w160/pr.png",
1979
+ "region": "Americas",
1980
+ "sub_region": "Latin America and the Caribbean"
1981
+ },
1982
+ {
1983
+ "num_code": "634",
1984
+ "alpha2": "QA",
1985
+ "alpha3": "QAT",
1986
+ "name": "Qatar",
1987
+ "nationality": "Qatari",
1988
+ "dial_code": "+974",
1989
+ "image": "https://flagcdn.com/w160/qa.png",
1990
+ "region": "Asia",
1991
+ "sub_region": "Western Asia"
1992
+ },
1993
+ {
1994
+ "num_code": "638",
1995
+ "alpha2": "RE",
1996
+ "alpha3": "REU",
1997
+ "name": "Réunion",
1998
+ "nationality": "Réunionese, Réunionnais",
1999
+ "dial_code": "+262",
2000
+ "image": "https://flagcdn.com/w160/re.png",
2001
+ "region": "Africa",
2002
+ "sub_region": "Sub-Saharan Africa"
2003
+ },
2004
+ {
2005
+ "num_code": "642",
2006
+ "alpha2": "RO",
2007
+ "alpha3": "ROU",
2008
+ "name": "Romania",
2009
+ "nationality": "Romanian",
2010
+ "dial_code": "+40",
2011
+ "image": "https://flagcdn.com/w160/ro.png",
2012
+ "region": "Europe",
2013
+ "sub_region": "Eastern Europe"
2014
+ },
2015
+ {
2016
+ "num_code": "643",
2017
+ "alpha2": "RU",
2018
+ "alpha3": "RUS",
2019
+ "name": "Russian Federation",
2020
+ "nationality": "Russian",
2021
+ "dial_code": "+7",
2022
+ "image": "https://flagcdn.com/w160/ru.png",
2023
+ "region": "Europe",
2024
+ "sub_region": "Eastern Europe"
2025
+ },
2026
+ {
2027
+ "num_code": "646",
2028
+ "alpha2": "RW",
2029
+ "alpha3": "RWA",
2030
+ "name": "Rwanda",
2031
+ "nationality": "Rwandan",
2032
+ "dial_code": "+250",
2033
+ "image": "https://flagcdn.com/w160/rw.png",
2034
+ "region": "Africa",
2035
+ "sub_region": "Sub-Saharan Africa"
2036
+ },
2037
+ {
2038
+ "num_code": "652",
2039
+ "alpha2": "BL",
2040
+ "alpha3": "BLM",
2041
+ "name": "Saint Barthélemy",
2042
+ "nationality": "Barthélemois",
2043
+ "dial_code": "+590",
2044
+ "image": "https://flagcdn.com/w160/bl.png",
2045
+ "region": "Americas",
2046
+ "sub_region": "Latin America and the Caribbean"
2047
+ },
2048
+ {
2049
+ "num_code": "654",
2050
+ "alpha2": "SH",
2051
+ "alpha3": "SHN",
2052
+ "name": "Saint Helena, Ascension and Tristan da Cunha",
2053
+ "nationality": "Saint Helenian",
2054
+ "dial_code": "+290",
2055
+ "image": "https://flagcdn.com/w160/sh.png",
2056
+ "region": "Africa",
2057
+ "sub_region": "Sub-Saharan Africa"
2058
+ },
2059
+ {
2060
+ "num_code": "659",
2061
+ "alpha2": "KN",
2062
+ "alpha3": "KNA",
2063
+ "name": "Saint Kitts and Nevis",
2064
+ "nationality": "Kittitian or Nevisian",
2065
+ "dial_code": "+1-869",
2066
+ "image": "https://flagcdn.com/w160/kn.png",
2067
+ "region": "Americas",
2068
+ "sub_region": "Latin America and the Caribbean"
2069
+ },
2070
+ {
2071
+ "num_code": "662",
2072
+ "alpha2": "LC",
2073
+ "alpha3": "LCA",
2074
+ "name": "Saint Lucia",
2075
+ "nationality": "Saint Lucian",
2076
+ "dial_code": "+1-758",
2077
+ "image": "https://flagcdn.com/w160/lc.png",
2078
+ "region": "Americas",
2079
+ "sub_region": "Latin America and the Caribbean"
2080
+ },
2081
+ {
2082
+ "num_code": "663",
2083
+ "alpha2": "MF",
2084
+ "alpha3": "MAF",
2085
+ "name": "Saint Martin (French part)",
2086
+ "nationality": "Saint-Martinoise",
2087
+ "dial_code": "+590",
2088
+ "image": "https://flagcdn.com/w160/mf.png",
2089
+ "region": "Americas",
2090
+ "sub_region": "Latin America and the Caribbean"
2091
+ },
2092
+ {
2093
+ "num_code": "666",
2094
+ "alpha2": "PM",
2095
+ "alpha3": "SPM",
2096
+ "name": "Saint Pierre and Miquelon",
2097
+ "nationality": "Saint-Pierrais or Miquelonnais",
2098
+ "dial_code": "+506",
2099
+ "image": "https://flagcdn.com/w160/pm.png",
2100
+ "region": "Americas",
2101
+ "sub_region": "Northern America"
2102
+ },
2103
+ {
2104
+ "num_code": "670",
2105
+ "alpha2": "VC",
2106
+ "alpha3": "VCT",
2107
+ "name": "Saint Vincent and the Grenadines",
2108
+ "nationality": "Saint Vincentian, Vincentian",
2109
+ "dial_code": "+1-784",
2110
+ "image": "https://flagcdn.com/w160/vc.png",
2111
+ "region": "Americas",
2112
+ "sub_region": "Latin America and the Caribbean"
2113
+ },
2114
+ {
2115
+ "num_code": "882",
2116
+ "alpha2": "WS",
2117
+ "alpha3": "WSM",
2118
+ "name": "Samoa",
2119
+ "nationality": "Samoan",
2120
+ "dial_code": "+685",
2121
+ "image": "https://flagcdn.com/w160/ws.png",
2122
+ "region": "Oceania",
2123
+ "sub_region": "Polynesia"
2124
+ },
2125
+ {
2126
+ "num_code": "674",
2127
+ "alpha2": "SM",
2128
+ "alpha3": "SMR",
2129
+ "name": "San Marino",
2130
+ "nationality": "Sammarinese",
2131
+ "dial_code": "+378",
2132
+ "image": "https://flagcdn.com/w160/sm.png",
2133
+ "region": "Europe",
2134
+ "sub_region": "Southern Europe"
2135
+ },
2136
+ {
2137
+ "num_code": "678",
2138
+ "alpha2": "ST",
2139
+ "alpha3": "STP",
2140
+ "name": "Sao Tome and Principe",
2141
+ "nationality": "São Toméan",
2142
+ "dial_code": "+239",
2143
+ "image": "https://flagcdn.com/w160/st.png",
2144
+ "region": "Africa",
2145
+ "sub_region": "Sub-Saharan Africa"
2146
+ },
2147
+ {
2148
+ "num_code": "682",
2149
+ "alpha2": "SA",
2150
+ "alpha3": "SAU",
2151
+ "name": "Saudi Arabia",
2152
+ "nationality": "Saudi, Saudi Arabian",
2153
+ "dial_code": "+966",
2154
+ "image": "https://flagcdn.com/w160/sa.png",
2155
+ "region": "Asia",
2156
+ "sub_region": "Western Asia"
2157
+ },
2158
+ {
2159
+ "num_code": "686",
2160
+ "alpha2": "SN",
2161
+ "alpha3": "SEN",
2162
+ "name": "Senegal",
2163
+ "nationality": "Senegalese",
2164
+ "dial_code": "+221",
2165
+ "image": "https://flagcdn.com/w160/sn.png",
2166
+ "region": "Africa",
2167
+ "sub_region": "Sub-Saharan Africa"
2168
+ },
2169
+ {
2170
+ "num_code": "688",
2171
+ "alpha2": "RS",
2172
+ "alpha3": "SRB",
2173
+ "name": "Serbia",
2174
+ "nationality": "Serbian",
2175
+ "dial_code": "+381",
2176
+ "image": "https://flagcdn.com/w160/rs.png",
2177
+ "region": "Europe",
2178
+ "sub_region": "Southern Europe"
2179
+ },
2180
+ {
2181
+ "num_code": "690",
2182
+ "alpha2": "SC",
2183
+ "alpha3": "SYC",
2184
+ "name": "Seychelles",
2185
+ "nationality": "Seychellois",
2186
+ "dial_code": "+248",
2187
+ "image": "https://flagcdn.com/w160/sc.png",
2188
+ "region": "Africa",
2189
+ "sub_region": "Sub-Saharan Africa"
2190
+ },
2191
+ {
2192
+ "num_code": "694",
2193
+ "alpha2": "SL",
2194
+ "alpha3": "SLE",
2195
+ "name": "Sierra Leone",
2196
+ "nationality": "Sierra Leonean",
2197
+ "dial_code": "+232",
2198
+ "image": "https://flagcdn.com/w160/sl.png",
2199
+ "region": "Africa",
2200
+ "sub_region": "Sub-Saharan Africa"
2201
+ },
2202
+ {
2203
+ "num_code": "702",
2204
+ "alpha2": "SG",
2205
+ "alpha3": "SGP",
2206
+ "name": "Singapore",
2207
+ "nationality": "Singaporean",
2208
+ "dial_code": "+65",
2209
+ "image": "https://flagcdn.com/w160/sg.png",
2210
+ "region": "Asia",
2211
+ "sub_region": "South-eastern Asia"
2212
+ },
2213
+ {
2214
+ "num_code": "534",
2215
+ "alpha2": "SX",
2216
+ "alpha3": "SXM",
2217
+ "name": "Sint Maarten (Dutch part)",
2218
+ "nationality": "Sint Maarten",
2219
+ "dial_code": "+1-721",
2220
+ "image": "https://flagcdn.com/w160/sx.png",
2221
+ "region": "Americas",
2222
+ "sub_region": "Latin America and the Caribbean"
2223
+ },
2224
+ {
2225
+ "num_code": "703",
2226
+ "alpha2": "SK",
2227
+ "alpha3": "SVK",
2228
+ "name": "Slovakia",
2229
+ "nationality": "Slovak",
2230
+ "dial_code": "+421",
2231
+ "image": "https://flagcdn.com/w160/sk.png",
2232
+ "region": "Europe",
2233
+ "sub_region": "Eastern Europe"
2234
+ },
2235
+ {
2236
+ "num_code": "705",
2237
+ "alpha2": "SI",
2238
+ "alpha3": "SVN",
2239
+ "name": "Slovenia",
2240
+ "nationality": "Slovenian, Slovene",
2241
+ "dial_code": "+386",
2242
+ "image": "https://flagcdn.com/w160/si.png",
2243
+ "region": "Europe",
2244
+ "sub_region": "Southern Europe"
2245
+ },
2246
+ {
2247
+ "num_code": "090",
2248
+ "alpha2": "SB",
2249
+ "alpha3": "SLB",
2250
+ "name": "Solomon Islands",
2251
+ "nationality": "Solomon Island",
2252
+ "dial_code": "+677",
2253
+ "image": "https://flagcdn.com/w160/sb.png",
2254
+ "region": "Oceania",
2255
+ "sub_region": "Melanesia"
2256
+ },
2257
+ {
2258
+ "num_code": "706",
2259
+ "alpha2": "SO",
2260
+ "alpha3": "SOM",
2261
+ "name": "Somalia",
2262
+ "nationality": "Somali, Somalian",
2263
+ "dial_code": "+252",
2264
+ "image": "https://flagcdn.com/w160/so.png",
2265
+ "region": "Africa",
2266
+ "sub_region": "Sub-Saharan Africa"
2267
+ },
2268
+ {
2269
+ "num_code": "710",
2270
+ "alpha2": "ZA",
2271
+ "alpha3": "ZAF",
2272
+ "name": "South Africa",
2273
+ "nationality": "South African",
2274
+ "dial_code": "+27",
2275
+ "image": "https://flagcdn.com/w160/za.png",
2276
+ "region": "Africa",
2277
+ "sub_region": "Sub-Saharan Africa"
2278
+ },
2279
+ {
2280
+ "num_code": "239",
2281
+ "alpha2": "GS",
2282
+ "alpha3": "SGS",
2283
+ "name": "South Georgia and the South Sandwich Islands",
2284
+ "nationality": "South Georgia or South Sandwich Islands",
2285
+ "dial_code": "+500",
2286
+ "image": "https://flagcdn.com/w160/gs.png",
2287
+ "region": "Americas",
2288
+ "sub_region": "Latin America and the Caribbean"
2289
+ },
2290
+ {
2291
+ "num_code": "728",
2292
+ "alpha2": "SS",
2293
+ "alpha3": "SSD",
2294
+ "name": "South Sudan",
2295
+ "nationality": "South Sudanese",
2296
+ "dial_code": "+211",
2297
+ "image": "https://flagcdn.com/w160/ss.png",
2298
+ "region": "Africa",
2299
+ "sub_region": "Sub-Saharan Africa"
2300
+ },
2301
+ {
2302
+ "num_code": "724",
2303
+ "alpha2": "ES",
2304
+ "alpha3": "ESP",
2305
+ "name": "Spain",
2306
+ "nationality": "Spanish",
2307
+ "dial_code": "+34",
2308
+ "image": "https://flagcdn.com/w160/es.png",
2309
+ "region": "Europe",
2310
+ "sub_region": "Southern Europe"
2311
+ },
2312
+ {
2313
+ "num_code": "144",
2314
+ "alpha2": "LK",
2315
+ "alpha3": "LKA",
2316
+ "name": "Sri Lanka",
2317
+ "nationality": "Sri Lankan",
2318
+ "dial_code": "+94",
2319
+ "image": "https://flagcdn.com/w160/lk.png",
2320
+ "region": "Asia",
2321
+ "sub_region": "Southern Asia"
2322
+ },
2323
+ {
2324
+ "num_code": "729",
2325
+ "alpha2": "SD",
2326
+ "alpha3": "SDN",
2327
+ "name": "Sudan",
2328
+ "nationality": "Sudanese",
2329
+ "dial_code": "+249",
2330
+ "image": "https://flagcdn.com/w160/sd.png",
2331
+ "region": "Africa",
2332
+ "sub_region": "Northern Africa"
2333
+ },
2334
+ {
2335
+ "num_code": "740",
2336
+ "alpha2": "SR",
2337
+ "alpha3": "SUR",
2338
+ "name": "Suriname",
2339
+ "nationality": "Surinamese",
2340
+ "dial_code": "+597",
2341
+ "image": "https://flagcdn.com/w160/sr.png",
2342
+ "region": "Americas",
2343
+ "sub_region": "Latin America and the Caribbean"
2344
+ },
2345
+ {
2346
+ "num_code": "744",
2347
+ "alpha2": "SJ",
2348
+ "alpha3": "SJM",
2349
+ "name": "Svalbard and Jan Mayen",
2350
+ "nationality": "Svalbard",
2351
+ "dial_code": "+47",
2352
+ "image": "https://flagcdn.com/w160/sj.png",
2353
+ "region": "Europe",
2354
+ "sub_region": "Northern Europe"
2355
+ },
2356
+ {
2357
+ "num_code": "752",
2358
+ "alpha2": "SE",
2359
+ "alpha3": "SWE",
2360
+ "name": "Sweden",
2361
+ "nationality": "Swedish",
2362
+ "dial_code": "+46",
2363
+ "image": "https://flagcdn.com/w160/se.png",
2364
+ "region": "Europe",
2365
+ "sub_region": "Northern Europe"
2366
+ },
2367
+ {
2368
+ "num_code": "756",
2369
+ "alpha2": "CH",
2370
+ "alpha3": "CHE",
2371
+ "name": "Switzerland",
2372
+ "nationality": "Swiss",
2373
+ "dial_code": "+41",
2374
+ "image": "https://flagcdn.com/w160/ch.png",
2375
+ "region": "Europe",
2376
+ "sub_region": "Western Europe"
2377
+ },
2378
+ {
2379
+ "num_code": "760",
2380
+ "alpha2": "SY",
2381
+ "alpha3": "SYR",
2382
+ "name": "Syrian Arab Republic",
2383
+ "nationality": "Syrian",
2384
+ "dial_code": "+963",
2385
+ "image": "https://flagcdn.com/w160/sy.png",
2386
+ "region": "Asia",
2387
+ "sub_region": "Western Asia"
2388
+ },
2389
+ {
2390
+ "num_code": "158",
2391
+ "alpha2": "TW",
2392
+ "alpha3": "TWN",
2393
+ "name": "Taiwan, Province of China",
2394
+ "nationality": "Chinese, Taiwanese",
2395
+ "dial_code": "+886",
2396
+ "image": "https://flagcdn.com/w160/tw.png",
2397
+ "region": null,
2398
+ "sub_region": null
2399
+ },
2400
+ {
2401
+ "num_code": "762",
2402
+ "alpha2": "TJ",
2403
+ "alpha3": "TJK",
2404
+ "name": "Tajikistan",
2405
+ "nationality": "Tajikistani",
2406
+ "dial_code": "+992",
2407
+ "image": "https://flagcdn.com/w160/tj.png",
2408
+ "region": "Asia",
2409
+ "sub_region": "Central Asia"
2410
+ },
2411
+ {
2412
+ "num_code": "834",
2413
+ "alpha2": "TZ",
2414
+ "alpha3": "TZA",
2415
+ "name": "Tanzania, United Republic of",
2416
+ "nationality": "Tanzanian",
2417
+ "dial_code": "+255",
2418
+ "image": "https://flagcdn.com/w160/tz.png",
2419
+ "region": "Africa",
2420
+ "sub_region": "Sub-Saharan Africa"
2421
+ },
2422
+ {
2423
+ "num_code": "764",
2424
+ "alpha2": "TH",
2425
+ "alpha3": "THA",
2426
+ "name": "Thailand",
2427
+ "nationality": "Thai",
2428
+ "dial_code": "+66",
2429
+ "image": "https://flagcdn.com/w160/th.png",
2430
+ "region": "Asia",
2431
+ "sub_region": "South-eastern Asia"
2432
+ },
2433
+ {
2434
+ "num_code": "626",
2435
+ "alpha2": "TL",
2436
+ "alpha3": "TLS",
2437
+ "name": "Timor-Leste",
2438
+ "nationality": "Timorese",
2439
+ "dial_code": "+670",
2440
+ "image": "https://flagcdn.com/w160/tl.png",
2441
+ "region": "Asia",
2442
+ "sub_region": "South-eastern Asia"
2443
+ },
2444
+ {
2445
+ "num_code": "768",
2446
+ "alpha2": "TG",
2447
+ "alpha3": "TGO",
2448
+ "name": "Togo",
2449
+ "nationality": "Togolese",
2450
+ "dial_code": "+228",
2451
+ "image": "https://flagcdn.com/w160/tg.png",
2452
+ "region": "Africa",
2453
+ "sub_region": "Sub-Saharan Africa"
2454
+ },
2455
+ {
2456
+ "num_code": "772",
2457
+ "alpha2": "TK",
2458
+ "alpha3": "TKL",
2459
+ "name": "Tokelau",
2460
+ "nationality": "Tokelauan",
2461
+ "dial_code": "+690",
2462
+ "image": "https://flagcdn.com/w160/tk.png",
2463
+ "region": "Oceania",
2464
+ "sub_region": "Polynesia"
2465
+ },
2466
+ {
2467
+ "num_code": "776",
2468
+ "alpha2": "TO",
2469
+ "alpha3": "TON",
2470
+ "name": "Tonga",
2471
+ "nationality": "Tongan",
2472
+ "dial_code": "+676",
2473
+ "image": "https://flagcdn.com/w160/to.png",
2474
+ "region": "Oceania",
2475
+ "sub_region": "Polynesia"
2476
+ },
2477
+ {
2478
+ "num_code": "780",
2479
+ "alpha2": "TT",
2480
+ "alpha3": "TTO",
2481
+ "name": "Trinidad and Tobago",
2482
+ "nationality": "Trinidadian or Tobagonian",
2483
+ "dial_code": "+1-868",
2484
+ "image": "https://flagcdn.com/w160/tt.png",
2485
+ "region": "Americas",
2486
+ "sub_region": "Latin America and the Caribbean"
2487
+ },
2488
+ {
2489
+ "num_code": "788",
2490
+ "alpha2": "TN",
2491
+ "alpha3": "TUN",
2492
+ "name": "Tunisia",
2493
+ "nationality": "Tunisian",
2494
+ "dial_code": "+216",
2495
+ "image": "https://flagcdn.com/w160/tn.png",
2496
+ "region": "Africa",
2497
+ "sub_region": "Northern Africa"
2498
+ },
2499
+ {
2500
+ "num_code": "792",
2501
+ "alpha2": "TR",
2502
+ "alpha3": "TUR",
2503
+ "name": "Türkiye",
2504
+ "nationality": "Turkish",
2505
+ "dial_code": "+90",
2506
+ "image": "https://flagcdn.com/w160/tr.png",
2507
+ "region": "Asia",
2508
+ "sub_region": "Western Asia"
2509
+ },
2510
+ {
2511
+ "num_code": "795",
2512
+ "alpha2": "TM",
2513
+ "alpha3": "TKM",
2514
+ "name": "Turkmenistan",
2515
+ "nationality": "Turkmen",
2516
+ "dial_code": "+993",
2517
+ "image": "https://flagcdn.com/w160/tm.png",
2518
+ "region": "Asia",
2519
+ "sub_region": "Central Asia"
2520
+ },
2521
+ {
2522
+ "num_code": "796",
2523
+ "alpha2": "TC",
2524
+ "alpha3": "TCA",
2525
+ "name": "Turks and Caicos Islands",
2526
+ "nationality": "Turks and Caicos Island",
2527
+ "dial_code": "+1-649",
2528
+ "image": "https://flagcdn.com/w160/tc.png",
2529
+ "region": "Americas",
2530
+ "sub_region": "Latin America and the Caribbean"
2531
+ },
2532
+ {
2533
+ "num_code": "798",
2534
+ "alpha2": "TV",
2535
+ "alpha3": "TUV",
2536
+ "name": "Tuvalu",
2537
+ "nationality": "Tuvaluan",
2538
+ "dial_code": "+688",
2539
+ "image": "https://flagcdn.com/w160/tv.png",
2540
+ "region": "Oceania",
2541
+ "sub_region": "Polynesia"
2542
+ },
2543
+ {
2544
+ "num_code": "800",
2545
+ "alpha2": "UG",
2546
+ "alpha3": "UGA",
2547
+ "name": "Uganda",
2548
+ "nationality": "Ugandan",
2549
+ "dial_code": "+256",
2550
+ "image": "https://flagcdn.com/w160/ug.png",
2551
+ "region": "Africa",
2552
+ "sub_region": "Sub-Saharan Africa"
2553
+ },
2554
+ {
2555
+ "num_code": "804",
2556
+ "alpha2": "UA",
2557
+ "alpha3": "UKR",
2558
+ "name": "Ukraine",
2559
+ "nationality": "Ukrainian",
2560
+ "dial_code": "+380",
2561
+ "image": "https://flagcdn.com/w160/ua.png",
2562
+ "region": "Europe",
2563
+ "sub_region": "Eastern Europe"
2564
+ },
2565
+ {
2566
+ "num_code": "784",
2567
+ "alpha2": "AE",
2568
+ "alpha3": "ARE",
2569
+ "name": "United Arab Emirates",
2570
+ "nationality": "Emirati, Emirian, Emiri",
2571
+ "dial_code": "+971",
2572
+ "image": "https://flagcdn.com/w160/ae.png",
2573
+ "region": "Asia",
2574
+ "sub_region": "Western Asia"
2575
+ },
2576
+ {
2577
+ "num_code": "826",
2578
+ "alpha2": "GB",
2579
+ "alpha3": "GBR",
2580
+ "name": "United Kingdom of Great Britain and Northern Ireland",
2581
+ "nationality": "British, UK",
2582
+ "dial_code": "+44",
2583
+ "image": "https://flagcdn.com/w160/gb.png",
2584
+ "region": "Europe",
2585
+ "sub_region": "Northern Europe"
2586
+ },
2587
+ {
2588
+ "num_code": "840",
2589
+ "alpha2": "US",
2590
+ "alpha3": "USA",
2591
+ "name": "United States of America",
2592
+ "nationality": "American",
2593
+ "dial_code": "+1",
2594
+ "image": "https://flagcdn.com/w160/us.png",
2595
+ "region": "Americas",
2596
+ "sub_region": "Northern America"
2597
+ },
2598
+ {
2599
+ "num_code": "581",
2600
+ "alpha2": "UM",
2601
+ "alpha3": "UMI",
2602
+ "name": "United States Minor Outlying Islands",
2603
+ "nationality": "American",
2604
+ "dial_code": "+1",
2605
+ "image": "https://flagcdn.com/w160/um.png",
2606
+ "region": "Oceania",
2607
+ "sub_region": "Micronesia"
2608
+ },
2609
+ {
2610
+ "num_code": "858",
2611
+ "alpha2": "UY",
2612
+ "alpha3": "URY",
2613
+ "name": "Uruguay",
2614
+ "nationality": "Uruguayan",
2615
+ "dial_code": "+598",
2616
+ "image": "https://flagcdn.com/w160/uy.png",
2617
+ "region": "Americas",
2618
+ "sub_region": "Latin America and the Caribbean"
2619
+ },
2620
+ {
2621
+ "num_code": "860",
2622
+ "alpha2": "UZ",
2623
+ "alpha3": "UZB",
2624
+ "name": "Uzbekistan",
2625
+ "nationality": "Uzbekistani, Uzbek",
2626
+ "dial_code": "+998",
2627
+ "image": "https://flagcdn.com/w160/uz.png",
2628
+ "region": "Asia",
2629
+ "sub_region": "Central Asia"
2630
+ },
2631
+ {
2632
+ "num_code": "548",
2633
+ "alpha2": "VU",
2634
+ "alpha3": "VUT",
2635
+ "name": "Vanuatu",
2636
+ "nationality": "Ni-Vanuatu, Vanuatuan",
2637
+ "dial_code": "+678",
2638
+ "image": "https://flagcdn.com/w160/vu.png",
2639
+ "region": "Oceania",
2640
+ "sub_region": "Melanesia"
2641
+ },
2642
+ {
2643
+ "num_code": "862",
2644
+ "alpha2": "VE",
2645
+ "alpha3": "VEN",
2646
+ "name": "Venezuela, Bolivarian Republic of",
2647
+ "nationality": "Venezuelan",
2648
+ "dial_code": "+58",
2649
+ "image": "https://flagcdn.com/w160/ve.png",
2650
+ "region": "Americas",
2651
+ "sub_region": "Latin America and the Caribbean"
2652
+ },
2653
+ {
2654
+ "num_code": "704",
2655
+ "alpha2": "VN",
2656
+ "alpha3": "VNM",
2657
+ "name": "Viet Nam",
2658
+ "nationality": "Vietnamese",
2659
+ "dial_code": "+84",
2660
+ "image": "https://flagcdn.com/w160/vn.png",
2661
+ "region": "Asia",
2662
+ "sub_region": "South-eastern Asia"
2663
+ },
2664
+ {
2665
+ "num_code": "092",
2666
+ "alpha2": "VG",
2667
+ "alpha3": "VGB",
2668
+ "name": "Virgin Islands (British)",
2669
+ "nationality": "British Virgin Island",
2670
+ "dial_code": "+1-284",
2671
+ "image": "https://flagcdn.com/w160/vg.png",
2672
+ "region": "Americas",
2673
+ "sub_region": "Latin America and the Caribbean"
2674
+ },
2675
+ {
2676
+ "num_code": "850",
2677
+ "alpha2": "VI",
2678
+ "alpha3": "VIR",
2679
+ "name": "Virgin Islands (U.S.)",
2680
+ "nationality": "U.S. Virgin Island",
2681
+ "dial_code": "+1-340",
2682
+ "image": "https://flagcdn.com/w160/vi.png",
2683
+ "region": "Americas",
2684
+ "sub_region": "Latin America and the Caribbean"
2685
+ },
2686
+ {
2687
+ "num_code": "876",
2688
+ "alpha2": "WF",
2689
+ "alpha3": "WLF",
2690
+ "name": "Wallis and Futuna",
2691
+ "nationality": "Wallis and Futuna, Wallisian or Futunan",
2692
+ "dial_code": "+681",
2693
+ "image": "https://flagcdn.com/w160/wf.png",
2694
+ "region": "Oceania",
2695
+ "sub_region": "Polynesia"
2696
+ },
2697
+ {
2698
+ "num_code": "732",
2699
+ "alpha2": "EH",
2700
+ "alpha3": "ESH",
2701
+ "name": "Western Sahara",
2702
+ "nationality": "Sahrawi, Sahrawian, Sahraouian",
2703
+ "dial_code": "+212",
2704
+ "image": "https://flagcdn.com/w160/eh.png",
2705
+ "region": "Africa",
2706
+ "sub_region": "Northern Africa"
2707
+ },
2708
+ {
2709
+ "num_code": "887",
2710
+ "alpha2": "YE",
2711
+ "alpha3": "YEM",
2712
+ "name": "Yemen",
2713
+ "nationality": "Yemeni",
2714
+ "dial_code": "+967",
2715
+ "image": "https://flagcdn.com/w160/ye.png",
2716
+ "region": "Asia",
2717
+ "sub_region": "Western Asia"
2718
+ },
2719
+ {
2720
+ "num_code": "894",
2721
+ "alpha2": "ZM",
2722
+ "alpha3": "ZMB",
2723
+ "name": "Zambia",
2724
+ "nationality": "Zambian",
2725
+ "dial_code": "+260",
2726
+ "image": "https://flagcdn.com/w160/zm.png",
2727
+ "region": "Africa",
2728
+ "sub_region": "Sub-Saharan Africa"
2729
+ },
2730
+ {
2731
+ "num_code": "716",
2732
+ "alpha2": "ZW",
2733
+ "alpha3": "ZWE",
2734
+ "name": "Zimbabwe",
2735
+ "nationality": "Zimbabwean",
2736
+ "dial_code": "+263",
2737
+ "image": "https://flagcdn.com/w160/zw.png",
2738
+ "region": "Africa",
2739
+ "sub_region": "Sub-Saharan Africa"
1001
2740
  }
1002
- ]
2741
+ ]