@stokr/components-library 0.6.7 → 0.6.9

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,1375 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _default = [
8
+ /* {
9
+ name: 'Afghanistan',
10
+ ISO2: 'AF',
11
+ ISO3: 'AFG',
12
+ }, */
13
+ {
14
+ name: 'Aland Islands',
15
+ ISO2: 'AX',
16
+ ISO3: 'ALA',
17
+ 'infinite-fleet': true
18
+ },
19
+ /* {
20
+ name: 'Albania',
21
+ ISO2: 'AL',
22
+ ISO3: 'ALB',
23
+ }, */
24
+ /* {
25
+ name: 'Algeria',
26
+ ISO2: 'DZ',
27
+ ISO3: 'DZA',
28
+ }, */
29
+ /* {
30
+ name: 'American Samoa',
31
+ ISO2: 'AS',
32
+ ISO3: 'ASM',
33
+ }, */
34
+ {
35
+ name: 'Andorra',
36
+ ISO2: 'AD',
37
+ ISO3: 'AND',
38
+ artid: true,
39
+ 'infinite-fleet': true
40
+ },
41
+ /* {
42
+ name: 'Angola',
43
+ ISO2: 'AO',
44
+ ISO3: 'AGO',
45
+ }, */
46
+ {
47
+ name: 'Anguilla',
48
+ ISO2: 'AI',
49
+ ISO3: 'AIA',
50
+ 'infinite-fleet': true
51
+ }, {
52
+ name: 'Antarctica',
53
+ ISO2: 'AQ',
54
+ ISO3: 'ATA',
55
+ 'infinite-fleet': true
56
+ }, {
57
+ name: 'Antigua and Barbuda',
58
+ ISO2: 'AG',
59
+ ISO3: 'ATG',
60
+ 'infinite-fleet': true
61
+ },
62
+ /* {
63
+ name: 'Argentina',
64
+ ISO2: 'AR',
65
+ ISO3: 'ARG',
66
+ }, */
67
+ {
68
+ name: 'Armenia',
69
+ ISO2: 'AM',
70
+ ISO3: 'ARM',
71
+ 'infinite-fleet': true
72
+ }, {
73
+ name: 'Aruba',
74
+ ISO2: 'AW',
75
+ ISO3: 'ABW',
76
+ signUpWarning: true
77
+ }, {
78
+ name: 'Australia',
79
+ ISO2: 'AU',
80
+ ISO3: 'AUS',
81
+ signUpWarning: true
82
+ }, {
83
+ name: 'Austria',
84
+ ISO2: 'AT',
85
+ ISO3: 'AUT',
86
+ artid: true,
87
+ 'infinite-fleet': true,
88
+ SEPA: true
89
+ }, {
90
+ name: 'Azerbaijan',
91
+ ISO2: 'AZ',
92
+ ISO3: 'AZE',
93
+ 'infinite-fleet': true
94
+ }, {
95
+ name: 'Bahamas',
96
+ ISO2: 'BS',
97
+ ISO3: 'BHS',
98
+ 'infinite-fleet': true
99
+ }, {
100
+ name: 'Bahrain',
101
+ ISO2: 'BH',
102
+ ISO3: 'BHR',
103
+ 'infinite-fleet': true
104
+ },
105
+ /* {
106
+ name: 'Bangladesh',
107
+ ISO2: 'BD',
108
+ ISO3: 'BGD',
109
+ }, */
110
+ /* {
111
+ name: 'Barbados',
112
+ ISO2: 'BB',
113
+ ISO3: 'BRB',
114
+ }, */
115
+ /* {
116
+ name: 'Belarus',
117
+ ISO2: 'BY',
118
+ ISO3: 'BLR',
119
+ }, */
120
+ {
121
+ name: 'Belgium',
122
+ ISO2: 'BE',
123
+ ISO3: 'BEL',
124
+ signUpWarning: true,
125
+ SEPA: true
126
+ }, {
127
+ name: 'Belize',
128
+ ISO2: 'BZ',
129
+ ISO3: 'BLZ',
130
+ 'infinite-fleet': true
131
+ },
132
+ /* {
133
+ name: 'Benin',
134
+ ISO2: 'BJ',
135
+ ISO3: 'BEN',
136
+ }, */
137
+ {
138
+ name: 'Bermuda',
139
+ ISO2: 'BM',
140
+ ISO3: 'BMU',
141
+ 'infinite-fleet': true
142
+ },
143
+ /* {
144
+ name: 'Bhutan',
145
+ ISO2: 'BT',
146
+ ISO3: 'BTN',
147
+ }, */
148
+ /* {
149
+ name: 'Bolivia',
150
+ ISO2: 'BO',
151
+ ISO3: 'BOL',
152
+ }, */
153
+ {
154
+ name: 'Bonaire, Saint Eustatius and Saba ',
155
+ ISO2: 'BQ',
156
+ ISO3: 'BES',
157
+ 'infinite-fleet': true
158
+ },
159
+ /* {
160
+ name: 'Bosnia and Herzegovina',
161
+ ISO2: 'BA',
162
+ ISO3: 'BIH',
163
+ }, */
164
+ /* {
165
+ name: 'Botswana',
166
+ ISO2: 'BW',
167
+ ISO3: 'BWA',
168
+ }, */
169
+ {
170
+ name: 'Bouvet Island',
171
+ ISO2: 'BV',
172
+ ISO3: 'BVT',
173
+ 'infinite-fleet': true
174
+ }, {
175
+ name: 'Brazil',
176
+ ISO2: 'BR',
177
+ ISO3: 'BRA',
178
+ artid: true,
179
+ 'infinite-fleet': true
180
+ }, {
181
+ name: 'British Indian Ocean Territory',
182
+ ISO2: 'IO',
183
+ ISO3: 'IOT',
184
+ 'infinite-fleet': true
185
+ }, {
186
+ name: 'British Virgin Islands',
187
+ ISO2: 'VG',
188
+ ISO3: 'VGB',
189
+ 'infinite-fleet': true
190
+ },
191
+ /* {
192
+ name: 'Brunei',
193
+ ISO2: 'BN',
194
+ ISO3: 'BRN',
195
+ }, */
196
+ {
197
+ name: 'Bulgaria',
198
+ ISO2: 'BG',
199
+ ISO3: 'BGR',
200
+ artid: true,
201
+ 'infinite-fleet': true,
202
+ SEPA: true
203
+ },
204
+ /* {
205
+ name: 'Burkina Faso',
206
+ ISO2: 'BF',
207
+ ISO3: 'BFA',
208
+ }, */
209
+ /* {
210
+ name: 'Burundi',
211
+ ISO2: 'BI',
212
+ ISO3: 'BDI',
213
+ }, */
214
+ /* {
215
+ name: 'Cambodia',
216
+ ISO2: 'KH',
217
+ ISO3: 'KHM',
218
+ }, */
219
+ /* {
220
+ name: 'Cameroon',
221
+ ISO2: 'CM',
222
+ ISO3: 'CMR',
223
+ }, */
224
+ {
225
+ name: 'Canada',
226
+ ISO2: 'CA',
227
+ ISO3: 'CAN',
228
+ signUpWarning: true
229
+ },
230
+ /* {
231
+ name: 'Cape Verde',
232
+ ISO2: 'CV',
233
+ ISO3: 'CPV',
234
+ }, */
235
+ {
236
+ name: 'Cayman Islands',
237
+ ISO2: 'KY',
238
+ ISO3: 'CYM',
239
+ 'infinite-fleet': true
240
+ },
241
+ /* {
242
+ name: 'Central African Republic',
243
+ ISO2: 'CF',
244
+ ISO3: 'CAF',
245
+ }, */
246
+ /* {
247
+ name: 'Chad',
248
+ ISO2: 'TD',
249
+ ISO3: 'TCD',
250
+ }, */
251
+ {
252
+ name: 'Chile',
253
+ ISO2: 'CL',
254
+ ISO3: 'CHL',
255
+ 'infinite-fleet': true
256
+ },
257
+ /* {
258
+ name: 'China',
259
+ ISO2: 'CN',
260
+ ISO3: 'CHN',
261
+ }, */
262
+ {
263
+ name: 'Christmas Island',
264
+ ISO2: 'CX',
265
+ ISO3: 'CXR',
266
+ 'infinite-fleet': true
267
+ }, {
268
+ name: 'Cocos Islands',
269
+ ISO2: 'CC',
270
+ ISO3: 'CCK',
271
+ 'infinite-fleet': true
272
+ },
273
+ /* {
274
+ name: 'Colombia',
275
+ ISO2: 'CO',
276
+ ISO3: 'COL',
277
+ }, */
278
+ /* {
279
+ name: 'Comoros',
280
+ ISO2: 'KM',
281
+ ISO3: 'COM',
282
+ }, */
283
+ {
284
+ name: 'Cook Islands',
285
+ ISO2: 'CK',
286
+ ISO3: 'COK',
287
+ 'infinite-fleet': true
288
+ }, {
289
+ name: 'Costa Rica',
290
+ ISO2: 'CR',
291
+ ISO3: 'CRI',
292
+ signUpWarning: true
293
+ }, {
294
+ name: 'Croatia',
295
+ ISO2: 'HR',
296
+ ISO3: 'HRV',
297
+ signUpWarning: true,
298
+ SEPA: true
299
+ },
300
+ /* {
301
+ name: 'Cuba',
302
+ ISO2: 'CU',
303
+ ISO3: 'CUB',
304
+ }, */
305
+ /* {
306
+ name: 'Curacao',
307
+ ISO2: 'CW',
308
+ ISO3: 'CUW',
309
+ }, */
310
+ {
311
+ name: 'Cyprus',
312
+ ISO2: 'CY',
313
+ ISO3: 'CYP',
314
+ artid: true,
315
+ 'infinite-fleet': true,
316
+ SEPA: true
317
+ }, {
318
+ name: 'Czech Republic',
319
+ ISO2: 'CZ',
320
+ ISO3: 'CZE',
321
+ artid: true,
322
+ 'infinite-fleet': true,
323
+ SEPA: true
324
+ },
325
+ /* {
326
+ name: 'Democratic Republic of the Congo',
327
+ ISO2: 'CD',
328
+ ISO3: 'COD',
329
+ }, */
330
+ {
331
+ name: 'Denmark',
332
+ ISO2: 'DK',
333
+ ISO3: 'DNK',
334
+ artid: true,
335
+ 'infinite-fleet': true,
336
+ SEPA: true
337
+ },
338
+ /* {
339
+ name: 'Djibouti',
340
+ ISO2: 'DJ',
341
+ ISO3: 'DJI',
342
+ }, */
343
+ {
344
+ name: 'Dominica',
345
+ ISO2: 'DM',
346
+ ISO3: 'DMA',
347
+ 'infinite-fleet': true
348
+ }, {
349
+ name: 'Dominican Republic',
350
+ ISO2: 'DO',
351
+ ISO3: 'DOM',
352
+ signUpWarning: true
353
+ },
354
+ /* {
355
+ name: 'East Timor',
356
+ ISO2: 'TL',
357
+ ISO3: 'TLS',
358
+ }, */
359
+ /* {
360
+ name: 'Ecuador',
361
+ ISO2: 'EC',
362
+ ISO3: 'ECU',
363
+ }, */
364
+ {
365
+ name: 'Egypt',
366
+ ISO2: 'EG',
367
+ ISO3: 'EGY',
368
+ signUpWarning: true
369
+ }, {
370
+ name: 'El Salvador',
371
+ ISO2: 'SV',
372
+ ISO3: 'SLV',
373
+ signUpWarning: true
374
+ },
375
+ /* {
376
+ name: 'Equatorial Guinea',
377
+ ISO2: 'GQ',
378
+ ISO3: 'GNQ',
379
+ }, */
380
+ /* {
381
+ name: 'Eritrea',
382
+ ISO2: 'ER',
383
+ ISO3: 'ERI',
384
+ }, */
385
+ {
386
+ name: 'Estonia',
387
+ ISO2: 'EE',
388
+ ISO3: 'EST',
389
+ artid: true,
390
+ 'infinite-fleet': true,
391
+ SEPA: true
392
+ },
393
+ /* {
394
+ name: 'Ethiopia',
395
+ ISO2: 'ET',
396
+ ISO3: 'ETH',
397
+ }, */
398
+ {
399
+ name: 'Falkland Islands',
400
+ ISO2: 'FK',
401
+ ISO3: 'FLK',
402
+ 'infinite-fleet': true
403
+ }, {
404
+ name: 'Faroe Islands',
405
+ ISO2: 'FO',
406
+ ISO3: 'FRO',
407
+ 'infinite-fleet': true
408
+ }, {
409
+ name: 'Fiji',
410
+ ISO2: 'FJ',
411
+ ISO3: 'FJI',
412
+ 'infinite-fleet': true
413
+ }, {
414
+ name: 'Finland',
415
+ ISO2: 'FI',
416
+ ISO3: 'FIN',
417
+ artid: true,
418
+ 'infinite-fleet': true,
419
+ SEPA: true
420
+ }, {
421
+ name: 'France',
422
+ ISO2: 'FR',
423
+ ISO3: 'FRA',
424
+ artid: true,
425
+ 'infinite-fleet': true,
426
+ SEPA: true
427
+ }, {
428
+ name: 'French Guiana',
429
+ ISO2: 'GF',
430
+ ISO3: 'GUF',
431
+ 'infinite-fleet': true
432
+ }, {
433
+ name: 'French Polynesia',
434
+ ISO2: 'PF',
435
+ ISO3: 'PYF',
436
+ 'infinite-fleet': true
437
+ }, {
438
+ name: 'French Southern Territories',
439
+ ISO2: 'TF',
440
+ ISO3: 'ATF',
441
+ 'infinite-fleet': true
442
+ }, {
443
+ name: 'Gabon',
444
+ ISO2: 'GA',
445
+ ISO3: 'GAB',
446
+ 'infinite-fleet': true
447
+ }, {
448
+ name: 'Gambia',
449
+ ISO2: 'GM',
450
+ ISO3: 'GMB',
451
+ 'infinite-fleet': true
452
+ }, {
453
+ name: 'Georgia',
454
+ ISO2: 'GE',
455
+ ISO3: 'GEO',
456
+ 'infinite-fleet': true
457
+ }, {
458
+ name: 'Germany',
459
+ ISO2: 'DE',
460
+ ISO3: 'DEU',
461
+ signUpWarning: true,
462
+ SEPA: true
463
+ },
464
+ /* {
465
+ name: 'Ghana',
466
+ ISO2: 'GH',
467
+ ISO3: 'GHA',
468
+ }, */
469
+ {
470
+ name: 'Gibraltar',
471
+ ISO2: 'GI',
472
+ ISO3: 'GIB',
473
+ 'infinite-fleet': true
474
+ }, {
475
+ name: 'Greece',
476
+ ISO2: 'GR',
477
+ ISO3: 'GRC',
478
+ signUpWarning: true,
479
+ SEPA: true
480
+ }, {
481
+ name: 'Greenland',
482
+ ISO2: 'GL',
483
+ ISO3: 'GRL',
484
+ signUpWarning: true
485
+ }, {
486
+ name: 'Grenada',
487
+ ISO2: 'GD',
488
+ ISO3: 'GRD',
489
+ 'infinite-fleet': true
490
+ }, {
491
+ name: 'Guadeloupe',
492
+ ISO2: 'GP',
493
+ ISO3: 'GLP',
494
+ 'infinite-fleet': true
495
+ },
496
+ /* {
497
+ name: 'Guam',
498
+ ISO2: 'GU',
499
+ ISO3: 'GUM',
500
+ }, */
501
+ {
502
+ name: 'Guatemala',
503
+ ISO2: 'GT',
504
+ ISO3: 'GTM',
505
+ signUpWarning: true
506
+ }, {
507
+ name: 'Guernsey',
508
+ ISO2: 'GG',
509
+ ISO3: 'GGY',
510
+ 'infinite-fleet': true
511
+ },
512
+ /* {
513
+ name: 'Guinea',
514
+ ISO2: 'GN',
515
+ ISO3: 'GIN',
516
+ }, */
517
+ /* {
518
+ name: 'Guinea-Bissau',
519
+ ISO2: 'GW',
520
+ ISO3: 'GNB',
521
+ }, */
522
+ /* {
523
+ name: 'Guyana',
524
+ ISO2: 'GY',
525
+ ISO3: 'GUY',
526
+ }, */
527
+ /* {
528
+ name: 'Haiti',
529
+ ISO2: 'HT',
530
+ ISO3: 'HTI',
531
+ }, */
532
+ {
533
+ name: 'Heard Island and McDonald Islands',
534
+ ISO2: 'HM',
535
+ ISO3: 'HMD',
536
+ 'infinite-fleet': true
537
+ }, {
538
+ name: 'Honduras',
539
+ ISO2: 'HN',
540
+ ISO3: 'HND',
541
+ signUpWarning: true
542
+ }, {
543
+ name: 'Hong Kong',
544
+ ISO2: 'HK',
545
+ ISO3: 'HKG',
546
+ 'infinite-fleet': true
547
+ }, {
548
+ name: 'Hungary',
549
+ ISO2: 'HU',
550
+ ISO3: 'HUN',
551
+ signUpWarning: true,
552
+ SEPA: true
553
+ }, {
554
+ name: 'Iceland',
555
+ ISO2: 'IS',
556
+ ISO3: 'ISL',
557
+ artid: true,
558
+ SEPA: true
559
+ }, {
560
+ name: 'India',
561
+ ISO2: 'IN',
562
+ ISO3: 'IND',
563
+ signUpWarning: true
564
+ }, {
565
+ name: 'Indonesia',
566
+ ISO2: 'ID',
567
+ ISO3: 'IDN',
568
+ signUpWarning: true
569
+ },
570
+ /* {
571
+ name: 'Iran',
572
+ ISO2: 'IR',
573
+ ISO3: 'IRN',
574
+ }, */
575
+ /* {
576
+ name: 'Iraq',
577
+ ISO2: 'IQ',
578
+ ISO3: 'IRQ',
579
+ }, */
580
+ {
581
+ name: 'Ireland',
582
+ ISO2: 'IE',
583
+ ISO3: 'IRL',
584
+ signUpWarning: true,
585
+ SEPA: true
586
+ }, {
587
+ name: 'Isle of Man',
588
+ ISO2: 'IM',
589
+ ISO3: 'IMN',
590
+ 'infinite-fleet': true
591
+ }, {
592
+ name: 'Israel',
593
+ ISO2: 'IL',
594
+ ISO3: 'ISR',
595
+ signUpWarning: true
596
+ }, {
597
+ name: 'Italy',
598
+ ISO2: 'IT',
599
+ ISO3: 'ITA',
600
+ artid: true,
601
+ 'infinite-fleet': true,
602
+ SEPA: true
603
+ },
604
+ /* {
605
+ name: 'Ivory Coast',
606
+ ISO2: 'CI',
607
+ ISO3: 'CIV',
608
+ }, */
609
+ /* {
610
+ name: 'Jamaica',
611
+ ISO2: 'JM',
612
+ ISO3: 'JAM',
613
+ }, */
614
+ {
615
+ name: 'Japan',
616
+ ISO2: 'JP',
617
+ ISO3: 'JPN',
618
+ signUpWarning: true
619
+ }, {
620
+ name: 'Jersey',
621
+ ISO2: 'JE',
622
+ ISO3: 'JEY',
623
+ 'infinite-fleet': true
624
+ },
625
+ /* {
626
+ name: 'Jordan',
627
+ ISO2: 'JO',
628
+ ISO3: 'JOR',
629
+ }, */
630
+ {
631
+ name: 'Kazakhstan',
632
+ ISO2: 'KZ',
633
+ ISO3: 'KAZ',
634
+ 'infinite-fleet': true
635
+ },
636
+ /* {
637
+ name: 'Kenya',
638
+ ISO2: 'KE',
639
+ ISO3: 'KEN',
640
+ }, */
641
+ {
642
+ name: 'Kiribati',
643
+ ISO2: 'KI',
644
+ ISO3: 'KIR',
645
+ 'infinite-fleet': true
646
+ },
647
+ /* {
648
+ name: 'Kosovo',
649
+ ISO2: 'XK',
650
+ ISO3: 'XKX',
651
+ }, */
652
+ {
653
+ name: 'Kuwait',
654
+ ISO2: 'KW',
655
+ ISO3: 'KWT',
656
+ signUpWarning: true
657
+ },
658
+ /* {
659
+ name: 'Kyrgyzstan',
660
+ ISO2: 'KG',
661
+ ISO3: 'KGZ',
662
+ }, */
663
+ /* {
664
+ name: 'Laos',
665
+ ISO2: 'LA',
666
+ ISO3: 'LAO',
667
+ }, */
668
+ {
669
+ name: 'Latvia',
670
+ ISO2: 'LV',
671
+ ISO3: 'LVA',
672
+ signUpWarning: true,
673
+ SEPA: true
674
+ }, {
675
+ name: 'Lebanon',
676
+ ISO2: 'LB',
677
+ ISO3: 'LBN',
678
+ 'infinite-fleet': true
679
+ }, {
680
+ name: 'Lesotho',
681
+ ISO2: 'LS',
682
+ ISO3: 'LSO',
683
+ 'infinite-fleet': true
684
+ },
685
+ /* {
686
+ name: 'Liberia',
687
+ ISO2: 'LR',
688
+ ISO3: 'LBR',
689
+ }, */
690
+ /* {
691
+ name: 'Libya',
692
+ ISO2: 'LY',
693
+ ISO3: 'LBY',
694
+ }, */
695
+ {
696
+ name: 'Liechtenstein',
697
+ ISO2: 'LI',
698
+ ISO3: 'LIE',
699
+ 'infinite-fleet': true,
700
+ SEPA: true
701
+ }, {
702
+ name: 'Lithuania',
703
+ ISO2: 'LT',
704
+ ISO3: 'LTU',
705
+ artid: true,
706
+ 'infinite-fleet': true,
707
+ SEPA: true
708
+ }, {
709
+ name: 'Luxembourg',
710
+ ISO2: 'LU',
711
+ ISO3: 'LUX',
712
+ artid: true,
713
+ 'infinite-fleet': true,
714
+ SEPA: true
715
+ },
716
+ /* {
717
+ name: 'Macao',
718
+ ISO2: 'MO',
719
+ ISO3: 'MAC',
720
+ }, */
721
+ {
722
+ name: 'Macedonia',
723
+ ISO2: 'MK',
724
+ ISO3: 'MKD',
725
+ 'infinite-fleet': true
726
+ },
727
+ /* {
728
+ name: 'Madagascar',
729
+ ISO2: 'MG',
730
+ ISO3: 'MDG',
731
+ }, */
732
+ {
733
+ name: 'Malawi',
734
+ ISO2: 'MW',
735
+ ISO3: 'MWI',
736
+ 'infinite-fleet': true
737
+ }, {
738
+ name: 'Malaysia',
739
+ ISO2: 'MY',
740
+ ISO3: 'MYS',
741
+ signUpWarning: true
742
+ },
743
+ /* {
744
+ name: 'Maldives',
745
+ ISO2: 'MV',
746
+ ISO3: 'MDV',
747
+ }, */
748
+ /* {
749
+ name: 'Mali',
750
+ ISO2: 'ML',
751
+ ISO3: 'MLI',
752
+ }, */
753
+ {
754
+ name: 'Malta',
755
+ ISO2: 'MT',
756
+ ISO3: 'MLT',
757
+ artid: true,
758
+ 'infinite-fleet': true,
759
+ SEPA: true
760
+ },
761
+ /* {
762
+ name: 'Marshall Islands',
763
+ ISO2: 'MH',
764
+ ISO3: 'MHL',
765
+ }, */
766
+ {
767
+ name: 'Martinique',
768
+ ISO2: 'MQ',
769
+ ISO3: 'MTQ',
770
+ 'infinite-fleet': true
771
+ },
772
+ /* {
773
+ name: 'Mauritania',
774
+ ISO2: 'MR',
775
+ ISO3: 'MRT',
776
+ }, */
777
+ {
778
+ name: 'Mauritius',
779
+ ISO2: 'MU',
780
+ ISO3: 'MUS',
781
+ 'infinite-fleet': true
782
+ }, {
783
+ name: 'Mayotte',
784
+ ISO2: 'YT',
785
+ ISO3: 'MYT',
786
+ 'infinite-fleet': true
787
+ }, {
788
+ name: 'Mexico',
789
+ ISO2: 'MX',
790
+ ISO3: 'MEX',
791
+ signUpWarning: true
792
+ }, {
793
+ name: 'Micronesia',
794
+ ISO2: 'FM',
795
+ ISO3: 'FSM',
796
+ 'infinite-fleet': true
797
+ }, {
798
+ name: 'Moldova',
799
+ ISO2: 'MD',
800
+ ISO3: 'MDA',
801
+ 'infinite-fleet': true
802
+ }, {
803
+ name: 'Monaco',
804
+ ISO2: 'MC',
805
+ ISO3: 'MCO',
806
+ artid: true,
807
+ 'infinite-fleet': true,
808
+ SEPA: true
809
+ },
810
+ /* {
811
+ name: 'Mongolia',
812
+ ISO2: 'MN',
813
+ ISO3: 'MNG',
814
+ }, */
815
+ {
816
+ name: 'Montenegro',
817
+ ISO2: 'ME',
818
+ ISO3: 'MNE',
819
+ signUpWarning: true
820
+ }, {
821
+ name: 'Montserrat',
822
+ ISO2: 'MS',
823
+ ISO3: 'MSR',
824
+ 'infinite-fleet': true
825
+ },
826
+ /* {
827
+ name: 'Morocco',
828
+ ISO2: 'MA',
829
+ ISO3: 'MAR',
830
+ }, */
831
+ /* {
832
+ name: 'Mozambique',
833
+ ISO2: 'MZ',
834
+ ISO3: 'MOZ',
835
+ }, */
836
+ /* {
837
+ name: 'Myanmar',
838
+ ISO2: 'MM',
839
+ ISO3: 'MMR',
840
+ }, */
841
+ /* {
842
+ name: 'Namibia',
843
+ ISO2: 'NA',
844
+ ISO3: 'NAM',
845
+ }, */
846
+ {
847
+ name: 'Nauru',
848
+ ISO2: 'NR',
849
+ ISO3: 'NRU',
850
+ 'infinite-fleet': true
851
+ },
852
+ /* {
853
+ name: 'Nepal',
854
+ ISO2: 'NP',
855
+ ISO3: 'NPL',
856
+ }, */
857
+ {
858
+ name: 'Netherlands',
859
+ ISO2: 'NL',
860
+ ISO3: 'NLD',
861
+ signUpWarning: true,
862
+ SEPA: true
863
+ }, {
864
+ name: 'New Caledonia',
865
+ ISO2: 'NC',
866
+ ISO3: 'NCL',
867
+ 'infinite-fleet': true
868
+ }, {
869
+ name: 'New Zealand',
870
+ ISO2: 'NZ',
871
+ ISO3: 'NZL',
872
+ signUpWarning: true
873
+ },
874
+ /* {
875
+ name: 'Nicaragua',
876
+ ISO2: 'NI',
877
+ ISO3: 'NIC',
878
+ }, */
879
+ /* {
880
+ name: 'Niger',
881
+ ISO2: 'NE',
882
+ ISO3: 'NER',
883
+ }, */
884
+ /* {
885
+ name: 'Nigeria',
886
+ ISO2: 'NG',
887
+ ISO3: 'NGA',
888
+ }, */
889
+ {
890
+ name: 'Niue',
891
+ ISO2: 'NU',
892
+ ISO3: 'NIU',
893
+ 'infinite-fleet': true
894
+ }, {
895
+ name: 'Norfolk Island',
896
+ ISO2: 'NF',
897
+ ISO3: 'NFK',
898
+ 'infinite-fleet': true
899
+ },
900
+ /* {
901
+ name: 'North Korea',
902
+ ISO2: 'KP',
903
+ ISO3: 'PRK',
904
+ }, */
905
+ /* {
906
+ name: 'Northern Mariana Islands',
907
+ ISO2: 'MP',
908
+ ISO3: 'MNP',
909
+ }, */
910
+ {
911
+ name: 'Norway',
912
+ ISO2: 'NO',
913
+ ISO3: 'NOR',
914
+ artid: true,
915
+ 'infinite-fleet': true,
916
+ SEPA: true
917
+ },
918
+ /* {
919
+ name: 'Oman',
920
+ ISO2: 'OM',
921
+ ISO3: 'OMN',
922
+ }, */
923
+ /* {
924
+ name: 'Pakistan',
925
+ ISO2: 'PK',
926
+ ISO3: 'PAK',
927
+ }, */
928
+ /* {
929
+ name: 'Palau',
930
+ ISO2: 'PW',
931
+ ISO3: 'PLW',
932
+ }, */
933
+ /* {
934
+ name: 'Palestinian Territory',
935
+ ISO2: 'PS',
936
+ ISO3: 'PSE',
937
+ }, */
938
+ /* {
939
+ name: 'Panama',
940
+ ISO2: 'PA',
941
+ ISO3: 'PAN',
942
+ }, */
943
+ /* {
944
+ name: 'Papua New Guinea',
945
+ ISO2: 'PG',
946
+ ISO3: 'PNG',
947
+ }, */
948
+ /* {
949
+ name: 'Paraguay',
950
+ ISO2: 'PY',
951
+ ISO3: 'PRY',
952
+ }, */
953
+ {
954
+ name: 'Peru',
955
+ ISO2: 'PE',
956
+ ISO3: 'PER',
957
+ signUpWarning: true
958
+ },
959
+ /* {
960
+ name: 'Philippines',
961
+ ISO2: 'PH',
962
+ ISO3: 'PHL',
963
+ }, */
964
+ {
965
+ name: 'Pitcairn',
966
+ ISO2: 'PN',
967
+ ISO3: 'PCN',
968
+ 'infinite-fleet': true
969
+ }, {
970
+ name: 'Poland',
971
+ ISO2: 'PL',
972
+ ISO3: 'POL',
973
+ artid: true,
974
+ 'infinite-fleet': true,
975
+ SEPA: true
976
+ }, {
977
+ name: 'Portugal',
978
+ ISO2: 'PT',
979
+ ISO3: 'PRT',
980
+ artid: true,
981
+ 'infinite-fleet': true,
982
+ SEPA: true
983
+ },
984
+ /* {
985
+ name: 'Puerto Rico',
986
+ ISO2: 'PR',
987
+ ISO3: 'PRI',
988
+ }, */
989
+ /* {
990
+ name: 'Qatar',
991
+ ISO2: 'QA',
992
+ ISO3: 'QAT',
993
+ }, */
994
+ /* {
995
+ name: 'Republic of the Congo',
996
+ ISO2: 'CG',
997
+ ISO3: 'COG',
998
+ }, */
999
+ {
1000
+ name: 'Reunion',
1001
+ ISO2: 'RE',
1002
+ ISO3: 'REU',
1003
+ 'infinite-fleet': true
1004
+ }, {
1005
+ name: 'Romania',
1006
+ ISO2: 'RO',
1007
+ ISO3: 'ROU',
1008
+ artid: true,
1009
+ 'infinite-fleet': true,
1010
+ SEPA: true
1011
+ },
1012
+ /* {
1013
+ name: 'Russia',
1014
+ ISO2: 'RU',
1015
+ ISO3: 'RUS',
1016
+ }, */
1017
+ /* {
1018
+ name: 'Rwanda',
1019
+ ISO2: 'RW',
1020
+ ISO3: 'RWA',
1021
+ }, */
1022
+ {
1023
+ name: 'Saint Barthelemy',
1024
+ ISO2: 'BL',
1025
+ ISO3: 'BLM',
1026
+ 'infinite-fleet': true
1027
+ }, {
1028
+ name: 'Saint Helena',
1029
+ ISO2: 'SH',
1030
+ ISO3: 'SHN',
1031
+ 'infinite-fleet': true
1032
+ }, {
1033
+ name: 'Saint Kitts and Nevis',
1034
+ ISO2: 'KN',
1035
+ ISO3: 'KNA',
1036
+ 'infinite-fleet': true
1037
+ }, {
1038
+ name: 'Saint Lucia',
1039
+ ISO2: 'LC',
1040
+ ISO3: 'LCA',
1041
+ 'infinite-fleet': true
1042
+ }, {
1043
+ name: 'Saint Martin',
1044
+ ISO2: 'MF',
1045
+ ISO3: 'MAF',
1046
+ 'infinite-fleet': true
1047
+ }, {
1048
+ name: 'Saint Pierre and Miquelon',
1049
+ ISO2: 'PM',
1050
+ ISO3: 'SPM',
1051
+ 'infinite-fleet': true
1052
+ }, {
1053
+ name: 'Saint Vincent and the Grenadines',
1054
+ ISO2: 'VC',
1055
+ ISO3: 'VCT',
1056
+ 'infinite-fleet': true
1057
+ }, {
1058
+ name: 'Samoa',
1059
+ ISO2: 'WS',
1060
+ ISO3: 'WSM',
1061
+ 'infinite-fleet': true
1062
+ }, {
1063
+ name: 'San Marino',
1064
+ ISO2: 'SM',
1065
+ ISO3: 'SMR',
1066
+ 'infinite-fleet': true
1067
+ },
1068
+ /* {
1069
+ name: 'Sao Tome and Principe',
1070
+ ISO2: 'ST',
1071
+ ISO3: 'STP',
1072
+ }, */
1073
+ {
1074
+ name: 'Saudi Arabia',
1075
+ ISO2: 'SA',
1076
+ ISO3: 'SAU',
1077
+ signUpWarning: true
1078
+ },
1079
+ /* {
1080
+ name: 'Senegal',
1081
+ ISO2: 'SN',
1082
+ ISO3: 'SEN',
1083
+ }, */
1084
+ /* {
1085
+ name: 'Serbia',
1086
+ ISO2: 'RS',
1087
+ ISO3: 'SRB',
1088
+ }, */
1089
+ /* {
1090
+ name: 'Seychelles',
1091
+ ISO2: 'SC',
1092
+ ISO3: 'SYC',
1093
+ }, */
1094
+ /* {
1095
+ name: 'Sierra Leone',
1096
+ ISO2: 'SL',
1097
+ ISO3: 'SLE',
1098
+ }, */
1099
+ {
1100
+ name: 'Singapore',
1101
+ ISO2: 'SG',
1102
+ ISO3: 'SGP',
1103
+ signUpWarning: true
1104
+ }, {
1105
+ name: 'Sint Maarten',
1106
+ ISO2: 'SX',
1107
+ ISO3: 'SXM',
1108
+ signUpWarning: true
1109
+ }, {
1110
+ name: 'Slovakia',
1111
+ ISO2: 'SK',
1112
+ ISO3: 'SVK',
1113
+ artid: true,
1114
+ 'infinite-fleet': true,
1115
+ SEPA: true
1116
+ }, {
1117
+ name: 'Slovenia',
1118
+ ISO2: 'SI',
1119
+ ISO3: 'SVN',
1120
+ artid: true,
1121
+ 'infinite-fleet': true,
1122
+ SEPA: true
1123
+ }, {
1124
+ name: 'Solomon Islands',
1125
+ ISO2: 'SB',
1126
+ ISO3: 'SLB',
1127
+ 'infinite-fleet': true
1128
+ },
1129
+ /* {
1130
+ name: 'Somalia',
1131
+ ISO2: 'SO',
1132
+ ISO3: 'SOM',
1133
+ }, */
1134
+ {
1135
+ name: 'South Africa',
1136
+ ISO2: 'ZA',
1137
+ ISO3: 'ZAF',
1138
+ 'infinite-fleet': true
1139
+ }, {
1140
+ name: 'South Georgia and the South Sandwich Islands',
1141
+ ISO2: 'GS',
1142
+ ISO3: 'SGS',
1143
+ 'infinite-fleet': true
1144
+ }, {
1145
+ name: 'South Korea',
1146
+ ISO2: 'KR',
1147
+ ISO3: 'KOR',
1148
+ signUpWarning: true
1149
+ },
1150
+ /* {
1151
+ name: 'South Sudan',
1152
+ ISO2: 'SS',
1153
+ ISO3: 'SSD',
1154
+ }, */
1155
+ {
1156
+ name: 'Spain',
1157
+ ISO2: 'ES',
1158
+ ISO3: 'ESP',
1159
+ artid: true,
1160
+ 'infinite-fleet': true,
1161
+ SEPA: true
1162
+ },
1163
+ /* {
1164
+ name: 'Sri Lanka',
1165
+ ISO2: 'LK',
1166
+ ISO3: 'LKA',
1167
+ }, */
1168
+ /* {
1169
+ name: 'Sudan',
1170
+ ISO2: 'SD',
1171
+ ISO3: 'SDN',
1172
+ }, */
1173
+ /* {
1174
+ name: 'Suriname',
1175
+ ISO2: 'SR',
1176
+ ISO3: 'SUR',
1177
+ }, */
1178
+ {
1179
+ name: 'Svalbard and Jan Mayen',
1180
+ ISO2: 'SJ',
1181
+ ISO3: 'SJM',
1182
+ 'infinite-fleet': true
1183
+ },
1184
+ /* {
1185
+ name: 'Swaziland',
1186
+ ISO2: 'SZ',
1187
+ ISO3: 'SWZ',
1188
+ }, */
1189
+ {
1190
+ name: 'Sweden',
1191
+ ISO2: 'SE',
1192
+ ISO3: 'SWE',
1193
+ artid: true,
1194
+ 'infinite-fleet': true,
1195
+ SEPA: true
1196
+ }, {
1197
+ name: 'Switzerland',
1198
+ ISO2: 'CH',
1199
+ ISO3: 'CHE',
1200
+ artid: true,
1201
+ 'infinite-fleet': true,
1202
+ SEPA: true
1203
+ },
1204
+ /* {
1205
+ name: 'Syria',
1206
+ ISO2: 'SY',
1207
+ ISO3: 'SYR',
1208
+ }, */
1209
+ {
1210
+ name: 'Taiwan',
1211
+ ISO2: 'TW',
1212
+ ISO3: 'TWN',
1213
+ artid: true,
1214
+ 'infinite-fleet': true
1215
+ },
1216
+ /* {
1217
+ name: 'Tajikistan',
1218
+ ISO2: 'TJ',
1219
+ ISO3: 'TJK',
1220
+ }, */
1221
+ /* {
1222
+ name: 'Tanzania',
1223
+ ISO2: 'TZ',
1224
+ ISO3: 'TZA',
1225
+ }, */
1226
+ /* {
1227
+ name: 'Thailand',
1228
+ ISO2: 'TH',
1229
+ ISO3: 'THA',
1230
+ }, */
1231
+ /* {
1232
+ name: 'Togo',
1233
+ ISO2: 'TG',
1234
+ ISO3: 'TGO',
1235
+ }, */
1236
+ {
1237
+ name: 'Tokelau',
1238
+ ISO2: 'TK',
1239
+ ISO3: 'TKL',
1240
+ 'infinite-fleet': true
1241
+ },
1242
+ /* {
1243
+ name: 'Tonga',
1244
+ ISO2: 'TO',
1245
+ ISO3: 'TON',
1246
+ }, */
1247
+ {
1248
+ name: 'Trinidad and Tobago',
1249
+ ISO2: 'TT',
1250
+ ISO3: 'TTO',
1251
+ 'infinite-fleet': true
1252
+ }, {
1253
+ name: 'Tunisia',
1254
+ ISO2: 'TN',
1255
+ ISO3: 'TUN',
1256
+ signUpWarning: true
1257
+ },
1258
+ /* {
1259
+ name: 'Turkey',
1260
+ ISO2: 'TR',
1261
+ ISO3: 'TUR',
1262
+ }, */
1263
+ /* {
1264
+ name: 'Turkmenistan',
1265
+ ISO2: 'TM',
1266
+ ISO3: 'TKM',
1267
+ }, */
1268
+ {
1269
+ name: 'Turks and Caicos Islands',
1270
+ ISO2: 'TC',
1271
+ ISO3: 'TCA',
1272
+ 'infinite-fleet': true
1273
+ }, {
1274
+ name: 'Tuvalu',
1275
+ ISO2: 'TV',
1276
+ ISO3: 'TUV',
1277
+ 'infinite-fleet': true
1278
+ },
1279
+ /* {
1280
+ name: 'U.S. Virgin Islands',
1281
+ ISO2: 'VI',
1282
+ ISO3: 'VIR',
1283
+ }, */
1284
+ /* {
1285
+ name: 'Uganda',
1286
+ ISO2: 'UG',
1287
+ ISO3: 'UGA',
1288
+ }, */
1289
+ /* {
1290
+ name: 'Ukraine',
1291
+ ISO2: 'UA',
1292
+ ISO3: 'UKR',
1293
+ }, */
1294
+ {
1295
+ name: 'United Arab Emirates',
1296
+ ISO2: 'AE',
1297
+ ISO3: 'ARE',
1298
+ artid: true,
1299
+ signUpWarning: true
1300
+ }, {
1301
+ name: 'United Kingdom',
1302
+ ISO2: 'GB',
1303
+ ISO3: 'GBR',
1304
+ artid: true,
1305
+ 'infinite-fleet': true,
1306
+ SEPA: true
1307
+ }, {
1308
+ name: 'United States',
1309
+ ISO2: 'US',
1310
+ ISO3: 'USA'
1311
+ },
1312
+ /* {
1313
+ name: 'United States Minor Outlying Islands',
1314
+ ISO2: 'UM',
1315
+ ISO3: 'UMI',
1316
+ }, */
1317
+ {
1318
+ name: 'Uruguay',
1319
+ ISO2: 'UY',
1320
+ ISO3: 'URY',
1321
+ 'infinite-fleet': true
1322
+ },
1323
+ /* {
1324
+ name: 'Uzbekistan',
1325
+ ISO2: 'UZ',
1326
+ ISO3: 'UZB',
1327
+ }, */
1328
+ /* {
1329
+ name: 'Vanuatu',
1330
+ ISO2: 'VU',
1331
+ ISO3: 'VUT',
1332
+ }, */
1333
+ {
1334
+ name: 'Vatican',
1335
+ ISO2: 'VA',
1336
+ ISO3: 'VAT',
1337
+ 'infinite-fleet': true
1338
+ },
1339
+ /* {
1340
+ name: 'Venezuela',
1341
+ ISO2: 'VE',
1342
+ ISO3: 'VEN',
1343
+ }, */
1344
+ /* {
1345
+ name: 'Vietnam',
1346
+ ISO2: 'VN',
1347
+ ISO3: 'VNM',
1348
+ }, */
1349
+ {
1350
+ name: 'Wallis and Futuna',
1351
+ ISO2: 'WF',
1352
+ ISO3: 'WLF',
1353
+ 'infinite-fleet': true
1354
+ }
1355
+ /* {
1356
+ name: 'Western Sahara',
1357
+ ISO2: 'EH',
1358
+ ISO3: 'ESH',
1359
+ }, */
1360
+ /* {
1361
+ name: 'Yemen',
1362
+ ISO2: 'YE',
1363
+ ISO3: 'YEM',
1364
+ }, */
1365
+ /* {
1366
+ name: 'Zambia',
1367
+ ISO2: 'ZM',
1368
+ ISO3: 'ZMB',
1369
+ }, */
1370
+ /* {
1371
+ name: 'Zimbabwe',
1372
+ ISO2: 'ZW',
1373
+ ISO3: 'ZWE',
1374
+ }, */];
1375
+ exports.default = _default;