cja-phoenix 1.2.39 → 1.2.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 (184) hide show
  1. package/dist/module.d.mts +6 -2
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +29 -16
  4. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.svg +94 -0
  5. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.ttf +0 -0
  6. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.woff +0 -0
  7. package/dist/runtime/assets/iconia/selection.json +1 -0
  8. package/dist/runtime/assets/iconia/style.css +281 -0
  9. package/dist/runtime/assets/scss/main.scss +6 -0
  10. package/dist/runtime/assets/scss/mixins/_funnel.scss +15 -0
  11. package/dist/runtime/assets/scss/mixins/_index.scss +46 -0
  12. package/dist/runtime/assets/scss/mixins/_media-queries.scss +109 -0
  13. package/dist/runtime/assets/scss/mixins/_results.scss +235 -0
  14. package/dist/runtime/assets/scss/tippy.scss +31 -0
  15. package/dist/runtime/assets/scss/variables/_breakpoints.scss +18 -0
  16. package/dist/runtime/assets/scss/variables/_colors.scss +100 -0
  17. package/dist/runtime/assets/scss/variables/_forms.scss +121 -0
  18. package/dist/runtime/assets/scss/variables/_grid.scss +12 -0
  19. package/dist/runtime/assets/scss/variables/_index.scss +6 -0
  20. package/dist/runtime/assets/scss/variables/_shadows.scss +7 -0
  21. package/dist/runtime/assets/scss/variables/_z-index.scss +6 -0
  22. package/dist/runtime/components/CjaButton.d.vue.ts +33 -0
  23. package/dist/runtime/components/CjaButton.vue +437 -0
  24. package/dist/runtime/components/CjaButton.vue.d.ts +33 -0
  25. package/dist/runtime/components/CollapseContainer.d.vue.ts +35 -0
  26. package/dist/runtime/components/CollapseContainer.vue +112 -0
  27. package/dist/runtime/components/CollapseContainer.vue.d.ts +35 -0
  28. package/dist/runtime/components/ContentTabs.d.vue.ts +23 -0
  29. package/dist/runtime/components/ContentTabs.vue +103 -0
  30. package/dist/runtime/components/ContentTabs.vue.d.ts +23 -0
  31. package/dist/runtime/components/Drawer.d.vue.ts +52 -0
  32. package/dist/runtime/components/Drawer.vue +169 -0
  33. package/dist/runtime/components/Drawer.vue.d.ts +52 -0
  34. package/dist/runtime/components/FixedContainer.d.vue.ts +37 -0
  35. package/dist/runtime/components/FixedContainer.vue +95 -0
  36. package/dist/runtime/components/FixedContainer.vue.d.ts +37 -0
  37. package/dist/runtime/components/GridContainer.d.vue.ts +13 -0
  38. package/dist/runtime/components/GridContainer.vue +37 -0
  39. package/dist/runtime/components/GridContainer.vue.d.ts +13 -0
  40. package/dist/runtime/components/GridItem.d.vue.ts +29 -0
  41. package/dist/runtime/components/GridItem.vue +93 -0
  42. package/dist/runtime/components/GridItem.vue.d.ts +29 -0
  43. package/dist/runtime/components/InfoMessage.d.vue.ts +28 -0
  44. package/dist/runtime/components/InfoMessage.vue +141 -0
  45. package/dist/runtime/components/InfoMessage.vue.d.ts +28 -0
  46. package/dist/runtime/components/LoadingSpinner.d.vue.ts +10 -0
  47. package/dist/runtime/components/LoadingSpinner.vue +39 -0
  48. package/dist/runtime/components/LoadingSpinner.vue.d.ts +10 -0
  49. package/dist/runtime/components/Modal.d.vue.ts +39 -0
  50. package/dist/runtime/components/Modal.vue +195 -0
  51. package/dist/runtime/components/Modal.vue.d.ts +39 -0
  52. package/dist/runtime/components/Scaffold.d.vue.ts +13 -0
  53. package/dist/runtime/components/Scaffold.vue +3 -0
  54. package/dist/runtime/components/Scaffold.vue.d.ts +13 -0
  55. package/dist/runtime/components/StickyContainer.d.vue.ts +21 -0
  56. package/dist/runtime/components/StickyContainer.vue +57 -0
  57. package/dist/runtime/components/StickyContainer.vue.d.ts +21 -0
  58. package/dist/runtime/components/form/CheckboxInput.d.vue.ts +42 -0
  59. package/dist/runtime/components/form/CheckboxInput.vue +163 -0
  60. package/dist/runtime/components/form/CheckboxInput.vue.d.ts +42 -0
  61. package/dist/runtime/components/form/CheckboxInputList.d.vue.ts +37 -0
  62. package/dist/runtime/components/form/CheckboxInputList.vue +84 -0
  63. package/dist/runtime/components/form/CheckboxInputList.vue.d.ts +37 -0
  64. package/dist/runtime/components/form/CurrencyInput.d.vue.ts +37 -0
  65. package/dist/runtime/components/form/CurrencyInput.vue +134 -0
  66. package/dist/runtime/components/form/CurrencyInput.vue.d.ts +37 -0
  67. package/dist/runtime/components/form/DateInput.d.vue.ts +40 -0
  68. package/dist/runtime/components/form/DateInput.vue +325 -0
  69. package/dist/runtime/components/form/DateInput.vue.d.ts +40 -0
  70. package/dist/runtime/components/form/FileInput.d.vue.ts +46 -0
  71. package/dist/runtime/components/form/FileInput.vue +202 -0
  72. package/dist/runtime/components/form/FileInput.vue.d.ts +46 -0
  73. package/dist/runtime/components/form/NumberInput.d.vue.ts +41 -0
  74. package/dist/runtime/components/form/NumberInput.vue +162 -0
  75. package/dist/runtime/components/form/NumberInput.vue.d.ts +41 -0
  76. package/dist/runtime/components/form/PhoneInput.d.vue.ts +44 -0
  77. package/dist/runtime/components/form/PhoneInput.vue +143 -0
  78. package/dist/runtime/components/form/PhoneInput.vue.d.ts +44 -0
  79. package/dist/runtime/components/form/RadioInput.d.vue.ts +42 -0
  80. package/dist/runtime/components/form/RadioInput.vue +181 -0
  81. package/dist/runtime/components/form/RadioInput.vue.d.ts +42 -0
  82. package/dist/runtime/components/form/RadioInputList.d.vue.ts +57 -0
  83. package/dist/runtime/components/form/RadioInputList.vue +130 -0
  84. package/dist/runtime/components/form/RadioInputList.vue.d.ts +57 -0
  85. package/dist/runtime/components/form/SelectInput.d.vue.ts +46 -0
  86. package/dist/runtime/components/form/SelectInput.vue +362 -0
  87. package/dist/runtime/components/form/SelectInput.vue.d.ts +46 -0
  88. package/dist/runtime/components/form/SelectionTiles.d.vue.ts +44 -0
  89. package/dist/runtime/components/form/SelectionTiles.vue +329 -0
  90. package/dist/runtime/components/form/SelectionTiles.vue.d.ts +44 -0
  91. package/dist/runtime/components/form/SliderInput.d.vue.ts +51 -0
  92. package/dist/runtime/components/form/SliderInput.vue +175 -0
  93. package/dist/runtime/components/form/SliderInput.vue.d.ts +51 -0
  94. package/dist/runtime/components/form/TextInput.d.vue.ts +56 -0
  95. package/dist/runtime/components/form/TextInput.vue +227 -0
  96. package/dist/runtime/components/form/TextInput.vue.d.ts +56 -0
  97. package/dist/runtime/components/form/TextareaInput.d.vue.ts +37 -0
  98. package/dist/runtime/components/form/TextareaInput.vue +76 -0
  99. package/dist/runtime/components/form/TextareaInput.vue.d.ts +37 -0
  100. package/dist/runtime/components/form/TileCheckboxInput.d.vue.ts +40 -0
  101. package/dist/runtime/components/form/TileCheckboxInput.vue +108 -0
  102. package/dist/runtime/components/form/TileCheckboxInput.vue.d.ts +40 -0
  103. package/dist/runtime/components/form/ToggleInput.d.vue.ts +43 -0
  104. package/dist/runtime/components/form/ToggleInput.vue +119 -0
  105. package/dist/runtime/components/form/ToggleInput.vue.d.ts +43 -0
  106. package/dist/runtime/components/form/structure/Container.d.vue.ts +16 -0
  107. package/dist/runtime/components/form/structure/Container.vue +31 -0
  108. package/dist/runtime/components/form/structure/Container.vue.d.ts +16 -0
  109. package/dist/runtime/components/form/structure/Description.d.vue.ts +9 -0
  110. package/dist/runtime/components/form/structure/Description.vue +26 -0
  111. package/dist/runtime/components/form/structure/Description.vue.d.ts +9 -0
  112. package/dist/runtime/components/form/structure/Error.d.vue.ts +9 -0
  113. package/dist/runtime/components/form/structure/Error.vue +23 -0
  114. package/dist/runtime/components/form/structure/Error.vue.d.ts +9 -0
  115. package/dist/runtime/components/form/structure/Title.d.vue.ts +12 -0
  116. package/dist/runtime/components/form/structure/Title.vue +43 -0
  117. package/dist/runtime/components/form/structure/Title.vue.d.ts +12 -0
  118. package/dist/runtime/components/funnel/Header.d.vue.ts +18 -0
  119. package/dist/runtime/components/funnel/Header.vue +62 -0
  120. package/dist/runtime/components/funnel/Header.vue.d.ts +18 -0
  121. package/dist/runtime/composables/useCjaGtm.d.ts +19 -0
  122. package/dist/runtime/composables/useCjaGtm.js +164 -0
  123. package/dist/runtime/composables/useFunnelConfig.d.ts +11 -0
  124. package/dist/runtime/composables/useFunnelConfig.js +51 -0
  125. package/dist/runtime/composables/useFunnelSummary.d.ts +14 -0
  126. package/dist/runtime/composables/useFunnelSummary.js +16 -0
  127. package/dist/runtime/composables/useHeaderHeight.d.ts +3 -0
  128. package/dist/runtime/composables/useHeaderHeight.js +24 -0
  129. package/dist/runtime/composables/useJourneyConfig.d.ts +11 -0
  130. package/dist/runtime/composables/useJourneyConfig.js +13 -0
  131. package/dist/runtime/composables/useValidateForm.d.ts +11 -0
  132. package/dist/runtime/composables/useValidateForm.js +33 -0
  133. package/dist/runtime/data/dialCodes.d.ts +7 -0
  134. package/dist/runtime/data/dialCodes.js +1466 -0
  135. package/dist/runtime/data/phoneDigits.d.ts +2 -0
  136. package/dist/runtime/data/phoneDigits.js +231 -0
  137. package/dist/runtime/plugins/tippy.d.ts +4 -0
  138. package/dist/runtime/plugins/tippy.js +12 -0
  139. package/dist/runtime/plugins/v-calendar.d.ts +3 -0
  140. package/dist/runtime/plugins/v-calendar.js +6 -0
  141. package/dist/runtime/server/tsconfig.json +3 -0
  142. package/dist/runtime/types/Form.d.ts +34 -0
  143. package/dist/runtime/types/Form.js +20 -0
  144. package/dist/runtime/types/Grid.d.ts +4 -0
  145. package/dist/runtime/types/Grid.js +0 -0
  146. package/dist/runtime/types/Icon.d.ts +2 -0
  147. package/dist/runtime/types/Icon.js +85 -0
  148. package/dist/runtime/types/JourneyConfig.d.ts +9 -0
  149. package/dist/runtime/types/JourneyConfig.js +0 -0
  150. package/dist/runtime/types/index.d.ts +4 -0
  151. package/dist/runtime/types/index.js +4 -0
  152. package/dist/runtime/utils/applyProductData.d.ts +10 -0
  153. package/dist/runtime/utils/applyProductData.js +22 -0
  154. package/dist/runtime/utils/convertDate.d.ts +5 -0
  155. package/dist/runtime/utils/convertDate.js +17 -0
  156. package/dist/runtime/utils/findScrollAncestor.d.ts +1 -0
  157. package/dist/runtime/utils/findScrollAncestor.js +14 -0
  158. package/dist/runtime/utils/formValidations.d.ts +78 -0
  159. package/dist/runtime/utils/formValidations.js +180 -0
  160. package/dist/runtime/utils/formatValue.d.ts +4 -0
  161. package/dist/runtime/utils/formatValue.js +20 -0
  162. package/dist/runtime/utils/getAbTestVersion.d.ts +9 -0
  163. package/dist/runtime/utils/getAbTestVersion.js +48 -0
  164. package/dist/runtime/utils/getCalendarUrl.d.ts +8 -0
  165. package/dist/runtime/utils/getCalendarUrl.js +24 -0
  166. package/dist/runtime/utils/getFromUrl.d.ts +2 -0
  167. package/dist/runtime/utils/getFromUrl.js +25 -0
  168. package/dist/runtime/utils/getStoryblokUrl.d.ts +71 -0
  169. package/dist/runtime/utils/getStoryblokUrl.js +35 -0
  170. package/dist/runtime/utils/jsonReviver.d.ts +1 -0
  171. package/dist/runtime/utils/jsonReviver.js +18 -0
  172. package/dist/runtime/utils/mediaBreakpoints.d.ts +28 -0
  173. package/dist/runtime/utils/mediaBreakpoints.js +28 -0
  174. package/dist/runtime/utils/toggleScroll.d.ts +1 -0
  175. package/dist/runtime/utils/toggleScroll.js +6 -0
  176. package/dist/runtime/utils/updateForm.d.ts +11 -0
  177. package/dist/runtime/utils/updateForm.js +74 -0
  178. package/dist/runtime/utils/updateMarketingConsent.d.ts +4 -0
  179. package/dist/runtime/utils/updateMarketingConsent.js +13 -0
  180. package/dist/runtime/utils/uploadFile.d.ts +8 -0
  181. package/dist/runtime/utils/uploadFile.js +13 -0
  182. package/dist/types.d.mts +6 -10
  183. package/package.json +9 -8
  184. package/dist/module.d.cts +0 -2
@@ -0,0 +1,1466 @@
1
+ export default [
2
+ {
3
+ value: "93",
4
+ label: "\u{1F1E6}\u{1F1EB} Afghanistan (+93)",
5
+ altLabel: "\u{1F1E6}\u{1F1EB} +93",
6
+ searchTags: ["+93", "93", "Afghanistan"]
7
+ },
8
+ {
9
+ value: "355",
10
+ label: "\u{1F1E6}\u{1F1F1} Albania (+355)",
11
+ altLabel: "\u{1F1E6}\u{1F1F1} +355",
12
+ searchTags: ["+355", "355", "Albania"]
13
+ },
14
+ {
15
+ value: "213",
16
+ label: "\u{1F1E9}\u{1F1FF} Algeria (+213)",
17
+ altLabel: "\u{1F1E9}\u{1F1FF} +213",
18
+ searchTags: ["+213", "213", "Algeria"]
19
+ },
20
+ {
21
+ value: "1684",
22
+ label: "\u{1F1E6}\u{1F1F8} American Samoa (+1684)",
23
+ altLabel: "\u{1F1E6}\u{1F1F8} +1684",
24
+ searchTags: ["+1684", "1684", "AmericanSamoa"]
25
+ },
26
+ {
27
+ value: "376",
28
+ label: "\u{1F1E6}\u{1F1E9} Andorra (+376)",
29
+ altLabel: "\u{1F1E6}\u{1F1E9} +376",
30
+ searchTags: ["+376", "376", "Andorra"]
31
+ },
32
+ {
33
+ value: "244",
34
+ label: "\u{1F1E6}\u{1F1F4} Angola (+244)",
35
+ altLabel: "\u{1F1E6}\u{1F1F4} +244",
36
+ searchTags: ["+244", "244", "Angola"]
37
+ },
38
+ {
39
+ value: "1264",
40
+ label: "\u{1F1E6}\u{1F1EE} Anguilla (+1264)",
41
+ altLabel: "\u{1F1E6}\u{1F1EE} +1264",
42
+ searchTags: ["+1264", "1264", "Anguilla"]
43
+ },
44
+ {
45
+ value: "672",
46
+ label: "\u{1F1E6}\u{1F1F6} Antarctica (+672)",
47
+ altLabel: "\u{1F1E6}\u{1F1F6} +672",
48
+ searchTags: ["+672", "672", "Antarctica"]
49
+ },
50
+ {
51
+ value: "1268",
52
+ label: "\u{1F1E6}\u{1F1EC} Antigua & Barbuda (+1268)",
53
+ altLabel: "\u{1F1E6}\u{1F1EC} +1268",
54
+ searchTags: ["+1268", "1268", "Antigua and Barbuda"]
55
+ },
56
+ {
57
+ value: "54",
58
+ label: "\u{1F1E6}\u{1F1F7} Argentina (+54)",
59
+ altLabel: "\u{1F1E6}\u{1F1F7} +54",
60
+ searchTags: ["+54", "54", "Argentina"]
61
+ },
62
+ {
63
+ value: "374",
64
+ label: "\u{1F1E6}\u{1F1F2} Armenia (+374)",
65
+ altLabel: "\u{1F1E6}\u{1F1F2} +374",
66
+ searchTags: ["+374", "374", "Armenia"]
67
+ },
68
+ {
69
+ value: "297",
70
+ label: "\u{1F1E6}\u{1F1FC} Aruba (+297)",
71
+ altLabel: "\u{1F1E6}\u{1F1FC} +297",
72
+ searchTags: ["+297", "297", "Aruba"]
73
+ },
74
+ {
75
+ value: "61",
76
+ label: "\u{1F1E6}\u{1F1FA} Australia (+61)",
77
+ altLabel: "\u{1F1E6}\u{1F1FA} +61",
78
+ searchTags: ["+61", "61", "Australia"]
79
+ },
80
+ {
81
+ value: "43",
82
+ label: "\u{1F1E6}\u{1F1F9} Austria (+43)",
83
+ altLabel: "\u{1F1E6}\u{1F1F9} +43",
84
+ searchTags: ["+43", "43", "Austria"]
85
+ },
86
+ {
87
+ value: "994",
88
+ label: "\u{1F1E6}\u{1F1FF} Azerbaijan (+994)",
89
+ altLabel: "\u{1F1E6}\u{1F1FF} +994",
90
+ searchTags: ["+994", "994", "Azerbaijan"]
91
+ },
92
+ {
93
+ value: "1242",
94
+ label: "\u{1F1E7}\u{1F1F8} Bahamas (+1242)",
95
+ altLabel: "\u{1F1E7}\u{1F1F8} +1242",
96
+ searchTags: ["+1242", "1242", "Bahamas"]
97
+ },
98
+ {
99
+ value: "973",
100
+ label: "\u{1F1E7}\u{1F1ED} Bahrain (+973)",
101
+ altLabel: "\u{1F1E7}\u{1F1ED} +973",
102
+ searchTags: ["+973", "973", "Bahrain"]
103
+ },
104
+ {
105
+ value: "880",
106
+ label: "\u{1F1E7}\u{1F1E9} Bangladesh (+880)",
107
+ altLabel: "\u{1F1E7}\u{1F1E9} +880",
108
+ searchTags: ["+880", "880", "Bangladesh"]
109
+ },
110
+ {
111
+ value: "1246",
112
+ label: "\u{1F1E7}\u{1F1E7} Barbados (+1246)",
113
+ altLabel: "\u{1F1E7}\u{1F1E7} +1246",
114
+ searchTags: ["+1246", "1246", "Barbados"]
115
+ },
116
+ {
117
+ value: "375",
118
+ label: "\u{1F1E7}\u{1F1FE} Belarus (+375)",
119
+ altLabel: "\u{1F1E7}\u{1F1FE} +375",
120
+ searchTags: ["+375", "375", "Belarus"]
121
+ },
122
+ {
123
+ value: "32",
124
+ label: "\u{1F1E7}\u{1F1EA} Belgium (+32)",
125
+ altLabel: "\u{1F1E7}\u{1F1EA} +32",
126
+ searchTags: ["+32", "32", "Belgium"]
127
+ },
128
+ {
129
+ value: "501",
130
+ label: "\u{1F1E7}\u{1F1FF} Belize (+501)",
131
+ altLabel: "\u{1F1E7}\u{1F1FF} +501",
132
+ searchTags: ["+501", "501", "Belize"]
133
+ },
134
+ {
135
+ value: "229",
136
+ label: "\u{1F1E7}\u{1F1EF} Benin (+229)",
137
+ altLabel: "\u{1F1E7}\u{1F1EF} +229",
138
+ searchTags: ["+229", "229", "Benin"]
139
+ },
140
+ {
141
+ value: "1441",
142
+ label: "\u{1F1E7}\u{1F1F2} Bermuda (+1441)",
143
+ altLabel: "\u{1F1E7}\u{1F1F2} +1441",
144
+ searchTags: ["+1441", "1441", "Bermuda"]
145
+ },
146
+ {
147
+ value: "975",
148
+ label: "\u{1F1E7}\u{1F1F9} Bhutan (+975)",
149
+ altLabel: "\u{1F1E7}\u{1F1F9} +975",
150
+ searchTags: ["+975", "975", "Bhutan"]
151
+ },
152
+ {
153
+ value: "591",
154
+ label: "\u{1F1E7}\u{1F1F4} Bolivia (+591)",
155
+ altLabel: "\u{1F1E7}\u{1F1F4} +591",
156
+ searchTags: ["+591", "591", "Bolivia, Plurinational State of"]
157
+ },
158
+ {
159
+ value: "387",
160
+ label: "\u{1F1E7}\u{1F1E6} Bosnia & Herzegovina (+387)",
161
+ altLabel: "\u{1F1E7}\u{1F1E6} +387",
162
+ searchTags: ["+387", "387", "Bosnia and Herzegovina"]
163
+ },
164
+ {
165
+ value: "267",
166
+ label: "\u{1F1E7}\u{1F1FC} Botswana (+267)",
167
+ altLabel: "\u{1F1E7}\u{1F1FC} +267",
168
+ searchTags: ["+267", "267", "Botswana"]
169
+ },
170
+ {
171
+ value: "55",
172
+ label: "\u{1F1E7}\u{1F1F7} Brazil (+55)",
173
+ altLabel: "\u{1F1E7}\u{1F1F7} +55",
174
+ searchTags: ["+55", "55", "Brazil"]
175
+ },
176
+ {
177
+ value: "246",
178
+ label: "\u{1F1EE}\u{1F1F4} British Indian Ocean Territory (+246)",
179
+ altLabel: "\u{1F1EE}\u{1F1F4} +246",
180
+ searchTags: ["+246", "246", "British Indian Ocean Territory"]
181
+ },
182
+ {
183
+ value: "673",
184
+ label: "\u{1F1E7}\u{1F1F3} Brunei (+673)",
185
+ altLabel: "\u{1F1E7}\u{1F1F3} +673",
186
+ searchTags: ["+673", "673", "Brunei Darussalam"]
187
+ },
188
+ {
189
+ value: "359",
190
+ label: "\u{1F1E7}\u{1F1EC} Bulgaria (+359)",
191
+ altLabel: "\u{1F1E7}\u{1F1EC} +359",
192
+ searchTags: ["+359", "359", "Bulgaria"]
193
+ },
194
+ {
195
+ value: "226",
196
+ label: "\u{1F1E7}\u{1F1EB} Burkina Faso (+226)",
197
+ altLabel: "\u{1F1E7}\u{1F1EB} +226",
198
+ searchTags: ["+226", "226", "Burkina Faso"]
199
+ },
200
+ {
201
+ value: "257",
202
+ label: "\u{1F1E7}\u{1F1EE} Burundi (+257)",
203
+ altLabel: "\u{1F1E7}\u{1F1EE} +257",
204
+ searchTags: ["+257", "257", "Burundi"]
205
+ },
206
+ {
207
+ value: "855",
208
+ label: "\u{1F1F0}\u{1F1ED} Cambodia (+855)",
209
+ altLabel: "\u{1F1F0}\u{1F1ED} +855",
210
+ searchTags: ["+855", "855", "Cambodia"]
211
+ },
212
+ {
213
+ value: "237",
214
+ label: "\u{1F1E8}\u{1F1F2} Cameroon (+237)",
215
+ altLabel: "\u{1F1E8}\u{1F1F2} +237",
216
+ searchTags: ["+237", "237", "Cameroon"]
217
+ },
218
+ {
219
+ value: "1",
220
+ label: "\u{1F1E8}\u{1F1E6} Canada (+1)",
221
+ altLabel: "\u{1F1FA}\u{1F1F8} +1",
222
+ searchTags: ["+1", "1", "United States"]
223
+ },
224
+ {
225
+ value: "238",
226
+ label: "\u{1F1E8}\u{1F1FB} Cape Verde (+238)",
227
+ altLabel: "\u{1F1E8}\u{1F1FB} +238",
228
+ searchTags: ["+238", "238", "Cape Verde"]
229
+ },
230
+ {
231
+ value: "236",
232
+ label: "\u{1F1E8}\u{1F1EB} Central African Republic (+236)",
233
+ altLabel: "\u{1F1E8}\u{1F1EB} +236",
234
+ searchTags: ["+236", "236", "Central African Republic"]
235
+ },
236
+ {
237
+ value: "235",
238
+ label: "\u{1F1F9}\u{1F1E9} Chad (+235)",
239
+ altLabel: "\u{1F1F9}\u{1F1E9} +235",
240
+ searchTags: ["+235", "235", "Chad"]
241
+ },
242
+ {
243
+ value: "56",
244
+ label: "\u{1F1E8}\u{1F1F1} Chile (+56)",
245
+ altLabel: "\u{1F1E8}\u{1F1F1} +56",
246
+ searchTags: ["+56", "56", "Chile"]
247
+ },
248
+ {
249
+ value: "86",
250
+ label: "\u{1F1E8}\u{1F1F3} China (+86)",
251
+ altLabel: "\u{1F1E8}\u{1F1F3} +86",
252
+ searchTags: ["+86", "86", "China"]
253
+ },
254
+ {
255
+ value: "61",
256
+ label: "\u{1F1E8}\u{1F1FD} Christmas Island (+61)",
257
+ altLabel: "\u{1F1E6}\u{1F1FA} +61",
258
+ searchTags: ["+61", "61", "Australia"]
259
+ },
260
+ {
261
+ value: "61",
262
+ label: "\u{1F1E8}\u{1F1E8} Cocos (Keeling) Islands (+61)",
263
+ altLabel: "\u{1F1E6}\u{1F1FA} +61",
264
+ searchTags: ["+61", "61", "Australia"]
265
+ },
266
+ {
267
+ value: "57",
268
+ label: "\u{1F1E8}\u{1F1F4} Colombia (+57)",
269
+ altLabel: "\u{1F1E8}\u{1F1F4} +57",
270
+ searchTags: ["+57", "57", "Colombia"]
271
+ },
272
+ {
273
+ value: "269",
274
+ label: "\u{1F1F0}\u{1F1F2} Comoros (+269)",
275
+ altLabel: "\u{1F1F0}\u{1F1F2} +269",
276
+ searchTags: ["+269", "269", "Comoros"]
277
+ },
278
+ {
279
+ value: "242",
280
+ label: "\u{1F1E8}\u{1F1EC} Congo - Brazzaville (+242)",
281
+ altLabel: "\u{1F1E8}\u{1F1EC} +242",
282
+ searchTags: ["+242", "242", "Congo"]
283
+ },
284
+ {
285
+ value: "243",
286
+ label: "\u{1F1E8}\u{1F1E9} Congo - Kinshasa (+243)",
287
+ altLabel: "\u{1F1E8}\u{1F1E9} +243",
288
+ searchTags: ["+243", "243", "Congo, The Democratic Republic of the"]
289
+ },
290
+ {
291
+ value: "682",
292
+ label: "\u{1F1E8}\u{1F1F0} Cook Islands (+682)",
293
+ altLabel: "\u{1F1E8}\u{1F1F0} +682",
294
+ searchTags: ["+682", "682", "Cook Islands"]
295
+ },
296
+ {
297
+ value: "506",
298
+ label: "\u{1F1E8}\u{1F1F7} Costa Rica (+506)",
299
+ altLabel: "\u{1F1E8}\u{1F1F7} +506",
300
+ searchTags: ["+506", "506", "Costa Rica"]
301
+ },
302
+ {
303
+ value: "225",
304
+ label: "\u{1F1E8}\u{1F1EE} C\xF4te d\u2019Ivoire (+225)",
305
+ altLabel: "\u{1F1E8}\u{1F1EE} +225",
306
+ searchTags: ["+225", "225", "Cote d'Ivoire"]
307
+ },
308
+ {
309
+ value: "385",
310
+ label: "\u{1F1ED}\u{1F1F7} Croatia (+385)",
311
+ altLabel: "\u{1F1ED}\u{1F1F7} +385",
312
+ searchTags: ["+385", "385", "Croatia"]
313
+ },
314
+ {
315
+ value: "53",
316
+ label: "\u{1F1E8}\u{1F1FA} Cuba (+53)",
317
+ altLabel: "\u{1F1E8}\u{1F1FA} +53",
318
+ searchTags: ["+53", "53", "Cuba"]
319
+ },
320
+ {
321
+ value: "357",
322
+ label: "\u{1F1E8}\u{1F1FE} Cyprus (+357)",
323
+ altLabel: "\u{1F1E8}\u{1F1FE} +357",
324
+ searchTags: ["+357", "357", "Cyprus"]
325
+ },
326
+ {
327
+ value: "420",
328
+ label: "\u{1F1E8}\u{1F1FF} Czech Republic (+420)",
329
+ altLabel: "\u{1F1E8}\u{1F1FF} +420",
330
+ searchTags: ["+420", "420", "Czech Republic"]
331
+ },
332
+ {
333
+ value: "599",
334
+ label: "\u{1F1E8}\u{1F1FC} Cura\xE7ao (+599)",
335
+ altLabel: "\u{1F1E8}\u{1F1FC} +599",
336
+ searchTags: ["+599", "599", "Cura\xE7ao"]
337
+ },
338
+ {
339
+ value: "34",
340
+ label: "\u{1F1EE}\u{1F1E8} Canary Islands (+34)",
341
+ altLabel: "\u{1F1EE}\u{1F1E8} +34",
342
+ searchTags: ["+34", "34", "Canary Islands"]
343
+ },
344
+ {
345
+ value: "45",
346
+ label: "\u{1F1E9}\u{1F1F0} Denmark (+45)",
347
+ altLabel: "\u{1F1E9}\u{1F1F0} +45",
348
+ searchTags: ["+45", "45", "Denmark"]
349
+ },
350
+ {
351
+ value: "253",
352
+ label: "\u{1F1E9}\u{1F1EF} Djibouti (+253)",
353
+ altLabel: "\u{1F1E9}\u{1F1EF} +253",
354
+ searchTags: ["+253", "253", "Djibouti"]
355
+ },
356
+ {
357
+ value: "1767",
358
+ label: "\u{1F1E9}\u{1F1F2} Dominica (+1767)",
359
+ altLabel: "\u{1F1E9}\u{1F1F2} +1767",
360
+ searchTags: ["+1767", "1767", "Dominica"]
361
+ },
362
+ {
363
+ value: "1809",
364
+ label: "\u{1F1E9}\u{1F1F4} Dominican Republic (+1809)",
365
+ altLabel: "\u{1F1E9}\u{1F1F4} +1809",
366
+ searchTags: ["+1809", "1809", "Dominican Republic"]
367
+ },
368
+ {
369
+ value: "593",
370
+ label: "\u{1F1EA}\u{1F1E8} Ecuador (+593)",
371
+ altLabel: "\u{1F1EA}\u{1F1E8} +593",
372
+ searchTags: ["+593", "593", "Ecuador"]
373
+ },
374
+ {
375
+ value: "20",
376
+ label: "\u{1F1EA}\u{1F1EC} Egypt (+20)",
377
+ altLabel: "\u{1F1EA}\u{1F1EC} +20",
378
+ searchTags: ["+20", "20", "Egypt"]
379
+ },
380
+ {
381
+ value: "503",
382
+ label: "\u{1F1F8}\u{1F1FB} El Salvador (+503)",
383
+ altLabel: "\u{1F1F8}\u{1F1FB} +503",
384
+ searchTags: ["+503", "503", "El Salvador"]
385
+ },
386
+ {
387
+ value: "240",
388
+ label: "\u{1F1EC}\u{1F1F6} Equatorial Guinea (+240)",
389
+ altLabel: "\u{1F1EC}\u{1F1F6} +240",
390
+ searchTags: ["+240", "240", "Equatorial Guinea"]
391
+ },
392
+ {
393
+ value: "291",
394
+ label: "\u{1F1EA}\u{1F1F7} Eritrea (+291)",
395
+ altLabel: "\u{1F1EA}\u{1F1F7} +291",
396
+ searchTags: ["+291", "291", "Eritrea"]
397
+ },
398
+ {
399
+ value: "372",
400
+ label: "\u{1F1EA}\u{1F1EA} Estonia (+372)",
401
+ altLabel: "\u{1F1EA}\u{1F1EA} +372",
402
+ searchTags: ["+372", "372", "Estonia"]
403
+ },
404
+ {
405
+ value: "251",
406
+ label: "\u{1F1EA}\u{1F1F9} Ethiopia (+251)",
407
+ altLabel: "\u{1F1EA}\u{1F1F9} +251",
408
+ searchTags: ["+251", "251", "Ethiopia"]
409
+ },
410
+ {
411
+ value: "500",
412
+ label: "\u{1F1EB}\u{1F1F0} Falkland Islands (+500)",
413
+ altLabel: "\u{1F1EB}\u{1F1F0} +500",
414
+ searchTags: ["+500", "500", "Falkland Islands (Malvinas)"]
415
+ },
416
+ {
417
+ value: "298",
418
+ label: "\u{1F1EB}\u{1F1F4} Faroe Islands (+298)",
419
+ altLabel: "\u{1F1EB}\u{1F1F4} +298",
420
+ searchTags: ["+298", "298", "Faroe Islands"]
421
+ },
422
+ {
423
+ value: "679",
424
+ label: "\u{1F1EB}\u{1F1EF} Fiji (+679)",
425
+ altLabel: "\u{1F1EB}\u{1F1EF} +679",
426
+ searchTags: ["+679", "679", "Fiji"]
427
+ },
428
+ {
429
+ value: "358",
430
+ label: "\u{1F1EB}\u{1F1EE} Finland (+358)",
431
+ altLabel: "\u{1F1EB}\u{1F1EE} +358",
432
+ searchTags: ["+358", "358", "Finland"]
433
+ },
434
+ {
435
+ value: "33",
436
+ label: "\u{1F1EB}\u{1F1F7} France (+33)",
437
+ altLabel: "\u{1F1EB}\u{1F1F7} +33",
438
+ searchTags: ["+33", "33", "France"]
439
+ },
440
+ {
441
+ value: "594",
442
+ label: "\u{1F1EC}\u{1F1EB} French Guiana (+594)",
443
+ altLabel: "\u{1F1EC}\u{1F1EB} +594",
444
+ searchTags: ["+594", "594", "French Guiana"]
445
+ },
446
+ {
447
+ value: "689",
448
+ label: "\u{1F1F5}\u{1F1EB} French Polynesia (+689)",
449
+ altLabel: "\u{1F1F5}\u{1F1EB} +689",
450
+ searchTags: ["+689", "689", "French Polynesia"]
451
+ },
452
+ {
453
+ value: "262",
454
+ label: "\u{1F1F9}\u{1F1EB} French Southern Territories (+262)",
455
+ altLabel: "\u{1F1F9}\u{1F1EB} +262",
456
+ searchTags: ["+262", "262", "French Southern Territories"]
457
+ },
458
+ {
459
+ value: "241",
460
+ label: "\u{1F1EC}\u{1F1E6} Gabon (+241)",
461
+ altLabel: "\u{1F1EC}\u{1F1E6} +241",
462
+ searchTags: ["+241", "241", "Gabon"]
463
+ },
464
+ {
465
+ value: "220",
466
+ label: "\u{1F1EC}\u{1F1F2} Gambia (+220)",
467
+ altLabel: "\u{1F1EC}\u{1F1F2} +220",
468
+ searchTags: ["+220", "220", "Gambia"]
469
+ },
470
+ {
471
+ value: "995",
472
+ label: "\u{1F1EC}\u{1F1EA} Georgia (+995)",
473
+ altLabel: "\u{1F1EC}\u{1F1EA} +995",
474
+ searchTags: ["+995", "995", "Georgia"]
475
+ },
476
+ {
477
+ value: "49",
478
+ label: "\u{1F1E9}\u{1F1EA} Germany (+49)",
479
+ altLabel: "\u{1F1E9}\u{1F1EA} +49",
480
+ searchTags: ["+49", "49", "Germany"]
481
+ },
482
+ {
483
+ value: "233",
484
+ label: "\u{1F1EC}\u{1F1ED} Ghana (+233)",
485
+ altLabel: "\u{1F1EC}\u{1F1ED} +233",
486
+ searchTags: ["+233", "233", "Ghana"]
487
+ },
488
+ {
489
+ value: "350",
490
+ label: "\u{1F1EC}\u{1F1EE} Gibraltar (+350)",
491
+ altLabel: "\u{1F1EC}\u{1F1EE} +350",
492
+ searchTags: ["+350", "350", "Gibraltar"]
493
+ },
494
+ {
495
+ value: "30",
496
+ label: "\u{1F1EC}\u{1F1F7} Greece (+30)",
497
+ altLabel: "\u{1F1EC}\u{1F1F7} +30",
498
+ searchTags: ["+30", "30", "Greece"]
499
+ },
500
+ {
501
+ value: "299",
502
+ label: "\u{1F1EC}\u{1F1F1} Greenland (+299)",
503
+ altLabel: "\u{1F1EC}\u{1F1F1} +299",
504
+ searchTags: ["+299", "299", "Greenland"]
505
+ },
506
+ {
507
+ value: "1473",
508
+ label: "\u{1F1EC}\u{1F1E9} Grenada (+1473)",
509
+ altLabel: "\u{1F1EC}\u{1F1E9} +1473",
510
+ searchTags: ["+1473", "1473", "Grenada"]
511
+ },
512
+ {
513
+ value: "590",
514
+ label: "\u{1F1EC}\u{1F1F5} Guadeloupe (+590)",
515
+ altLabel: "\u{1F1EC}\u{1F1F5} +590",
516
+ searchTags: ["+590", "590", "Guadeloupe"]
517
+ },
518
+ {
519
+ value: "1671",
520
+ label: "\u{1F1EC}\u{1F1FA} Guam (+1671)",
521
+ altLabel: "\u{1F1EC}\u{1F1FA} +1671",
522
+ searchTags: ["+1671", "1671", "Guam"]
523
+ },
524
+ {
525
+ value: "502",
526
+ label: "\u{1F1EC}\u{1F1F9} Guatemala (+502)",
527
+ altLabel: "\u{1F1EC}\u{1F1F9} +502",
528
+ searchTags: ["+502", "502", "Guatemala"]
529
+ },
530
+ {
531
+ value: "44",
532
+ label: "\u{1F1EC}\u{1F1EC} Guernsey (+44)",
533
+ altLabel: "\u{1F1EC}\u{1F1E7} +44",
534
+ searchTags: ["+44", "44", "United Kingdom"]
535
+ },
536
+ {
537
+ value: "224",
538
+ label: "\u{1F1EC}\u{1F1F3} Guinea (+224)",
539
+ altLabel: "\u{1F1EC}\u{1F1F3} +224",
540
+ searchTags: ["+224", "224", "Guinea"]
541
+ },
542
+ {
543
+ value: "245",
544
+ label: "\u{1F1EC}\u{1F1FC} Guinea-Bissau (+245)",
545
+ altLabel: "\u{1F1EC}\u{1F1FC} +245",
546
+ searchTags: ["+245", "245", "Guinea-Bissau"]
547
+ },
548
+ {
549
+ value: "592",
550
+ label: "\u{1F1EC}\u{1F1FE} Guyana (+592)",
551
+ altLabel: "\u{1F1EC}\u{1F1FE} +592",
552
+ searchTags: ["+592", "592", "Guyana"]
553
+ },
554
+ {
555
+ value: "509",
556
+ label: "\u{1F1ED}\u{1F1F9} Haiti (+509)",
557
+ altLabel: "\u{1F1ED}\u{1F1F9} +509",
558
+ searchTags: ["+509", "509", "Haiti"]
559
+ },
560
+ {
561
+ value: "672",
562
+ label: "\u{1F1ED}\u{1F1F2} Heard & McDonald Islands (+672)",
563
+ altLabel: "\u{1F1E6}\u{1F1F6} +672",
564
+ searchTags: ["+672", "672", "Antarctica"]
565
+ },
566
+ {
567
+ value: "379",
568
+ label: "\u{1F1FB}\u{1F1E6} Vatican City (+379)",
569
+ altLabel: "\u{1F1FB}\u{1F1E6} +379",
570
+ searchTags: ["+379", "379", "Holy See (Vatican City State)"]
571
+ },
572
+ {
573
+ value: "504",
574
+ label: "\u{1F1ED}\u{1F1F3} Honduras (+504)",
575
+ altLabel: "\u{1F1ED}\u{1F1F3} +504",
576
+ searchTags: ["+504", "504", "Honduras"]
577
+ },
578
+ {
579
+ value: "852",
580
+ label: "\u{1F1ED}\u{1F1F0} Hong Kong (+852)",
581
+ altLabel: "\u{1F1ED}\u{1F1F0} +852",
582
+ searchTags: ["+852", "852", "Hong Kong"]
583
+ },
584
+ {
585
+ value: "36",
586
+ label: "\u{1F1ED}\u{1F1FA} Hungary (+36)",
587
+ altLabel: "\u{1F1ED}\u{1F1FA} +36",
588
+ searchTags: ["+36", "36", "Hungary"]
589
+ },
590
+ {
591
+ value: "354",
592
+ label: "\u{1F1EE}\u{1F1F8} Iceland (+354)",
593
+ altLabel: "\u{1F1EE}\u{1F1F8} +354",
594
+ searchTags: ["+354", "354", "Iceland"]
595
+ },
596
+ {
597
+ value: "91",
598
+ label: "\u{1F1EE}\u{1F1F3} India (+91)",
599
+ altLabel: "\u{1F1EE}\u{1F1F3} +91",
600
+ searchTags: ["+91", "91", "India"]
601
+ },
602
+ {
603
+ value: "62",
604
+ label: "\u{1F1EE}\u{1F1E9} Indonesia (+62)",
605
+ altLabel: "\u{1F1EE}\u{1F1E9} +62",
606
+ searchTags: ["+62", "62", "Indonesia"]
607
+ },
608
+ {
609
+ value: "98",
610
+ label: "\u{1F1EE}\u{1F1F7} Iran (+98)",
611
+ altLabel: "\u{1F1EE}\u{1F1F7} +98",
612
+ searchTags: ["+98", "98", "Iran, Islamic Republic of"]
613
+ },
614
+ {
615
+ value: "964",
616
+ label: "\u{1F1EE}\u{1F1F6} Iraq (+964)",
617
+ altLabel: "\u{1F1EE}\u{1F1F6} +964",
618
+ searchTags: ["+964", "964", "Iraq"]
619
+ },
620
+ {
621
+ value: "353",
622
+ label: "\u{1F1EE}\u{1F1EA} Ireland (+353)",
623
+ altLabel: "\u{1F1EE}\u{1F1EA} +353",
624
+ searchTags: ["+353", "353", "Ireland"]
625
+ },
626
+ {
627
+ value: "44",
628
+ label: "\u{1F1EE}\u{1F1F2} Isle of Man (+44)",
629
+ altLabel: "\u{1F1EC}\u{1F1E7} +44",
630
+ searchTags: ["+44", "44", "United Kingdom"]
631
+ },
632
+ {
633
+ value: "972",
634
+ label: "\u{1F1EE}\u{1F1F1} Israel (+972)",
635
+ altLabel: "\u{1F1EE}\u{1F1F1} +972",
636
+ searchTags: ["+972", "972", "Israel"]
637
+ },
638
+ {
639
+ value: "39",
640
+ label: "\u{1F1EE}\u{1F1F9} Italy (+39)",
641
+ altLabel: "\u{1F1EE}\u{1F1F9} +39",
642
+ searchTags: ["+39", "39", "Italy"]
643
+ },
644
+ {
645
+ value: "1876",
646
+ label: "\u{1F1EF}\u{1F1F2} Jamaica (+1876)",
647
+ altLabel: "\u{1F1EF}\u{1F1F2} +1876",
648
+ searchTags: ["+1876", "1876", "Jamaica"]
649
+ },
650
+ {
651
+ value: "81",
652
+ label: "\u{1F1EF}\u{1F1F5} Japan (+81)",
653
+ altLabel: "\u{1F1EF}\u{1F1F5} +81",
654
+ searchTags: ["+81", "81", "Japan"]
655
+ },
656
+ {
657
+ value: "44",
658
+ label: "\u{1F1EF}\u{1F1EA} Jersey (+44)",
659
+ altLabel: "\u{1F1EC}\u{1F1E7} +44",
660
+ searchTags: ["+44", "44", "United Kingdom"]
661
+ },
662
+ {
663
+ value: "962",
664
+ label: "\u{1F1EF}\u{1F1F4} Jordan (+962)",
665
+ altLabel: "\u{1F1EF}\u{1F1F4} +962",
666
+ searchTags: ["+962", "962", "Jordan"]
667
+ },
668
+ {
669
+ value: "254",
670
+ label: "\u{1F1F0}\u{1F1EA} Kenya (+254)",
671
+ altLabel: "\u{1F1F0}\u{1F1EA} +254",
672
+ searchTags: ["+254", "254", "Kenya"]
673
+ },
674
+ {
675
+ value: "686",
676
+ label: "\u{1F1F0}\u{1F1EE} Kiribati (+686)",
677
+ altLabel: "\u{1F1F0}\u{1F1EE} +686",
678
+ searchTags: ["+686", "686", "Kiribati"]
679
+ },
680
+ {
681
+ value: "850",
682
+ label: "\u{1F1F0}\u{1F1F5} North Korea (+850)",
683
+ altLabel: "\u{1F1F0}\u{1F1F5} +850",
684
+ searchTags: ["+850", "850", "Korea, Democratic People's Republic of"]
685
+ },
686
+ {
687
+ value: "82",
688
+ label: "\u{1F1F0}\u{1F1F7} South Korea (+82)",
689
+ altLabel: "\u{1F1F0}\u{1F1F7} +82",
690
+ searchTags: ["+82", "82", "Korea, Republic of"]
691
+ },
692
+ {
693
+ value: "965",
694
+ label: "\u{1F1F0}\u{1F1FC} Kuwait (+965)",
695
+ altLabel: "\u{1F1F0}\u{1F1FC} +965",
696
+ searchTags: ["+965", "965", "Kuwait"]
697
+ },
698
+ {
699
+ value: "996",
700
+ label: "\u{1F1F0}\u{1F1EC} Kyrgyzstan (+996)",
701
+ altLabel: "\u{1F1F0}\u{1F1EC} +996",
702
+ searchTags: ["+996", "996", "Kyrgyzstan"]
703
+ },
704
+ {
705
+ value: "383",
706
+ label: "\u{1F1FD}\u{1F1F0} Kosovo (+383)",
707
+ altLabel: "\u{1F1FD}\u{1F1F0} +383",
708
+ searchTags: ["+383", "383", "Kosovo"]
709
+ },
710
+ {
711
+ value: "856",
712
+ label: "\u{1F1F1}\u{1F1E6} Laos (+856)",
713
+ altLabel: "\u{1F1F1}\u{1F1E6} +856",
714
+ searchTags: ["+856", "856", "Lao People's Democratic Republic"]
715
+ },
716
+ {
717
+ value: "371",
718
+ label: "\u{1F1F1}\u{1F1FB} Latvia (+371)",
719
+ altLabel: "\u{1F1F1}\u{1F1FB} +371",
720
+ searchTags: ["+371", "371", "Latvia"]
721
+ },
722
+ {
723
+ value: "961",
724
+ label: "\u{1F1F1}\u{1F1E7} Lebanon (+961)",
725
+ altLabel: "\u{1F1F1}\u{1F1E7} +961",
726
+ searchTags: ["+961", "961", "Lebanon"]
727
+ },
728
+ {
729
+ value: "266",
730
+ label: "\u{1F1F1}\u{1F1F8} Lesotho (+266)",
731
+ altLabel: "\u{1F1F1}\u{1F1F8} +266",
732
+ searchTags: ["+266", "266", "Lesotho"]
733
+ },
734
+ {
735
+ value: "231",
736
+ label: "\u{1F1F1}\u{1F1F7} Liberia (+231)",
737
+ altLabel: "\u{1F1F1}\u{1F1F7} +231",
738
+ searchTags: ["+231", "231", "Liberia"]
739
+ },
740
+ {
741
+ value: "218",
742
+ label: "\u{1F1F1}\u{1F1FE} Libya (+218)",
743
+ altLabel: "\u{1F1F1}\u{1F1FE} +218",
744
+ searchTags: ["+218", "218", "Libyan Arab Jamahiriya"]
745
+ },
746
+ {
747
+ value: "423",
748
+ label: "\u{1F1F1}\u{1F1EE} Liechtenstein (+423)",
749
+ altLabel: "\u{1F1F1}\u{1F1EE} +423",
750
+ searchTags: ["+423", "423", "Liechtenstein"]
751
+ },
752
+ {
753
+ value: "370",
754
+ label: "\u{1F1F1}\u{1F1F9} Lithuania (+370)",
755
+ altLabel: "\u{1F1F1}\u{1F1F9} +370",
756
+ searchTags: ["+370", "370", "Lithuania"]
757
+ },
758
+ {
759
+ value: "352",
760
+ label: "\u{1F1F1}\u{1F1FA} Luxembourg (+352)",
761
+ altLabel: "\u{1F1F1}\u{1F1FA} +352",
762
+ searchTags: ["+352", "352", "Luxembourg"]
763
+ },
764
+ {
765
+ value: "853",
766
+ label: "\u{1F1F2}\u{1F1F4} Macau (+853)",
767
+ altLabel: "\u{1F1F2}\u{1F1F4} +853",
768
+ searchTags: ["+853", "853", "Macao"]
769
+ },
770
+ {
771
+ value: "389",
772
+ label: "\u{1F1F2}\u{1F1F0} North Macedonia (+389)",
773
+ altLabel: "\u{1F1F2}\u{1F1F0} +389",
774
+ searchTags: ["+389", "389", "Macedonia, The Former Yugoslav Republic of"]
775
+ },
776
+ {
777
+ value: "261",
778
+ label: "\u{1F1F2}\u{1F1EC} Madagascar (+261)",
779
+ altLabel: "\u{1F1F2}\u{1F1EC} +261",
780
+ searchTags: ["+261", "261", "Madagascar"]
781
+ },
782
+ {
783
+ value: "265",
784
+ label: "\u{1F1F2}\u{1F1FC} Malawi (+265)",
785
+ altLabel: "\u{1F1F2}\u{1F1FC} +265",
786
+ searchTags: ["+265", "265", "Malawi"]
787
+ },
788
+ {
789
+ value: "60",
790
+ label: "\u{1F1F2}\u{1F1FE} Malaysia (+60)",
791
+ altLabel: "\u{1F1F2}\u{1F1FE} +60",
792
+ searchTags: ["+60", "60", "Malaysia"]
793
+ },
794
+ {
795
+ value: "960",
796
+ label: "\u{1F1F2}\u{1F1FB} Maldives (+960)",
797
+ altLabel: "\u{1F1F2}\u{1F1FB} +960",
798
+ searchTags: ["+960", "960", "Maldives"]
799
+ },
800
+ {
801
+ value: "223",
802
+ label: "\u{1F1F2}\u{1F1F1} Mali (+223)",
803
+ altLabel: "\u{1F1F2}\u{1F1F1} +223",
804
+ searchTags: ["+223", "223", "Mali"]
805
+ },
806
+ {
807
+ value: "356",
808
+ label: "\u{1F1F2}\u{1F1F9} Malta (+356)",
809
+ altLabel: "\u{1F1F2}\u{1F1F9} +356",
810
+ searchTags: ["+356", "356", "Malta"]
811
+ },
812
+ {
813
+ value: "692",
814
+ label: "\u{1F1F2}\u{1F1ED} Marshall Islands (+692)",
815
+ altLabel: "\u{1F1F2}\u{1F1ED} +692",
816
+ searchTags: ["+692", "692", "Marshall Islands"]
817
+ },
818
+ {
819
+ value: "596",
820
+ label: "\u{1F1F2}\u{1F1F6} Martinique (+596)",
821
+ altLabel: "\u{1F1F2}\u{1F1F6} +596",
822
+ searchTags: ["+596", "596", "Martinique"]
823
+ },
824
+ {
825
+ value: "222",
826
+ label: "\u{1F1F2}\u{1F1F7} Mauritania (+222)",
827
+ altLabel: "\u{1F1F2}\u{1F1F7} +222",
828
+ searchTags: ["+222", "222", "Mauritania"]
829
+ },
830
+ {
831
+ value: "230",
832
+ label: "\u{1F1F2}\u{1F1FA} Mauritius (+230)",
833
+ altLabel: "\u{1F1F2}\u{1F1FA} +230",
834
+ searchTags: ["+230", "230", "Mauritius"]
835
+ },
836
+ {
837
+ value: "262",
838
+ label: "\u{1F1FE}\u{1F1F9} Mayotte (+262)",
839
+ altLabel: "\u{1F1F9}\u{1F1EB} +262",
840
+ searchTags: ["+262", "262", "French Southern Territories"]
841
+ },
842
+ {
843
+ value: "52",
844
+ label: "\u{1F1F2}\u{1F1FD} Mexico (+52)",
845
+ altLabel: "\u{1F1F2}\u{1F1FD} +52",
846
+ searchTags: ["+52", "52", "Mexico"]
847
+ },
848
+ {
849
+ value: "691",
850
+ label: "\u{1F1EB}\u{1F1F2} Micronesia (+691)",
851
+ altLabel: "\u{1F1EB}\u{1F1F2} +691",
852
+ searchTags: ["+691", "691", "Micronesia, Federated States of"]
853
+ },
854
+ {
855
+ value: "373",
856
+ label: "\u{1F1F2}\u{1F1E9} Moldova (+373)",
857
+ altLabel: "\u{1F1F2}\u{1F1E9} +373",
858
+ searchTags: ["+373", "373", "Moldova, Republic of"]
859
+ },
860
+ {
861
+ value: "377",
862
+ label: "\u{1F1F2}\u{1F1E8} Monaco (+377)",
863
+ altLabel: "\u{1F1F2}\u{1F1E8} +377",
864
+ searchTags: ["+377", "377", "Monaco"]
865
+ },
866
+ {
867
+ value: "976",
868
+ label: "\u{1F1F2}\u{1F1F3} Mongolia (+976)",
869
+ altLabel: "\u{1F1F2}\u{1F1F3} +976",
870
+ searchTags: ["+976", "976", "Mongolia"]
871
+ },
872
+ {
873
+ value: "382",
874
+ label: "\u{1F1F2}\u{1F1EA} Montenegro (+382)",
875
+ altLabel: "\u{1F1F2}\u{1F1EA} +382",
876
+ searchTags: ["+382", "382", "Montenegro"]
877
+ },
878
+ {
879
+ value: "1664",
880
+ label: "\u{1F1F2}\u{1F1F8} Montserrat (+1664)",
881
+ altLabel: "\u{1F1F2}\u{1F1F8} +1664",
882
+ searchTags: ["+1664", "1664", "Montserrat"]
883
+ },
884
+ {
885
+ value: "212",
886
+ label: "\u{1F1F2}\u{1F1E6} Morocco (+212)",
887
+ altLabel: "\u{1F1F2}\u{1F1E6} +212",
888
+ searchTags: ["+212", "212", "Morocco"]
889
+ },
890
+ {
891
+ value: "258",
892
+ label: "\u{1F1F2}\u{1F1FF} Mozambique (+258)",
893
+ altLabel: "\u{1F1F2}\u{1F1FF} +258",
894
+ searchTags: ["+258", "258", "Mozambique"]
895
+ },
896
+ {
897
+ value: "95",
898
+ label: "\u{1F1F2}\u{1F1F2} Myanmar (Burma) (+95)",
899
+ altLabel: "\u{1F1F2}\u{1F1F2} +95",
900
+ searchTags: ["+95", "95", "Myanmar"]
901
+ },
902
+ {
903
+ value: "264",
904
+ label: "\u{1F1F3}\u{1F1E6} Namibia (+264)",
905
+ altLabel: "\u{1F1F3}\u{1F1E6} +264",
906
+ searchTags: ["+264", "264", "Namibia"]
907
+ },
908
+ {
909
+ value: "674",
910
+ label: "\u{1F1F3}\u{1F1F7} Nauru (+674)",
911
+ altLabel: "\u{1F1F3}\u{1F1F7} +674",
912
+ searchTags: ["+674", "674", "Nauru"]
913
+ },
914
+ {
915
+ value: "977",
916
+ label: "\u{1F1F3}\u{1F1F5} Nepal (+977)",
917
+ altLabel: "\u{1F1F3}\u{1F1F5} +977",
918
+ searchTags: ["+977", "977", "Nepal"]
919
+ },
920
+ {
921
+ value: "31",
922
+ label: "\u{1F1F3}\u{1F1F1} Netherlands (+31)",
923
+ altLabel: "\u{1F1F3}\u{1F1F1} +31",
924
+ searchTags: ["+31", "31", "Netherlands"]
925
+ },
926
+ {
927
+ value: "599",
928
+ label: "\u{1F1E7}\u{1F1F6} Caribbean Netherlands (+599)",
929
+ altLabel: "\u{1F1E8}\u{1F1FC} +599",
930
+ searchTags: ["+599", "599", "Cura\xE7ao"]
931
+ },
932
+ {
933
+ value: "687",
934
+ label: "\u{1F1F3}\u{1F1E8} New Caledonia (+687)",
935
+ altLabel: "\u{1F1F3}\u{1F1E8} +687",
936
+ searchTags: ["+687", "687", "New Caledonia"]
937
+ },
938
+ {
939
+ value: "64",
940
+ label: "\u{1F1F3}\u{1F1FF} New Zealand (+64)",
941
+ altLabel: "\u{1F1F3}\u{1F1FF} +64",
942
+ searchTags: ["+64", "64", "New Zealand"]
943
+ },
944
+ {
945
+ value: "505",
946
+ label: "\u{1F1F3}\u{1F1EE} Nicaragua (+505)",
947
+ altLabel: "\u{1F1F3}\u{1F1EE} +505",
948
+ searchTags: ["+505", "505", "Nicaragua"]
949
+ },
950
+ {
951
+ value: "227",
952
+ label: "\u{1F1F3}\u{1F1EA} Niger (+227)",
953
+ altLabel: "\u{1F1F3}\u{1F1EA} +227",
954
+ searchTags: ["+227", "227", "Niger"]
955
+ },
956
+ {
957
+ value: "234",
958
+ label: "\u{1F1F3}\u{1F1EC} Nigeria (+234)",
959
+ altLabel: "\u{1F1F3}\u{1F1EC} +234",
960
+ searchTags: ["+234", "234", "Nigeria"]
961
+ },
962
+ {
963
+ value: "683",
964
+ label: "\u{1F1F3}\u{1F1FA} Niue (+683)",
965
+ altLabel: "\u{1F1F3}\u{1F1FA} +683",
966
+ searchTags: ["+683", "683", "Niue"]
967
+ },
968
+ {
969
+ value: "672",
970
+ label: "\u{1F1F3}\u{1F1EB} Norfolk Island (+672)",
971
+ altLabel: "\u{1F1E6}\u{1F1F6} +672",
972
+ searchTags: ["+672", "672", "Antarctica"]
973
+ },
974
+ {
975
+ value: "1670",
976
+ label: "\u{1F1F2}\u{1F1F5} Northern Mariana Islands (+1670)",
977
+ altLabel: "\u{1F1F2}\u{1F1F5} +1670",
978
+ searchTags: ["+1670", "1670", "Northern Mariana Islands"]
979
+ },
980
+ {
981
+ value: "47",
982
+ label: "\u{1F1F3}\u{1F1F4} Norway (+47)",
983
+ altLabel: "\u{1F1F3}\u{1F1F4} +47",
984
+ searchTags: ["+47", "47", "Norway"]
985
+ },
986
+ {
987
+ value: "968",
988
+ label: "\u{1F1F4}\u{1F1F2} Oman (+968)",
989
+ altLabel: "\u{1F1F4}\u{1F1F2} +968",
990
+ searchTags: ["+968", "968", "Oman"]
991
+ },
992
+ {
993
+ value: "92",
994
+ label: "\u{1F1F5}\u{1F1F0} Pakistan (+92)",
995
+ altLabel: "\u{1F1F5}\u{1F1F0} +92",
996
+ searchTags: ["+92", "92", "Pakistan"]
997
+ },
998
+ {
999
+ value: "680",
1000
+ label: "\u{1F1F5}\u{1F1FC} Palau (+680)",
1001
+ altLabel: "\u{1F1F5}\u{1F1FC} +680",
1002
+ searchTags: ["+680", "680", "Palau"]
1003
+ },
1004
+ {
1005
+ value: "970",
1006
+ label: "\u{1F1F5}\u{1F1F8} Palestine (+970)",
1007
+ altLabel: "\u{1F1F5}\u{1F1F8} +970",
1008
+ searchTags: ["+970", "970", "Palestinian Territory, Occupied"]
1009
+ },
1010
+ {
1011
+ value: "507",
1012
+ label: "\u{1F1F5}\u{1F1E6} Panama (+507)",
1013
+ altLabel: "\u{1F1F5}\u{1F1E6} +507",
1014
+ searchTags: ["+507", "507", "Panama"]
1015
+ },
1016
+ {
1017
+ value: "675",
1018
+ label: "\u{1F1F5}\u{1F1EC} Papua New Guinea (+675)",
1019
+ altLabel: "\u{1F1F5}\u{1F1EC} +675",
1020
+ searchTags: ["+675", "675", "Papua New Guinea"]
1021
+ },
1022
+ {
1023
+ value: "595",
1024
+ label: "\u{1F1F5}\u{1F1FE} Paraguay (+595)",
1025
+ altLabel: "\u{1F1F5}\u{1F1FE} +595",
1026
+ searchTags: ["+595", "595", "Paraguay"]
1027
+ },
1028
+ {
1029
+ value: "51",
1030
+ label: "\u{1F1F5}\u{1F1EA} Peru (+51)",
1031
+ altLabel: "\u{1F1F5}\u{1F1EA} +51",
1032
+ searchTags: ["+51", "51", "Peru"]
1033
+ },
1034
+ {
1035
+ value: "63",
1036
+ label: "\u{1F1F5}\u{1F1ED} Philippines (+63)",
1037
+ altLabel: "\u{1F1F5}\u{1F1ED} +63",
1038
+ searchTags: ["+63", "63", "Philippines"]
1039
+ },
1040
+ {
1041
+ value: "48",
1042
+ label: "\u{1F1F5}\u{1F1F1} Poland (+48)",
1043
+ altLabel: "\u{1F1F5}\u{1F1F1} +48",
1044
+ searchTags: ["+48", "48", "Poland"]
1045
+ },
1046
+ {
1047
+ value: "351",
1048
+ label: "\u{1F1F5}\u{1F1F9} Portugal (+351)",
1049
+ altLabel: "\u{1F1F5}\u{1F1F9} +351",
1050
+ searchTags: ["+351", "351", "Portugal"]
1051
+ },
1052
+ {
1053
+ value: "974",
1054
+ label: "\u{1F1F6}\u{1F1E6} Qatar (+974)",
1055
+ altLabel: "\u{1F1F6}\u{1F1E6} +974",
1056
+ searchTags: ["+974", "974", "Qatar"]
1057
+ },
1058
+ {
1059
+ value: "40",
1060
+ label: "\u{1F1F7}\u{1F1F4} Romania (+40)",
1061
+ altLabel: "\u{1F1F7}\u{1F1F4} +40",
1062
+ searchTags: ["+40", "40", "Romania"]
1063
+ },
1064
+ {
1065
+ value: "7",
1066
+ label: "\u{1F1F7}\u{1F1FA} Russia (+7)",
1067
+ altLabel: "\u{1F1F7}\u{1F1FA} +7",
1068
+ searchTags: ["+7", "7", "Russia"]
1069
+ },
1070
+ {
1071
+ value: "250",
1072
+ label: "\u{1F1F7}\u{1F1FC} Rwanda (+250)",
1073
+ altLabel: "\u{1F1F7}\u{1F1FC} +250",
1074
+ searchTags: ["+250", "250", "Rwanda"]
1075
+ },
1076
+ {
1077
+ value: "262",
1078
+ label: "\u{1F1F7}\u{1F1EA} R\xE9union (+262)",
1079
+ altLabel: "\u{1F1F9}\u{1F1EB} +262",
1080
+ searchTags: ["+262", "262", "French Southern Territories"]
1081
+ },
1082
+ {
1083
+ value: "590",
1084
+ label: "\u{1F1E7}\u{1F1F1} St Barth\xE9lemy (+590)",
1085
+ altLabel: "\u{1F1EC}\u{1F1F5} +590",
1086
+ searchTags: ["+590", "590", "Guadeloupe"]
1087
+ },
1088
+ {
1089
+ value: "290",
1090
+ label: "\u{1F1F8}\u{1F1ED} St Helena (+290)",
1091
+ altLabel: "\u{1F1F8}\u{1F1ED} +290",
1092
+ searchTags: ["+290", "290", "Saint Helena, Ascension and Tristan Da Cunha"]
1093
+ },
1094
+ {
1095
+ value: "1869",
1096
+ label: "\u{1F1F0}\u{1F1F3} St Kitts & Nevis (+1869)",
1097
+ altLabel: "\u{1F1F0}\u{1F1F3} +1869",
1098
+ searchTags: ["+1869", "1869", "Saint Kitts and Nevis"]
1099
+ },
1100
+ {
1101
+ value: "1758",
1102
+ label: "\u{1F1F1}\u{1F1E8} St Lucia (+1758)",
1103
+ altLabel: "\u{1F1F1}\u{1F1E8} +1758",
1104
+ searchTags: ["+1758", "1758", "Saint Lucia"]
1105
+ },
1106
+ {
1107
+ value: "590",
1108
+ label: "\u{1F1F2}\u{1F1EB} St Martin (+590)",
1109
+ altLabel: "\u{1F1EC}\u{1F1F5} +590",
1110
+ searchTags: ["+590", "590", "Guadeloupe"]
1111
+ },
1112
+ {
1113
+ value: "508",
1114
+ label: "\u{1F1F5}\u{1F1F2} St Pierre & Miquelon (+508)",
1115
+ altLabel: "\u{1F1F5}\u{1F1F2} +508",
1116
+ searchTags: ["+508", "508", "Saint Pierre and Miquelon"]
1117
+ },
1118
+ {
1119
+ value: "1784",
1120
+ label: "\u{1F1FB}\u{1F1E8} St Vincent & Grenadines (+1784)",
1121
+ altLabel: "\u{1F1FB}\u{1F1E8} +1784",
1122
+ searchTags: ["+1784", "1784", "Saint Vincent and the Grenadines"]
1123
+ },
1124
+ {
1125
+ value: "685",
1126
+ label: "\u{1F1FC}\u{1F1F8} Samoa (+685)",
1127
+ altLabel: "\u{1F1FC}\u{1F1F8} +685",
1128
+ searchTags: ["+685", "685", "Samoa"]
1129
+ },
1130
+ {
1131
+ value: "378",
1132
+ label: "\u{1F1F8}\u{1F1F2} San Marino (+378)",
1133
+ altLabel: "\u{1F1F8}\u{1F1F2} +378",
1134
+ searchTags: ["+378", "378", "San Marino"]
1135
+ },
1136
+ {
1137
+ value: "239",
1138
+ label: "\u{1F1F8}\u{1F1F9} S\xE3o Tom\xE9 & Pr\xEDncipe (+239)",
1139
+ altLabel: "\u{1F1F8}\u{1F1F9} +239",
1140
+ searchTags: ["+239", "239", "Sao Tome and Principe"]
1141
+ },
1142
+ {
1143
+ value: "966",
1144
+ label: "\u{1F1F8}\u{1F1E6} Saudi Arabia (+966)",
1145
+ altLabel: "\u{1F1F8}\u{1F1E6} +966",
1146
+ searchTags: ["+966", "966", "Saudi Arabia"]
1147
+ },
1148
+ {
1149
+ value: "221",
1150
+ label: "\u{1F1F8}\u{1F1F3} Senegal (+221)",
1151
+ altLabel: "\u{1F1F8}\u{1F1F3} +221",
1152
+ searchTags: ["+221", "221", "Senegal"]
1153
+ },
1154
+ {
1155
+ value: "381",
1156
+ label: "\u{1F1F7}\u{1F1F8} Serbia (+381)",
1157
+ altLabel: "\u{1F1F7}\u{1F1F8} +381",
1158
+ searchTags: ["+381", "381", "Serbia"]
1159
+ },
1160
+ {
1161
+ value: "248",
1162
+ label: "\u{1F1F8}\u{1F1E8} Seychelles (+248)",
1163
+ altLabel: "\u{1F1F8}\u{1F1E8} +248",
1164
+ searchTags: ["+248", "248", "Seychelles"]
1165
+ },
1166
+ {
1167
+ value: "232",
1168
+ label: "\u{1F1F8}\u{1F1F1} Sierra Leone (+232)",
1169
+ altLabel: "\u{1F1F8}\u{1F1F1} +232",
1170
+ searchTags: ["+232", "232", "Sierra Leone"]
1171
+ },
1172
+ {
1173
+ value: "65",
1174
+ label: "\u{1F1F8}\u{1F1EC} Singapore (+65)",
1175
+ altLabel: "\u{1F1F8}\u{1F1EC} +65",
1176
+ searchTags: ["+65", "65", "Singapore"]
1177
+ },
1178
+ {
1179
+ value: "421",
1180
+ label: "\u{1F1F8}\u{1F1F0} Slovakia (+421)",
1181
+ altLabel: "\u{1F1F8}\u{1F1F0} +421",
1182
+ searchTags: ["+421", "421", "Slovakia"]
1183
+ },
1184
+ {
1185
+ value: "386",
1186
+ label: "\u{1F1F8}\u{1F1EE} Slovenia (+386)",
1187
+ altLabel: "\u{1F1F8}\u{1F1EE} +386",
1188
+ searchTags: ["+386", "386", "Slovenia"]
1189
+ },
1190
+ {
1191
+ value: "677",
1192
+ label: "\u{1F1F8}\u{1F1E7} Solomon Islands (+677)",
1193
+ altLabel: "\u{1F1F8}\u{1F1E7} +677",
1194
+ searchTags: ["+677", "677", "Solomon Islands"]
1195
+ },
1196
+ {
1197
+ value: "252",
1198
+ label: "\u{1F1F8}\u{1F1F4} Somalia (+252)",
1199
+ altLabel: "\u{1F1F8}\u{1F1F4} +252",
1200
+ searchTags: ["+252", "252", "Somalia"]
1201
+ },
1202
+ {
1203
+ value: "27",
1204
+ label: "\u{1F1FF}\u{1F1E6} South Africa (+27)",
1205
+ altLabel: "\u{1F1FF}\u{1F1E6} +27",
1206
+ searchTags: ["+27", "27", "South Africa"]
1207
+ },
1208
+ {
1209
+ value: "500",
1210
+ label: "\u{1F1EC}\u{1F1F8} South Georgia and the South Sandwich Islands (+500)",
1211
+ altLabel: "\u{1F1EB}\u{1F1F0} +500",
1212
+ searchTags: ["+500", "500", "Falkland Islands (Malvinas)"]
1213
+ },
1214
+ {
1215
+ value: "34",
1216
+ label: "\u{1F1EA}\u{1F1F8} Spain (+34)",
1217
+ altLabel: "\u{1F1EE}\u{1F1E8} +34",
1218
+ searchTags: ["+34", "34", "Canary Islands"]
1219
+ },
1220
+ {
1221
+ value: "94",
1222
+ label: "\u{1F1F1}\u{1F1F0} Sri Lanka (+94)",
1223
+ altLabel: "\u{1F1F1}\u{1F1F0} +94",
1224
+ searchTags: ["+94", "94", "Sri Lanka"]
1225
+ },
1226
+ {
1227
+ value: "249",
1228
+ label: "\u{1F1F8}\u{1F1E9} Sudan (+249)",
1229
+ altLabel: "\u{1F1F8}\u{1F1E9} +249",
1230
+ searchTags: ["+249", "249", "Sudan"]
1231
+ },
1232
+ {
1233
+ value: "211",
1234
+ label: "\u{1F1F8}\u{1F1F8} South Sudan (+211)",
1235
+ altLabel: "\u{1F1F8}\u{1F1F8} +211",
1236
+ searchTags: ["+211", "211", "South Sudan"]
1237
+ },
1238
+ {
1239
+ value: "597",
1240
+ label: "\u{1F1F8}\u{1F1F7} Suriname (+597)",
1241
+ altLabel: "\u{1F1F8}\u{1F1F7} +597",
1242
+ searchTags: ["+597", "597", "Suriname"]
1243
+ },
1244
+ {
1245
+ value: "47",
1246
+ label: "\u{1F1F8}\u{1F1EF} Svalbard & Jan Mayen (+47)",
1247
+ altLabel: "\u{1F1F3}\u{1F1F4} +47",
1248
+ searchTags: ["+47", "47", "Norway"]
1249
+ },
1250
+ {
1251
+ value: "268",
1252
+ label: "\u{1F1F8}\u{1F1FF} Eswatini (+268)",
1253
+ altLabel: "\u{1F1F8}\u{1F1FF} +268",
1254
+ searchTags: ["+268", "268", "Swaziland"]
1255
+ },
1256
+ {
1257
+ value: "46",
1258
+ label: "\u{1F1F8}\u{1F1EA} Sweden (+46)",
1259
+ altLabel: "\u{1F1F8}\u{1F1EA} +46",
1260
+ searchTags: ["+46", "46", "Sweden"]
1261
+ },
1262
+ {
1263
+ value: "41",
1264
+ label: "\u{1F1E8}\u{1F1ED} Switzerland (+41)",
1265
+ altLabel: "\u{1F1E8}\u{1F1ED} +41",
1266
+ searchTags: ["+41", "41", "Switzerland"]
1267
+ },
1268
+ {
1269
+ value: "963",
1270
+ label: "\u{1F1F8}\u{1F1FE} Syria (+963)",
1271
+ altLabel: "\u{1F1F8}\u{1F1FE} +963",
1272
+ searchTags: ["+963", "963", "Syrian Arab Republic"]
1273
+ },
1274
+ {
1275
+ value: "886",
1276
+ label: "\u{1F1F9}\u{1F1FC} Taiwan (+886)",
1277
+ altLabel: "\u{1F1F9}\u{1F1FC} +886",
1278
+ searchTags: ["+886", "886", "Taiwan, Province of China"]
1279
+ },
1280
+ {
1281
+ value: "992",
1282
+ label: "\u{1F1F9}\u{1F1EF} Tajikistan (+992)",
1283
+ altLabel: "\u{1F1F9}\u{1F1EF} +992",
1284
+ searchTags: ["+992", "992", "Tajikistan"]
1285
+ },
1286
+ {
1287
+ value: "255",
1288
+ label: "\u{1F1F9}\u{1F1FF} Tanzania (+255)",
1289
+ altLabel: "\u{1F1F9}\u{1F1FF} +255",
1290
+ searchTags: ["+255", "255", "Tanzania, United Republic of"]
1291
+ },
1292
+ {
1293
+ value: "66",
1294
+ label: "\u{1F1F9}\u{1F1ED} Thailand (+66)",
1295
+ altLabel: "\u{1F1F9}\u{1F1ED} +66",
1296
+ searchTags: ["+66", "66", "Thailand"]
1297
+ },
1298
+ {
1299
+ value: "670",
1300
+ label: "\u{1F1F9}\u{1F1F1} Timor-Leste (+670)",
1301
+ altLabel: "\u{1F1F9}\u{1F1F1} +670",
1302
+ searchTags: ["+670", "670", "Timor-Leste"]
1303
+ },
1304
+ {
1305
+ value: "228",
1306
+ label: "\u{1F1F9}\u{1F1EC} Togo (+228)",
1307
+ altLabel: "\u{1F1F9}\u{1F1EC} +228",
1308
+ searchTags: ["+228", "228", "Togo"]
1309
+ },
1310
+ {
1311
+ value: "690",
1312
+ label: "\u{1F1F9}\u{1F1F0} Tokelau (+690)",
1313
+ altLabel: "\u{1F1F9}\u{1F1F0} +690",
1314
+ searchTags: ["+690", "690", "Tokelau"]
1315
+ },
1316
+ {
1317
+ value: "676",
1318
+ label: "\u{1F1F9}\u{1F1F4} Tonga (+676)",
1319
+ altLabel: "\u{1F1F9}\u{1F1F4} +676",
1320
+ searchTags: ["+676", "676", "Tonga"]
1321
+ },
1322
+ {
1323
+ value: "1868",
1324
+ label: "\u{1F1F9}\u{1F1F9} Trinidad & Tobago (+1868)",
1325
+ altLabel: "\u{1F1F9}\u{1F1F9} +1868",
1326
+ searchTags: ["+1868", "1868", "Trinidad and Tobago"]
1327
+ },
1328
+ {
1329
+ value: "216",
1330
+ label: "\u{1F1F9}\u{1F1F3} Tunisia (+216)",
1331
+ altLabel: "\u{1F1F9}\u{1F1F3} +216",
1332
+ searchTags: ["+216", "216", "Tunisia"]
1333
+ },
1334
+ {
1335
+ value: "90",
1336
+ label: "\u{1F1F9}\u{1F1F7} Turkey (+90)",
1337
+ altLabel: "\u{1F1F9}\u{1F1F7} +90",
1338
+ searchTags: ["+90", "90", "Turkey"]
1339
+ },
1340
+ {
1341
+ value: "993",
1342
+ label: "\u{1F1F9}\u{1F1F2} Turkmenistan (+993)",
1343
+ altLabel: "\u{1F1F9}\u{1F1F2} +993",
1344
+ searchTags: ["+993", "993", "Turkmenistan"]
1345
+ },
1346
+ {
1347
+ value: "1649",
1348
+ label: "\u{1F1F9}\u{1F1E8} Turks & Caicos Islands (+1649)",
1349
+ altLabel: "\u{1F1F9}\u{1F1E8} +1649",
1350
+ searchTags: ["+1649", "1649", "Turks and Caicos Islands"]
1351
+ },
1352
+ {
1353
+ value: "688",
1354
+ label: "\u{1F1F9}\u{1F1FB} Tuvalu (+688)",
1355
+ altLabel: "\u{1F1F9}\u{1F1FB} +688",
1356
+ searchTags: ["+688", "688", "Tuvalu"]
1357
+ },
1358
+ {
1359
+ value: "256",
1360
+ label: "\u{1F1FA}\u{1F1EC} Uganda (+256)",
1361
+ altLabel: "\u{1F1FA}\u{1F1EC} +256",
1362
+ searchTags: ["+256", "256", "Uganda"]
1363
+ },
1364
+ {
1365
+ value: "380",
1366
+ label: "\u{1F1FA}\u{1F1E6} Ukraine (+380)",
1367
+ altLabel: "\u{1F1FA}\u{1F1E6} +380",
1368
+ searchTags: ["+380", "380", "Ukraine"]
1369
+ },
1370
+ {
1371
+ value: "971",
1372
+ label: "\u{1F1E6}\u{1F1EA} United Arab Emirates (+971)",
1373
+ altLabel: "\u{1F1E6}\u{1F1EA} +971",
1374
+ searchTags: ["+971", "971", "United Arab Emirates"]
1375
+ },
1376
+ {
1377
+ value: "44",
1378
+ label: "\u{1F1EC}\u{1F1E7} United Kingdom (+44)",
1379
+ altLabel: "\u{1F1EC}\u{1F1E7} +44",
1380
+ searchTags: ["+44", "44", "United Kingdom"]
1381
+ },
1382
+ {
1383
+ value: "1",
1384
+ label: "\u{1F1FA}\u{1F1F8} United States (+1)",
1385
+ altLabel: "\u{1F1FA}\u{1F1F8} +1",
1386
+ searchTags: ["+1", "1", "United States"]
1387
+ },
1388
+ {
1389
+ value: "598",
1390
+ label: "\u{1F1FA}\u{1F1FE} Uruguay (+598)",
1391
+ altLabel: "\u{1F1FA}\u{1F1FE} +598",
1392
+ searchTags: ["+598", "598", "Uruguay"]
1393
+ },
1394
+ {
1395
+ value: "998",
1396
+ label: "\u{1F1FA}\u{1F1FF} Uzbekistan (+998)",
1397
+ altLabel: "\u{1F1FA}\u{1F1FF} +998",
1398
+ searchTags: ["+998", "998", "Uzbekistan"]
1399
+ },
1400
+ {
1401
+ value: "678",
1402
+ label: "\u{1F1FB}\u{1F1FA} Vanuatu (+678)",
1403
+ altLabel: "\u{1F1FB}\u{1F1FA} +678",
1404
+ searchTags: ["+678", "678", "Vanuatu"]
1405
+ },
1406
+ {
1407
+ value: "58",
1408
+ label: "\u{1F1FB}\u{1F1EA} Venezuela (+58)",
1409
+ altLabel: "\u{1F1FB}\u{1F1EA} +58",
1410
+ searchTags: ["+58", "58", "Venezuela, Bolivarian Republic of"]
1411
+ },
1412
+ {
1413
+ value: "84",
1414
+ label: "\u{1F1FB}\u{1F1F3} Vietnam (+84)",
1415
+ altLabel: "\u{1F1FB}\u{1F1F3} +84",
1416
+ searchTags: ["+84", "84", "Viet Nam"]
1417
+ },
1418
+ {
1419
+ value: "1284",
1420
+ label: "\u{1F1FB}\u{1F1EC} British Virgin Islands (+1284)",
1421
+ altLabel: "\u{1F1FB}\u{1F1EC} +1284",
1422
+ searchTags: ["+1284", "1284", "Virgin Islands, British"]
1423
+ },
1424
+ {
1425
+ value: "1340",
1426
+ label: "\u{1F1FB}\u{1F1EE} US Virgin Islands (+1340)",
1427
+ altLabel: "\u{1F1FB}\u{1F1EE} +1340",
1428
+ searchTags: ["+1340", "1340", "Virgin Islands, U.S."]
1429
+ },
1430
+ {
1431
+ value: "681",
1432
+ label: "\u{1F1FC}\u{1F1EB} Wallis & Futuna (+681)",
1433
+ altLabel: "\u{1F1FC}\u{1F1EB} +681",
1434
+ searchTags: ["+681", "681", "Wallis and Futuna"]
1435
+ },
1436
+ {
1437
+ value: "212",
1438
+ label: "\u{1F1EA}\u{1F1ED} Western Sahara (+212)",
1439
+ altLabel: "\u{1F1F2}\u{1F1E6} +212",
1440
+ searchTags: ["+212", "212", "Morocco"]
1441
+ },
1442
+ {
1443
+ value: "967",
1444
+ label: "\u{1F1FE}\u{1F1EA} Yemen (+967)",
1445
+ altLabel: "\u{1F1FE}\u{1F1EA} +967",
1446
+ searchTags: ["+967", "967", "Yemen"]
1447
+ },
1448
+ {
1449
+ value: "260",
1450
+ label: "\u{1F1FF}\u{1F1F2} Zambia (+260)",
1451
+ altLabel: "\u{1F1FF}\u{1F1F2} +260",
1452
+ searchTags: ["+260", "260", "Zambia"]
1453
+ },
1454
+ {
1455
+ value: "263",
1456
+ label: "\u{1F1FF}\u{1F1FC} Zimbabwe (+263)",
1457
+ altLabel: "\u{1F1FF}\u{1F1FC} +263",
1458
+ searchTags: ["+263", "263", "Zimbabwe"]
1459
+ },
1460
+ {
1461
+ value: "358",
1462
+ label: "\u{1F1E6}\u{1F1FD} \xC5land Islands (+358)",
1463
+ altLabel: "\u{1F1EB}\u{1F1EE} +358",
1464
+ searchTags: ["+358", "358", "Finland"]
1465
+ }
1466
+ ];