@stokr/components-library 0.6.7 → 0.6.8

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 (560) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/CHANGELOG.md +7 -0
  3. package/Dockerfile +20 -0
  4. package/build/asset-manifest.json +45 -0
  5. package/build/favicon.ico +0 -0
  6. package/build/index.html +1 -0
  7. package/build/logo192.png +0 -0
  8. package/build/logo512.png +0 -0
  9. package/build/manifest.json +25 -0
  10. package/build/robots.txt +3 -0
  11. package/build/static/css/main.e30a9d15.css +15 -0
  12. package/build/static/css/main.e30a9d15.css.map +1 -0
  13. package/build/static/js/main.3e5959c7.js +3 -0
  14. package/build/static/js/main.3e5959c7.js.LICENSE.txt +164 -0
  15. package/build/static/js/main.3e5959c7.js.map +1 -0
  16. package/build/static/media/Ionicons.4e528d6445ca1974c313.woff +0 -0
  17. package/build/static/media/Ionicons.643c37f102b41f7f90c3.woff2 +0 -0
  18. package/build/static/media/Ionicons.98b7d3182f652f021bc3.ttf +0 -0
  19. package/build/static/media/OpenSans-Bold.9bea22b57dc165ed4382.ttf +0 -0
  20. package/build/static/media/OpenSans-Bold.a750292d6a0b5a760679.woff +0 -0
  21. package/build/static/media/OpenSans-Bold.cbfc24090ef8bacab132.woff2 +0 -0
  22. package/build/static/media/OpenSans-ExtraBold.21e493d43617de76dbc7.woff2 +0 -0
  23. package/build/static/media/OpenSans-ExtraBold.81f3ef07b7952e249da1.woff +0 -0
  24. package/build/static/media/OpenSans-ExtraBold.bcb6531cf820152b7538.ttf +0 -0
  25. package/build/static/media/OpenSans-Light.179ef2df02cb0b68c9fd.woff2 +0 -0
  26. package/build/static/media/OpenSans-Light.55053cc0a8e6482eca64.ttf +0 -0
  27. package/build/static/media/OpenSans-Light.c6a4bc1bd034d6303053.woff +0 -0
  28. package/build/static/media/OpenSans-Regular.3caa0d4f9b7d58668066.woff2 +0 -0
  29. package/build/static/media/OpenSans-Regular.9ec738fbb66068dc1ca7.woff +0 -0
  30. package/build/static/media/OpenSans-Regular.d97d7385fe8771611848.ttf +0 -0
  31. package/build/static/media/OpenSans-SemiBold.311956ded96d3fd2813d.woff2 +0 -0
  32. package/build/static/media/OpenSans-SemiBold.39f5961b2d3eb4aa5bf5.woff +0 -0
  33. package/build/static/media/OpenSans-SemiBold.d2b1865643b98c0e8b54.ttf +0 -0
  34. package/build/static/media/address-refreshing.5fbb0cc56c384480118a.gif +0 -0
  35. package/build/static/media/arrow-down-black.fe92da3ac6ed16b45bf57713df82cea2.svg +21 -0
  36. package/build/static/media/avatar-placeholder.488a33b3f080a43e0d43.png +0 -0
  37. package/build/static/media/icomoon.2640959b1f9381cde047.eot +0 -0
  38. package/build/static/media/icomoon.35bce49b15feeae93572c36a08feecd9.svg +47 -0
  39. package/build/static/media/icomoon.4c3c428d0ce82f840710.woff +0 -0
  40. package/build/static/media/icomoon.a1d7666a48f976227722.ttf +0 -0
  41. package/build/static/media/lemonway.33e88c3a49e7ac73e3a9.png +0 -0
  42. package/build/static/media/sicos-logo.7fa3ac9d583b52c3987da529da67cb15.svg +1 -0
  43. package/build/static/media/slick.2630a3e3eab21c607e21.svg +14 -0
  44. package/build/static/media/slick.295183786cd8a1389865.woff +0 -0
  45. package/build/static/media/slick.a4e97f5a2a64f0ab1323.eot +0 -0
  46. package/build/static/media/slick.c94f7671dcc99dce43e2.ttf +0 -0
  47. package/build/static/media/whales.7a1e9453670d08b8b76a.png +0 -0
  48. package/buildpushndeploy.sh +9 -0
  49. package/devops/Dockerfile +20 -0
  50. package/devops/Jenkinsfile +56 -0
  51. package/devops/ansible/docker-stack-deploy.yml +32 -0
  52. package/devops/ansible/hosts.ini +7 -0
  53. package/devops/docker-compose.yml +25 -0
  54. package/dist/api/StokrWeb3.js +184 -0
  55. package/dist/api/fetchData.js +76 -0
  56. package/dist/api/fetchDataPublic.js +65 -0
  57. package/dist/components/AccountBalance/AccountBalance.js +53 -0
  58. package/dist/components/AccountBalance/AccountBalance.stories.js +88 -0
  59. package/dist/components/AccountBalance/AccountBalance.styles.js +40 -0
  60. package/dist/components/AdminDashboard/Table/Table.js +170 -0
  61. package/dist/components/AdminDashboard/Table/Table.styles.js +79 -0
  62. package/dist/components/AgreementItem/AgreementItem.js +51 -0
  63. package/dist/components/AgreementItem/AgreementItem.stories.js +109 -0
  64. package/dist/components/AgreementItem/AgreementItem.styles.js +35 -0
  65. package/dist/components/AnalyticGraphs/Analytic.js +781 -0
  66. package/dist/components/AnalyticGraphs/Analytic.styles.js +37 -0
  67. package/dist/components/BackButton/BackButton.js +32 -0
  68. package/dist/components/BackButton/BackButton.stories.js +35 -0
  69. package/dist/components/BackButton/BackButton.styles.js +76 -0
  70. package/dist/components/Background/Background.js +45 -0
  71. package/dist/components/Background/Background.stories.js +78 -0
  72. package/dist/components/Background/Background.styles.js +76 -0
  73. package/dist/components/BarChart/BarChart.js +304 -0
  74. package/dist/components/BarChart/BarChart.stories.js +47 -0
  75. package/dist/components/BarChart/BarChart.styles.js +33 -0
  76. package/dist/components/BarChartLegend/BarChartLegend.js +106 -0
  77. package/dist/components/BarChartLegend/BarChartLegend.styles.js +26 -0
  78. package/dist/components/BasicTable/BasicTable.js +32 -0
  79. package/dist/components/BasicTable/BasicTable.stories.js +63 -0
  80. package/dist/components/BasicTable/BasicTable.styles.js +52 -0
  81. package/dist/components/Button/Button.stories.js +79 -0
  82. package/dist/components/Button/Button.styles.js +83 -0
  83. package/dist/components/ButtonContainer/ButtonContainer.styles.js +18 -0
  84. package/dist/components/CapitalRaisedSummary/CapitalRaisedSummery.stories.js +45 -0
  85. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.js +34 -0
  86. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.styles.js +34 -0
  87. package/dist/components/ChartBox/ChartBox.js +44 -0
  88. package/dist/components/ChartBox/ChartBox.stories.js +20 -0
  89. package/dist/components/ChartBox/ChartBox.styles.js +33 -0
  90. package/dist/components/ChartBox/ChartBoxDistribution.js +30 -0
  91. package/dist/components/ChartBox/ChartBoxDistribution.stories.js +21 -0
  92. package/dist/components/ChartLegend/ChartLegend.js +62 -0
  93. package/dist/components/ChartLegend/ChartLegend.stories.js +87 -0
  94. package/dist/components/ChartLegend/ChartLegend.styles.js +64 -0
  95. package/dist/components/Checkbox/Checkbox.js +116 -0
  96. package/dist/components/Checkbox/Checkbox.stories.js +92 -0
  97. package/dist/components/Checkbox/Checkbox.styles.js +45 -0
  98. package/dist/components/Checklist/UserChecklist.js +284 -0
  99. package/dist/components/Checklist/UserChecklist.stories.js +143 -0
  100. package/dist/components/ComponentScroll/ComponentScroll.js +100 -0
  101. package/dist/components/ComponentScroll/ComponentScroll.stories.js +102 -0
  102. package/dist/components/ComponentScroll/ComponentScroll.styles.js +66 -0
  103. package/dist/components/ComponentWrapper/ComponentWrapper.styles.js +68 -0
  104. package/dist/components/CryptoAddress/ComponentWrap.js +37 -0
  105. package/dist/components/CryptoAddress/CryptoAddress.js +145 -0
  106. package/dist/components/CryptoAddress/CryptoAddress.stories.js +173 -0
  107. package/dist/components/CryptoAddress/CryptoAddress.styles.js +186 -0
  108. package/dist/components/CryptoAddress/RadioWrap.js +49 -0
  109. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.js +54 -0
  110. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.stories.js +74 -0
  111. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.styles.js +67 -0
  112. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.js +40 -0
  113. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.styles.js +59 -0
  114. package/dist/components/DonutChart/DonutChart.js +182 -0
  115. package/dist/components/DonutChart/DonutChart.stories.js +40 -0
  116. package/dist/components/DonutChart/DonutChart.styles.js +50 -0
  117. package/dist/components/DoubleButton/DoubleButton.styles.js +22 -0
  118. package/dist/components/ErrorMessage/ErrorMessage.styles.js +15 -0
  119. package/dist/components/FAQ/FAQ.js +75 -0
  120. package/dist/components/FAQ/FAQ.stories.js +74 -0
  121. package/dist/components/FAQ/FAQ.styles.js +48 -0
  122. package/dist/components/Footer/Footer.js +66 -0
  123. package/dist/components/Footer/Footer.stories.js +54 -0
  124. package/dist/components/Footer/Footer.styles.js +74 -0
  125. package/dist/components/Footer/FooterLayout.js +125 -0
  126. package/dist/components/Footer/FooterLayout.stories.js +31 -0
  127. package/dist/components/Footer/FooterMenu.js +117 -0
  128. package/dist/components/Footer/FooterMenu.stories.js +121 -0
  129. package/dist/components/Footer/FooterMenu.styles.js +80 -0
  130. package/dist/components/Footer/index.js +27 -0
  131. package/dist/components/Footer/lemonway.png +0 -0
  132. package/dist/components/Footer/sicos-logo.svg +1 -0
  133. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.js +127 -0
  134. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.stories.js +42 -0
  135. package/dist/components/Form/Form.js +68 -0
  136. package/dist/components/Form/Form.stories.js +35 -0
  137. package/dist/components/Form/Form.styles.js +59 -0
  138. package/dist/components/FullscreenCard/FullscreenCard.styles.js +32 -0
  139. package/dist/components/Grid/Grid.styles.js +68 -0
  140. package/dist/components/Header/Header.js +457 -0
  141. package/dist/components/Header/Header.stories.js +190 -0
  142. package/dist/components/Header/Header.styles.js +182 -0
  143. package/dist/components/Icon/Icon.style.js +71 -0
  144. package/dist/components/InfoIcon/InfoIcon.js +50 -0
  145. package/dist/components/InfoIcon/InfoIcon.stories.js +52 -0
  146. package/dist/components/InfoIcon/InfoIcon.styles.js +31 -0
  147. package/dist/components/InfoPanel/InfoPanel.js +146 -0
  148. package/dist/components/Input/DatePickerInput.js +85 -0
  149. package/dist/components/Input/DatePickerInput.stories.js +91 -0
  150. package/dist/components/Input/DatePickerInput.styles.js +29 -0
  151. package/dist/components/Input/Input.js +108 -0
  152. package/dist/components/Input/Input.stories.js +148 -0
  153. package/dist/components/Input/Input.styles.js +53 -0
  154. package/dist/components/Input/InputPassword.js +151 -0
  155. package/dist/components/Input/InputPassword.stories.js +85 -0
  156. package/dist/components/Input/InputPassword.styles.js +80 -0
  157. package/dist/components/Input/RangeInput.js +60 -0
  158. package/dist/components/Input/RangeInput.stories.js +59 -0
  159. package/dist/components/Input/RangeInput.styles.js +53 -0
  160. package/dist/components/Input/Select.js +148 -0
  161. package/dist/components/Input/Select.stories.js +142 -0
  162. package/dist/components/Input/Select.styles.js +65 -0
  163. package/dist/components/InvestCalculator/InvestCalculator.js +367 -0
  164. package/dist/components/InvestCalculator/InvestCalculator.stories.js +137 -0
  165. package/dist/components/InvestCalculator/InvestCalculator.styles.js +66 -0
  166. package/dist/components/InvestmentStat/InvestmentStat.js +40 -0
  167. package/dist/components/InvestmentStat/InvestmentStat.stories.js +56 -0
  168. package/dist/components/InvestmentStat/InvestmentStat.styles.js +43 -0
  169. package/dist/components/KYCFlow/BasicInfo.js +489 -0
  170. package/dist/components/KYCFlow/Confirmation.js +51 -0
  171. package/dist/components/KYCFlow/DocumentFileUpload.js +276 -0
  172. package/dist/components/KYCFlow/DocumentScan.js +74 -0
  173. package/dist/components/KYCFlow/DocumentScanUpload.js +258 -0
  174. package/dist/components/KYCFlow/DocumentSelect.js +148 -0
  175. package/dist/components/KYCFlow/DocumentSuccess.js +64 -0
  176. package/dist/components/KYCFlow/DocumentUpload.js +54 -0
  177. package/dist/components/KYCFlow/DocumentVerificationType.js +161 -0
  178. package/dist/components/KYCFlow/FaceScan.js +55 -0
  179. package/dist/components/KYCFlow/FaceScanRecognition.js +60 -0
  180. package/dist/components/KYCFlow/FaceScanSuccess.js +59 -0
  181. package/dist/components/KYCFlow/Terms.js +142 -0
  182. package/dist/components/KYCFlow/_styles.js +160 -0
  183. package/dist/components/KYCFlow/index.js +97 -0
  184. package/dist/components/KYCSelectBox/KYCSelectBox.styles.js +41 -0
  185. package/dist/components/LatestUpdate/LatestUpdate.js +51 -0
  186. package/dist/components/LatestUpdate/LatestUpdate.stories.js +62 -0
  187. package/dist/components/LatestUpdate/LatestUpdate.styles.js +71 -0
  188. package/dist/components/Layout/Layout-func-no-work.js +78 -0
  189. package/dist/components/Layout/Layout.js +103 -0
  190. package/dist/components/Layout/Layout.stories.js +67 -0
  191. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.js +47 -0
  192. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.stories.js +70 -0
  193. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.styles.js +43 -0
  194. package/dist/components/LearnMorePage/LearnMore.js +255 -0
  195. package/dist/components/LearnMorePage/LearnMore.shared.styles.js +40 -0
  196. package/dist/components/LearnMorePage/LearnMore.stories.js +51 -0
  197. package/dist/components/LearnMorePage/LearnMore.styles.js +120 -0
  198. package/dist/components/LearnMorePage/LearnMoreExampleObject.js +87 -0
  199. package/dist/components/LearnMorePage/LearnMoreItem.js +75 -0
  200. package/dist/components/LearnMorePage/LearnMoreItem.stories.js +65 -0
  201. package/dist/components/LearnMorePage/LearnMoreItem.styles.js +87 -0
  202. package/dist/components/LearnMoreSection/LearnMore.js +199 -0
  203. package/dist/components/LearnMoreSection/LearnMore.stories.js +33 -0
  204. package/dist/components/LearnMoreSection/LearnMore.styles.js +73 -0
  205. package/dist/components/LearnMoreSection/LearnMoreItem.js +52 -0
  206. package/dist/components/LearnMoreSection/LearnMoreItem.stories.js +62 -0
  207. package/dist/components/LearnMoreSection/LearnMoreItem.styles.js +50 -0
  208. package/dist/components/LoginModal/LoginModal.js +163 -0
  209. package/dist/components/MainMenu/DynamicMainMenu.js +50 -0
  210. package/dist/components/MainMenu/MainMenu.js +262 -0
  211. package/dist/components/MainMenu/MainMenu.styles.js +124 -0
  212. package/dist/components/MatomoConnect/Matomo.js +485 -0
  213. package/dist/components/MatomoConnect/Matomo_fuckup.js +383 -0
  214. package/dist/components/MenuNav/MenuNav.styles.js +42 -0
  215. package/dist/components/Modal/Modal.js +135 -0
  216. package/dist/components/Modal/Modal.stories.js +82 -0
  217. package/dist/components/Modal/Modal.styles.js +140 -0
  218. package/dist/components/MultiProgressBar/MultiProgressBar.js +48 -0
  219. package/dist/components/MultiProgressBar/MultiProgressBar.stories.js +72 -0
  220. package/dist/components/MultiProgressBar/MultiProgressBar.styles.js +41 -0
  221. package/dist/components/Newsletter/Newsletter.js +139 -0
  222. package/dist/components/Newsletter/Newsletter.stories.js +19 -0
  223. package/dist/components/Newsletter/Newsletter.styles.js +83 -0
  224. package/dist/components/NotificationContext/NotificationContext.js +173 -0
  225. package/dist/components/NotificationContext/NotificationContext.stories.js +33 -0
  226. package/dist/components/NotificationCounter/NotificationCounter.styles.js +22 -0
  227. package/dist/components/Number/Number.js +35 -0
  228. package/dist/components/Number/Number.stories.js +41 -0
  229. package/dist/components/Number/Number.styles.js +20 -0
  230. package/dist/components/PageTransition/PageTransition.js +57 -0
  231. package/dist/components/Process/Process.stories.js +47 -0
  232. package/dist/components/Process/Process.styles.js +33 -0
  233. package/dist/components/ProfileBadge/ProfileBadge.js +53 -0
  234. package/dist/components/ProfileBadge/ProfileBadge.stories.js +48 -0
  235. package/dist/components/ProfileBadge/ProfileBadge.styles.js +32 -0
  236. package/dist/components/ProfileBox/ProfileBox.js +39 -0
  237. package/dist/components/ProfileBox/ProfileBox.stories.js +38 -0
  238. package/dist/components/ProfileBox/ProfileBox.styles.js +49 -0
  239. package/dist/components/ProfileHeader/ProfileHeader-CLb4.js +477 -0
  240. package/dist/components/ProfileHeader/ProfileHeader.js +330 -0
  241. package/dist/components/ProfileHeader/ProfileHeader.styles.js +87 -0
  242. package/dist/components/ProfileStat/ProfileStat.js +42 -0
  243. package/dist/components/ProfileStat/ProfileStat.stories.js +71 -0
  244. package/dist/components/ProfileStat/ProfileStat.styles.js +42 -0
  245. package/dist/components/ProofOfAddress/ProofOfAddress.styles.js +69 -0
  246. package/dist/components/ROI/ROI.js +312 -0
  247. package/dist/components/ROI/ROI.styles.js +63 -0
  248. package/dist/components/ROI/ROIChart.js +469 -0
  249. package/dist/components/ROI/ROIChart.styles.js +33 -0
  250. package/dist/components/ROI/ROIModal.js +91 -0
  251. package/dist/components/ROI/ROIScenarioBox.js +55 -0
  252. package/dist/components/ROI/ROIScenarioBox.styles.js +52 -0
  253. package/dist/components/Radio/Radio.js +68 -0
  254. package/dist/components/Radio/Radio.stories.js +76 -0
  255. package/dist/components/Radio/Radio.styles.js +31 -0
  256. package/dist/components/RefreshButton/RefreshButton.js +21 -0
  257. package/dist/components/RefreshButton/RefreshButton.stories.js +42 -0
  258. package/dist/components/RefreshButton/RefreshButton.styles.js +39 -0
  259. package/dist/components/RegisterAlgorand/AlgoAddressName.js +138 -0
  260. package/dist/components/RegisterAlgorand/AlgoAdressSelect.js +444 -0
  261. package/dist/components/RegisterAlgorand/AlgoConnectWallet.js +47 -0
  262. package/dist/components/RegisterAlgorand/AlgoSuccess.js +38 -0
  263. package/dist/components/RegisterAlgorand/Algorand.stories.js +78 -0
  264. package/dist/components/RegisterAlgorand/ChooseWallet.js +97 -0
  265. package/dist/components/RegisterAlgorand/SelectProject.js +90 -0
  266. package/dist/components/RegisterAlgorand/_styles.js +28 -0
  267. package/dist/components/RegisterAlgorand/flow.js +409 -0
  268. package/dist/components/RegisterAlgorand/flowWithMemo.js +410 -0
  269. package/dist/components/RegisterAlgorand/index.js +48 -0
  270. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.js +40 -0
  271. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.stories.js +33 -0
  272. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.styles.js +16 -0
  273. package/dist/components/RegisterEthereum/EthAddressLedger.js +226 -0
  274. package/dist/components/RegisterEthereum/EthAddressMetamask.js +205 -0
  275. package/dist/components/RegisterEthereum/EthAddressName.js +135 -0
  276. package/dist/components/RegisterEthereum/EthConnectLedger.js +194 -0
  277. package/dist/components/RegisterEthereum/EthConnectMetamask.js +35 -0
  278. package/dist/components/RegisterEthereum/EthFinish.js +41 -0
  279. package/dist/components/RegisterEthereum/EthIntro.js +95 -0
  280. package/dist/components/RegisterEthereum/_styles.js +28 -0
  281. package/dist/components/RegisterEthereum/index.js +68 -0
  282. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.js +106 -0
  283. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.stories.js +66 -0
  284. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.styles.js +48 -0
  285. package/dist/components/RegisterLiquidSteps/complete.js +37 -0
  286. package/dist/components/RegisterLiquidSteps/flow.js +197 -0
  287. package/dist/components/RegisterLiquidSteps/index.js +52 -0
  288. package/dist/components/RegisterLiquidSteps/register-liquid.js +240 -0
  289. package/dist/components/RegisterModal/RegisterModal.js +180 -0
  290. package/dist/components/RegisterModal/RegisterModal.stories.js +46 -0
  291. package/dist/components/RequestDataBox/RequestDataBox.js +31 -0
  292. package/dist/components/RequestDataBox/RequestDataBox.stories.js +40 -0
  293. package/dist/components/RequestDataBox/RequestDataBox.styles.js +31 -0
  294. package/dist/components/RiskQuestionnaire/RiskQuestionnaireContext.js +185 -0
  295. package/dist/components/RiskQuestionnaire/_styles.js +15 -0
  296. package/dist/components/SEO/SEO.js +71 -0
  297. package/dist/components/SEO/SEO.stories.js +64 -0
  298. package/dist/components/SectionTitle/SectionTitle.styles.js +15 -0
  299. package/dist/components/SideLine/SideLine.js +15 -0
  300. package/dist/components/SideLine/SideLine.stories.js +31 -0
  301. package/dist/components/SideLine/SideLine.styles.js +26 -0
  302. package/dist/components/SigningSubflow/SignSubAddressMetamask.js +137 -0
  303. package/dist/components/SigningSubflow/SignSubConnectLedger.js +150 -0
  304. package/dist/components/SigningSubflow/SignSubConnectMetamask.js +137 -0
  305. package/dist/components/SigningSubflow/SignSubIntro.js +54 -0
  306. package/dist/components/SigningSubflow/SignSubSendLedger.js +150 -0
  307. package/dist/components/SigningSubflow/SignSubSendMetamask.js +62 -0
  308. package/dist/components/SigningSubflow/SignSubTransactionLedger.js +161 -0
  309. package/dist/components/SigningSubflow/SignSubTransactionMetamask.js +166 -0
  310. package/dist/components/SigningSubflow/_styles.js +45 -0
  311. package/dist/components/SigningSubflow/index.js +74 -0
  312. package/dist/components/Slider/Slider.js +50 -0
  313. package/dist/components/Slider/Slider.stories.js +72 -0
  314. package/dist/components/Slider/Slider.styles.js +23 -0
  315. package/dist/components/SpanButton/SpanButton.styles.js +15 -0
  316. package/dist/components/StatusBadge/StatusBadge.styles.js +20 -0
  317. package/dist/components/StepController/StepController.js +111 -0
  318. package/dist/components/StepController/StepController.stories.js +63 -0
  319. package/dist/components/StepController/StepController.styles.js +26 -0
  320. package/dist/components/StepController/StepControllerContext.js +104 -0
  321. package/dist/components/StepController/StepControllerProgress.js +40 -0
  322. package/dist/components/StepController/StepControllerProgress.stories.js +52 -0
  323. package/dist/components/StepsProgress/StepsProgress.js +128 -0
  324. package/dist/components/StepsProgress/StepsProgress.stories.js +50 -0
  325. package/dist/components/StepsProgress/StepsProgress.styles.js +36 -0
  326. package/dist/components/StokrLoader/StokrLoader.js +32 -0
  327. package/dist/components/StokrLoader/media.js +27 -0
  328. package/dist/components/SvgIcons/AdminBadgeSvg.js +26 -0
  329. package/dist/components/SvgIcons/CameraSvg.js +36 -0
  330. package/dist/components/SvgIcons/CapsLockSvg.js +31 -0
  331. package/dist/components/SvgIcons/DocumentBackSvg.js +35 -0
  332. package/dist/components/SvgIcons/DocumentSmallSvg.js +61 -0
  333. package/dist/components/SvgIcons/DocumentSvg.js +38 -0
  334. package/dist/components/SvgIcons/Early.js +24 -0
  335. package/dist/components/SvgIcons/EthSvg.js +40 -0
  336. package/dist/components/SvgIcons/EurSvg.js +26 -0
  337. package/dist/components/SvgIcons/FaceScanIconSvg.js +31 -0
  338. package/dist/components/SvgIcons/FourSvg.js +21 -0
  339. package/dist/components/SvgIcons/Glassess.js +29 -0
  340. package/dist/components/SvgIcons/LogoSvg.js +24 -0
  341. package/dist/components/SvgIcons/OneSvg.js +23 -0
  342. package/dist/components/SvgIcons/PassportSvg.js +56 -0
  343. package/dist/components/SvgIcons/RefreshSvg.js +27 -0
  344. package/dist/components/SvgIcons/SocialFacebook.js +25 -0
  345. package/dist/components/SvgIcons/SocialInstagram.js +26 -0
  346. package/dist/components/SvgIcons/SocialLinkedIn.js +25 -0
  347. package/dist/components/SvgIcons/SocialMedium.js +25 -0
  348. package/dist/components/SvgIcons/SocialReddit.js +25 -0
  349. package/dist/components/SvgIcons/SocialTelegram.js +25 -0
  350. package/dist/components/SvgIcons/SocialTwitter.js +25 -0
  351. package/dist/components/SvgIcons/SocialYoutube.js +25 -0
  352. package/dist/components/SvgIcons/ThreeSvg.js +20 -0
  353. package/dist/components/SvgIcons/TwoSidedDocumentSvg.js +82 -0
  354. package/dist/components/SvgIcons/TwoSvg.js +23 -0
  355. package/dist/components/SvgIcons/UpdateDefaultSvg.js +29 -0
  356. package/dist/components/SvgIcons/UpdateHardSvg.js +25 -0
  357. package/dist/components/SvgIcons/UpdateSoftSvg.js +27 -0
  358. package/dist/components/SvgIcons/UploadSvg.js +34 -0
  359. package/dist/components/SvgIcons/VerifiedBadge.js +23 -0
  360. package/dist/components/SvgIcons/index.js +223 -0
  361. package/dist/components/Switch/Switch.js +70 -0
  362. package/dist/components/Switch/Switch.stories.js +86 -0
  363. package/dist/components/Switch/Switch.styles.js +47 -0
  364. package/dist/components/Tabs/Tabs.js +70 -0
  365. package/dist/components/Tabs/Tabs.stories.js +29 -0
  366. package/dist/components/Tabs/Tabs.styles.js +18 -0
  367. package/dist/components/TabsNav/TabNav.js +31 -0
  368. package/dist/components/TabsNav/TabNav.stories.js +44 -0
  369. package/dist/components/TabsNav/TabsNav.js +43 -0
  370. package/dist/components/TabsNav/TabsNav.stories.js +26 -0
  371. package/dist/components/TabsNav/TabsNav.styles.js +43 -0
  372. package/dist/components/TeamOverview/TeamOverview.js +125 -0
  373. package/dist/components/TeamOverview/TeamOverview.stories.js +80 -0
  374. package/dist/components/TeamOverview/TeamOverview.styles.js +81 -0
  375. package/dist/components/Text/Headline.js +29 -0
  376. package/dist/components/Text/Headline.stories.js +51 -0
  377. package/dist/components/Text/StyledText.js +19 -0
  378. package/dist/components/Text/Text.stories.js +71 -0
  379. package/dist/components/Text/Text.styles.js +40 -0
  380. package/dist/components/TextLink/TextLink.styles.js +30 -0
  381. package/dist/components/ToDoList/ToDoList.js +184 -0
  382. package/dist/components/ToDoList/ToDoList.stories.js +137 -0
  383. package/dist/components/ToDoList/ToDoList.styles.js +83 -0
  384. package/dist/components/ToDoList/ToDoListTask.js +118 -0
  385. package/dist/components/ToDoList/ToDoListTask.stories.js +72 -0
  386. package/dist/components/ToDoList/ToDoListTask.styles.js +74 -0
  387. package/dist/components/TransactionDetails/TransactionDetails.js +46 -0
  388. package/dist/components/TransactionDetails/TransactionDetails.stories.js +59 -0
  389. package/dist/components/TransactionDetails/TransactionDetails.styles.js +31 -0
  390. package/dist/components/TransactionInfo/TransactionInfo.js +58 -0
  391. package/dist/components/TransactionInfo/TransactionInfo.stories.js +64 -0
  392. package/dist/components/TransactionInfo/TransactionInfo.styles.js +54 -0
  393. package/dist/components/TwoFactorModal/TwoFactorModal.js +122 -0
  394. package/dist/components/breakdown/Breakdown.js +56 -0
  395. package/dist/components/breakdown/index.js +27 -0
  396. package/dist/components/context/Auth.js +207 -0
  397. package/dist/components/context/AuthContext.js +335 -0
  398. package/dist/components/icons/Arrow.js +70 -0
  399. package/dist/components/icons/Arrow.stories.js +49 -0
  400. package/dist/components/icons/ArrowSimple.js +59 -0
  401. package/dist/components/icons/ArrowSimple.stories.js +55 -0
  402. package/dist/components/icons/Check.js +43 -0
  403. package/dist/components/icons/Check.stories.js +25 -0
  404. package/dist/components/icons/Facebook.js +26 -0
  405. package/dist/components/icons/Facebook.stories.js +24 -0
  406. package/dist/components/icons/Info.js +55 -0
  407. package/dist/components/icons/Info.stories.js +19 -0
  408. package/dist/components/icons/Instagram.js +26 -0
  409. package/dist/components/icons/Instagram.stories.js +24 -0
  410. package/dist/components/icons/LinkIcon.js +34 -0
  411. package/dist/components/icons/LinkIcon.stories.js +24 -0
  412. package/dist/components/icons/LinkedIn.js +43 -0
  413. package/dist/components/icons/LinkedIn.stories.js +19 -0
  414. package/dist/components/icons/Medium.js +42 -0
  415. package/dist/components/icons/Medium.stories.js +19 -0
  416. package/dist/components/icons/Reddit.js +32 -0
  417. package/dist/components/icons/Reddit.stories.js +24 -0
  418. package/dist/components/icons/Share.js +62 -0
  419. package/dist/components/icons/Share.stories.js +19 -0
  420. package/dist/components/icons/Telegram.js +42 -0
  421. package/dist/components/icons/Telegram.stories.js +19 -0
  422. package/dist/components/icons/Twitter.js +26 -0
  423. package/dist/components/icons/Twitter.stories.js +24 -0
  424. package/dist/components/icons/X.js +26 -0
  425. package/dist/components/icons/X.stories.js +19 -0
  426. package/dist/components/icons/Youtube.js +26 -0
  427. package/dist/components/icons/Youtube.stories.js +24 -0
  428. package/dist/components/icons/index.js +170 -0
  429. package/dist/components/renderToBody/index.js +27 -0
  430. package/dist/components/renderToBody/renderToBody.js +68 -0
  431. package/dist/components/taxId/TaxId.stories.js +54 -0
  432. package/dist/components/taxId/complete.js +32 -0
  433. package/dist/components/taxId/flow.js +65 -0
  434. package/dist/components/taxId/index.js +27 -0
  435. package/dist/components/taxId/register-taxid.js +195 -0
  436. package/dist/components/video/Video.js +174 -0
  437. package/dist/components/video/Video.stories.js +56 -0
  438. package/dist/components/video/index.js +27 -0
  439. package/dist/constants/globalVariables.js +10 -0
  440. package/dist/constants/style.js +52 -0
  441. package/dist/index.js +1 -0
  442. package/dist/model/axios.js +18 -0
  443. package/dist/model/axiosPublic.js +18 -0
  444. package/dist/static/fonts/Ionicons/Ionicons.ttf +0 -0
  445. package/dist/static/fonts/Ionicons/Ionicons.woff +0 -0
  446. package/dist/static/fonts/Ionicons/Ionicons.woff2 +0 -0
  447. package/dist/static/fonts/Ionicons/ionicons.min.css +13 -0
  448. package/dist/static/fonts/OpenSans/OpenSans-Bold.ttf +0 -0
  449. package/dist/static/fonts/OpenSans/OpenSans-Bold.woff +0 -0
  450. package/dist/static/fonts/OpenSans/OpenSans-Bold.woff2 +0 -0
  451. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.ttf +0 -0
  452. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff +0 -0
  453. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff2 +0 -0
  454. package/dist/static/fonts/OpenSans/OpenSans-Light.ttf +0 -0
  455. package/dist/static/fonts/OpenSans/OpenSans-Light.woff +0 -0
  456. package/dist/static/fonts/OpenSans/OpenSans-Light.woff2 +0 -0
  457. package/dist/static/fonts/OpenSans/OpenSans-Regular.ttf +0 -0
  458. package/dist/static/fonts/OpenSans/OpenSans-Regular.woff +0 -0
  459. package/dist/static/fonts/OpenSans/OpenSans-Regular.woff2 +0 -0
  460. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.ttf +0 -0
  461. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff +0 -0
  462. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff2 +0 -0
  463. package/dist/static/fonts/icomoon/icomoon.eot +0 -0
  464. package/dist/static/fonts/icomoon/icomoon.svg +47 -0
  465. package/dist/static/fonts/icomoon/icomoon.ttf +0 -0
  466. package/dist/static/fonts/icomoon/icomoon.woff +0 -0
  467. package/dist/static/fonts/icomoon/selection.json +1 -0
  468. package/dist/static/fonts/icomoon/style.css +137 -0
  469. package/dist/static/images/1.svg +4 -0
  470. package/dist/static/images/2.svg +4 -0
  471. package/dist/static/images/3.svg +3 -0
  472. package/dist/static/images/4.svg +3 -0
  473. package/dist/static/images/Glassess.svg +5 -0
  474. package/dist/static/images/VerifiedBadge.svg +1 -0
  475. package/dist/static/images/address-refreshing.gif +0 -0
  476. package/dist/static/images/admin-badge.svg +3 -0
  477. package/dist/static/images/amazon-logo.png +0 -0
  478. package/dist/static/images/arrow-down-black.svg +21 -0
  479. package/dist/static/images/avatar-cog.png +0 -0
  480. package/dist/static/images/avatar-placeholder.png +0 -0
  481. package/dist/static/images/avatar.png +0 -0
  482. package/dist/static/images/background.png +0 -0
  483. package/dist/static/images/camera.svg +1 -0
  484. package/dist/static/images/caps-lock.svg +6 -0
  485. package/dist/static/images/covers/blockchain.png +0 -0
  486. package/dist/static/images/covers/country.jpg +0 -0
  487. package/dist/static/images/covers/ethereum.jpg +0 -0
  488. package/dist/static/images/covers/index.png +0 -0
  489. package/dist/static/images/covers/liquid.png +0 -0
  490. package/dist/static/images/covers/money.png +0 -0
  491. package/dist/static/images/covers/overview.jpg +0 -0
  492. package/dist/static/images/covers/risk-questionnaire.jpg +0 -0
  493. package/dist/static/images/covers/rocket.png +0 -0
  494. package/dist/static/images/covers/verify-identity.jpg +0 -0
  495. package/dist/static/images/covers/virtual-iban.jpg +0 -0
  496. package/dist/static/images/document-back.svg +1 -0
  497. package/dist/static/images/document-small.svg +1 -0
  498. package/dist/static/images/document.svg +1 -0
  499. package/dist/static/images/early-adopter.png +0 -0
  500. package/dist/static/images/early-adopter.svg +1 -0
  501. package/dist/static/images/eth.svg +10 -0
  502. package/dist/static/images/eur.svg +3 -0
  503. package/dist/static/images/face-scan-icon.svg +1 -0
  504. package/dist/static/images/favicon.png +0 -0
  505. package/dist/static/images/favicon.svg +57 -0
  506. package/dist/static/images/google-logo.png +0 -0
  507. package/dist/static/images/graduation.png +0 -0
  508. package/dist/static/images/hdd.png +0 -0
  509. package/dist/static/images/lemonway.png +0 -0
  510. package/dist/static/images/logo.svg +1 -0
  511. package/dist/static/images/member-item-picture.png +0 -0
  512. package/dist/static/images/one.jpg +0 -0
  513. package/dist/static/images/passport.svg +1 -0
  514. package/dist/static/images/process-waiting.gif +0 -0
  515. package/dist/static/images/profile-picture-placeholder.png +0 -0
  516. package/dist/static/images/profile-picture-placeholder.svg +1 -0
  517. package/dist/static/images/profile-picture.png +0 -0
  518. package/dist/static/images/refresh.svg +9 -0
  519. package/dist/static/images/shark.jpg +0 -0
  520. package/dist/static/images/sicos.png +0 -0
  521. package/dist/static/images/slider/1.jpg +0 -0
  522. package/dist/static/images/slider/2.jpg +0 -0
  523. package/dist/static/images/slider/3.jpg +0 -0
  524. package/dist/static/images/social/facebook.svg +3 -0
  525. package/dist/static/images/social/linkedin.svg +3 -0
  526. package/dist/static/images/social/medium.svg +3 -0
  527. package/dist/static/images/social/reddit.svg +3 -0
  528. package/dist/static/images/social/telegram.svg +3 -0
  529. package/dist/static/images/social/twitter.svg +3 -0
  530. package/dist/static/images/social/youtube.svg +3 -0
  531. package/dist/static/images/three.jpg +0 -0
  532. package/dist/static/images/two-sided-document.svg +26 -0
  533. package/dist/static/images/two.jpg +0 -0
  534. package/dist/static/images/upload.svg +1 -0
  535. package/dist/static/images/user-profile.png +0 -0
  536. package/dist/static/images/whales.png +0 -0
  537. package/dist/static/videos/Capybara-with-mandarin orange-on-head.mp4 +0 -0
  538. package/dist/styles/colors.js +55 -0
  539. package/dist/styles/fonts.js +34 -0
  540. package/dist/styles/global.js +19 -0
  541. package/dist/styles/grid.js +16 -0
  542. package/dist/styles/reactTippy.js +12 -0
  543. package/dist/styles/rwd.js +52 -0
  544. package/dist/styles/semanticUi.js +12 -0
  545. package/dist/styles/spacing.js +12 -0
  546. package/dist/styles/theme.js +43 -0
  547. package/dist/utils/allowed-countries-list.js +1375 -0
  548. package/dist/utils/breakpoint.js +19 -0
  549. package/dist/utils/countries-list.js +1008 -0
  550. package/dist/utils/customHooks.js +54 -0
  551. package/dist/utils/delete-redirect-cookie-and-navigate.js +20 -0
  552. package/dist/utils/fix-decimals.js +11 -0
  553. package/dist/utils/get-cookie-domain.js +16 -0
  554. package/dist/utils/get-short-address.js +10 -0
  555. package/dist/utils/lock-body.js +20 -0
  556. package/dist/utils/redirect-url.js +10 -0
  557. package/dist/utils/set-redirect-cookie.js +20 -0
  558. package/docker-compose.yml +25 -0
  559. package/package.json +77 -84
  560. package/storybook-static/favicon.ico +0 -0
@@ -0,0 +1,1008 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _default = [{
8
+ name: 'Afghanistan',
9
+ ISO2: 'AF',
10
+ ISO3: 'AFG'
11
+ }, {
12
+ name: 'Aland Islands',
13
+ ISO2: 'AX',
14
+ ISO3: 'ALA'
15
+ }, {
16
+ name: 'Albania',
17
+ ISO2: 'AL',
18
+ ISO3: 'ALB'
19
+ }, {
20
+ name: 'Algeria',
21
+ ISO2: 'DZ',
22
+ ISO3: 'DZA'
23
+ }, {
24
+ name: 'American Samoa',
25
+ ISO2: 'AS',
26
+ ISO3: 'ASM'
27
+ }, {
28
+ name: 'Andorra',
29
+ ISO2: 'AD',
30
+ ISO3: 'AND'
31
+ }, {
32
+ name: 'Angola',
33
+ ISO2: 'AO',
34
+ ISO3: 'AGO'
35
+ }, {
36
+ name: 'Anguilla',
37
+ ISO2: 'AI',
38
+ ISO3: 'AIA'
39
+ }, {
40
+ name: 'Antarctica',
41
+ ISO2: 'AQ',
42
+ ISO3: 'ATA'
43
+ }, {
44
+ name: 'Antigua and Barbuda',
45
+ ISO2: 'AG',
46
+ ISO3: 'ATG'
47
+ }, {
48
+ name: 'Argentina',
49
+ ISO2: 'AR',
50
+ ISO3: 'ARG'
51
+ }, {
52
+ name: 'Armenia',
53
+ ISO2: 'AM',
54
+ ISO3: 'ARM'
55
+ }, {
56
+ name: 'Aruba',
57
+ ISO2: 'AW',
58
+ ISO3: 'ABW'
59
+ }, {
60
+ name: 'Australia',
61
+ ISO2: 'AU',
62
+ ISO3: 'AUS'
63
+ }, {
64
+ name: 'Austria',
65
+ ISO2: 'AT',
66
+ ISO3: 'AUT'
67
+ }, {
68
+ name: 'Azerbaijan',
69
+ ISO2: 'AZ',
70
+ ISO3: 'AZE'
71
+ }, {
72
+ name: 'Bahamas',
73
+ ISO2: 'BS',
74
+ ISO3: 'BHS'
75
+ }, {
76
+ name: 'Bahrain',
77
+ ISO2: 'BH',
78
+ ISO3: 'BHR'
79
+ }, {
80
+ name: 'Bangladesh',
81
+ ISO2: 'BD',
82
+ ISO3: 'BGD'
83
+ }, {
84
+ name: 'Barbados',
85
+ ISO2: 'BB',
86
+ ISO3: 'BRB'
87
+ }, {
88
+ name: 'Belarus',
89
+ ISO2: 'BY',
90
+ ISO3: 'BLR'
91
+ }, {
92
+ name: 'Belgium',
93
+ ISO2: 'BE',
94
+ ISO3: 'BEL'
95
+ }, {
96
+ name: 'Belize',
97
+ ISO2: 'BZ',
98
+ ISO3: 'BLZ'
99
+ }, {
100
+ name: 'Benin',
101
+ ISO2: 'BJ',
102
+ ISO3: 'BEN'
103
+ }, {
104
+ name: 'Bermuda',
105
+ ISO2: 'BM',
106
+ ISO3: 'BMU'
107
+ }, {
108
+ name: 'Bhutan',
109
+ ISO2: 'BT',
110
+ ISO3: 'BTN'
111
+ }, {
112
+ name: 'Bolivia',
113
+ ISO2: 'BO',
114
+ ISO3: 'BOL'
115
+ }, {
116
+ name: 'Bonaire, Saint Eustatius and Saba ',
117
+ ISO2: 'BQ',
118
+ ISO3: 'BES'
119
+ }, {
120
+ name: 'Bosnia and Herzegovina',
121
+ ISO2: 'BA',
122
+ ISO3: 'BIH'
123
+ }, {
124
+ name: 'Botswana',
125
+ ISO2: 'BW',
126
+ ISO3: 'BWA'
127
+ }, {
128
+ name: 'Bouvet Island',
129
+ ISO2: 'BV',
130
+ ISO3: 'BVT'
131
+ }, {
132
+ name: 'Brazil',
133
+ ISO2: 'BR',
134
+ ISO3: 'BRA'
135
+ }, {
136
+ name: 'British Indian Ocean Territory',
137
+ ISO2: 'IO',
138
+ ISO3: 'IOT'
139
+ }, {
140
+ name: 'British Virgin Islands',
141
+ ISO2: 'VG',
142
+ ISO3: 'VGB'
143
+ }, {
144
+ name: 'Brunei',
145
+ ISO2: 'BN',
146
+ ISO3: 'BRN'
147
+ }, {
148
+ name: 'Bulgaria',
149
+ ISO2: 'BG',
150
+ ISO3: 'BGR'
151
+ }, {
152
+ name: 'Burkina Faso',
153
+ ISO2: 'BF',
154
+ ISO3: 'BFA'
155
+ }, {
156
+ name: 'Burundi',
157
+ ISO2: 'BI',
158
+ ISO3: 'BDI'
159
+ }, {
160
+ name: 'Cambodia',
161
+ ISO2: 'KH',
162
+ ISO3: 'KHM'
163
+ }, {
164
+ name: 'Cameroon',
165
+ ISO2: 'CM',
166
+ ISO3: 'CMR'
167
+ }, {
168
+ name: 'Canada',
169
+ ISO2: 'CA',
170
+ ISO3: 'CAN'
171
+ }, {
172
+ name: 'Cape Verde',
173
+ ISO2: 'CV',
174
+ ISO3: 'CPV'
175
+ }, {
176
+ name: 'Cayman Islands',
177
+ ISO2: 'KY',
178
+ ISO3: 'CYM'
179
+ }, {
180
+ name: 'Central African Republic',
181
+ ISO2: 'CF',
182
+ ISO3: 'CAF'
183
+ }, {
184
+ name: 'Chad',
185
+ ISO2: 'TD',
186
+ ISO3: 'TCD'
187
+ }, {
188
+ name: 'Chile',
189
+ ISO2: 'CL',
190
+ ISO3: 'CHL'
191
+ }, {
192
+ name: 'China',
193
+ ISO2: 'CN',
194
+ ISO3: 'CHN'
195
+ }, {
196
+ name: 'Christmas Island',
197
+ ISO2: 'CX',
198
+ ISO3: 'CXR'
199
+ }, {
200
+ name: 'Cocos Islands',
201
+ ISO2: 'CC',
202
+ ISO3: 'CCK'
203
+ }, {
204
+ name: 'Colombia',
205
+ ISO2: 'CO',
206
+ ISO3: 'COL'
207
+ }, {
208
+ name: 'Comoros',
209
+ ISO2: 'KM',
210
+ ISO3: 'COM'
211
+ }, {
212
+ name: 'Cook Islands',
213
+ ISO2: 'CK',
214
+ ISO3: 'COK'
215
+ }, {
216
+ name: 'Costa Rica',
217
+ ISO2: 'CR',
218
+ ISO3: 'CRI'
219
+ }, {
220
+ name: 'Croatia',
221
+ ISO2: 'HR',
222
+ ISO3: 'HRV'
223
+ }, {
224
+ name: 'Cuba',
225
+ ISO2: 'CU',
226
+ ISO3: 'CUB'
227
+ }, {
228
+ name: 'Curacao',
229
+ ISO2: 'CW',
230
+ ISO3: 'CUW'
231
+ }, {
232
+ name: 'Cyprus',
233
+ ISO2: 'CY',
234
+ ISO3: 'CYP'
235
+ }, {
236
+ name: 'Czech Republic',
237
+ ISO2: 'CZ',
238
+ ISO3: 'CZE'
239
+ }, {
240
+ name: 'Democratic Republic of the Congo',
241
+ ISO2: 'CD',
242
+ ISO3: 'COD'
243
+ }, {
244
+ name: 'Denmark',
245
+ ISO2: 'DK',
246
+ ISO3: 'DNK'
247
+ }, {
248
+ name: 'Djibouti',
249
+ ISO2: 'DJ',
250
+ ISO3: 'DJI'
251
+ }, {
252
+ name: 'Dominica',
253
+ ISO2: 'DM',
254
+ ISO3: 'DMA'
255
+ }, {
256
+ name: 'Dominican Republic',
257
+ ISO2: 'DO',
258
+ ISO3: 'DOM'
259
+ }, {
260
+ name: 'East Timor',
261
+ ISO2: 'TL',
262
+ ISO3: 'TLS'
263
+ }, {
264
+ name: 'Ecuador',
265
+ ISO2: 'EC',
266
+ ISO3: 'ECU'
267
+ }, {
268
+ name: 'Egypt',
269
+ ISO2: 'EG',
270
+ ISO3: 'EGY'
271
+ }, {
272
+ name: 'El Salvador',
273
+ ISO2: 'SV',
274
+ ISO3: 'SLV'
275
+ }, {
276
+ name: 'Equatorial Guinea',
277
+ ISO2: 'GQ',
278
+ ISO3: 'GNQ'
279
+ }, {
280
+ name: 'Eritrea',
281
+ ISO2: 'ER',
282
+ ISO3: 'ERI'
283
+ }, {
284
+ name: 'Estonia',
285
+ ISO2: 'EE',
286
+ ISO3: 'EST'
287
+ }, {
288
+ name: 'Ethiopia',
289
+ ISO2: 'ET',
290
+ ISO3: 'ETH'
291
+ }, {
292
+ name: 'Falkland Islands',
293
+ ISO2: 'FK',
294
+ ISO3: 'FLK'
295
+ }, {
296
+ name: 'Faroe Islands',
297
+ ISO2: 'FO',
298
+ ISO3: 'FRO'
299
+ }, {
300
+ name: 'Fiji',
301
+ ISO2: 'FJ',
302
+ ISO3: 'FJI'
303
+ }, {
304
+ name: 'Finland',
305
+ ISO2: 'FI',
306
+ ISO3: 'FIN'
307
+ }, {
308
+ name: 'France',
309
+ ISO2: 'FR',
310
+ ISO3: 'FRA'
311
+ }, {
312
+ name: 'French Guiana',
313
+ ISO2: 'GF',
314
+ ISO3: 'GUF'
315
+ }, {
316
+ name: 'French Polynesia',
317
+ ISO2: 'PF',
318
+ ISO3: 'PYF'
319
+ }, {
320
+ name: 'French Southern Territories',
321
+ ISO2: 'TF',
322
+ ISO3: 'ATF'
323
+ }, {
324
+ name: 'Gabon',
325
+ ISO2: 'GA',
326
+ ISO3: 'GAB'
327
+ }, {
328
+ name: 'Gambia',
329
+ ISO2: 'GM',
330
+ ISO3: 'GMB'
331
+ }, {
332
+ name: 'Georgia',
333
+ ISO2: 'GE',
334
+ ISO3: 'GEO'
335
+ }, {
336
+ name: 'Germany',
337
+ ISO2: 'DE',
338
+ ISO3: 'DEU'
339
+ }, {
340
+ name: 'Ghana',
341
+ ISO2: 'GH',
342
+ ISO3: 'GHA'
343
+ }, {
344
+ name: 'Gibraltar',
345
+ ISO2: 'GI',
346
+ ISO3: 'GIB'
347
+ }, {
348
+ name: 'Greece',
349
+ ISO2: 'GR',
350
+ ISO3: 'GRC'
351
+ }, {
352
+ name: 'Greenland',
353
+ ISO2: 'GL',
354
+ ISO3: 'GRL'
355
+ }, {
356
+ name: 'Grenada',
357
+ ISO2: 'GD',
358
+ ISO3: 'GRD'
359
+ }, {
360
+ name: 'Guadeloupe',
361
+ ISO2: 'GP',
362
+ ISO3: 'GLP'
363
+ }, {
364
+ name: 'Guam',
365
+ ISO2: 'GU',
366
+ ISO3: 'GUM'
367
+ }, {
368
+ name: 'Guatemala',
369
+ ISO2: 'GT',
370
+ ISO3: 'GTM'
371
+ }, {
372
+ name: 'Guernsey',
373
+ ISO2: 'GG',
374
+ ISO3: 'GGY'
375
+ }, {
376
+ name: 'Guinea',
377
+ ISO2: 'GN',
378
+ ISO3: 'GIN'
379
+ }, {
380
+ name: 'Guinea-Bissau',
381
+ ISO2: 'GW',
382
+ ISO3: 'GNB'
383
+ }, {
384
+ name: 'Guyana',
385
+ ISO2: 'GY',
386
+ ISO3: 'GUY'
387
+ }, {
388
+ name: 'Haiti',
389
+ ISO2: 'HT',
390
+ ISO3: 'HTI'
391
+ }, {
392
+ name: 'Heard Island and McDonald Islands',
393
+ ISO2: 'HM',
394
+ ISO3: 'HMD'
395
+ }, {
396
+ name: 'Honduras',
397
+ ISO2: 'HN',
398
+ ISO3: 'HND'
399
+ }, {
400
+ name: 'Hong Kong',
401
+ ISO2: 'HK',
402
+ ISO3: 'HKG'
403
+ }, {
404
+ name: 'Hungary',
405
+ ISO2: 'HU',
406
+ ISO3: 'HUN'
407
+ }, {
408
+ name: 'Iceland',
409
+ ISO2: 'IS',
410
+ ISO3: 'ISL'
411
+ }, {
412
+ name: 'India',
413
+ ISO2: 'IN',
414
+ ISO3: 'IND'
415
+ }, {
416
+ name: 'Indonesia',
417
+ ISO2: 'ID',
418
+ ISO3: 'IDN'
419
+ }, {
420
+ name: 'Iran',
421
+ ISO2: 'IR',
422
+ ISO3: 'IRN'
423
+ }, {
424
+ name: 'Iraq',
425
+ ISO2: 'IQ',
426
+ ISO3: 'IRQ'
427
+ }, {
428
+ name: 'Ireland',
429
+ ISO2: 'IE',
430
+ ISO3: 'IRL'
431
+ }, {
432
+ name: 'Isle of Man',
433
+ ISO2: 'IM',
434
+ ISO3: 'IMN'
435
+ }, {
436
+ name: 'Israel',
437
+ ISO2: 'IL',
438
+ ISO3: 'ISR'
439
+ }, {
440
+ name: 'Italy',
441
+ ISO2: 'IT',
442
+ ISO3: 'ITA'
443
+ }, {
444
+ name: 'Ivory Coast',
445
+ ISO2: 'CI',
446
+ ISO3: 'CIV'
447
+ }, {
448
+ name: 'Jamaica',
449
+ ISO2: 'JM',
450
+ ISO3: 'JAM'
451
+ }, {
452
+ name: 'Japan',
453
+ ISO2: 'JP',
454
+ ISO3: 'JPN'
455
+ }, {
456
+ name: 'Jersey',
457
+ ISO2: 'JE',
458
+ ISO3: 'JEY'
459
+ }, {
460
+ name: 'Jordan',
461
+ ISO2: 'JO',
462
+ ISO3: 'JOR'
463
+ }, {
464
+ name: 'Kazakhstan',
465
+ ISO2: 'KZ',
466
+ ISO3: 'KAZ'
467
+ }, {
468
+ name: 'Kenya',
469
+ ISO2: 'KE',
470
+ ISO3: 'KEN'
471
+ }, {
472
+ name: 'Kiribati',
473
+ ISO2: 'KI',
474
+ ISO3: 'KIR'
475
+ }, {
476
+ name: 'Kosovo',
477
+ ISO2: 'XK',
478
+ ISO3: 'XKX'
479
+ }, {
480
+ name: 'Kuwait',
481
+ ISO2: 'KW',
482
+ ISO3: 'KWT'
483
+ }, {
484
+ name: 'Kyrgyzstan',
485
+ ISO2: 'KG',
486
+ ISO3: 'KGZ'
487
+ }, {
488
+ name: 'Laos',
489
+ ISO2: 'LA',
490
+ ISO3: 'LAO'
491
+ }, {
492
+ name: 'Latvia',
493
+ ISO2: 'LV',
494
+ ISO3: 'LVA'
495
+ }, {
496
+ name: 'Lebanon',
497
+ ISO2: 'LB',
498
+ ISO3: 'LBN'
499
+ }, {
500
+ name: 'Lesotho',
501
+ ISO2: 'LS',
502
+ ISO3: 'LSO'
503
+ }, {
504
+ name: 'Liberia',
505
+ ISO2: 'LR',
506
+ ISO3: 'LBR'
507
+ }, {
508
+ name: 'Libya',
509
+ ISO2: 'LY',
510
+ ISO3: 'LBY'
511
+ }, {
512
+ name: 'Liechtenstein',
513
+ ISO2: 'LI',
514
+ ISO3: 'LIE'
515
+ }, {
516
+ name: 'Lithuania',
517
+ ISO2: 'LT',
518
+ ISO3: 'LTU'
519
+ }, {
520
+ name: 'Luxembourg',
521
+ ISO2: 'LU',
522
+ ISO3: 'LUX'
523
+ }, {
524
+ name: 'Macao',
525
+ ISO2: 'MO',
526
+ ISO3: 'MAC'
527
+ }, {
528
+ name: 'Macedonia',
529
+ ISO2: 'MK',
530
+ ISO3: 'MKD'
531
+ }, {
532
+ name: 'Madagascar',
533
+ ISO2: 'MG',
534
+ ISO3: 'MDG'
535
+ }, {
536
+ name: 'Malawi',
537
+ ISO2: 'MW',
538
+ ISO3: 'MWI'
539
+ }, {
540
+ name: 'Malaysia',
541
+ ISO2: 'MY',
542
+ ISO3: 'MYS'
543
+ }, {
544
+ name: 'Maldives',
545
+ ISO2: 'MV',
546
+ ISO3: 'MDV'
547
+ }, {
548
+ name: 'Mali',
549
+ ISO2: 'ML',
550
+ ISO3: 'MLI'
551
+ }, {
552
+ name: 'Malta',
553
+ ISO2: 'MT',
554
+ ISO3: 'MLT'
555
+ }, {
556
+ name: 'Marshall Islands',
557
+ ISO2: 'MH',
558
+ ISO3: 'MHL'
559
+ }, {
560
+ name: 'Martinique',
561
+ ISO2: 'MQ',
562
+ ISO3: 'MTQ'
563
+ }, {
564
+ name: 'Mauritania',
565
+ ISO2: 'MR',
566
+ ISO3: 'MRT'
567
+ }, {
568
+ name: 'Mauritius',
569
+ ISO2: 'MU',
570
+ ISO3: 'MUS'
571
+ }, {
572
+ name: 'Mayotte',
573
+ ISO2: 'YT',
574
+ ISO3: 'MYT'
575
+ }, {
576
+ name: 'Mexico',
577
+ ISO2: 'MX',
578
+ ISO3: 'MEX'
579
+ }, {
580
+ name: 'Micronesia',
581
+ ISO2: 'FM',
582
+ ISO3: 'FSM'
583
+ }, {
584
+ name: 'Moldova',
585
+ ISO2: 'MD',
586
+ ISO3: 'MDA'
587
+ }, {
588
+ name: 'Monaco',
589
+ ISO2: 'MC',
590
+ ISO3: 'MCO'
591
+ }, {
592
+ name: 'Mongolia',
593
+ ISO2: 'MN',
594
+ ISO3: 'MNG'
595
+ }, {
596
+ name: 'Montenegro',
597
+ ISO2: 'ME',
598
+ ISO3: 'MNE'
599
+ }, {
600
+ name: 'Montserrat',
601
+ ISO2: 'MS',
602
+ ISO3: 'MSR'
603
+ }, {
604
+ name: 'Morocco',
605
+ ISO2: 'MA',
606
+ ISO3: 'MAR'
607
+ }, {
608
+ name: 'Mozambique',
609
+ ISO2: 'MZ',
610
+ ISO3: 'MOZ'
611
+ }, {
612
+ name: 'Myanmar',
613
+ ISO2: 'MM',
614
+ ISO3: 'MMR'
615
+ }, {
616
+ name: 'Namibia',
617
+ ISO2: 'NA',
618
+ ISO3: 'NAM'
619
+ }, {
620
+ name: 'Nauru',
621
+ ISO2: 'NR',
622
+ ISO3: 'NRU'
623
+ }, {
624
+ name: 'Nepal',
625
+ ISO2: 'NP',
626
+ ISO3: 'NPL'
627
+ }, {
628
+ name: 'Netherlands',
629
+ ISO2: 'NL',
630
+ ISO3: 'NLD'
631
+ }, {
632
+ name: 'New Caledonia',
633
+ ISO2: 'NC',
634
+ ISO3: 'NCL'
635
+ }, {
636
+ name: 'New Zealand',
637
+ ISO2: 'NZ',
638
+ ISO3: 'NZL'
639
+ }, {
640
+ name: 'Nicaragua',
641
+ ISO2: 'NI',
642
+ ISO3: 'NIC'
643
+ }, {
644
+ name: 'Niger',
645
+ ISO2: 'NE',
646
+ ISO3: 'NER'
647
+ }, {
648
+ name: 'Nigeria',
649
+ ISO2: 'NG',
650
+ ISO3: 'NGA'
651
+ }, {
652
+ name: 'Niue',
653
+ ISO2: 'NU',
654
+ ISO3: 'NIU'
655
+ }, {
656
+ name: 'Norfolk Island',
657
+ ISO2: 'NF',
658
+ ISO3: 'NFK'
659
+ }, {
660
+ name: 'North Korea',
661
+ ISO2: 'KP',
662
+ ISO3: 'PRK'
663
+ }, {
664
+ name: 'Northern Mariana Islands',
665
+ ISO2: 'MP',
666
+ ISO3: 'MNP'
667
+ }, {
668
+ name: 'Norway',
669
+ ISO2: 'NO',
670
+ ISO3: 'NOR'
671
+ }, {
672
+ name: 'Oman',
673
+ ISO2: 'OM',
674
+ ISO3: 'OMN'
675
+ }, {
676
+ name: 'Pakistan',
677
+ ISO2: 'PK',
678
+ ISO3: 'PAK'
679
+ }, {
680
+ name: 'Palau',
681
+ ISO2: 'PW',
682
+ ISO3: 'PLW'
683
+ }, {
684
+ name: 'Palestinian Territory',
685
+ ISO2: 'PS',
686
+ ISO3: 'PSE'
687
+ }, {
688
+ name: 'Panama',
689
+ ISO2: 'PA',
690
+ ISO3: 'PAN'
691
+ }, {
692
+ name: 'Papua New Guinea',
693
+ ISO2: 'PG',
694
+ ISO3: 'PNG'
695
+ }, {
696
+ name: 'Paraguay',
697
+ ISO2: 'PY',
698
+ ISO3: 'PRY'
699
+ }, {
700
+ name: 'Peru',
701
+ ISO2: 'PE',
702
+ ISO3: 'PER'
703
+ }, {
704
+ name: 'Philippines',
705
+ ISO2: 'PH',
706
+ ISO3: 'PHL'
707
+ }, {
708
+ name: 'Pitcairn',
709
+ ISO2: 'PN',
710
+ ISO3: 'PCN'
711
+ }, {
712
+ name: 'Poland',
713
+ ISO2: 'PL',
714
+ ISO3: 'POL'
715
+ }, {
716
+ name: 'Portugal',
717
+ ISO2: 'PT',
718
+ ISO3: 'PRT'
719
+ }, {
720
+ name: 'Puerto Rico',
721
+ ISO2: 'PR',
722
+ ISO3: 'PRI'
723
+ }, {
724
+ name: 'Qatar',
725
+ ISO2: 'QA',
726
+ ISO3: 'QAT'
727
+ }, {
728
+ name: 'Republic of the Congo',
729
+ ISO2: 'CG',
730
+ ISO3: 'COG'
731
+ }, {
732
+ name: 'Reunion',
733
+ ISO2: 'RE',
734
+ ISO3: 'REU'
735
+ }, {
736
+ name: 'Romania',
737
+ ISO2: 'RO',
738
+ ISO3: 'ROU'
739
+ }, {
740
+ name: 'Russia',
741
+ ISO2: 'RU',
742
+ ISO3: 'RUS'
743
+ }, {
744
+ name: 'Rwanda',
745
+ ISO2: 'RW',
746
+ ISO3: 'RWA'
747
+ }, {
748
+ name: 'Saint Barthelemy',
749
+ ISO2: 'BL',
750
+ ISO3: 'BLM'
751
+ }, {
752
+ name: 'Saint Helena',
753
+ ISO2: 'SH',
754
+ ISO3: 'SHN'
755
+ }, {
756
+ name: 'Saint Kitts and Nevis',
757
+ ISO2: 'KN',
758
+ ISO3: 'KNA'
759
+ }, {
760
+ name: 'Saint Lucia',
761
+ ISO2: 'LC',
762
+ ISO3: 'LCA'
763
+ }, {
764
+ name: 'Saint Martin',
765
+ ISO2: 'MF',
766
+ ISO3: 'MAF'
767
+ }, {
768
+ name: 'Saint Pierre and Miquelon',
769
+ ISO2: 'PM',
770
+ ISO3: 'SPM'
771
+ }, {
772
+ name: 'Saint Vincent and the Grenadines',
773
+ ISO2: 'VC',
774
+ ISO3: 'VCT'
775
+ }, {
776
+ name: 'Samoa',
777
+ ISO2: 'WS',
778
+ ISO3: 'WSM'
779
+ }, {
780
+ name: 'San Marino',
781
+ ISO2: 'SM',
782
+ ISO3: 'SMR'
783
+ }, {
784
+ name: 'Sao Tome and Principe',
785
+ ISO2: 'ST',
786
+ ISO3: 'STP'
787
+ }, {
788
+ name: 'Saudi Arabia',
789
+ ISO2: 'SA',
790
+ ISO3: 'SAU'
791
+ }, {
792
+ name: 'Senegal',
793
+ ISO2: 'SN',
794
+ ISO3: 'SEN'
795
+ }, {
796
+ name: 'Serbia',
797
+ ISO2: 'RS',
798
+ ISO3: 'SRB'
799
+ }, {
800
+ name: 'Seychelles',
801
+ ISO2: 'SC',
802
+ ISO3: 'SYC'
803
+ }, {
804
+ name: 'Sierra Leone',
805
+ ISO2: 'SL',
806
+ ISO3: 'SLE'
807
+ }, {
808
+ name: 'Singapore',
809
+ ISO2: 'SG',
810
+ ISO3: 'SGP'
811
+ }, {
812
+ name: 'Sint Maarten',
813
+ ISO2: 'SX',
814
+ ISO3: 'SXM'
815
+ }, {
816
+ name: 'Slovakia',
817
+ ISO2: 'SK',
818
+ ISO3: 'SVK'
819
+ }, {
820
+ name: 'Slovenia',
821
+ ISO2: 'SI',
822
+ ISO3: 'SVN'
823
+ }, {
824
+ name: 'Solomon Islands',
825
+ ISO2: 'SB',
826
+ ISO3: 'SLB'
827
+ }, {
828
+ name: 'Somalia',
829
+ ISO2: 'SO',
830
+ ISO3: 'SOM'
831
+ }, {
832
+ name: 'South Africa',
833
+ ISO2: 'ZA',
834
+ ISO3: 'ZAF'
835
+ }, {
836
+ name: 'South Georgia and the South Sandwich Islands',
837
+ ISO2: 'GS',
838
+ ISO3: 'SGS'
839
+ }, {
840
+ name: 'South Korea',
841
+ ISO2: 'KR',
842
+ ISO3: 'KOR'
843
+ }, {
844
+ name: 'South Sudan',
845
+ ISO2: 'SS',
846
+ ISO3: 'SSD'
847
+ }, {
848
+ name: 'Spain',
849
+ ISO2: 'ES',
850
+ ISO3: 'ESP'
851
+ }, {
852
+ name: 'Sri Lanka',
853
+ ISO2: 'LK',
854
+ ISO3: 'LKA'
855
+ }, {
856
+ name: 'Sudan',
857
+ ISO2: 'SD',
858
+ ISO3: 'SDN'
859
+ }, {
860
+ name: 'Suriname',
861
+ ISO2: 'SR',
862
+ ISO3: 'SUR'
863
+ }, {
864
+ name: 'Svalbard and Jan Mayen',
865
+ ISO2: 'SJ',
866
+ ISO3: 'SJM'
867
+ }, {
868
+ name: 'Swaziland',
869
+ ISO2: 'SZ',
870
+ ISO3: 'SWZ'
871
+ }, {
872
+ name: 'Sweden',
873
+ ISO2: 'SE',
874
+ ISO3: 'SWE'
875
+ }, {
876
+ name: 'Switzerland',
877
+ ISO2: 'CH',
878
+ ISO3: 'CHE'
879
+ }, {
880
+ name: 'Syria',
881
+ ISO2: 'SY',
882
+ ISO3: 'SYR'
883
+ }, {
884
+ name: 'Taiwan',
885
+ ISO2: 'TW',
886
+ ISO3: 'TWN'
887
+ }, {
888
+ name: 'Tajikistan',
889
+ ISO2: 'TJ',
890
+ ISO3: 'TJK'
891
+ }, {
892
+ name: 'Tanzania',
893
+ ISO2: 'TZ',
894
+ ISO3: 'TZA'
895
+ }, {
896
+ name: 'Thailand',
897
+ ISO2: 'TH',
898
+ ISO3: 'THA'
899
+ }, {
900
+ name: 'Togo',
901
+ ISO2: 'TG',
902
+ ISO3: 'TGO'
903
+ }, {
904
+ name: 'Tokelau',
905
+ ISO2: 'TK',
906
+ ISO3: 'TKL'
907
+ }, {
908
+ name: 'Tonga',
909
+ ISO2: 'TO',
910
+ ISO3: 'TON'
911
+ }, {
912
+ name: 'Trinidad and Tobago',
913
+ ISO2: 'TT',
914
+ ISO3: 'TTO'
915
+ }, {
916
+ name: 'Tunisia',
917
+ ISO2: 'TN',
918
+ ISO3: 'TUN'
919
+ }, {
920
+ name: 'Turkey',
921
+ ISO2: 'TR',
922
+ ISO3: 'TUR'
923
+ }, {
924
+ name: 'Turkmenistan',
925
+ ISO2: 'TM',
926
+ ISO3: 'TKM'
927
+ }, {
928
+ name: 'Turks and Caicos Islands',
929
+ ISO2: 'TC',
930
+ ISO3: 'TCA'
931
+ }, {
932
+ name: 'Tuvalu',
933
+ ISO2: 'TV',
934
+ ISO3: 'TUV'
935
+ }, {
936
+ name: 'U.S. Virgin Islands',
937
+ ISO2: 'VI',
938
+ ISO3: 'VIR'
939
+ }, {
940
+ name: 'Uganda',
941
+ ISO2: 'UG',
942
+ ISO3: 'UGA'
943
+ }, {
944
+ name: 'Ukraine',
945
+ ISO2: 'UA',
946
+ ISO3: 'UKR'
947
+ }, {
948
+ name: 'United Arab Emirates',
949
+ ISO2: 'AE',
950
+ ISO3: 'ARE'
951
+ }, {
952
+ name: 'United Kingdom',
953
+ ISO2: 'GB',
954
+ ISO3: 'GBR'
955
+ }, {
956
+ name: 'United States',
957
+ ISO2: 'US',
958
+ ISO3: 'USA'
959
+ }, {
960
+ name: 'United States Minor Outlying Islands',
961
+ ISO2: 'UM',
962
+ ISO3: 'UMI'
963
+ }, {
964
+ name: 'Uruguay',
965
+ ISO2: 'UY',
966
+ ISO3: 'URY'
967
+ }, {
968
+ name: 'Uzbekistan',
969
+ ISO2: 'UZ',
970
+ ISO3: 'UZB'
971
+ }, {
972
+ name: 'Vanuatu',
973
+ ISO2: 'VU',
974
+ ISO3: 'VUT'
975
+ }, {
976
+ name: 'Vatican',
977
+ ISO2: 'VA',
978
+ ISO3: 'VAT'
979
+ }, {
980
+ name: 'Venezuela',
981
+ ISO2: 'VE',
982
+ ISO3: 'VEN'
983
+ }, {
984
+ name: 'Vietnam',
985
+ ISO2: 'VN',
986
+ ISO3: 'VNM'
987
+ }, {
988
+ name: 'Wallis and Futuna',
989
+ ISO2: 'WF',
990
+ ISO3: 'WLF'
991
+ }, {
992
+ name: 'Western Sahara',
993
+ ISO2: 'EH',
994
+ ISO3: 'ESH'
995
+ }, {
996
+ name: 'Yemen',
997
+ ISO2: 'YE',
998
+ ISO3: 'YEM'
999
+ }, {
1000
+ name: 'Zambia',
1001
+ ISO2: 'ZM',
1002
+ ISO3: 'ZMB'
1003
+ }, {
1004
+ name: 'Zimbabwe',
1005
+ ISO2: 'ZW',
1006
+ ISO3: 'ZWE'
1007
+ }];
1008
+ exports.default = _default;