ahoy_captain 0.83 โ†’ 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -13
  3. data/Rakefile +23 -2
  4. data/app/assets/javascript/ahoy_captain/controllers/application_controller.js +20 -0
  5. data/app/assets/javascript/ahoy_captain/controllers/combobox_controller.js +371 -0
  6. data/app/assets/javascript/ahoy_captain/controllers/filter/item_controller.js +12 -0
  7. data/app/assets/javascript/ahoy_captain/controllers/filter_modal_controller.js +45 -0
  8. data/app/assets/javascript/ahoy_captain/controllers/frame_link_controller.js +20 -0
  9. data/app/assets/javascript/ahoy_captain/controllers/funnel_chart_controller.js +58 -16
  10. data/app/assets/javascript/ahoy_captain/controllers/interval_controller.js +5 -0
  11. data/app/assets/javascript/ahoy_captain/controllers/line_chart_controller.js +236 -22
  12. data/app/assets/javascript/ahoy_captain/controllers/map_controller.js +47 -0
  13. data/app/assets/javascript/ahoy_captain/controllers/predicate_select_controller.js +1 -1
  14. data/app/assets/javascript/ahoy_captain/controllers/properties_controller.js +8 -0
  15. data/app/assets/javascript/ahoy_captain/controllers/property_filter_controller.js +45 -0
  16. data/app/assets/javascript/ahoy_captain/controllers/realtime_controller.js +4 -2
  17. data/app/assets/javascript/ahoy_captain/controllers/tile_controller.js +33 -0
  18. data/app/assets/javascript/ahoy_captain/controllers/toggle_controller.js +17 -0
  19. data/app/assets/javascript/ahoy_captain/helpers/chart_utils.js +156 -0
  20. data/app/assets/javascript/ahoy_captain/helpers/countries.js +2261 -0
  21. data/app/assets/javascript/ahoy_captain/helpers/number_formatters.js +55 -0
  22. data/app/components/ahoy_captain/combobox_component.html.erb +33 -0
  23. data/app/components/ahoy_captain/combobox_component.rb +13 -0
  24. data/app/components/ahoy_captain/comparison_link_component.html.erb +17 -0
  25. data/app/components/ahoy_captain/comparison_link_component.rb +44 -0
  26. data/app/components/ahoy_captain/dropdown_button_component.html.erb +5 -5
  27. data/app/components/ahoy_captain/dropdown_link_component.html.erb +5 -7
  28. data/app/components/ahoy_captain/dropdown_link_component.rb +4 -0
  29. data/app/components/ahoy_captain/filter/dropdown_component.html.erb +50 -0
  30. data/app/components/ahoy_captain/filter/dropdown_component.rb +51 -0
  31. data/app/components/ahoy_captain/filter/modal_component.html.erb +7 -5
  32. data/app/components/ahoy_captain/filter/select_component.html.erb +23 -21
  33. data/app/components/ahoy_captain/filter/select_component.rb +24 -9
  34. data/app/components/ahoy_captain/filter/tag_component.html.erb +8 -4
  35. data/app/components/ahoy_captain/filter/tag_component.rb +6 -30
  36. data/app/components/ahoy_captain/filter/tag_container_component.html.erb +2 -3
  37. data/app/components/ahoy_captain/filter/tag_container_component.rb +1 -8
  38. data/app/components/ahoy_captain/previous_next_component.html.erb +8 -0
  39. data/app/components/ahoy_captain/previous_next_component.rb +11 -0
  40. data/app/components/ahoy_captain/stats/comparable_container_component.html.erb +25 -0
  41. data/app/components/ahoy_captain/stats/comparable_container_component.rb +86 -0
  42. data/app/components/ahoy_captain/stats/container_component.html.erb +15 -0
  43. data/app/components/ahoy_captain/stats/container_component.rb +26 -0
  44. data/app/components/ahoy_captain/sticky_nav_component.html.erb +28 -33
  45. data/app/components/ahoy_captain/sticky_nav_component.rb +19 -0
  46. data/app/components/ahoy_captain/table_component.html.erb +2 -2
  47. data/app/components/ahoy_captain/table_component.rb +15 -3
  48. data/app/components/ahoy_captain/tables/devices_table_component.rb +11 -0
  49. data/app/components/ahoy_captain/tables/dynamic_table.rb +13 -0
  50. data/app/components/ahoy_captain/tables/dynamic_table_component.rb +204 -0
  51. data/app/components/ahoy_captain/tables/goals_table_component.rb +17 -0
  52. data/app/components/ahoy_captain/tables/header_component.html.erb +5 -0
  53. data/app/components/ahoy_captain/tables/header_component.rb +18 -0
  54. data/app/components/ahoy_captain/tables/headers/header_component.html.erb +1 -1
  55. data/app/components/ahoy_captain/tables/headers/header_component.rb +4 -0
  56. data/app/components/ahoy_captain/tables/properties_table_component.rb +27 -0
  57. data/app/components/ahoy_captain/tables/row_component.html.erb +4 -0
  58. data/app/components/ahoy_captain/tables/rows/row_component.rb +2 -3
  59. data/app/components/ahoy_captain/tile_component.html.erb +21 -10
  60. data/app/components/ahoy_captain/tile_component.rb +10 -2
  61. data/app/components/ahoy_captain/tooltip_component.html.erb +2 -2
  62. data/app/controllers/ahoy_captain/application_controller.rb +7 -16
  63. data/app/controllers/ahoy_captain/exports_controller.rb +1 -2
  64. data/app/controllers/ahoy_captain/filters/base_controller.rb +1 -3
  65. data/app/controllers/ahoy_captain/filters/goals_controller.rb +9 -0
  66. data/app/controllers/ahoy_captain/filters/pages/actions_controller.rb +1 -1
  67. data/app/controllers/ahoy_captain/filters/pages/entry_pages_controller.rb +1 -1
  68. data/app/controllers/ahoy_captain/filters/pages/exit_pages_controller.rb +1 -1
  69. data/app/controllers/ahoy_captain/filters/properties/values_controller.rb +4 -4
  70. data/app/controllers/ahoy_captain/filters/sources_controller.rb +1 -1
  71. data/app/controllers/ahoy_captain/filters/utms_controller.rb +1 -1
  72. data/app/controllers/ahoy_captain/locations/cities_controller.rb +22 -0
  73. data/app/controllers/ahoy_captain/locations/countries_controller.rb +22 -0
  74. data/app/controllers/ahoy_captain/locations/maps_controller.rb +24 -0
  75. data/app/controllers/ahoy_captain/locations/regions_controller.rb +22 -0
  76. data/app/controllers/ahoy_captain/properties_controller.rb +41 -0
  77. data/app/controllers/ahoy_captain/stats/base_controller.rb +86 -5
  78. data/app/controllers/ahoy_captain/stats/bounce_rates_controller.rb +1 -1
  79. data/app/controllers/ahoy_captain/stats/total_pageviews_controller.rb +1 -1
  80. data/app/controllers/ahoy_captain/stats/total_visits_controller.rb +1 -1
  81. data/app/controllers/ahoy_captain/stats/unique_visitors_controller.rb +2 -1
  82. data/app/controllers/ahoy_captain/stats/views_per_visits_controller.rb +1 -10
  83. data/app/controllers/ahoy_captain/stats/visit_durations_controller.rb +1 -1
  84. data/app/helpers/ahoy_captain/application_helper.rb +60 -3
  85. data/app/models/ahoy_captain/comparison_mode.rb +72 -0
  86. data/app/models/ahoy_captain/filter_parser.rb +82 -0
  87. data/app/models/ahoy_captain/range_from_params.rb +78 -0
  88. data/app/models/ahoy_captain/rangeable.rb +0 -3
  89. data/app/models/concerns/ahoy_captain/compare_mode.rb +19 -0
  90. data/app/models/concerns/ahoy_captain/limitable.rb +17 -0
  91. data/app/models/concerns/ahoy_captain/range_options.rb +1 -14
  92. data/app/presenters/ahoy_captain/dashboard_presenter.rb +18 -54
  93. data/app/presenters/ahoy_captain/goals_presenter.rb +3 -2
  94. data/app/queries/ahoy_captain/application_query.rb +74 -10
  95. data/app/queries/ahoy_captain/event_query.rb +7 -2
  96. data/app/queries/ahoy_captain/stats/average_views_per_visit_query.rb +11 -4
  97. data/app/queries/ahoy_captain/stats/average_visit_duration_query.rb +14 -2
  98. data/app/queries/ahoy_captain/stats/base_query.rb +18 -0
  99. data/app/queries/ahoy_captain/stats/bounce_rates_query.rb +15 -1
  100. data/app/queries/ahoy_captain/stats/total_pageviews_query.rb +2 -2
  101. data/app/queries/ahoy_captain/stats/total_visitors_query.rb +1 -1
  102. data/app/queries/ahoy_captain/stats/unique_visitors_query.rb +1 -1
  103. data/app/queries/ahoy_captain/stats/views_per_visit_query.rb +1 -1
  104. data/app/queries/ahoy_captain/stats/visit_duration_query.rb +3 -3
  105. data/app/queries/ahoy_captain/visit_query.rb +1 -2
  106. data/app/queries/concerns/ahoy_captain/comparable_queries.rb +25 -0
  107. data/app/queries/concerns/ahoy_captain/comparable_query.rb +138 -0
  108. data/app/queries/concerns/ahoy_captain/lazy_comparable_query.rb +42 -0
  109. data/app/views/ahoy_captain/devices/_table.html.erb +1 -4
  110. data/app/views/ahoy_captain/funnels/show.html.erb +5 -2
  111. data/app/views/ahoy_captain/goals/index.html.erb +1 -4
  112. data/app/views/ahoy_captain/layouts/application.html.erb +3 -4
  113. data/app/views/ahoy_captain/layouts/shared/_tile_loader.html.erb +12 -0
  114. data/app/views/ahoy_captain/locations/maps/show.html.erb +3 -0
  115. data/app/views/ahoy_captain/properties/_form.html.erb +6 -0
  116. data/app/views/ahoy_captain/properties/index.html.erb +3 -0
  117. data/app/views/ahoy_captain/properties/show.html.erb +6 -0
  118. data/app/views/ahoy_captain/realtimes/show.html.erb +1 -1
  119. data/app/views/ahoy_captain/roots/_filters.html.erb +80 -0
  120. data/app/views/ahoy_captain/roots/show.html.erb +113 -122
  121. data/app/views/ahoy_captain/stats/base/index.html.erb +37 -8
  122. data/app/views/ahoy_captain/stats/show.html.erb +14 -56
  123. data/config/routes.rb +9 -3
  124. data/lib/ahoy_captain/ahoy/event_methods.rb +21 -14
  125. data/lib/ahoy_captain/ahoy/visit_methods.rb +1 -1
  126. data/lib/ahoy_captain/configuration.rb +18 -7
  127. data/lib/ahoy_captain/engine.rb +21 -0
  128. data/lib/ahoy_captain/filter_configuration/filter.rb +16 -0
  129. data/lib/ahoy_captain/filter_configuration/filter_collection.rb +48 -0
  130. data/lib/ahoy_captain/filters_configuration.rb +77 -0
  131. data/lib/ahoy_captain/goals.rb +1 -1
  132. data/lib/ahoy_captain/predicate_label.rb +7 -0
  133. data/lib/ahoy_captain/version.rb +1 -1
  134. data/lib/ahoy_captain.rb +8 -1
  135. data/lib/generators/ahoy_captain/templates/config.rb.tt +32 -0
  136. metadata +149 -22
  137. data/app/assets/javascript/ahoy_captain/controllers/active_links_controller.js +0 -15
  138. data/app/assets/javascript/ahoy_captain/controllers/filter_tag_controller.js +0 -20
  139. data/app/assets/javascript/ahoy_captain/controllers/search_select_controller.js +0 -65
  140. data/app/components/ahoy_captain/tables/headers/devices_header_component.html.erb +0 -3
  141. data/app/components/ahoy_captain/tables/headers/devices_header_component.rb +0 -9
  142. data/app/components/ahoy_captain/tables/headers/goals_header_component.html.erb +0 -6
  143. data/app/components/ahoy_captain/tables/headers/goals_header_component.rb +0 -9
  144. data/app/components/ahoy_captain/tables/rows/devices_row_component.html.erb +0 -5
  145. data/app/components/ahoy_captain/tables/rows/devices_row_component.rb +0 -12
  146. data/app/components/ahoy_captain/tables/rows/goals_row_component.html.erb +0 -11
  147. data/app/components/ahoy_captain/tables/rows/goals_row_component.rb +0 -12
  148. data/app/controllers/ahoy_captain/cities_controller.rb +0 -20
  149. data/app/controllers/ahoy_captain/countries_controller.rb +0 -20
  150. data/app/controllers/ahoy_captain/regions_controller.rb +0 -20
  151. /data/app/views/ahoy_captain/{cities โ†’ locations/cities}/index.html+details.erb +0 -0
  152. /data/app/views/ahoy_captain/{cities โ†’ locations/cities}/index.html.erb +0 -0
  153. /data/app/views/ahoy_captain/{countries โ†’ locations/countries}/index.html+details.erb +0 -0
  154. /data/app/views/ahoy_captain/{countries โ†’ locations/countries}/index.html.erb +0 -0
  155. /data/app/views/ahoy_captain/{regions โ†’ locations/regions}/index.html+details.erb +0 -0
  156. /data/app/views/ahoy_captain/{regions โ†’ locations/regions}/index.html.erb +0 -0
@@ -0,0 +1,2261 @@
1
+ export default {
2
+ "AF": {
3
+ "Country": "Afghanistan",
4
+ "Alpha-2 code": "AF",
5
+ "Alpha-3 code": "AFG",
6
+ "Numeric code": 4,
7
+ "Latitude (average)": 33,
8
+ "Longitude (average)": 65,
9
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ซ"
10
+ },
11
+ "AL": {
12
+ "Country": "Albania",
13
+ "Alpha-2 code": "AL",
14
+ "Alpha-3 code": "ALB",
15
+ "Numeric code": 8,
16
+ "Latitude (average)": 41,
17
+ "Longitude (average)": 20,
18
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฑ"
19
+ },
20
+ "DZ": {
21
+ "Country": "Algeria",
22
+ "Alpha-2 code": "DZ",
23
+ "Alpha-3 code": "DZA",
24
+ "Numeric code": 12,
25
+ "Latitude (average)": 28,
26
+ "Longitude (average)": 3,
27
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ฟ"
28
+ },
29
+ "AS": {
30
+ "Country": "American Samoa",
31
+ "Alpha-2 code": "AS",
32
+ "Alpha-3 code": "ASM",
33
+ "Numeric code": 16,
34
+ "Latitude (average)": -14.3333,
35
+ "Longitude (average)": -170,
36
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ธ"
37
+ },
38
+ "AD": {
39
+ "Country": "Andorra",
40
+ "Alpha-2 code": "AD",
41
+ "Alpha-3 code": "AND",
42
+ "Numeric code": 20,
43
+ "Latitude (average)": 42.5,
44
+ "Longitude (average)": 1.6,
45
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฉ"
46
+ },
47
+ "AO": {
48
+ "Country": "Angola",
49
+ "Alpha-2 code": "AO",
50
+ "Alpha-3 code": "AGO",
51
+ "Numeric code": 24,
52
+ "Latitude (average)": -12.5,
53
+ "Longitude (average)": 18.5,
54
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ด"
55
+ },
56
+ "AI": {
57
+ "Country": "Anguilla",
58
+ "Alpha-2 code": "AI",
59
+ "Alpha-3 code": "AIA",
60
+ "Numeric code": 660,
61
+ "Latitude (average)": 18.25,
62
+ "Longitude (average)": -63.1667,
63
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฎ"
64
+ },
65
+ "AQ": {
66
+ "Country": "Antarctica",
67
+ "Alpha-2 code": "AQ",
68
+ "Alpha-3 code": "ATA",
69
+ "Numeric code": 10,
70
+ "Latitude (average)": -90,
71
+ "Longitude (average)": 0,
72
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ถ"
73
+ },
74
+ "AG": {
75
+ "Country": "Antigua and Barbuda",
76
+ "Alpha-2 code": "AG",
77
+ "Alpha-3 code": "ATG",
78
+ "Numeric code": 28,
79
+ "Latitude (average)": 17.05,
80
+ "Longitude (average)": -61.8,
81
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฌ"
82
+ },
83
+ "AR": {
84
+ "Country": "Argentina",
85
+ "Alpha-2 code": "AR",
86
+ "Alpha-3 code": "ARG",
87
+ "Numeric code": 32,
88
+ "Latitude (average)": -34,
89
+ "Longitude (average)": -64,
90
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ท"
91
+ },
92
+ "AM": {
93
+ "Country": "Armenia",
94
+ "Alpha-2 code": "AM",
95
+ "Alpha-3 code": "ARM",
96
+ "Numeric code": 51,
97
+ "Latitude (average)": 40,
98
+ "Longitude (average)": 45,
99
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฒ"
100
+ },
101
+ "AW": {
102
+ "Country": "Aruba",
103
+ "Alpha-2 code": "AW",
104
+ "Alpha-3 code": "ABW",
105
+ "Numeric code": 533,
106
+ "Latitude (average)": 12.5,
107
+ "Longitude (average)": -69.9667,
108
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ผ"
109
+ },
110
+ "AU": {
111
+ "Country": "Australia",
112
+ "Alpha-2 code": "AU",
113
+ "Alpha-3 code": "AUS",
114
+ "Numeric code": 36,
115
+ "Latitude (average)": -27,
116
+ "Longitude (average)": 133,
117
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡บ"
118
+ },
119
+ "AT": {
120
+ "Country": "Austria",
121
+ "Alpha-2 code": "AT",
122
+ "Alpha-3 code": "AUT",
123
+ "Numeric code": 40,
124
+ "Latitude (average)": 47.3333,
125
+ "Longitude (average)": 13.3333,
126
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡น"
127
+ },
128
+ "AZ": {
129
+ "Country": "Azerbaijan",
130
+ "Alpha-2 code": "AZ",
131
+ "Alpha-3 code": "AZE",
132
+ "Numeric code": 31,
133
+ "Latitude (average)": 40.5,
134
+ "Longitude (average)": 47.5,
135
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฟ"
136
+ },
137
+ "BS": {
138
+ "Country": "Bahamas",
139
+ "Alpha-2 code": "BS",
140
+ "Alpha-3 code": "BHS",
141
+ "Numeric code": 44,
142
+ "Latitude (average)": 24.25,
143
+ "Longitude (average)": -76,
144
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ธ"
145
+ },
146
+ "BH": {
147
+ "Country": "Bahrain",
148
+ "Alpha-2 code": "BH",
149
+ "Alpha-3 code": "BHR",
150
+ "Numeric code": 48,
151
+ "Latitude (average)": 26,
152
+ "Longitude (average)": 50.55,
153
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ญ"
154
+ },
155
+ "BD": {
156
+ "Country": "Bangladesh",
157
+ "Alpha-2 code": "BD",
158
+ "Alpha-3 code": "BGD",
159
+ "Numeric code": 50,
160
+ "Latitude (average)": 24,
161
+ "Longitude (average)": 90,
162
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฉ"
163
+ },
164
+ "BB": {
165
+ "Country": "Barbados",
166
+ "Alpha-2 code": "BB",
167
+ "Alpha-3 code": "BRB",
168
+ "Numeric code": 52,
169
+ "Latitude (average)": 13.1667,
170
+ "Longitude (average)": -59.5333,
171
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ง"
172
+ },
173
+ "BY": {
174
+ "Country": "Belarus",
175
+ "Alpha-2 code": "BY",
176
+ "Alpha-3 code": "BLR",
177
+ "Numeric code": 112,
178
+ "Latitude (average)": 53,
179
+ "Longitude (average)": 28,
180
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡พ"
181
+ },
182
+ "BE": {
183
+ "Country": "Belgium",
184
+ "Alpha-2 code": "BE",
185
+ "Alpha-3 code": "BEL",
186
+ "Numeric code": 56,
187
+ "Latitude (average)": 50.8333,
188
+ "Longitude (average)": 4,
189
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ช"
190
+ },
191
+ "BZ": {
192
+ "Country": "Belize",
193
+ "Alpha-2 code": "BZ",
194
+ "Alpha-3 code": "BLZ",
195
+ "Numeric code": 84,
196
+ "Latitude (average)": 17.25,
197
+ "Longitude (average)": -88.75,
198
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฟ"
199
+ },
200
+ "BJ": {
201
+ "Country": "Benin",
202
+ "Alpha-2 code": "BJ",
203
+ "Alpha-3 code": "BEN",
204
+ "Numeric code": 204,
205
+ "Latitude (average)": 9.5,
206
+ "Longitude (average)": 2.25,
207
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฏ"
208
+ },
209
+ "BM": {
210
+ "Country": "Bermuda",
211
+ "Alpha-2 code": "BM",
212
+ "Alpha-3 code": "BMU",
213
+ "Numeric code": 60,
214
+ "Latitude (average)": 32.3333,
215
+ "Longitude (average)": -64.75,
216
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฒ"
217
+ },
218
+ "BT": {
219
+ "Country": "Bhutan",
220
+ "Alpha-2 code": "BT",
221
+ "Alpha-3 code": "BTN",
222
+ "Numeric code": 64,
223
+ "Latitude (average)": 27.5,
224
+ "Longitude (average)": 90.5,
225
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡น"
226
+ },
227
+ "BO": {
228
+ "Country": "Bolivia",
229
+ "Alpha-2 code": "BO",
230
+ "Alpha-3 code": "BOL",
231
+ "Numeric code": 68,
232
+ "Latitude (average)": -17,
233
+ "Longitude (average)": -65,
234
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ด"
235
+ },
236
+ "BA": {
237
+ "Country": "Bosnia and Herzegovina",
238
+ "Alpha-2 code": "BA",
239
+ "Alpha-3 code": "BIH",
240
+ "Numeric code": 70,
241
+ "Latitude (average)": 44,
242
+ "Longitude (average)": 18,
243
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฆ"
244
+ },
245
+ "BW": {
246
+ "Country": "Botswana",
247
+ "Alpha-2 code": "BW",
248
+ "Alpha-3 code": "BWA",
249
+ "Numeric code": 72,
250
+ "Latitude (average)": -22,
251
+ "Longitude (average)": 24,
252
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ผ"
253
+ },
254
+ "BV": {
255
+ "Country": "Bouvet Island",
256
+ "Alpha-2 code": "BV",
257
+ "Alpha-3 code": "BVT",
258
+ "Numeric code": 74,
259
+ "Latitude (average)": -54.4333,
260
+ "Longitude (average)": 3.4,
261
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ป"
262
+ },
263
+ "BR": {
264
+ "Country": "Brazil",
265
+ "Alpha-2 code": "BR",
266
+ "Alpha-3 code": "BRA",
267
+ "Numeric code": 76,
268
+ "Latitude (average)": -10,
269
+ "Longitude (average)": -55,
270
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ท"
271
+ },
272
+ "IO": {
273
+ "Country": "British Indian Ocean Territory",
274
+ "Alpha-2 code": "IO",
275
+ "Alpha-3 code": "IOT",
276
+ "Numeric code": 86,
277
+ "Latitude (average)": -6,
278
+ "Longitude (average)": 71.5,
279
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ด"
280
+ },
281
+ "BN": {
282
+ "Country": "Brunei",
283
+ "Alpha-2 code": "BN",
284
+ "Alpha-3 code": "BRN",
285
+ "Numeric code": 96,
286
+ "Latitude (average)": 4.5,
287
+ "Longitude (average)": 114.6667,
288
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ณ"
289
+ },
290
+ "BG": {
291
+ "Country": "Bulgaria",
292
+ "Alpha-2 code": "BG",
293
+ "Alpha-3 code": "BGR",
294
+ "Numeric code": 100,
295
+ "Latitude (average)": 43,
296
+ "Longitude (average)": 25,
297
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฌ"
298
+ },
299
+ "BF": {
300
+ "Country": "Burkina Faso",
301
+ "Alpha-2 code": "BF",
302
+ "Alpha-3 code": "BFA",
303
+ "Numeric code": 854,
304
+ "Latitude (average)": 13,
305
+ "Longitude (average)": -2,
306
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ซ"
307
+ },
308
+ "BI": {
309
+ "Country": "Burundi",
310
+ "Alpha-2 code": "BI",
311
+ "Alpha-3 code": "BDI",
312
+ "Numeric code": 108,
313
+ "Latitude (average)": -3.5,
314
+ "Longitude (average)": 30,
315
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฎ"
316
+ },
317
+ "KH": {
318
+ "Country": "Cambodia",
319
+ "Alpha-2 code": "KH",
320
+ "Alpha-3 code": "KHM",
321
+ "Numeric code": 116,
322
+ "Latitude (average)": 13,
323
+ "Longitude (average)": 105,
324
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ญ"
325
+ },
326
+ "CM": {
327
+ "Country": "Cameroon",
328
+ "Alpha-2 code": "CM",
329
+ "Alpha-3 code": "CMR",
330
+ "Numeric code": 120,
331
+ "Latitude (average)": 6,
332
+ "Longitude (average)": 12,
333
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฒ"
334
+ },
335
+ "CA": {
336
+ "Country": "Canada",
337
+ "Alpha-2 code": "CA",
338
+ "Alpha-3 code": "CAN",
339
+ "Numeric code": 124,
340
+ "Latitude (average)": 60,
341
+ "Longitude (average)": -95,
342
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฆ"
343
+ },
344
+ "CV": {
345
+ "Country": "Cape Verde",
346
+ "Alpha-2 code": "CV",
347
+ "Alpha-3 code": "CPV",
348
+ "Numeric code": 132,
349
+ "Latitude (average)": 16,
350
+ "Longitude (average)": -24,
351
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ป"
352
+ },
353
+ "KY": {
354
+ "Country": "Cayman Islands",
355
+ "Alpha-2 code": "KY",
356
+ "Alpha-3 code": "CYM",
357
+ "Numeric code": 136,
358
+ "Latitude (average)": 19.5,
359
+ "Longitude (average)": -80.5,
360
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡พ"
361
+ },
362
+ "CF": {
363
+ "Country": "Central African Republic",
364
+ "Alpha-2 code": "CF",
365
+ "Alpha-3 code": "CAF",
366
+ "Numeric code": 140,
367
+ "Latitude (average)": 7,
368
+ "Longitude (average)": 21,
369
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ซ"
370
+ },
371
+ "TD": {
372
+ "Country": "Chad",
373
+ "Alpha-2 code": "TD",
374
+ "Alpha-3 code": "TCD",
375
+ "Numeric code": 148,
376
+ "Latitude (average)": 15,
377
+ "Longitude (average)": 19,
378
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฉ"
379
+ },
380
+ "CL": {
381
+ "Country": "Chile",
382
+ "Alpha-2 code": "CL",
383
+ "Alpha-3 code": "CHL",
384
+ "Numeric code": 152,
385
+ "Latitude (average)": -30,
386
+ "Longitude (average)": -71,
387
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฑ"
388
+ },
389
+ "CN": {
390
+ "Country": "China",
391
+ "Alpha-2 code": "CN",
392
+ "Alpha-3 code": "CHN",
393
+ "Numeric code": 156,
394
+ "Latitude (average)": 35,
395
+ "Longitude (average)": 105,
396
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ณ"
397
+ },
398
+ "CX": {
399
+ "Country": "Christmas Island",
400
+ "Alpha-2 code": "CX",
401
+ "Alpha-3 code": "CXR",
402
+ "Numeric code": 162,
403
+ "Latitude (average)": -10.5,
404
+ "Longitude (average)": 105.6667,
405
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฝ"
406
+ },
407
+ "CC": {
408
+ "Country": "Cocos (Keeling) Islands",
409
+ "Alpha-2 code": "CC",
410
+ "Alpha-3 code": "CCK",
411
+ "Numeric code": 166,
412
+ "Latitude (average)": -12.5,
413
+ "Longitude (average)": 96.8333,
414
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡จ"
415
+ },
416
+ "CO": {
417
+ "Country": "Colombia",
418
+ "Alpha-2 code": "CO",
419
+ "Alpha-3 code": "COL",
420
+ "Numeric code": 170,
421
+ "Latitude (average)": 4,
422
+ "Longitude (average)": -72,
423
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ด"
424
+ },
425
+ "KM": {
426
+ "Country": "Comoros",
427
+ "Alpha-2 code": "KM",
428
+ "Alpha-3 code": "COM",
429
+ "Numeric code": 174,
430
+ "Latitude (average)": -12.1667,
431
+ "Longitude (average)": 44.25,
432
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ฒ"
433
+ },
434
+ "CG": {
435
+ "Country": "Congo",
436
+ "Alpha-2 code": "CG",
437
+ "Alpha-3 code": "COG",
438
+ "Numeric code": 178,
439
+ "Latitude (average)": -1,
440
+ "Longitude (average)": 15,
441
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฌ"
442
+ },
443
+ "CD": {
444
+ "Country": "Congo, the Democratic Republic of the",
445
+ "Alpha-2 code": "CD",
446
+ "Alpha-3 code": "COD",
447
+ "Numeric code": 180,
448
+ "Latitude (average)": 0,
449
+ "Longitude (average)": 25,
450
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฉ"
451
+ },
452
+ "CK": {
453
+ "Country": "Cook Islands",
454
+ "Alpha-2 code": "CK",
455
+ "Alpha-3 code": "COK",
456
+ "Numeric code": 184,
457
+ "Latitude (average)": -21.2333,
458
+ "Longitude (average)": -159.7667,
459
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฐ"
460
+ },
461
+ "CR": {
462
+ "Country": "Costa Rica",
463
+ "Alpha-2 code": "CR",
464
+ "Alpha-3 code": "CRI",
465
+ "Numeric code": 188,
466
+ "Latitude (average)": 10,
467
+ "Longitude (average)": -84,
468
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ท"
469
+ },
470
+ "CI": {
471
+ "Country": "Ivory Coast",
472
+ "Alpha-2 code": "CI",
473
+ "Alpha-3 code": "CIV",
474
+ "Numeric code": 384,
475
+ "Latitude (average)": 8,
476
+ "Longitude (average)": -5,
477
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฎ"
478
+ },
479
+ "HR": {
480
+ "Country": "Croatia",
481
+ "Alpha-2 code": "HR",
482
+ "Alpha-3 code": "HRV",
483
+ "Numeric code": 191,
484
+ "Latitude (average)": 45.1667,
485
+ "Longitude (average)": 15.5,
486
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡ท"
487
+ },
488
+ "CU": {
489
+ "Country": "Cuba",
490
+ "Alpha-2 code": "CU",
491
+ "Alpha-3 code": "CUB",
492
+ "Numeric code": 192,
493
+ "Latitude (average)": 21.5,
494
+ "Longitude (average)": -80,
495
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡บ"
496
+ },
497
+ "CY": {
498
+ "Country": "Cyprus",
499
+ "Alpha-2 code": "CY",
500
+ "Alpha-3 code": "CYP",
501
+ "Numeric code": 196,
502
+ "Latitude (average)": 35,
503
+ "Longitude (average)": 33,
504
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡พ"
505
+ },
506
+ "CZ": {
507
+ "Country": "Czech Republic",
508
+ "Alpha-2 code": "CZ",
509
+ "Alpha-3 code": "CZE",
510
+ "Numeric code": 203,
511
+ "Latitude (average)": 49.75,
512
+ "Longitude (average)": 15.5,
513
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ฟ"
514
+ },
515
+ "DK": {
516
+ "Country": "Denmark",
517
+ "Alpha-2 code": "DK",
518
+ "Alpha-3 code": "DNK",
519
+ "Numeric code": 208,
520
+ "Latitude (average)": 56,
521
+ "Longitude (average)": 10,
522
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ฐ"
523
+ },
524
+ "DJ": {
525
+ "Country": "Djibouti",
526
+ "Alpha-2 code": "DJ",
527
+ "Alpha-3 code": "DJI",
528
+ "Numeric code": 262,
529
+ "Latitude (average)": 11.5,
530
+ "Longitude (average)": 43,
531
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ฏ"
532
+ },
533
+ "DM": {
534
+ "Country": "Dominica",
535
+ "Alpha-2 code": "DM",
536
+ "Alpha-3 code": "DMA",
537
+ "Numeric code": 212,
538
+ "Latitude (average)": 15.4167,
539
+ "Longitude (average)": -61.3333,
540
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ฒ"
541
+ },
542
+ "DO": {
543
+ "Country": "Dominican Republic",
544
+ "Alpha-2 code": "DO",
545
+ "Alpha-3 code": "DOM",
546
+ "Numeric code": 214,
547
+ "Latitude (average)": 19,
548
+ "Longitude (average)": -70.6667,
549
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ด"
550
+ },
551
+ "EC": {
552
+ "Country": "Ecuador",
553
+ "Alpha-2 code": "EC",
554
+ "Alpha-3 code": "ECU",
555
+ "Numeric code": 218,
556
+ "Latitude (average)": -2,
557
+ "Longitude (average)": -77.5,
558
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡จ"
559
+ },
560
+ "EG": {
561
+ "Country": "Egypt",
562
+ "Alpha-2 code": "EG",
563
+ "Alpha-3 code": "EGY",
564
+ "Numeric code": 818,
565
+ "Latitude (average)": 27,
566
+ "Longitude (average)": 30,
567
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡ฌ"
568
+ },
569
+ "SV": {
570
+ "Country": "El Salvador",
571
+ "Alpha-2 code": "SV",
572
+ "Alpha-3 code": "SLV",
573
+ "Numeric code": 222,
574
+ "Latitude (average)": 13.8333,
575
+ "Longitude (average)": -88.9167,
576
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ป"
577
+ },
578
+ "GQ": {
579
+ "Country": "Equatorial Guinea",
580
+ "Alpha-2 code": "GQ",
581
+ "Alpha-3 code": "GNQ",
582
+ "Numeric code": 226,
583
+ "Latitude (average)": 2,
584
+ "Longitude (average)": 10,
585
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ถ"
586
+ },
587
+ "ER": {
588
+ "Country": "Eritrea",
589
+ "Alpha-2 code": "ER",
590
+ "Alpha-3 code": "ERI",
591
+ "Numeric code": 232,
592
+ "Latitude (average)": 15,
593
+ "Longitude (average)": 39,
594
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡ท"
595
+ },
596
+ "EE": {
597
+ "Country": "Estonia",
598
+ "Alpha-2 code": "EE",
599
+ "Alpha-3 code": "EST",
600
+ "Numeric code": 233,
601
+ "Latitude (average)": 59,
602
+ "Longitude (average)": 26,
603
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡ช"
604
+ },
605
+ "ET": {
606
+ "Country": "Ethiopia",
607
+ "Alpha-2 code": "ET",
608
+ "Alpha-3 code": "ETH",
609
+ "Numeric code": 231,
610
+ "Latitude (average)": 8,
611
+ "Longitude (average)": 38,
612
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡น"
613
+ },
614
+ "FK": {
615
+ "Country": "Falkland Islands (Malvinas)",
616
+ "Alpha-2 code": "FK",
617
+ "Alpha-3 code": "FLK",
618
+ "Numeric code": 238,
619
+ "Latitude (average)": -51.75,
620
+ "Longitude (average)": -59,
621
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ฐ"
622
+ },
623
+ "FO": {
624
+ "Country": "Faroe Islands",
625
+ "Alpha-2 code": "FO",
626
+ "Alpha-3 code": "FRO",
627
+ "Numeric code": 234,
628
+ "Latitude (average)": 62,
629
+ "Longitude (average)": -7,
630
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ด"
631
+ },
632
+ "FJ": {
633
+ "Country": "Fiji",
634
+ "Alpha-2 code": "FJ",
635
+ "Alpha-3 code": "FJI",
636
+ "Numeric code": 242,
637
+ "Latitude (average)": -18,
638
+ "Longitude (average)": 175,
639
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ฏ"
640
+ },
641
+ "FI": {
642
+ "Country": "Finland",
643
+ "Alpha-2 code": "FI",
644
+ "Alpha-3 code": "FIN",
645
+ "Numeric code": 246,
646
+ "Latitude (average)": 64,
647
+ "Longitude (average)": 26,
648
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ฎ"
649
+ },
650
+ "FR": {
651
+ "Country": "France",
652
+ "Alpha-2 code": "FR",
653
+ "Alpha-3 code": "FRA",
654
+ "Numeric code": 250,
655
+ "Latitude (average)": 46,
656
+ "Longitude (average)": 2,
657
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ท"
658
+ },
659
+ "GF": {
660
+ "Country": "French Guiana",
661
+ "Alpha-2 code": "GF",
662
+ "Alpha-3 code": "GUF",
663
+ "Numeric code": 254,
664
+ "Latitude (average)": 4,
665
+ "Longitude (average)": -53,
666
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ซ"
667
+ },
668
+ "PF": {
669
+ "Country": "French Polynesia",
670
+ "Alpha-2 code": "PF",
671
+ "Alpha-3 code": "PYF",
672
+ "Numeric code": 258,
673
+ "Latitude (average)": -15,
674
+ "Longitude (average)": -140,
675
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ซ"
676
+ },
677
+ "TF": {
678
+ "Country": "French Southern Territories",
679
+ "Alpha-2 code": "TF",
680
+ "Alpha-3 code": "ATF",
681
+ "Numeric code": 260,
682
+ "Latitude (average)": -43,
683
+ "Longitude (average)": 67,
684
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ซ"
685
+ },
686
+ "GA": {
687
+ "Country": "Gabon",
688
+ "Alpha-2 code": "GA",
689
+ "Alpha-3 code": "GAB",
690
+ "Numeric code": 266,
691
+ "Latitude (average)": -1,
692
+ "Longitude (average)": 11.75,
693
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฆ"
694
+ },
695
+ "GM": {
696
+ "Country": "Gambia",
697
+ "Alpha-2 code": "GM",
698
+ "Alpha-3 code": "GMB",
699
+ "Numeric code": 270,
700
+ "Latitude (average)": 13.4667,
701
+ "Longitude (average)": -16.5667,
702
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฒ"
703
+ },
704
+ "GE": {
705
+ "Country": "Georgia",
706
+ "Alpha-2 code": "GE",
707
+ "Alpha-3 code": "GEO",
708
+ "Numeric code": 268,
709
+ "Latitude (average)": 42,
710
+ "Longitude (average)": 43.5,
711
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ช"
712
+ },
713
+ "DE": {
714
+ "Country": "Germany",
715
+ "Alpha-2 code": "DE",
716
+ "Alpha-3 code": "DEU",
717
+ "Numeric code": 276,
718
+ "Latitude (average)": 51,
719
+ "Longitude (average)": 9,
720
+ "emoji_flag": "๐Ÿ‡ฉ๐Ÿ‡ช"
721
+ },
722
+ "GH": {
723
+ "Country": "Ghana",
724
+ "Alpha-2 code": "GH",
725
+ "Alpha-3 code": "GHA",
726
+ "Numeric code": 288,
727
+ "Latitude (average)": 8,
728
+ "Longitude (average)": -2,
729
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ญ"
730
+ },
731
+ "GI": {
732
+ "Country": "Gibraltar",
733
+ "Alpha-2 code": "GI",
734
+ "Alpha-3 code": "GIB",
735
+ "Numeric code": 292,
736
+ "Latitude (average)": 36.1833,
737
+ "Longitude (average)": -5.3667,
738
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฎ"
739
+ },
740
+ "GR": {
741
+ "Country": "Greece",
742
+ "Alpha-2 code": "GR",
743
+ "Alpha-3 code": "GRC",
744
+ "Numeric code": 300,
745
+ "Latitude (average)": 39,
746
+ "Longitude (average)": 22,
747
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ท"
748
+ },
749
+ "GL": {
750
+ "Country": "Greenland",
751
+ "Alpha-2 code": "GL",
752
+ "Alpha-3 code": "GRL",
753
+ "Numeric code": 304,
754
+ "Latitude (average)": 72,
755
+ "Longitude (average)": -40,
756
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฑ"
757
+ },
758
+ "GD": {
759
+ "Country": "Grenada",
760
+ "Alpha-2 code": "GD",
761
+ "Alpha-3 code": "GRD",
762
+ "Numeric code": 308,
763
+ "Latitude (average)": 12.1167,
764
+ "Longitude (average)": -61.6667,
765
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฉ"
766
+ },
767
+ "GP": {
768
+ "Country": "Guadeloupe",
769
+ "Alpha-2 code": "GP",
770
+ "Alpha-3 code": "GLP",
771
+ "Numeric code": 312,
772
+ "Latitude (average)": 16.25,
773
+ "Longitude (average)": -61.5833,
774
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ต"
775
+ },
776
+ "GU": {
777
+ "Country": "Guam",
778
+ "Alpha-2 code": "GU",
779
+ "Alpha-3 code": "GUM",
780
+ "Numeric code": 316,
781
+ "Latitude (average)": 13.4667,
782
+ "Longitude (average)": 144.7833,
783
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡บ"
784
+ },
785
+ "GT": {
786
+ "Country": "Guatemala",
787
+ "Alpha-2 code": "GT",
788
+ "Alpha-3 code": "GTM",
789
+ "Numeric code": 320,
790
+ "Latitude (average)": 15.5,
791
+ "Longitude (average)": -90.25,
792
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡น"
793
+ },
794
+ "GG": {
795
+ "Country": "Guernsey",
796
+ "Alpha-2 code": "GG",
797
+ "Alpha-3 code": "GGY",
798
+ "Numeric code": 831,
799
+ "Latitude (average)": 49.5,
800
+ "Longitude (average)": -2.56,
801
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ฌ"
802
+ },
803
+ "GN": {
804
+ "Country": "Guinea",
805
+ "Alpha-2 code": "GN",
806
+ "Alpha-3 code": "GIN",
807
+ "Numeric code": 324,
808
+ "Latitude (average)": 11,
809
+ "Longitude (average)": -10,
810
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ณ"
811
+ },
812
+ "GW": {
813
+ "Country": "Guinea-Bissau",
814
+ "Alpha-2 code": "GW",
815
+ "Alpha-3 code": "GNB",
816
+ "Numeric code": 624,
817
+ "Latitude (average)": 12,
818
+ "Longitude (average)": -15,
819
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ผ"
820
+ },
821
+ "GY": {
822
+ "Country": "Guyana",
823
+ "Alpha-2 code": "GY",
824
+ "Alpha-3 code": "GUY",
825
+ "Numeric code": 328,
826
+ "Latitude (average)": 5,
827
+ "Longitude (average)": -59,
828
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡พ"
829
+ },
830
+ "HT": {
831
+ "Country": "Haiti",
832
+ "Alpha-2 code": "HT",
833
+ "Alpha-3 code": "HTI",
834
+ "Numeric code": 332,
835
+ "Latitude (average)": 19,
836
+ "Longitude (average)": -72.4167,
837
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡น"
838
+ },
839
+ "HM": {
840
+ "Country": "Heard Island and McDonald Islands",
841
+ "Alpha-2 code": "HM",
842
+ "Alpha-3 code": "HMD",
843
+ "Numeric code": 334,
844
+ "Latitude (average)": -53.1,
845
+ "Longitude (average)": 72.5167,
846
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡ฒ"
847
+ },
848
+ "VA": {
849
+ "Country": "Holy See (Vatican City State)",
850
+ "Alpha-2 code": "VA",
851
+ "Alpha-3 code": "VAT",
852
+ "Numeric code": 336,
853
+ "Latitude (average)": 41.9,
854
+ "Longitude (average)": 12.45,
855
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡ฆ"
856
+ },
857
+ "HN": {
858
+ "Country": "Honduras",
859
+ "Alpha-2 code": "HN",
860
+ "Alpha-3 code": "HND",
861
+ "Numeric code": 340,
862
+ "Latitude (average)": 15,
863
+ "Longitude (average)": -86.5,
864
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡ณ"
865
+ },
866
+ "HK": {
867
+ "Country": "Hong Kong",
868
+ "Alpha-2 code": "HK",
869
+ "Alpha-3 code": "HKG",
870
+ "Numeric code": 344,
871
+ "Latitude (average)": 22.25,
872
+ "Longitude (average)": 114.1667,
873
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡ฐ"
874
+ },
875
+ "HU": {
876
+ "Country": "Hungary",
877
+ "Alpha-2 code": "HU",
878
+ "Alpha-3 code": "HUN",
879
+ "Numeric code": 348,
880
+ "Latitude (average)": 47,
881
+ "Longitude (average)": 20,
882
+ "emoji_flag": "๐Ÿ‡ญ๐Ÿ‡บ"
883
+ },
884
+ "IS": {
885
+ "Country": "Iceland",
886
+ "Alpha-2 code": "IS",
887
+ "Alpha-3 code": "ISL",
888
+ "Numeric code": 352,
889
+ "Latitude (average)": 65,
890
+ "Longitude (average)": -18,
891
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ธ"
892
+ },
893
+ "IN": {
894
+ "Country": "India",
895
+ "Alpha-2 code": "IN",
896
+ "Alpha-3 code": "IND",
897
+ "Numeric code": 356,
898
+ "Latitude (average)": 20,
899
+ "Longitude (average)": 77,
900
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ณ"
901
+ },
902
+ "ID": {
903
+ "Country": "Indonesia",
904
+ "Alpha-2 code": "ID",
905
+ "Alpha-3 code": "IDN",
906
+ "Numeric code": 360,
907
+ "Latitude (average)": -5,
908
+ "Longitude (average)": 120,
909
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ฉ"
910
+ },
911
+ "IR": {
912
+ "Country": "Iran, Islamic Republic of",
913
+ "Alpha-2 code": "IR",
914
+ "Alpha-3 code": "IRN",
915
+ "Numeric code": 364,
916
+ "Latitude (average)": 32,
917
+ "Longitude (average)": 53,
918
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ท"
919
+ },
920
+ "IQ": {
921
+ "Country": "Iraq",
922
+ "Alpha-2 code": "IQ",
923
+ "Alpha-3 code": "IRQ",
924
+ "Numeric code": 368,
925
+ "Latitude (average)": 33,
926
+ "Longitude (average)": 44,
927
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ถ"
928
+ },
929
+ "IE": {
930
+ "Country": "Ireland",
931
+ "Alpha-2 code": "IE",
932
+ "Alpha-3 code": "IRL",
933
+ "Numeric code": 372,
934
+ "Latitude (average)": 53,
935
+ "Longitude (average)": -8,
936
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ช"
937
+ },
938
+ "IM": {
939
+ "Country": "Isle of Man",
940
+ "Alpha-2 code": "IM",
941
+ "Alpha-3 code": "IMN",
942
+ "Numeric code": 833,
943
+ "Latitude (average)": 54.23,
944
+ "Longitude (average)": -4.55,
945
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ฒ"
946
+ },
947
+ "IL": {
948
+ "Country": "Israel",
949
+ "Alpha-2 code": "IL",
950
+ "Alpha-3 code": "ISR",
951
+ "Numeric code": 376,
952
+ "Latitude (average)": 31.5,
953
+ "Longitude (average)": 34.75,
954
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡ฑ"
955
+ },
956
+ "IT": {
957
+ "Country": "Italy",
958
+ "Alpha-2 code": "IT",
959
+ "Alpha-3 code": "ITA",
960
+ "Numeric code": 380,
961
+ "Latitude (average)": 42.8333,
962
+ "Longitude (average)": 12.8333,
963
+ "emoji_flag": "๐Ÿ‡ฎ๐Ÿ‡น"
964
+ },
965
+ "JM": {
966
+ "Country": "Jamaica",
967
+ "Alpha-2 code": "JM",
968
+ "Alpha-3 code": "JAM",
969
+ "Numeric code": 388,
970
+ "Latitude (average)": 18.25,
971
+ "Longitude (average)": -77.5,
972
+ "emoji_flag": "๐Ÿ‡ฏ๐Ÿ‡ฒ"
973
+ },
974
+ "JP": {
975
+ "Country": "Japan",
976
+ "Alpha-2 code": "JP",
977
+ "Alpha-3 code": "JPN",
978
+ "Numeric code": 392,
979
+ "Latitude (average)": 36,
980
+ "Longitude (average)": 138,
981
+ "emoji_flag": "๐Ÿ‡ฏ๐Ÿ‡ต"
982
+ },
983
+ "JE": {
984
+ "Country": "Jersey",
985
+ "Alpha-2 code": "JE",
986
+ "Alpha-3 code": "JEY",
987
+ "Numeric code": 832,
988
+ "Latitude (average)": 49.21,
989
+ "Longitude (average)": -2.13,
990
+ "emoji_flag": "๐Ÿ‡ฏ๐Ÿ‡ช"
991
+ },
992
+ "JO": {
993
+ "Country": "Jordan",
994
+ "Alpha-2 code": "JO",
995
+ "Alpha-3 code": "JOR",
996
+ "Numeric code": 400,
997
+ "Latitude (average)": 31,
998
+ "Longitude (average)": 36,
999
+ "emoji_flag": "๐Ÿ‡ฏ๐Ÿ‡ด"
1000
+ },
1001
+ "KZ": {
1002
+ "Country": "Kazakhstan",
1003
+ "Alpha-2 code": "KZ",
1004
+ "Alpha-3 code": "KAZ",
1005
+ "Numeric code": 398,
1006
+ "Latitude (average)": 48,
1007
+ "Longitude (average)": 68,
1008
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ฟ"
1009
+ },
1010
+ "KE": {
1011
+ "Country": "Kenya",
1012
+ "Alpha-2 code": "KE",
1013
+ "Alpha-3 code": "KEN",
1014
+ "Numeric code": 404,
1015
+ "Latitude (average)": 1,
1016
+ "Longitude (average)": 38,
1017
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ช"
1018
+ },
1019
+ "KI": {
1020
+ "Country": "Kiribati",
1021
+ "Alpha-2 code": "KI",
1022
+ "Alpha-3 code": "KIR",
1023
+ "Numeric code": 296,
1024
+ "Latitude (average)": 1.4167,
1025
+ "Longitude (average)": 173,
1026
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ฎ"
1027
+ },
1028
+ "KP": {
1029
+ "Country": "Korea, Democratic People's Republic of",
1030
+ "Alpha-2 code": "KP",
1031
+ "Alpha-3 code": "PRK",
1032
+ "Numeric code": 408,
1033
+ "Latitude (average)": 40,
1034
+ "Longitude (average)": 127,
1035
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ต"
1036
+ },
1037
+ "KR": {
1038
+ "Country": "South Korea",
1039
+ "Alpha-2 code": "KR",
1040
+ "Alpha-3 code": "KOR",
1041
+ "Numeric code": 410,
1042
+ "Latitude (average)": 37,
1043
+ "Longitude (average)": 127.5,
1044
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ท"
1045
+ },
1046
+ "KW": {
1047
+ "Country": "Kuwait",
1048
+ "Alpha-2 code": "KW",
1049
+ "Alpha-3 code": "KWT",
1050
+ "Numeric code": 414,
1051
+ "Latitude (average)": 29.3375,
1052
+ "Longitude (average)": 47.6581,
1053
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ผ"
1054
+ },
1055
+ "KG": {
1056
+ "Country": "Kyrgyzstan",
1057
+ "Alpha-2 code": "KG",
1058
+ "Alpha-3 code": "KGZ",
1059
+ "Numeric code": 417,
1060
+ "Latitude (average)": 41,
1061
+ "Longitude (average)": 75,
1062
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ฌ"
1063
+ },
1064
+ "LA": {
1065
+ "Country": "Lao People's Democratic Republic",
1066
+ "Alpha-2 code": "LA",
1067
+ "Alpha-3 code": "LAO",
1068
+ "Numeric code": 418,
1069
+ "Latitude (average)": 18,
1070
+ "Longitude (average)": 105,
1071
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ฆ"
1072
+ },
1073
+ "LV": {
1074
+ "Country": "Latvia",
1075
+ "Alpha-2 code": "LV",
1076
+ "Alpha-3 code": "LVA",
1077
+ "Numeric code": 428,
1078
+ "Latitude (average)": 57,
1079
+ "Longitude (average)": 25,
1080
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ป"
1081
+ },
1082
+ "LB": {
1083
+ "Country": "Lebanon",
1084
+ "Alpha-2 code": "LB",
1085
+ "Alpha-3 code": "LBN",
1086
+ "Numeric code": 422,
1087
+ "Latitude (average)": 33.8333,
1088
+ "Longitude (average)": 35.8333,
1089
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ง"
1090
+ },
1091
+ "LS": {
1092
+ "Country": "Lesotho",
1093
+ "Alpha-2 code": "LS",
1094
+ "Alpha-3 code": "LSO",
1095
+ "Numeric code": 426,
1096
+ "Latitude (average)": -29.5,
1097
+ "Longitude (average)": 28.5,
1098
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ธ"
1099
+ },
1100
+ "LR": {
1101
+ "Country": "Liberia",
1102
+ "Alpha-2 code": "LR",
1103
+ "Alpha-3 code": "LBR",
1104
+ "Numeric code": 430,
1105
+ "Latitude (average)": 6.5,
1106
+ "Longitude (average)": -9.5,
1107
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ท"
1108
+ },
1109
+ "LY": {
1110
+ "Country": "Libya",
1111
+ "Alpha-2 code": "LY",
1112
+ "Alpha-3 code": "LBY",
1113
+ "Numeric code": 434,
1114
+ "Latitude (average)": 25,
1115
+ "Longitude (average)": 17,
1116
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡พ"
1117
+ },
1118
+ "LI": {
1119
+ "Country": "Liechtenstein",
1120
+ "Alpha-2 code": "LI",
1121
+ "Alpha-3 code": "LIE",
1122
+ "Numeric code": 438,
1123
+ "Latitude (average)": 47.1667,
1124
+ "Longitude (average)": 9.5333,
1125
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ฎ"
1126
+ },
1127
+ "LT": {
1128
+ "Country": "Lithuania",
1129
+ "Alpha-2 code": "LT",
1130
+ "Alpha-3 code": "LTU",
1131
+ "Numeric code": 440,
1132
+ "Latitude (average)": 56,
1133
+ "Longitude (average)": 24,
1134
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡น"
1135
+ },
1136
+ "LU": {
1137
+ "Country": "Luxembourg",
1138
+ "Alpha-2 code": "LU",
1139
+ "Alpha-3 code": "LUX",
1140
+ "Numeric code": 442,
1141
+ "Latitude (average)": 49.75,
1142
+ "Longitude (average)": 6.1667,
1143
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡บ"
1144
+ },
1145
+ "MO": {
1146
+ "Country": "Macao",
1147
+ "Alpha-2 code": "MO",
1148
+ "Alpha-3 code": "MAC",
1149
+ "Numeric code": 446,
1150
+ "Latitude (average)": 22.1667,
1151
+ "Longitude (average)": 113.55,
1152
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ด"
1153
+ },
1154
+ "MK": {
1155
+ "Country": "Macedonia, the former Yugoslav Republic of",
1156
+ "Alpha-2 code": "MK",
1157
+ "Alpha-3 code": "MKD",
1158
+ "Numeric code": 807,
1159
+ "Latitude (average)": 41.8333,
1160
+ "Longitude (average)": 22,
1161
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฐ"
1162
+ },
1163
+ "MG": {
1164
+ "Country": "Madagascar",
1165
+ "Alpha-2 code": "MG",
1166
+ "Alpha-3 code": "MDG",
1167
+ "Numeric code": 450,
1168
+ "Latitude (average)": -20,
1169
+ "Longitude (average)": 47,
1170
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฌ"
1171
+ },
1172
+ "MW": {
1173
+ "Country": "Malawi",
1174
+ "Alpha-2 code": "MW",
1175
+ "Alpha-3 code": "MWI",
1176
+ "Numeric code": 454,
1177
+ "Latitude (average)": -13.5,
1178
+ "Longitude (average)": 34,
1179
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ผ"
1180
+ },
1181
+ "MY": {
1182
+ "Country": "Malaysia",
1183
+ "Alpha-2 code": "MY",
1184
+ "Alpha-3 code": "MYS",
1185
+ "Numeric code": 458,
1186
+ "Latitude (average)": 2.5,
1187
+ "Longitude (average)": 112.5,
1188
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡พ"
1189
+ },
1190
+ "MV": {
1191
+ "Country": "Maldives",
1192
+ "Alpha-2 code": "MV",
1193
+ "Alpha-3 code": "MDV",
1194
+ "Numeric code": 462,
1195
+ "Latitude (average)": 3.25,
1196
+ "Longitude (average)": 73,
1197
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ป"
1198
+ },
1199
+ "ML": {
1200
+ "Country": "Mali",
1201
+ "Alpha-2 code": "ML",
1202
+ "Alpha-3 code": "MLI",
1203
+ "Numeric code": 466,
1204
+ "Latitude (average)": 17,
1205
+ "Longitude (average)": -4,
1206
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฑ"
1207
+ },
1208
+ "MT": {
1209
+ "Country": "Malta",
1210
+ "Alpha-2 code": "MT",
1211
+ "Alpha-3 code": "MLT",
1212
+ "Numeric code": 470,
1213
+ "Latitude (average)": 35.8333,
1214
+ "Longitude (average)": 14.5833,
1215
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡น"
1216
+ },
1217
+ "MH": {
1218
+ "Country": "Marshall Islands",
1219
+ "Alpha-2 code": "MH",
1220
+ "Alpha-3 code": "MHL",
1221
+ "Numeric code": 584,
1222
+ "Latitude (average)": 9,
1223
+ "Longitude (average)": 168,
1224
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ญ"
1225
+ },
1226
+ "MQ": {
1227
+ "Country": "Martinique",
1228
+ "Alpha-2 code": "MQ",
1229
+ "Alpha-3 code": "MTQ",
1230
+ "Numeric code": 474,
1231
+ "Latitude (average)": 14.6667,
1232
+ "Longitude (average)": -61,
1233
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ถ"
1234
+ },
1235
+ "MR": {
1236
+ "Country": "Mauritania",
1237
+ "Alpha-2 code": "MR",
1238
+ "Alpha-3 code": "MRT",
1239
+ "Numeric code": 478,
1240
+ "Latitude (average)": 20,
1241
+ "Longitude (average)": -12,
1242
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ท"
1243
+ },
1244
+ "MU": {
1245
+ "Country": "Mauritius",
1246
+ "Alpha-2 code": "MU",
1247
+ "Alpha-3 code": "MUS",
1248
+ "Numeric code": 480,
1249
+ "Latitude (average)": -20.2833,
1250
+ "Longitude (average)": 57.55,
1251
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡บ"
1252
+ },
1253
+ "YT": {
1254
+ "Country": "Mayotte",
1255
+ "Alpha-2 code": "YT",
1256
+ "Alpha-3 code": "MYT",
1257
+ "Numeric code": 175,
1258
+ "Latitude (average)": -12.8333,
1259
+ "Longitude (average)": 45.1667,
1260
+ "emoji_flag": "๐Ÿ‡พ๐Ÿ‡น"
1261
+ },
1262
+ "MX": {
1263
+ "Country": "Mexico",
1264
+ "Alpha-2 code": "MX",
1265
+ "Alpha-3 code": "MEX",
1266
+ "Numeric code": 484,
1267
+ "Latitude (average)": 23,
1268
+ "Longitude (average)": -102,
1269
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฝ"
1270
+ },
1271
+ "FM": {
1272
+ "Country": "Micronesia, Federated States of",
1273
+ "Alpha-2 code": "FM",
1274
+ "Alpha-3 code": "FSM",
1275
+ "Numeric code": 583,
1276
+ "Latitude (average)": 6.9167,
1277
+ "Longitude (average)": 158.25,
1278
+ "emoji_flag": "๐Ÿ‡ซ๐Ÿ‡ฒ"
1279
+ },
1280
+ "MD": {
1281
+ "Country": "Moldova, Republic of",
1282
+ "Alpha-2 code": "MD",
1283
+ "Alpha-3 code": "MDA",
1284
+ "Numeric code": 498,
1285
+ "Latitude (average)": 47,
1286
+ "Longitude (average)": 29,
1287
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฉ"
1288
+ },
1289
+ "MC": {
1290
+ "Country": "Monaco",
1291
+ "Alpha-2 code": "MC",
1292
+ "Alpha-3 code": "MCO",
1293
+ "Numeric code": 492,
1294
+ "Latitude (average)": 43.7333,
1295
+ "Longitude (average)": 7.4,
1296
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡จ"
1297
+ },
1298
+ "MN": {
1299
+ "Country": "Mongolia",
1300
+ "Alpha-2 code": "MN",
1301
+ "Alpha-3 code": "MNG",
1302
+ "Numeric code": 496,
1303
+ "Latitude (average)": 46,
1304
+ "Longitude (average)": 105,
1305
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ณ"
1306
+ },
1307
+ "ME": {
1308
+ "Country": "Montenegro",
1309
+ "Alpha-2 code": "ME",
1310
+ "Alpha-3 code": "MNE",
1311
+ "Numeric code": 499,
1312
+ "Latitude (average)": 42,
1313
+ "Longitude (average)": 19,
1314
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ช"
1315
+ },
1316
+ "MS": {
1317
+ "Country": "Montserrat",
1318
+ "Alpha-2 code": "MS",
1319
+ "Alpha-3 code": "MSR",
1320
+ "Numeric code": 500,
1321
+ "Latitude (average)": 16.75,
1322
+ "Longitude (average)": -62.2,
1323
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ธ"
1324
+ },
1325
+ "MA": {
1326
+ "Country": "Morocco",
1327
+ "Alpha-2 code": "MA",
1328
+ "Alpha-3 code": "MAR",
1329
+ "Numeric code": 504,
1330
+ "Latitude (average)": 32,
1331
+ "Longitude (average)": -5,
1332
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฆ"
1333
+ },
1334
+ "MZ": {
1335
+ "Country": "Mozambique",
1336
+ "Alpha-2 code": "MZ",
1337
+ "Alpha-3 code": "MOZ",
1338
+ "Numeric code": 508,
1339
+ "Latitude (average)": -18.25,
1340
+ "Longitude (average)": 35,
1341
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฟ"
1342
+ },
1343
+ "MM": {
1344
+ "Country": "Myanmar",
1345
+ "Alpha-2 code": "MM",
1346
+ "Alpha-3 code": "MMR",
1347
+ "Numeric code": 104,
1348
+ "Latitude (average)": 22,
1349
+ "Longitude (average)": 98,
1350
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ฒ"
1351
+ },
1352
+ "NA": {
1353
+ "Country": "Namibia",
1354
+ "Alpha-2 code": "NA",
1355
+ "Alpha-3 code": "NAM",
1356
+ "Numeric code": 516,
1357
+ "Latitude (average)": -22,
1358
+ "Longitude (average)": 17,
1359
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ฆ"
1360
+ },
1361
+ "NR": {
1362
+ "Country": "Nauru",
1363
+ "Alpha-2 code": "NR",
1364
+ "Alpha-3 code": "NRU",
1365
+ "Numeric code": 520,
1366
+ "Latitude (average)": -0.5333,
1367
+ "Longitude (average)": 166.9167,
1368
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ท"
1369
+ },
1370
+ "NP": {
1371
+ "Country": "Nepal",
1372
+ "Alpha-2 code": "NP",
1373
+ "Alpha-3 code": "NPL",
1374
+ "Numeric code": 524,
1375
+ "Latitude (average)": 28,
1376
+ "Longitude (average)": 84,
1377
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ต"
1378
+ },
1379
+ "NL": {
1380
+ "Country": "Netherlands",
1381
+ "Alpha-2 code": "NL",
1382
+ "Alpha-3 code": "NLD",
1383
+ "Numeric code": 528,
1384
+ "Latitude (average)": 52.5,
1385
+ "Longitude (average)": 5.75,
1386
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ฑ"
1387
+ },
1388
+ "AN": {
1389
+ "Country": "Netherlands Antilles",
1390
+ "Alpha-2 code": "AN",
1391
+ "Alpha-3 code": "ANT",
1392
+ "Numeric code": 530,
1393
+ "Latitude (average)": 12.25,
1394
+ "Longitude (average)": -68.75,
1395
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ณ"
1396
+ },
1397
+ "NC": {
1398
+ "Country": "New Caledonia",
1399
+ "Alpha-2 code": "NC",
1400
+ "Alpha-3 code": "NCL",
1401
+ "Numeric code": 540,
1402
+ "Latitude (average)": -21.5,
1403
+ "Longitude (average)": 165.5,
1404
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡จ"
1405
+ },
1406
+ "NZ": {
1407
+ "Country": "New Zealand",
1408
+ "Alpha-2 code": "NZ",
1409
+ "Alpha-3 code": "NZL",
1410
+ "Numeric code": 554,
1411
+ "Latitude (average)": -41,
1412
+ "Longitude (average)": 174,
1413
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ฟ"
1414
+ },
1415
+ "NI": {
1416
+ "Country": "Nicaragua",
1417
+ "Alpha-2 code": "NI",
1418
+ "Alpha-3 code": "NIC",
1419
+ "Numeric code": 558,
1420
+ "Latitude (average)": 13,
1421
+ "Longitude (average)": -85,
1422
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ฎ"
1423
+ },
1424
+ "NE": {
1425
+ "Country": "Niger",
1426
+ "Alpha-2 code": "NE",
1427
+ "Alpha-3 code": "NER",
1428
+ "Numeric code": 562,
1429
+ "Latitude (average)": 16,
1430
+ "Longitude (average)": 8,
1431
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ช"
1432
+ },
1433
+ "NG": {
1434
+ "Country": "Nigeria",
1435
+ "Alpha-2 code": "NG",
1436
+ "Alpha-3 code": "NGA",
1437
+ "Numeric code": 566,
1438
+ "Latitude (average)": 10,
1439
+ "Longitude (average)": 8,
1440
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ฌ"
1441
+ },
1442
+ "NU": {
1443
+ "Country": "Niue",
1444
+ "Alpha-2 code": "NU",
1445
+ "Alpha-3 code": "NIU",
1446
+ "Numeric code": 570,
1447
+ "Latitude (average)": -19.0333,
1448
+ "Longitude (average)": -169.8667,
1449
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡บ"
1450
+ },
1451
+ "NF": {
1452
+ "Country": "Norfolk Island",
1453
+ "Alpha-2 code": "NF",
1454
+ "Alpha-3 code": "NFK",
1455
+ "Numeric code": 574,
1456
+ "Latitude (average)": -29.0333,
1457
+ "Longitude (average)": 167.95,
1458
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ซ"
1459
+ },
1460
+ "MP": {
1461
+ "Country": "Northern Mariana Islands",
1462
+ "Alpha-2 code": "MP",
1463
+ "Alpha-3 code": "MNP",
1464
+ "Numeric code": 580,
1465
+ "Latitude (average)": 15.2,
1466
+ "Longitude (average)": 145.75,
1467
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ต"
1468
+ },
1469
+ "NO": {
1470
+ "Country": "Norway",
1471
+ "Alpha-2 code": "NO",
1472
+ "Alpha-3 code": "NOR",
1473
+ "Numeric code": 578,
1474
+ "Latitude (average)": 62,
1475
+ "Longitude (average)": 10,
1476
+ "emoji_flag": "๐Ÿ‡ณ๐Ÿ‡ด"
1477
+ },
1478
+ "OM": {
1479
+ "Country": "Oman",
1480
+ "Alpha-2 code": "OM",
1481
+ "Alpha-3 code": "OMN",
1482
+ "Numeric code": 512,
1483
+ "Latitude (average)": 21,
1484
+ "Longitude (average)": 57,
1485
+ "emoji_flag": "๐Ÿ‡ด๐Ÿ‡ฒ"
1486
+ },
1487
+ "PK": {
1488
+ "Country": "Pakistan",
1489
+ "Alpha-2 code": "PK",
1490
+ "Alpha-3 code": "PAK",
1491
+ "Numeric code": 586,
1492
+ "Latitude (average)": 30,
1493
+ "Longitude (average)": 70,
1494
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ฐ"
1495
+ },
1496
+ "PW": {
1497
+ "Country": "Palau",
1498
+ "Alpha-2 code": "PW",
1499
+ "Alpha-3 code": "PLW",
1500
+ "Numeric code": 585,
1501
+ "Latitude (average)": 7.5,
1502
+ "Longitude (average)": 134.5,
1503
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ผ"
1504
+ },
1505
+ "PS": {
1506
+ "Country": "Palestinian Territory, Occupied",
1507
+ "Alpha-2 code": "PS",
1508
+ "Alpha-3 code": "PSE",
1509
+ "Numeric code": 275,
1510
+ "Latitude (average)": 32,
1511
+ "Longitude (average)": 35.25,
1512
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ธ"
1513
+ },
1514
+ "PA": {
1515
+ "Country": "Panama",
1516
+ "Alpha-2 code": "PA",
1517
+ "Alpha-3 code": "PAN",
1518
+ "Numeric code": 591,
1519
+ "Latitude (average)": 9,
1520
+ "Longitude (average)": -80,
1521
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ฆ"
1522
+ },
1523
+ "PG": {
1524
+ "Country": "Papua New Guinea",
1525
+ "Alpha-2 code": "PG",
1526
+ "Alpha-3 code": "PNG",
1527
+ "Numeric code": 598,
1528
+ "Latitude (average)": -6,
1529
+ "Longitude (average)": 147,
1530
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ฌ"
1531
+ },
1532
+ "PY": {
1533
+ "Country": "Paraguay",
1534
+ "Alpha-2 code": "PY",
1535
+ "Alpha-3 code": "PRY",
1536
+ "Numeric code": 600,
1537
+ "Latitude (average)": -23,
1538
+ "Longitude (average)": -58,
1539
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡พ"
1540
+ },
1541
+ "PE": {
1542
+ "Country": "Peru",
1543
+ "Alpha-2 code": "PE",
1544
+ "Alpha-3 code": "PER",
1545
+ "Numeric code": 604,
1546
+ "Latitude (average)": -10,
1547
+ "Longitude (average)": -76,
1548
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ช"
1549
+ },
1550
+ "PH": {
1551
+ "Country": "Philippines",
1552
+ "Alpha-2 code": "PH",
1553
+ "Alpha-3 code": "PHL",
1554
+ "Numeric code": 608,
1555
+ "Latitude (average)": 13,
1556
+ "Longitude (average)": 122,
1557
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ญ"
1558
+ },
1559
+ "PN": {
1560
+ "Country": "Pitcairn",
1561
+ "Alpha-2 code": "PN",
1562
+ "Alpha-3 code": "PCN",
1563
+ "Numeric code": 612,
1564
+ "Latitude (average)": -24.7,
1565
+ "Longitude (average)": -127.4,
1566
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ณ"
1567
+ },
1568
+ "PL": {
1569
+ "Country": "Poland",
1570
+ "Alpha-2 code": "PL",
1571
+ "Alpha-3 code": "POL",
1572
+ "Numeric code": 616,
1573
+ "Latitude (average)": 52,
1574
+ "Longitude (average)": 20,
1575
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ฑ"
1576
+ },
1577
+ "PT": {
1578
+ "Country": "Portugal",
1579
+ "Alpha-2 code": "PT",
1580
+ "Alpha-3 code": "PRT",
1581
+ "Numeric code": 620,
1582
+ "Latitude (average)": 39.5,
1583
+ "Longitude (average)": -8,
1584
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡น"
1585
+ },
1586
+ "PR": {
1587
+ "Country": "Puerto Rico",
1588
+ "Alpha-2 code": "PR",
1589
+ "Alpha-3 code": "PRI",
1590
+ "Numeric code": 630,
1591
+ "Latitude (average)": 18.25,
1592
+ "Longitude (average)": -66.5,
1593
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ท"
1594
+ },
1595
+ "QA": {
1596
+ "Country": "Qatar",
1597
+ "Alpha-2 code": "QA",
1598
+ "Alpha-3 code": "QAT",
1599
+ "Numeric code": 634,
1600
+ "Latitude (average)": 25.5,
1601
+ "Longitude (average)": 51.25,
1602
+ "emoji_flag": "๐Ÿ‡ถ๐Ÿ‡ฆ"
1603
+ },
1604
+ "RE": {
1605
+ "Country": "Rรฉunion",
1606
+ "Alpha-2 code": "RE",
1607
+ "Alpha-3 code": "REU",
1608
+ "Numeric code": 638,
1609
+ "Latitude (average)": -21.1,
1610
+ "Longitude (average)": 55.6,
1611
+ "emoji_flag": "๐Ÿ‡ท๐Ÿ‡ช"
1612
+ },
1613
+ "RO": {
1614
+ "Country": "Romania",
1615
+ "Alpha-2 code": "RO",
1616
+ "Alpha-3 code": "ROU",
1617
+ "Numeric code": 642,
1618
+ "Latitude (average)": 46,
1619
+ "Longitude (average)": 25,
1620
+ "emoji_flag": "๐Ÿ‡ท๐Ÿ‡ด"
1621
+ },
1622
+ "RU": {
1623
+ "Country": "Russia",
1624
+ "Alpha-2 code": "RU",
1625
+ "Alpha-3 code": "RUS",
1626
+ "Numeric code": 643,
1627
+ "Latitude (average)": 60,
1628
+ "Longitude (average)": 100,
1629
+ "emoji_flag": "๐Ÿ‡ท๐Ÿ‡บ"
1630
+ },
1631
+ "RW": {
1632
+ "Country": "Rwanda",
1633
+ "Alpha-2 code": "RW",
1634
+ "Alpha-3 code": "RWA",
1635
+ "Numeric code": 646,
1636
+ "Latitude (average)": -2,
1637
+ "Longitude (average)": 30,
1638
+ "emoji_flag": "๐Ÿ‡ท๐Ÿ‡ผ"
1639
+ },
1640
+ "SH": {
1641
+ "Country": "Saint Helena, Ascension and Tristan da Cunha",
1642
+ "Alpha-2 code": "SH",
1643
+ "Alpha-3 code": "SHN",
1644
+ "Numeric code": 654,
1645
+ "Latitude (average)": -15.9333,
1646
+ "Longitude (average)": -5.7,
1647
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ญ"
1648
+ },
1649
+ "KN": {
1650
+ "Country": "Saint Kitts and Nevis",
1651
+ "Alpha-2 code": "KN",
1652
+ "Alpha-3 code": "KNA",
1653
+ "Numeric code": 659,
1654
+ "Latitude (average)": 17.3333,
1655
+ "Longitude (average)": -62.75,
1656
+ "emoji_flag": "๐Ÿ‡ฐ๐Ÿ‡ณ"
1657
+ },
1658
+ "LC": {
1659
+ "Country": "Saint Lucia",
1660
+ "Alpha-2 code": "LC",
1661
+ "Alpha-3 code": "LCA",
1662
+ "Numeric code": 662,
1663
+ "Latitude (average)": 13.8833,
1664
+ "Longitude (average)": -61.1333,
1665
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡จ"
1666
+ },
1667
+ "PM": {
1668
+ "Country": "Saint Pierre and Miquelon",
1669
+ "Alpha-2 code": "PM",
1670
+ "Alpha-3 code": "SPM",
1671
+ "Numeric code": 666,
1672
+ "Latitude (average)": 46.8333,
1673
+ "Longitude (average)": -56.3333,
1674
+ "emoji_flag": "๐Ÿ‡ต๐Ÿ‡ฒ"
1675
+ },
1676
+ "VC": {
1677
+ "Country": "Saint Vincent and the Grenadines",
1678
+ "Alpha-2 code": "VC",
1679
+ "Alpha-3 code": "VCT",
1680
+ "Numeric code": 670,
1681
+ "Latitude (average)": 13.25,
1682
+ "Longitude (average)": -61.2,
1683
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡จ"
1684
+ },
1685
+ "WS": {
1686
+ "Country": "Samoa",
1687
+ "Alpha-2 code": "WS",
1688
+ "Alpha-3 code": "WSM",
1689
+ "Numeric code": 882,
1690
+ "Latitude (average)": -13.5833,
1691
+ "Longitude (average)": -172.3333,
1692
+ "emoji_flag": "๐Ÿ‡ผ๐Ÿ‡ธ"
1693
+ },
1694
+ "SM": {
1695
+ "Country": "San Marino",
1696
+ "Alpha-2 code": "SM",
1697
+ "Alpha-3 code": "SMR",
1698
+ "Numeric code": 674,
1699
+ "Latitude (average)": 43.7667,
1700
+ "Longitude (average)": 12.4167,
1701
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฒ"
1702
+ },
1703
+ "ST": {
1704
+ "Country": "Sao Tome and Principe",
1705
+ "Alpha-2 code": "ST",
1706
+ "Alpha-3 code": "STP",
1707
+ "Numeric code": 678,
1708
+ "Latitude (average)": 1,
1709
+ "Longitude (average)": 7,
1710
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡น"
1711
+ },
1712
+ "SA": {
1713
+ "Country": "Saudi Arabia",
1714
+ "Alpha-2 code": "SA",
1715
+ "Alpha-3 code": "SAU",
1716
+ "Numeric code": 682,
1717
+ "Latitude (average)": 25,
1718
+ "Longitude (average)": 45,
1719
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฆ"
1720
+ },
1721
+ "SN": {
1722
+ "Country": "Senegal",
1723
+ "Alpha-2 code": "SN",
1724
+ "Alpha-3 code": "SEN",
1725
+ "Numeric code": 686,
1726
+ "Latitude (average)": 14,
1727
+ "Longitude (average)": -14,
1728
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ณ"
1729
+ },
1730
+ "RS": {
1731
+ "Country": "Serbia",
1732
+ "Alpha-2 code": "RS",
1733
+ "Alpha-3 code": "SRB",
1734
+ "Numeric code": 688,
1735
+ "Latitude (average)": 44,
1736
+ "Longitude (average)": 21,
1737
+ "emoji_flag": "๐Ÿ‡ท๐Ÿ‡ธ"
1738
+ },
1739
+ "SC": {
1740
+ "Country": "Seychelles",
1741
+ "Alpha-2 code": "SC",
1742
+ "Alpha-3 code": "SYC",
1743
+ "Numeric code": 690,
1744
+ "Latitude (average)": -4.5833,
1745
+ "Longitude (average)": 55.6667,
1746
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡จ"
1747
+ },
1748
+ "SL": {
1749
+ "Country": "Sierra Leone",
1750
+ "Alpha-2 code": "SL",
1751
+ "Alpha-3 code": "SLE",
1752
+ "Numeric code": 694,
1753
+ "Latitude (average)": 8.5,
1754
+ "Longitude (average)": -11.5,
1755
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฑ"
1756
+ },
1757
+ "SG": {
1758
+ "Country": "Singapore",
1759
+ "Alpha-2 code": "SG",
1760
+ "Alpha-3 code": "SGP",
1761
+ "Numeric code": 702,
1762
+ "Latitude (average)": 1.3667,
1763
+ "Longitude (average)": 103.8,
1764
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฌ"
1765
+ },
1766
+ "SK": {
1767
+ "Country": "Slovakia",
1768
+ "Alpha-2 code": "SK",
1769
+ "Alpha-3 code": "SVK",
1770
+ "Numeric code": 703,
1771
+ "Latitude (average)": 48.6667,
1772
+ "Longitude (average)": 19.5,
1773
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฐ"
1774
+ },
1775
+ "SI": {
1776
+ "Country": "Slovenia",
1777
+ "Alpha-2 code": "SI",
1778
+ "Alpha-3 code": "SVN",
1779
+ "Numeric code": 705,
1780
+ "Latitude (average)": 46,
1781
+ "Longitude (average)": 15,
1782
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฎ"
1783
+ },
1784
+ "SB": {
1785
+ "Country": "Solomon Islands",
1786
+ "Alpha-2 code": "SB",
1787
+ "Alpha-3 code": "SLB",
1788
+ "Numeric code": 90,
1789
+ "Latitude (average)": -8,
1790
+ "Longitude (average)": 159,
1791
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ง"
1792
+ },
1793
+ "SO": {
1794
+ "Country": "Somalia",
1795
+ "Alpha-2 code": "SO",
1796
+ "Alpha-3 code": "SOM",
1797
+ "Numeric code": 706,
1798
+ "Latitude (average)": 10,
1799
+ "Longitude (average)": 49,
1800
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ด"
1801
+ },
1802
+ "ZA": {
1803
+ "Country": "South Africa",
1804
+ "Alpha-2 code": "ZA",
1805
+ "Alpha-3 code": "ZAF",
1806
+ "Numeric code": 710,
1807
+ "Latitude (average)": -29,
1808
+ "Longitude (average)": 24,
1809
+ "emoji_flag": "๐Ÿ‡ฟ๐Ÿ‡ฆ"
1810
+ },
1811
+ "GS": {
1812
+ "Country": "South Georgia and the South Sandwich Islands",
1813
+ "Alpha-2 code": "GS",
1814
+ "Alpha-3 code": "SGS",
1815
+ "Numeric code": 239,
1816
+ "Latitude (average)": -54.5,
1817
+ "Longitude (average)": -37,
1818
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ธ"
1819
+ },
1820
+ "SS": {
1821
+ "Country": "South Sudan",
1822
+ "Alpha-2 code": "SS",
1823
+ "Alpha-3 code": "SSD",
1824
+ "Numeric code": 728,
1825
+ "Latitude (average)": 8,
1826
+ "Longitude (average)": 30,
1827
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ธ"
1828
+ },
1829
+ "ES": {
1830
+ "Country": "Spain",
1831
+ "Alpha-2 code": "ES",
1832
+ "Alpha-3 code": "ESP",
1833
+ "Numeric code": 724,
1834
+ "Latitude (average)": 40,
1835
+ "Longitude (average)": -4,
1836
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡ธ"
1837
+ },
1838
+ "LK": {
1839
+ "Country": "Sri Lanka",
1840
+ "Alpha-2 code": "LK",
1841
+ "Alpha-3 code": "LKA",
1842
+ "Numeric code": 144,
1843
+ "Latitude (average)": 7,
1844
+ "Longitude (average)": 81,
1845
+ "emoji_flag": "๐Ÿ‡ฑ๐Ÿ‡ฐ"
1846
+ },
1847
+ "SD": {
1848
+ "Country": "Sudan",
1849
+ "Alpha-2 code": "SD",
1850
+ "Alpha-3 code": "SDN",
1851
+ "Numeric code": 736,
1852
+ "Latitude (average)": 15,
1853
+ "Longitude (average)": 30,
1854
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฉ"
1855
+ },
1856
+ "SR": {
1857
+ "Country": "Suriname",
1858
+ "Alpha-2 code": "SR",
1859
+ "Alpha-3 code": "SUR",
1860
+ "Numeric code": 740,
1861
+ "Latitude (average)": 4,
1862
+ "Longitude (average)": -56,
1863
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ท"
1864
+ },
1865
+ "SJ": {
1866
+ "Country": "Svalbard and Jan Mayen",
1867
+ "Alpha-2 code": "SJ",
1868
+ "Alpha-3 code": "SJM",
1869
+ "Numeric code": 744,
1870
+ "Latitude (average)": 78,
1871
+ "Longitude (average)": 20,
1872
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฏ"
1873
+ },
1874
+ "SZ": {
1875
+ "Country": "Swaziland",
1876
+ "Alpha-2 code": "SZ",
1877
+ "Alpha-3 code": "SWZ",
1878
+ "Numeric code": 748,
1879
+ "Latitude (average)": -26.5,
1880
+ "Longitude (average)": 31.5,
1881
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฟ"
1882
+ },
1883
+ "SE": {
1884
+ "Country": "Sweden",
1885
+ "Alpha-2 code": "SE",
1886
+ "Alpha-3 code": "SWE",
1887
+ "Numeric code": 752,
1888
+ "Latitude (average)": 62,
1889
+ "Longitude (average)": 15,
1890
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ช"
1891
+ },
1892
+ "CH": {
1893
+ "Country": "Switzerland",
1894
+ "Alpha-2 code": "CH",
1895
+ "Alpha-3 code": "CHE",
1896
+ "Numeric code": 756,
1897
+ "Latitude (average)": 47,
1898
+ "Longitude (average)": 8,
1899
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ญ"
1900
+ },
1901
+ "SY": {
1902
+ "Country": "Syrian Arab Republic",
1903
+ "Alpha-2 code": "SY",
1904
+ "Alpha-3 code": "SYR",
1905
+ "Numeric code": 760,
1906
+ "Latitude (average)": 35,
1907
+ "Longitude (average)": 38,
1908
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡พ"
1909
+ },
1910
+ "TW": {
1911
+ "Country": "Taiwan",
1912
+ "Alpha-2 code": "TW",
1913
+ "Alpha-3 code": "TWN",
1914
+ "Numeric code": 158,
1915
+ "Latitude (average)": 23.5,
1916
+ "Longitude (average)": 121,
1917
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ผ"
1918
+ },
1919
+ "TJ": {
1920
+ "Country": "Tajikistan",
1921
+ "Alpha-2 code": "TJ",
1922
+ "Alpha-3 code": "TJK",
1923
+ "Numeric code": 762,
1924
+ "Latitude (average)": 39,
1925
+ "Longitude (average)": 71,
1926
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฏ"
1927
+ },
1928
+ "TZ": {
1929
+ "Country": "Tanzania, United Republic of",
1930
+ "Alpha-2 code": "TZ",
1931
+ "Alpha-3 code": "TZA",
1932
+ "Numeric code": 834,
1933
+ "Latitude (average)": -6,
1934
+ "Longitude (average)": 35,
1935
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฟ"
1936
+ },
1937
+ "TH": {
1938
+ "Country": "Thailand",
1939
+ "Alpha-2 code": "TH",
1940
+ "Alpha-3 code": "THA",
1941
+ "Numeric code": 764,
1942
+ "Latitude (average)": 15,
1943
+ "Longitude (average)": 100,
1944
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ญ"
1945
+ },
1946
+ "TL": {
1947
+ "Country": "Timor-Leste",
1948
+ "Alpha-2 code": "TL",
1949
+ "Alpha-3 code": "TLS",
1950
+ "Numeric code": 626,
1951
+ "Latitude (average)": -8.55,
1952
+ "Longitude (average)": 125.5167,
1953
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฑ"
1954
+ },
1955
+ "TG": {
1956
+ "Country": "Togo",
1957
+ "Alpha-2 code": "TG",
1958
+ "Alpha-3 code": "TGO",
1959
+ "Numeric code": 768,
1960
+ "Latitude (average)": 8,
1961
+ "Longitude (average)": 1.1667,
1962
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฌ"
1963
+ },
1964
+ "TK": {
1965
+ "Country": "Tokelau",
1966
+ "Alpha-2 code": "TK",
1967
+ "Alpha-3 code": "TKL",
1968
+ "Numeric code": 772,
1969
+ "Latitude (average)": -9,
1970
+ "Longitude (average)": -172,
1971
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฐ"
1972
+ },
1973
+ "TO": {
1974
+ "Country": "Tonga",
1975
+ "Alpha-2 code": "TO",
1976
+ "Alpha-3 code": "TON",
1977
+ "Numeric code": 776,
1978
+ "Latitude (average)": -20,
1979
+ "Longitude (average)": -175,
1980
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ด"
1981
+ },
1982
+ "TT": {
1983
+ "Country": "Trinidad and Tobago",
1984
+ "Alpha-2 code": "TT",
1985
+ "Alpha-3 code": "TTO",
1986
+ "Numeric code": 780,
1987
+ "Latitude (average)": 11,
1988
+ "Longitude (average)": -61,
1989
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡น"
1990
+ },
1991
+ "TN": {
1992
+ "Country": "Tunisia",
1993
+ "Alpha-2 code": "TN",
1994
+ "Alpha-3 code": "TUN",
1995
+ "Numeric code": 788,
1996
+ "Latitude (average)": 34,
1997
+ "Longitude (average)": 9,
1998
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ณ"
1999
+ },
2000
+ "TR": {
2001
+ "Country": "Turkey",
2002
+ "Alpha-2 code": "TR",
2003
+ "Alpha-3 code": "TUR",
2004
+ "Numeric code": 792,
2005
+ "Latitude (average)": 39,
2006
+ "Longitude (average)": 35,
2007
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ท"
2008
+ },
2009
+ "TM": {
2010
+ "Country": "Turkmenistan",
2011
+ "Alpha-2 code": "TM",
2012
+ "Alpha-3 code": "TKM",
2013
+ "Numeric code": 795,
2014
+ "Latitude (average)": 40,
2015
+ "Longitude (average)": 60,
2016
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ฒ"
2017
+ },
2018
+ "TC": {
2019
+ "Country": "Turks and Caicos Islands",
2020
+ "Alpha-2 code": "TC",
2021
+ "Alpha-3 code": "TCA",
2022
+ "Numeric code": 796,
2023
+ "Latitude (average)": 21.75,
2024
+ "Longitude (average)": -71.5833,
2025
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡จ"
2026
+ },
2027
+ "TV": {
2028
+ "Country": "Tuvalu",
2029
+ "Alpha-2 code": "TV",
2030
+ "Alpha-3 code": "TUV",
2031
+ "Numeric code": 798,
2032
+ "Latitude (average)": -8,
2033
+ "Longitude (average)": 178,
2034
+ "emoji_flag": "๐Ÿ‡น๐Ÿ‡ป"
2035
+ },
2036
+ "UG": {
2037
+ "Country": "Uganda",
2038
+ "Alpha-2 code": "UG",
2039
+ "Alpha-3 code": "UGA",
2040
+ "Numeric code": 800,
2041
+ "Latitude (average)": 1,
2042
+ "Longitude (average)": 32,
2043
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡ฌ"
2044
+ },
2045
+ "UA": {
2046
+ "Country": "Ukraine",
2047
+ "Alpha-2 code": "UA",
2048
+ "Alpha-3 code": "UKR",
2049
+ "Numeric code": 804,
2050
+ "Latitude (average)": 49,
2051
+ "Longitude (average)": 32,
2052
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡ฆ"
2053
+ },
2054
+ "AE": {
2055
+ "Country": "United Arab Emirates",
2056
+ "Alpha-2 code": "AE",
2057
+ "Alpha-3 code": "ARE",
2058
+ "Numeric code": 784,
2059
+ "Latitude (average)": 24,
2060
+ "Longitude (average)": 54,
2061
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ช"
2062
+ },
2063
+ "GB": {
2064
+ "Country": "United Kingdom",
2065
+ "Alpha-2 code": "GB",
2066
+ "Alpha-3 code": "GBR",
2067
+ "Numeric code": 826,
2068
+ "Latitude (average)": 54,
2069
+ "Longitude (average)": -2,
2070
+ "emoji_flag": "๐Ÿ‡ฌ๐Ÿ‡ง"
2071
+ },
2072
+ "US": {
2073
+ "Country": "United States",
2074
+ "Alpha-2 code": "US",
2075
+ "Alpha-3 code": "USA",
2076
+ "Numeric code": 840,
2077
+ "Latitude (average)": 38,
2078
+ "Longitude (average)": -97,
2079
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡ธ"
2080
+ },
2081
+ "UM": {
2082
+ "Country": "United States Minor Outlying Islands",
2083
+ "Alpha-2 code": "UM",
2084
+ "Alpha-3 code": "UMI",
2085
+ "Numeric code": 581,
2086
+ "Latitude (average)": 19.2833,
2087
+ "Longitude (average)": 166.6,
2088
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡ฒ"
2089
+ },
2090
+ "UY": {
2091
+ "Country": "Uruguay",
2092
+ "Alpha-2 code": "UY",
2093
+ "Alpha-3 code": "URY",
2094
+ "Numeric code": 858,
2095
+ "Latitude (average)": -33,
2096
+ "Longitude (average)": -56,
2097
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡พ"
2098
+ },
2099
+ "UZ": {
2100
+ "Country": "Uzbekistan",
2101
+ "Alpha-2 code": "UZ",
2102
+ "Alpha-3 code": "UZB",
2103
+ "Numeric code": 860,
2104
+ "Latitude (average)": 41,
2105
+ "Longitude (average)": 64,
2106
+ "emoji_flag": "๐Ÿ‡บ๐Ÿ‡ฟ"
2107
+ },
2108
+ "VU": {
2109
+ "Country": "Vanuatu",
2110
+ "Alpha-2 code": "VU",
2111
+ "Alpha-3 code": "VUT",
2112
+ "Numeric code": 548,
2113
+ "Latitude (average)": -16,
2114
+ "Longitude (average)": 167,
2115
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡บ"
2116
+ },
2117
+ "VE": {
2118
+ "Country": "Venezuela",
2119
+ "Alpha-2 code": "VE",
2120
+ "Alpha-3 code": "VEN",
2121
+ "Numeric code": 862,
2122
+ "Latitude (average)": 8,
2123
+ "Longitude (average)": -66,
2124
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡ช"
2125
+ },
2126
+ "VN": {
2127
+ "Country": "Vietnam",
2128
+ "Alpha-2 code": "VN",
2129
+ "Alpha-3 code": "VNM",
2130
+ "Numeric code": 704,
2131
+ "Latitude (average)": 16,
2132
+ "Longitude (average)": 106,
2133
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡ณ"
2134
+ },
2135
+ "VG": {
2136
+ "Country": "Virgin Islands, British",
2137
+ "Alpha-2 code": "VG",
2138
+ "Alpha-3 code": "VGB",
2139
+ "Numeric code": 92,
2140
+ "Latitude (average)": 18.5,
2141
+ "Longitude (average)": -64.5,
2142
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡ฌ"
2143
+ },
2144
+ "VI": {
2145
+ "Country": "Virgin Islands, U.S.",
2146
+ "Alpha-2 code": "VI",
2147
+ "Alpha-3 code": "VIR",
2148
+ "Numeric code": 850,
2149
+ "Latitude (average)": 18.3333,
2150
+ "Longitude (average)": -64.8333,
2151
+ "emoji_flag": "๐Ÿ‡ป๐Ÿ‡ฎ"
2152
+ },
2153
+ "WF": {
2154
+ "Country": "Wallis and Futuna",
2155
+ "Alpha-2 code": "WF",
2156
+ "Alpha-3 code": "WLF",
2157
+ "Numeric code": 876,
2158
+ "Latitude (average)": -13.3,
2159
+ "Longitude (average)": -176.2,
2160
+ "emoji_flag": "๐Ÿ‡ผ๐Ÿ‡ซ"
2161
+ },
2162
+ "EH": {
2163
+ "Country": "Western Sahara",
2164
+ "Alpha-2 code": "EH",
2165
+ "Alpha-3 code": "ESH",
2166
+ "Numeric code": 732,
2167
+ "Latitude (average)": 24.5,
2168
+ "Longitude (average)": -13,
2169
+ "emoji_flag": "๐Ÿ‡ช๐Ÿ‡ญ"
2170
+ },
2171
+ "YE": {
2172
+ "Country": "Yemen",
2173
+ "Alpha-2 code": "YE",
2174
+ "Alpha-3 code": "YEM",
2175
+ "Numeric code": 887,
2176
+ "Latitude (average)": 15,
2177
+ "Longitude (average)": 48,
2178
+ "emoji_flag": "๐Ÿ‡พ๐Ÿ‡ช"
2179
+ },
2180
+ "ZM": {
2181
+ "Country": "Zambia",
2182
+ "Alpha-2 code": "ZM",
2183
+ "Alpha-3 code": "ZMB",
2184
+ "Numeric code": 894,
2185
+ "Latitude (average)": -15,
2186
+ "Longitude (average)": 30,
2187
+ "emoji_flag": "๐Ÿ‡ฟ๐Ÿ‡ฒ"
2188
+ },
2189
+ "ZW": {
2190
+ "Country": "Zimbabwe",
2191
+ "Alpha-2 code": "ZW",
2192
+ "Alpha-3 code": "ZWE",
2193
+ "Numeric code": 716,
2194
+ "Latitude (average)": -20,
2195
+ "Longitude (average)": 30,
2196
+ "emoji_flag": "๐Ÿ‡ฟ๐Ÿ‡ผ"
2197
+ },
2198
+ "AX": {
2199
+ "Country": "ร…land Islands",
2200
+ "Alpha-2 code": "AX",
2201
+ "Alpha-3 code": "ALA",
2202
+ "Numeric code": 248,
2203
+ "Latitude (average)": 60.116667,
2204
+ "Longitude (average)": 19.9,
2205
+ "emoji_flag": "๐Ÿ‡ฆ๐Ÿ‡ฝ"
2206
+ },
2207
+ "BQ": {
2208
+ "Country": "Bonaire, Sint Eustatius and Saba",
2209
+ "Alpha-2 code": "BQ",
2210
+ "Alpha-3 code": "BES",
2211
+ "Numeric code": 535,
2212
+ "Latitude (average)": 12.183333,
2213
+ "Longitude (average)": -68.233333,
2214
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ถ"
2215
+ },
2216
+ "CW": {
2217
+ "Country": "Curaรงao",
2218
+ "Alpha-2 code": "CW",
2219
+ "Alpha-3 code": "CUW",
2220
+ "Numeric code": 531,
2221
+ "Latitude (average)": 12.166667,
2222
+ "Longitude (average)": -68.966667,
2223
+ "emoji_flag": "๐Ÿ‡จ๐Ÿ‡ผ"
2224
+ },
2225
+ "BL": {
2226
+ "Country": "Saint Barthรฉlemy",
2227
+ "Alpha-2 code": "BL",
2228
+ "Alpha-3 code": "BLM",
2229
+ "Numeric code": 652,
2230
+ "Latitude (average)": 17.897728,
2231
+ "Longitude (average)": -62.834244,
2232
+ "emoji_flag": "๐Ÿ‡ง๐Ÿ‡ฑ"
2233
+ },
2234
+ "MF": {
2235
+ "Country": "Saint Martin (French part)",
2236
+ "Alpha-2 code": "MF",
2237
+ "Alpha-3 code": "MAF",
2238
+ "Numeric code": 663,
2239
+ "Latitude (average)": 18.075278,
2240
+ "Longitude (average)": -63.06,
2241
+ "emoji_flag": "๐Ÿ‡ฒ๐Ÿ‡ซ"
2242
+ },
2243
+ "SX": {
2244
+ "Country": "Sint Maarten (Dutch part)",
2245
+ "Alpha-2 code": "SX",
2246
+ "Alpha-3 code": "SXM",
2247
+ "Numeric code": 534,
2248
+ "Latitude (average)": 18.033333,
2249
+ "Longitude (average)": -63.05,
2250
+ "emoji_flag": "๐Ÿ‡ธ๐Ÿ‡ฝ"
2251
+ },
2252
+ "XK": {
2253
+ "Country": "Kosovo",
2254
+ "Alpha-2 code": "XK",
2255
+ "Alpha-3 code": "XKX",
2256
+ "Numeric code": -1,
2257
+ "Latitude (average)": 42.583333,
2258
+ "Longitude (average)": 21,
2259
+ "emoji_flag": "๐Ÿ‡ฝ๐Ÿ‡ฐ"
2260
+ }
2261
+ }