@julseb-lib/react 0.0.63 → 0.0.64

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 (1348) hide show
  1. package/README.md +5 -5
  2. package/dist/@julseb-lib-react.cjs.js +1 -0
  3. package/dist/@julseb-lib-react.es.js +207 -0
  4. package/dist/@julseb-lib-react.umd.js +4148 -0
  5. package/dist/index-CaOLbx-Z.cjs +4142 -0
  6. package/dist/index-Cf_pM6lO.js +23319 -0
  7. package/dist/index.d.ts +1 -1
  8. package/dist/lib/Mixins.tsx +985 -0
  9. package/dist/lib/Variables.ts +296 -0
  10. package/dist/lib/components/Accordion/Accordion.tsx +86 -0
  11. package/dist/lib/components/Accordion/AccordionButton.tsx +72 -0
  12. package/dist/lib/components/Accordion/AccordionContent.tsx +27 -0
  13. package/dist/lib/components/Accordion/AccordionItem.tsx +70 -0
  14. package/dist/lib/components/Accordion/index.ts +4 -0
  15. package/dist/lib/components/Accordion/styles.tsx +165 -0
  16. package/dist/lib/components/Accordion/subtypes.ts +22 -0
  17. package/dist/lib/components/Accordion/types.ts +33 -0
  18. package/dist/lib/components/Alert/Alert.tsx +118 -0
  19. package/dist/lib/components/Alert/index.ts +3 -0
  20. package/dist/lib/components/Alert/styles.tsx +39 -0
  21. package/dist/lib/components/Alert/types.ts +33 -0
  22. package/dist/lib/components/Aside/Aside.tsx +42 -0
  23. package/dist/lib/components/Aside/index.ts +3 -0
  24. package/dist/lib/components/Aside/styles.tsx +46 -0
  25. package/dist/lib/components/Aside/types.ts +8 -0
  26. package/dist/lib/components/Autocomplete/Autocomplete.tsx +352 -0
  27. package/dist/lib/components/Autocomplete/index.ts +3 -0
  28. package/dist/lib/components/Autocomplete/styles.tsx +13 -0
  29. package/dist/lib/components/Autocomplete/types.ts +42 -0
  30. package/dist/lib/components/Avatar/Avatar.tsx +143 -0
  31. package/dist/lib/components/Avatar/AvatarFunction.tsx +136 -0
  32. package/dist/lib/components/Avatar/index.ts +3 -0
  33. package/dist/lib/components/Avatar/styles.tsx +117 -0
  34. package/dist/lib/components/Avatar/types.ts +86 -0
  35. package/dist/lib/components/BackToTop/BackToTop.tsx +101 -0
  36. package/dist/lib/components/BackToTop/index.ts +3 -0
  37. package/dist/lib/components/BackToTop/styles.tsx +35 -0
  38. package/dist/lib/components/BackToTop/types.ts +8 -0
  39. package/dist/lib/components/Badge/Badge.tsx +94 -0
  40. package/dist/lib/components/Badge/index.ts +3 -0
  41. package/dist/lib/components/Badge/styles.tsx +41 -0
  42. package/dist/lib/components/Badge/types.ts +34 -0
  43. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +42 -0
  44. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +52 -0
  45. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +76 -0
  46. package/dist/lib/components/Breadcrumbs/index.ts +3 -0
  47. package/dist/lib/components/Breadcrumbs/styles.tsx +64 -0
  48. package/dist/lib/components/Breadcrumbs/subtypes.ts +12 -0
  49. package/dist/lib/components/Breadcrumbs/types.ts +31 -0
  50. package/dist/lib/components/Burger/Burger.tsx +59 -0
  51. package/dist/lib/components/Burger/index.ts +3 -0
  52. package/dist/lib/components/Burger/styles.tsx +93 -0
  53. package/dist/lib/components/Burger/types.ts +13 -0
  54. package/dist/lib/components/Button/Button.tsx +134 -0
  55. package/dist/lib/components/Button/index.ts +3 -0
  56. package/dist/lib/components/Button/styles.tsx +32 -0
  57. package/dist/lib/components/Button/subtypes.ts +12 -0
  58. package/dist/lib/components/Button/types.ts +72 -0
  59. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +158 -0
  60. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +89 -0
  61. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +99 -0
  62. package/dist/lib/components/ButtonGroup/index.ts +3 -0
  63. package/dist/lib/components/ButtonGroup/styles.tsx +91 -0
  64. package/dist/lib/components/ButtonGroup/subtypes.ts +42 -0
  65. package/dist/lib/components/ButtonGroup/types.ts +36 -0
  66. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +95 -0
  67. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +139 -0
  68. package/dist/lib/components/ButtonIcon/index.ts +3 -0
  69. package/dist/lib/components/ButtonIcon/styles.tsx +31 -0
  70. package/dist/lib/components/ButtonIcon/subtypes.ts +12 -0
  71. package/dist/lib/components/ButtonIcon/types.ts +90 -0
  72. package/dist/lib/components/Card/Card.tsx +133 -0
  73. package/dist/lib/components/Card/index.ts +3 -0
  74. package/dist/lib/components/Card/styles.tsx +75 -0
  75. package/dist/lib/components/Card/types.ts +29 -0
  76. package/dist/lib/components/CodeContainer/CodeContainer.tsx +135 -0
  77. package/dist/lib/components/CodeContainer/index.ts +3 -0
  78. package/dist/lib/components/CodeContainer/styles.tsx +65 -0
  79. package/dist/lib/components/CodeContainer/types.ts +235 -0
  80. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +441 -0
  81. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +81 -0
  82. package/dist/lib/components/ComponentsMixins/index.ts +5 -0
  83. package/dist/lib/components/ComponentsMixins/types.ts +37 -0
  84. package/dist/lib/components/Cover/Cover.tsx +72 -0
  85. package/dist/lib/components/Cover/index.ts +3 -0
  86. package/dist/lib/components/Cover/styles.tsx +80 -0
  87. package/dist/lib/components/Cover/types.ts +14 -0
  88. package/dist/lib/components/Datepicker/Calendar.tsx +395 -0
  89. package/dist/lib/components/Datepicker/Datepicker.tsx +254 -0
  90. package/dist/lib/components/Datepicker/data.ts +33 -0
  91. package/dist/lib/components/Datepicker/index.ts +3 -0
  92. package/dist/lib/components/Datepicker/styles.tsx +456 -0
  93. package/dist/lib/components/Datepicker/types.ts +68 -0
  94. package/dist/lib/components/DragList/DragList.tsx +127 -0
  95. package/dist/lib/components/DragList/DragListItem.tsx +191 -0
  96. package/dist/lib/components/DragList/index.ts +4 -0
  97. package/dist/lib/components/DragList/styles.tsx +75 -0
  98. package/dist/lib/components/DragList/types.ts +65 -0
  99. package/dist/lib/components/Drawer/Drawer.tsx +110 -0
  100. package/dist/lib/components/Drawer/index.ts +3 -0
  101. package/dist/lib/components/Drawer/styles.tsx +136 -0
  102. package/dist/lib/components/Drawer/types.ts +28 -0
  103. package/dist/lib/components/Dropdown/Dropdown.tsx +89 -0
  104. package/dist/lib/components/Dropdown/DropdownContainer.tsx +39 -0
  105. package/dist/lib/components/Dropdown/DropdownItem.tsx +97 -0
  106. package/dist/lib/components/Dropdown/index.ts +5 -0
  107. package/dist/lib/components/Dropdown/styles.tsx +156 -0
  108. package/dist/lib/components/Dropdown/types.ts +71 -0
  109. package/dist/lib/components/Fade/Fade.tsx +42 -0
  110. package/dist/lib/components/Fade/index.ts +3 -0
  111. package/dist/lib/components/Fade/styles.tsx +19 -0
  112. package/dist/lib/components/Fade/types.ts +5 -0
  113. package/dist/lib/components/Fallback/Fallback.tsx +37 -0
  114. package/dist/lib/components/Fallback/index.ts +3 -0
  115. package/dist/lib/components/Fieldset/Fieldset.tsx +107 -0
  116. package/dist/lib/components/Fieldset/index.ts +3 -0
  117. package/dist/lib/components/Fieldset/styles.tsx +50 -0
  118. package/dist/lib/components/Fieldset/types.ts +34 -0
  119. package/dist/lib/components/Flexbox/Flexbox.tsx +69 -0
  120. package/dist/lib/components/Flexbox/index.ts +3 -0
  121. package/dist/lib/components/Flexbox/styles.tsx +34 -0
  122. package/dist/lib/components/Flexbox/types.ts +27 -0
  123. package/dist/lib/components/Footer/Footer.tsx +106 -0
  124. package/dist/lib/components/Footer/FooterLink.tsx +31 -0
  125. package/dist/lib/components/Footer/FooterLogo.tsx +30 -0
  126. package/dist/lib/components/Footer/index.ts +3 -0
  127. package/dist/lib/components/Footer/styles.tsx +126 -0
  128. package/dist/lib/components/Footer/subtypes.ts +14 -0
  129. package/dist/lib/components/Footer/types.ts +76 -0
  130. package/dist/lib/components/Form/Form.tsx +148 -0
  131. package/dist/lib/components/Form/index.ts +3 -0
  132. package/dist/lib/components/Form/styles.tsx +24 -0
  133. package/dist/lib/components/Form/types.ts +32 -0
  134. package/dist/lib/components/FullBleed/FullBleed.tsx +45 -0
  135. package/dist/lib/components/FullBleed/index.ts +3 -0
  136. package/dist/lib/components/FullBleed/styles.tsx +32 -0
  137. package/dist/lib/components/FullBleed/types.ts +9 -0
  138. package/dist/lib/components/Grid/Grid.tsx +66 -0
  139. package/dist/lib/components/Grid/index.ts +3 -0
  140. package/dist/lib/components/Grid/styles.tsx +31 -0
  141. package/dist/lib/components/Grid/types.ts +24 -0
  142. package/dist/lib/components/Header/Header.tsx +212 -0
  143. package/dist/lib/components/Header/HeaderBurger.tsx +59 -0
  144. package/dist/lib/components/Header/HeaderLogo.tsx +65 -0
  145. package/dist/lib/components/Header/HeaderNav.tsx +82 -0
  146. package/dist/lib/components/Header/HeaderNavLink.tsx +32 -0
  147. package/dist/lib/components/Header/HeaderSearch.tsx +83 -0
  148. package/dist/lib/components/Header/index.ts +3 -0
  149. package/dist/lib/components/Header/styles.tsx +352 -0
  150. package/dist/lib/components/Header/subtypes.ts +86 -0
  151. package/dist/lib/components/Header/types.ts +91 -0
  152. package/dist/lib/components/Helmet/Helmet.tsx +67 -0
  153. package/dist/lib/components/Helmet/index.ts +3 -0
  154. package/dist/lib/components/Helmet/types.ts +17 -0
  155. package/dist/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/dist/lib/components/Highlight/index.ts +3 -0
  157. package/dist/lib/components/Highlight/types.ts +11 -0
  158. package/dist/lib/components/Hr/Hr.tsx +50 -0
  159. package/dist/lib/components/Hr/index.ts +3 -0
  160. package/dist/lib/components/Hr/styles.tsx +29 -0
  161. package/dist/lib/components/Hr/types.ts +12 -0
  162. package/dist/lib/components/Icon/Icon.tsx +42 -0
  163. package/dist/lib/components/Icon/index.ts +3 -0
  164. package/dist/lib/components/Icon/styles.tsx +21 -0
  165. package/dist/lib/components/Icon/types.ts +13 -0
  166. package/dist/lib/components/IconMenu/IconMenu.tsx +157 -0
  167. package/dist/lib/components/IconMenu/IconMenuItem.tsx +74 -0
  168. package/dist/lib/components/IconMenu/index.ts +4 -0
  169. package/dist/lib/components/IconMenu/styles.tsx +116 -0
  170. package/dist/lib/components/IconMenu/types.ts +56 -0
  171. package/dist/lib/components/Image/Image.tsx +106 -0
  172. package/dist/lib/components/Image/ImageFunction.tsx +53 -0
  173. package/dist/lib/components/Image/index.ts +3 -0
  174. package/dist/lib/components/Image/styles.tsx +87 -0
  175. package/dist/lib/components/Image/types.ts +48 -0
  176. package/dist/lib/components/Input/Input.tsx +189 -0
  177. package/dist/lib/components/Input/index.ts +3 -0
  178. package/dist/lib/components/Input/styles.tsx +41 -0
  179. package/dist/lib/components/Input/subtypes.ts +186 -0
  180. package/dist/lib/components/Input/templates/ColorInput.tsx +40 -0
  181. package/dist/lib/components/Input/templates/DateInput.tsx +127 -0
  182. package/dist/lib/components/Input/templates/FileInput.tsx +61 -0
  183. package/dist/lib/components/Input/templates/PasswordInput.tsx +197 -0
  184. package/dist/lib/components/Input/templates/SearchInput.tsx +140 -0
  185. package/dist/lib/components/Input/templates/SelectInput.tsx +116 -0
  186. package/dist/lib/components/Input/templates/TextInput.tsx +116 -0
  187. package/dist/lib/components/Input/templates/TextareaInput.tsx +43 -0
  188. package/dist/lib/components/Input/templates/TimeInput.tsx +126 -0
  189. package/dist/lib/components/Input/types.ts +24 -0
  190. package/dist/lib/components/InputCheck/InputCheck.tsx +138 -0
  191. package/dist/lib/components/InputCheck/index.ts +3 -0
  192. package/dist/lib/components/InputCheck/styles.tsx +284 -0
  193. package/dist/lib/components/InputCheck/types.ts +35 -0
  194. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +51 -0
  195. package/dist/lib/components/InputComponents/components/InputButton.tsx +62 -0
  196. package/dist/lib/components/InputComponents/components/InputContainer.tsx +70 -0
  197. package/dist/lib/components/InputComponents/components/InputIcon.tsx +51 -0
  198. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +29 -0
  199. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +31 -0
  200. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +35 -0
  201. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +31 -0
  202. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +98 -0
  203. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +66 -0
  204. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +46 -0
  205. package/dist/lib/components/InputComponents/components/ListInput.tsx +51 -0
  206. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +56 -0
  207. package/dist/lib/components/InputComponents/index.ts +15 -0
  208. package/dist/lib/components/InputComponents/styles.tsx +738 -0
  209. package/dist/lib/components/InputComponents/types.ts +289 -0
  210. package/dist/lib/components/InputContainer/HelperBottom.tsx +96 -0
  211. package/dist/lib/components/InputContainer/InputContainer.tsx +132 -0
  212. package/dist/lib/components/InputContainer/index.ts +3 -0
  213. package/dist/lib/components/InputContainer/styles.tsx +89 -0
  214. package/dist/lib/components/InputContainer/subtypes.ts +10 -0
  215. package/dist/lib/components/InputContainer/types.ts +25 -0
  216. package/dist/lib/components/InputCounter/InputCounter.tsx +287 -0
  217. package/dist/lib/components/InputCounter/index.ts +3 -0
  218. package/dist/lib/components/InputCounter/styles.tsx +53 -0
  219. package/dist/lib/components/InputCounter/subtypes.ts +9 -0
  220. package/dist/lib/components/InputCounter/types.ts +51 -0
  221. package/dist/lib/components/InputImage/EmptyContainer.tsx +41 -0
  222. package/dist/lib/components/InputImage/HoverContainer.tsx +48 -0
  223. package/dist/lib/components/InputImage/InputImage.tsx +151 -0
  224. package/dist/lib/components/InputImage/index.ts +3 -0
  225. package/dist/lib/components/InputImage/styles.tsx +115 -0
  226. package/dist/lib/components/InputImage/subtypes.ts +30 -0
  227. package/dist/lib/components/InputImage/types.ts +25 -0
  228. package/dist/lib/components/InputPhone/InputPhone.tsx +386 -0
  229. package/dist/lib/components/InputPhone/index.ts +3 -0
  230. package/dist/lib/components/InputPhone/styles.tsx +219 -0
  231. package/dist/lib/components/InputPhone/types.ts +35 -0
  232. package/dist/lib/components/InputPhone/utils/countries.ts +648 -0
  233. package/dist/lib/components/InputPhone/utils/flags/ac.svg +76 -0
  234. package/dist/lib/components/InputPhone/utils/flags/ad.svg +150 -0
  235. package/dist/lib/components/InputPhone/utils/flags/ae.svg +6 -0
  236. package/dist/lib/components/InputPhone/utils/flags/af.svg +81 -0
  237. package/dist/lib/components/InputPhone/utils/flags/ag.svg +14 -0
  238. package/dist/lib/components/InputPhone/utils/flags/ai.svg +758 -0
  239. package/dist/lib/components/InputPhone/utils/flags/al.svg +5 -0
  240. package/dist/lib/components/InputPhone/utils/flags/am.svg +5 -0
  241. package/dist/lib/components/InputPhone/utils/flags/ao.svg +13 -0
  242. package/dist/lib/components/InputPhone/utils/flags/aq.svg +5 -0
  243. package/dist/lib/components/InputPhone/utils/flags/ar.svg +32 -0
  244. package/dist/lib/components/InputPhone/utils/flags/as.svg +72 -0
  245. package/dist/lib/components/InputPhone/utils/flags/at.svg +6 -0
  246. package/dist/lib/components/InputPhone/utils/flags/au.svg +8 -0
  247. package/dist/lib/components/InputPhone/utils/flags/aw.svg +186 -0
  248. package/dist/lib/components/InputPhone/utils/flags/ax.svg +18 -0
  249. package/dist/lib/components/InputPhone/utils/flags/az.svg +8 -0
  250. package/dist/lib/components/InputPhone/utils/flags/ba.svg +12 -0
  251. package/dist/lib/components/InputPhone/utils/flags/bb.svg +6 -0
  252. package/dist/lib/components/InputPhone/utils/flags/bd.svg +4 -0
  253. package/dist/lib/components/InputPhone/utils/flags/be.svg +7 -0
  254. package/dist/lib/components/InputPhone/utils/flags/bf.svg +7 -0
  255. package/dist/lib/components/InputPhone/utils/flags/bg.svg +7 -0
  256. package/dist/lib/components/InputPhone/utils/flags/bh.svg +4 -0
  257. package/dist/lib/components/InputPhone/utils/flags/bi.svg +15 -0
  258. package/dist/lib/components/InputPhone/utils/flags/bj.svg +14 -0
  259. package/dist/lib/components/InputPhone/utils/flags/bl.svg +7 -0
  260. package/dist/lib/components/InputPhone/utils/flags/bm.svg +97 -0
  261. package/dist/lib/components/InputPhone/utils/flags/bn.svg +36 -0
  262. package/dist/lib/components/InputPhone/utils/flags/bo.svg +676 -0
  263. package/dist/lib/components/InputPhone/utils/flags/bq.svg +5 -0
  264. package/dist/lib/components/InputPhone/utils/flags/br.svg +45 -0
  265. package/dist/lib/components/InputPhone/utils/flags/bs.svg +13 -0
  266. package/dist/lib/components/InputPhone/utils/flags/bt.svg +89 -0
  267. package/dist/lib/components/InputPhone/utils/flags/bv.svg +13 -0
  268. package/dist/lib/components/InputPhone/utils/flags/bw.svg +7 -0
  269. package/dist/lib/components/InputPhone/utils/flags/by.svg +20 -0
  270. package/dist/lib/components/InputPhone/utils/flags/bz.svg +145 -0
  271. package/dist/lib/components/InputPhone/utils/flags/ca.svg +4 -0
  272. package/dist/lib/components/InputPhone/utils/flags/cc.svg +19 -0
  273. package/dist/lib/components/InputPhone/utils/flags/cd.svg +5 -0
  274. package/dist/lib/components/InputPhone/utils/flags/cefta.svg +13 -0
  275. package/dist/lib/components/InputPhone/utils/flags/cf.svg +15 -0
  276. package/dist/lib/components/InputPhone/utils/flags/cg.svg +12 -0
  277. package/dist/lib/components/InputPhone/utils/flags/ch.svg +9 -0
  278. package/dist/lib/components/InputPhone/utils/flags/ci.svg +7 -0
  279. package/dist/lib/components/InputPhone/utils/flags/ck.svg +9 -0
  280. package/dist/lib/components/InputPhone/utils/flags/cl.svg +13 -0
  281. package/dist/lib/components/InputPhone/utils/flags/cm.svg +15 -0
  282. package/dist/lib/components/InputPhone/utils/flags/cn.svg +11 -0
  283. package/dist/lib/components/InputPhone/utils/flags/co.svg +7 -0
  284. package/dist/lib/components/InputPhone/utils/flags/cp.svg +7 -0
  285. package/dist/lib/components/InputPhone/utils/flags/cr.svg +7 -0
  286. package/dist/lib/components/InputPhone/utils/flags/cu.svg +13 -0
  287. package/dist/lib/components/InputPhone/utils/flags/cv.svg +13 -0
  288. package/dist/lib/components/InputPhone/utils/flags/cw.svg +14 -0
  289. package/dist/lib/components/InputPhone/utils/flags/cx.svg +15 -0
  290. package/dist/lib/components/InputPhone/utils/flags/cy.svg +6 -0
  291. package/dist/lib/components/InputPhone/utils/flags/cz.svg +5 -0
  292. package/dist/lib/components/InputPhone/utils/flags/de.svg +5 -0
  293. package/dist/lib/components/InputPhone/utils/flags/dg.svg +129 -0
  294. package/dist/lib/components/InputPhone/utils/flags/dj.svg +13 -0
  295. package/dist/lib/components/InputPhone/utils/flags/dk.svg +5 -0
  296. package/dist/lib/components/InputPhone/utils/flags/dm.svg +152 -0
  297. package/dist/lib/components/InputPhone/utils/flags/do.svg +6745 -0
  298. package/dist/lib/components/InputPhone/utils/flags/dz.svg +5 -0
  299. package/dist/lib/components/InputPhone/utils/flags/ea.svg +544 -0
  300. package/dist/lib/components/InputPhone/utils/flags/ec.svg +138 -0
  301. package/dist/lib/components/InputPhone/utils/flags/ee.svg +7 -0
  302. package/dist/lib/components/InputPhone/utils/flags/eg.svg +38 -0
  303. package/dist/lib/components/InputPhone/utils/flags/eh.svg +16 -0
  304. package/dist/lib/components/InputPhone/utils/flags/er.svg +8 -0
  305. package/dist/lib/components/InputPhone/utils/flags/es-ct.svg +4 -0
  306. package/dist/lib/components/InputPhone/utils/flags/es-ga.svg +187 -0
  307. package/dist/lib/components/InputPhone/utils/flags/es.svg +544 -0
  308. package/dist/lib/components/InputPhone/utils/flags/et.svg +14 -0
  309. package/dist/lib/components/InputPhone/utils/flags/eu.svg +28 -0
  310. package/dist/lib/components/InputPhone/utils/flags/fi.svg +5 -0
  311. package/dist/lib/components/InputPhone/utils/flags/fj.svg +120 -0
  312. package/dist/lib/components/InputPhone/utils/flags/fk.svg +90 -0
  313. package/dist/lib/components/InputPhone/utils/flags/fm.svg +11 -0
  314. package/dist/lib/components/InputPhone/utils/flags/fo.svg +12 -0
  315. package/dist/lib/components/InputPhone/utils/flags/fr.svg +7 -0
  316. package/dist/lib/components/InputPhone/utils/flags/ga.svg +7 -0
  317. package/dist/lib/components/InputPhone/utils/flags/gb-eng.svg +5 -0
  318. package/dist/lib/components/InputPhone/utils/flags/gb-nir.svg +132 -0
  319. package/dist/lib/components/InputPhone/utils/flags/gb-sct.svg +4 -0
  320. package/dist/lib/components/InputPhone/utils/flags/gb-wls.svg +9 -0
  321. package/dist/lib/components/InputPhone/utils/flags/gb.svg +7 -0
  322. package/dist/lib/components/InputPhone/utils/flags/gd.svg +27 -0
  323. package/dist/lib/components/InputPhone/utils/flags/ge.svg +6 -0
  324. package/dist/lib/components/InputPhone/utils/flags/gf.svg +7 -0
  325. package/dist/lib/components/InputPhone/utils/flags/gg.svg +9 -0
  326. package/dist/lib/components/InputPhone/utils/flags/gh.svg +6 -0
  327. package/dist/lib/components/InputPhone/utils/flags/gi.svg +32 -0
  328. package/dist/lib/components/InputPhone/utils/flags/gl.svg +4 -0
  329. package/dist/lib/components/InputPhone/utils/flags/gm.svg +14 -0
  330. package/dist/lib/components/InputPhone/utils/flags/gn.svg +7 -0
  331. package/dist/lib/components/InputPhone/utils/flags/gp.svg +7 -0
  332. package/dist/lib/components/InputPhone/utils/flags/gq.svg +23 -0
  333. package/dist/lib/components/InputPhone/utils/flags/gr.svg +16 -0
  334. package/dist/lib/components/InputPhone/utils/flags/gs.svg +133 -0
  335. package/dist/lib/components/InputPhone/utils/flags/gt.svg +220 -0
  336. package/dist/lib/components/InputPhone/utils/flags/gu.svg +23 -0
  337. package/dist/lib/components/InputPhone/utils/flags/gw.svg +13 -0
  338. package/dist/lib/components/InputPhone/utils/flags/gy.svg +9 -0
  339. package/dist/lib/components/InputPhone/utils/flags/hk.svg +30 -0
  340. package/dist/lib/components/InputPhone/utils/flags/hm.svg +8 -0
  341. package/dist/lib/components/InputPhone/utils/flags/hn.svg +18 -0
  342. package/dist/lib/components/InputPhone/utils/flags/hr.svg +58 -0
  343. package/dist/lib/components/InputPhone/utils/flags/ht.svg +116 -0
  344. package/dist/lib/components/InputPhone/utils/flags/hu.svg +7 -0
  345. package/dist/lib/components/InputPhone/utils/flags/ic.svg +7 -0
  346. package/dist/lib/components/InputPhone/utils/flags/id.svg +4 -0
  347. package/dist/lib/components/InputPhone/utils/flags/ie.svg +7 -0
  348. package/dist/lib/components/InputPhone/utils/flags/il.svg +14 -0
  349. package/dist/lib/components/InputPhone/utils/flags/im.svg +36 -0
  350. package/dist/lib/components/InputPhone/utils/flags/in.svg +25 -0
  351. package/dist/lib/components/InputPhone/utils/flags/io.svg +129 -0
  352. package/dist/lib/components/InputPhone/utils/flags/iq.svg +10 -0
  353. package/dist/lib/components/InputPhone/utils/flags/ir.svg +219 -0
  354. package/dist/lib/components/InputPhone/utils/flags/is.svg +12 -0
  355. package/dist/lib/components/InputPhone/utils/flags/it.svg +7 -0
  356. package/dist/lib/components/InputPhone/utils/flags/je.svg +45 -0
  357. package/dist/lib/components/InputPhone/utils/flags/jm.svg +8 -0
  358. package/dist/lib/components/InputPhone/utils/flags/jo.svg +16 -0
  359. package/dist/lib/components/InputPhone/utils/flags/jp.svg +11 -0
  360. package/dist/lib/components/InputPhone/utils/flags/ke.svg +23 -0
  361. package/dist/lib/components/InputPhone/utils/flags/kg.svg +15 -0
  362. package/dist/lib/components/InputPhone/utils/flags/kh.svg +61 -0
  363. package/dist/lib/components/InputPhone/utils/flags/ki.svg +36 -0
  364. package/dist/lib/components/InputPhone/utils/flags/km.svg +16 -0
  365. package/dist/lib/components/InputPhone/utils/flags/kn.svg +14 -0
  366. package/dist/lib/components/InputPhone/utils/flags/kp.svg +15 -0
  367. package/dist/lib/components/InputPhone/utils/flags/kr.svg +24 -0
  368. package/dist/lib/components/InputPhone/utils/flags/kw.svg +13 -0
  369. package/dist/lib/components/InputPhone/utils/flags/ky.svg +109 -0
  370. package/dist/lib/components/InputPhone/utils/flags/kz.svg +23 -0
  371. package/dist/lib/components/InputPhone/utils/flags/la.svg +12 -0
  372. package/dist/lib/components/InputPhone/utils/flags/lb.svg +15 -0
  373. package/dist/lib/components/InputPhone/utils/flags/lc.svg +8 -0
  374. package/dist/lib/components/InputPhone/utils/flags/li.svg +43 -0
  375. package/dist/lib/components/InputPhone/utils/flags/lk.svg +22 -0
  376. package/dist/lib/components/InputPhone/utils/flags/lr.svg +14 -0
  377. package/dist/lib/components/InputPhone/utils/flags/ls.svg +8 -0
  378. package/dist/lib/components/InputPhone/utils/flags/lt.svg +7 -0
  379. package/dist/lib/components/InputPhone/utils/flags/lu.svg +5 -0
  380. package/dist/lib/components/InputPhone/utils/flags/lv.svg +6 -0
  381. package/dist/lib/components/InputPhone/utils/flags/ly.svg +13 -0
  382. package/dist/lib/components/InputPhone/utils/flags/ma.svg +4 -0
  383. package/dist/lib/components/InputPhone/utils/flags/mc.svg +6 -0
  384. package/dist/lib/components/InputPhone/utils/flags/md.svg +70 -0
  385. package/dist/lib/components/InputPhone/utils/flags/me.svg +116 -0
  386. package/dist/lib/components/InputPhone/utils/flags/mf.svg +7 -0
  387. package/dist/lib/components/InputPhone/utils/flags/mg.svg +7 -0
  388. package/dist/lib/components/InputPhone/utils/flags/mh.svg +7 -0
  389. package/dist/lib/components/InputPhone/utils/flags/mk.svg +5 -0
  390. package/dist/lib/components/InputPhone/utils/flags/ml.svg +7 -0
  391. package/dist/lib/components/InputPhone/utils/flags/mm.svg +12 -0
  392. package/dist/lib/components/InputPhone/utils/flags/mn.svg +14 -0
  393. package/dist/lib/components/InputPhone/utils/flags/mo.svg +9 -0
  394. package/dist/lib/components/InputPhone/utils/flags/mp.svg +86 -0
  395. package/dist/lib/components/InputPhone/utils/flags/mq.svg +7 -0
  396. package/dist/lib/components/InputPhone/utils/flags/mr.svg +6 -0
  397. package/dist/lib/components/InputPhone/utils/flags/ms.svg +33 -0
  398. package/dist/lib/components/InputPhone/utils/flags/mt.svg +49 -0
  399. package/dist/lib/components/InputPhone/utils/flags/mu.svg +8 -0
  400. package/dist/lib/components/InputPhone/utils/flags/mv.svg +6 -0
  401. package/dist/lib/components/InputPhone/utils/flags/mw.svg +10 -0
  402. package/dist/lib/components/InputPhone/utils/flags/mx.svg +382 -0
  403. package/dist/lib/components/InputPhone/utils/flags/my.svg +7 -0
  404. package/dist/lib/components/InputPhone/utils/flags/mz.svg +21 -0
  405. package/dist/lib/components/InputPhone/utils/flags/na.svg +16 -0
  406. package/dist/lib/components/InputPhone/utils/flags/nc.svg +13 -0
  407. package/dist/lib/components/InputPhone/utils/flags/ne.svg +6 -0
  408. package/dist/lib/components/InputPhone/utils/flags/nf.svg +9 -0
  409. package/dist/lib/components/InputPhone/utils/flags/ng.svg +6 -0
  410. package/dist/lib/components/InputPhone/utils/flags/ni.svg +129 -0
  411. package/dist/lib/components/InputPhone/utils/flags/nl.svg +5 -0
  412. package/dist/lib/components/InputPhone/utils/flags/no.svg +7 -0
  413. package/dist/lib/components/InputPhone/utils/flags/np.svg +14 -0
  414. package/dist/lib/components/InputPhone/utils/flags/nr.svg +12 -0
  415. package/dist/lib/components/InputPhone/utils/flags/nu.svg +10 -0
  416. package/dist/lib/components/InputPhone/utils/flags/nz.svg +36 -0
  417. package/dist/lib/components/InputPhone/utils/flags/om.svg +115 -0
  418. package/dist/lib/components/InputPhone/utils/flags/pa.svg +14 -0
  419. package/dist/lib/components/InputPhone/utils/flags/pe.svg +244 -0
  420. package/dist/lib/components/InputPhone/utils/flags/pf.svg +19 -0
  421. package/dist/lib/components/InputPhone/utils/flags/pg.svg +9 -0
  422. package/dist/lib/components/InputPhone/utils/flags/ph.svg +6 -0
  423. package/dist/lib/components/InputPhone/utils/flags/pk.svg +15 -0
  424. package/dist/lib/components/InputPhone/utils/flags/pl.svg +6 -0
  425. package/dist/lib/components/InputPhone/utils/flags/pm.svg +7 -0
  426. package/dist/lib/components/InputPhone/utils/flags/pn.svg +53 -0
  427. package/dist/lib/components/InputPhone/utils/flags/pr.svg +13 -0
  428. package/dist/lib/components/InputPhone/utils/flags/ps.svg +15 -0
  429. package/dist/lib/components/InputPhone/utils/flags/pt.svg +57 -0
  430. package/dist/lib/components/InputPhone/utils/flags/pw.svg +11 -0
  431. package/dist/lib/components/InputPhone/utils/flags/py.svg +157 -0
  432. package/dist/lib/components/InputPhone/utils/flags/qa.svg +4 -0
  433. package/dist/lib/components/InputPhone/utils/flags/re.svg +7 -0
  434. package/dist/lib/components/InputPhone/utils/flags/ro.svg +7 -0
  435. package/dist/lib/components/InputPhone/utils/flags/rs.svg +292 -0
  436. package/dist/lib/components/InputPhone/utils/flags/ru.svg +7 -0
  437. package/dist/lib/components/InputPhone/utils/flags/rw.svg +13 -0
  438. package/dist/lib/components/InputPhone/utils/flags/sa.svg +26 -0
  439. package/dist/lib/components/InputPhone/utils/flags/sb.svg +13 -0
  440. package/dist/lib/components/InputPhone/utils/flags/sc.svg +7 -0
  441. package/dist/lib/components/InputPhone/utils/flags/sd.svg +13 -0
  442. package/dist/lib/components/InputPhone/utils/flags/se.svg +4 -0
  443. package/dist/lib/components/InputPhone/utils/flags/sg.svg +13 -0
  444. package/dist/lib/components/InputPhone/utils/flags/sh.svg +76 -0
  445. package/dist/lib/components/InputPhone/utils/flags/si.svg +18 -0
  446. package/dist/lib/components/InputPhone/utils/flags/sj.svg +7 -0
  447. package/dist/lib/components/InputPhone/utils/flags/sk.svg +9 -0
  448. package/dist/lib/components/InputPhone/utils/flags/sl.svg +7 -0
  449. package/dist/lib/components/InputPhone/utils/flags/sm.svg +75 -0
  450. package/dist/lib/components/InputPhone/utils/flags/sn.svg +8 -0
  451. package/dist/lib/components/InputPhone/utils/flags/so.svg +11 -0
  452. package/dist/lib/components/InputPhone/utils/flags/sr.svg +6 -0
  453. package/dist/lib/components/InputPhone/utils/flags/ss.svg +8 -0
  454. package/dist/lib/components/InputPhone/utils/flags/st.svg +16 -0
  455. package/dist/lib/components/InputPhone/utils/flags/sv.svg +594 -0
  456. package/dist/lib/components/InputPhone/utils/flags/sx.svg +56 -0
  457. package/dist/lib/components/InputPhone/utils/flags/sy.svg +6 -0
  458. package/dist/lib/components/InputPhone/utils/flags/sz.svg +34 -0
  459. package/dist/lib/components/InputPhone/utils/flags/ta.svg +76 -0
  460. package/dist/lib/components/InputPhone/utils/flags/tc.svg +50 -0
  461. package/dist/lib/components/InputPhone/utils/flags/td.svg +7 -0
  462. package/dist/lib/components/InputPhone/utils/flags/tf.svg +15 -0
  463. package/dist/lib/components/InputPhone/utils/flags/tg.svg +14 -0
  464. package/dist/lib/components/InputPhone/utils/flags/th.svg +7 -0
  465. package/dist/lib/components/InputPhone/utils/flags/tj.svg +22 -0
  466. package/dist/lib/components/InputPhone/utils/flags/tk.svg +5 -0
  467. package/dist/lib/components/InputPhone/utils/flags/tl.svg +13 -0
  468. package/dist/lib/components/InputPhone/utils/flags/tm.svg +205 -0
  469. package/dist/lib/components/InputPhone/utils/flags/tn.svg +13 -0
  470. package/dist/lib/components/InputPhone/utils/flags/to.svg +10 -0
  471. package/dist/lib/components/InputPhone/utils/flags/tr.svg +8 -0
  472. package/dist/lib/components/InputPhone/utils/flags/tt.svg +5 -0
  473. package/dist/lib/components/InputPhone/utils/flags/tv.svg +9 -0
  474. package/dist/lib/components/InputPhone/utils/flags/tw.svg +34 -0
  475. package/dist/lib/components/InputPhone/utils/flags/tz.svg +13 -0
  476. package/dist/lib/components/InputPhone/utils/flags/ua.svg +6 -0
  477. package/dist/lib/components/InputPhone/utils/flags/ug.svg +30 -0
  478. package/dist/lib/components/InputPhone/utils/flags/um.svg +15 -0
  479. package/dist/lib/components/InputPhone/utils/flags/un.svg +16 -0
  480. package/dist/lib/components/InputPhone/utils/flags/us.svg +10 -0
  481. package/dist/lib/components/InputPhone/utils/flags/uy.svg +28 -0
  482. package/dist/lib/components/InputPhone/utils/flags/uz.svg +30 -0
  483. package/dist/lib/components/InputPhone/utils/flags/va.svg +479 -0
  484. package/dist/lib/components/InputPhone/utils/flags/vc.svg +8 -0
  485. package/dist/lib/components/InputPhone/utils/flags/ve.svg +26 -0
  486. package/dist/lib/components/InputPhone/utils/flags/vg.svg +63 -0
  487. package/dist/lib/components/InputPhone/utils/flags/vi.svg +28 -0
  488. package/dist/lib/components/InputPhone/utils/flags/vn.svg +11 -0
  489. package/dist/lib/components/InputPhone/utils/flags/vu.svg +21 -0
  490. package/dist/lib/components/InputPhone/utils/flags/wf.svg +7 -0
  491. package/dist/lib/components/InputPhone/utils/flags/ws.svg +7 -0
  492. package/dist/lib/components/InputPhone/utils/flags/xk.svg +8 -0
  493. package/dist/lib/components/InputPhone/utils/flags/xx.svg +4 -0
  494. package/dist/lib/components/InputPhone/utils/flags/ye.svg +7 -0
  495. package/dist/lib/components/InputPhone/utils/flags/yt.svg +7 -0
  496. package/dist/lib/components/InputPhone/utils/flags/za.svg +17 -0
  497. package/dist/lib/components/InputPhone/utils/flags/zm.svg +27 -0
  498. package/dist/lib/components/InputPhone/utils/flags/zw.svg +21 -0
  499. package/dist/lib/components/InputPin/InputPin.tsx +138 -0
  500. package/dist/lib/components/InputPin/index.ts +3 -0
  501. package/dist/lib/components/InputPin/styles.tsx +70 -0
  502. package/dist/lib/components/InputPin/subtypes.ts +11 -0
  503. package/dist/lib/components/InputPin/types.ts +31 -0
  504. package/dist/lib/components/InputSlider/InputSlider.tsx +184 -0
  505. package/dist/lib/components/InputSlider/Slider.tsx +52 -0
  506. package/dist/lib/components/InputSlider/index.ts +3 -0
  507. package/dist/lib/components/InputSlider/styles.tsx +292 -0
  508. package/dist/lib/components/InputSlider/types.ts +14 -0
  509. package/dist/lib/components/Key/Key.tsx +45 -0
  510. package/dist/lib/components/Key/index.ts +3 -0
  511. package/dist/lib/components/Key/styles.tsx +29 -0
  512. package/dist/lib/components/Key/types.ts +11 -0
  513. package/dist/lib/components/LibIcon/LibIcon.tsx +35 -0
  514. package/dist/lib/components/LibIcon/index.ts +3 -0
  515. package/dist/lib/components/LibIcon/types.ts +9 -0
  516. package/dist/lib/components/Link/Link.tsx +68 -0
  517. package/dist/lib/components/Link/index.ts +3 -0
  518. package/dist/lib/components/Link/types.ts +9 -0
  519. package/dist/lib/components/Linkify/Linkify.tsx +51 -0
  520. package/dist/lib/components/Linkify/index.ts +3 -0
  521. package/dist/lib/components/Linkify/types.ts +8 -0
  522. package/dist/lib/components/ListGroup/ListGroup.tsx +113 -0
  523. package/dist/lib/components/ListGroup/ListGroupItem.tsx +164 -0
  524. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +56 -0
  525. package/dist/lib/components/ListGroup/index.ts +5 -0
  526. package/dist/lib/components/ListGroup/styles.tsx +179 -0
  527. package/dist/lib/components/ListGroup/types.ts +114 -0
  528. package/dist/lib/components/Loader/Loader.tsx +35 -0
  529. package/dist/lib/components/Loader/index.ts +3 -0
  530. package/dist/lib/components/Loader/styles.tsx +140 -0
  531. package/dist/lib/components/Loader/templates/LoaderFour.tsx +24 -0
  532. package/dist/lib/components/Loader/templates/LoaderOne.tsx +24 -0
  533. package/dist/lib/components/Loader/templates/LoaderThree.tsx +29 -0
  534. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +24 -0
  535. package/dist/lib/components/Loader/types.ts +25 -0
  536. package/dist/lib/components/Main/Main.tsx +45 -0
  537. package/dist/lib/components/Main/index.ts +3 -0
  538. package/dist/lib/components/Main/styles.tsx +61 -0
  539. package/dist/lib/components/Main/types.ts +19 -0
  540. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +35 -0
  541. package/dist/lib/components/MarkdownContainer/index.ts +3 -0
  542. package/dist/lib/components/MarkdownContainer/styles.tsx +17 -0
  543. package/dist/lib/components/MarkdownContainer/types.ts +9 -0
  544. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +196 -0
  545. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +77 -0
  546. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +75 -0
  547. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +54 -0
  548. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +98 -0
  549. package/dist/lib/components/MarkdownEditor/index.ts +3 -0
  550. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +182 -0
  551. package/dist/lib/components/MarkdownEditor/styles.tsx +187 -0
  552. package/dist/lib/components/MarkdownEditor/subtypes.ts +55 -0
  553. package/dist/lib/components/MarkdownEditor/types.ts +59 -0
  554. package/dist/lib/components/Masonry/Masonry.tsx +67 -0
  555. package/dist/lib/components/Masonry/index.ts +3 -0
  556. package/dist/lib/components/Masonry/styles.tsx +24 -0
  557. package/dist/lib/components/Masonry/types.ts +10 -0
  558. package/dist/lib/components/Masonry/utils.ts +30 -0
  559. package/dist/lib/components/Messaging/Message.tsx +106 -0
  560. package/dist/lib/components/Messaging/MessageForm.tsx +144 -0
  561. package/dist/lib/components/Messaging/MessagesContainer.tsx +29 -0
  562. package/dist/lib/components/Messaging/MessagesList.tsx +136 -0
  563. package/dist/lib/components/Messaging/Messaging.tsx +123 -0
  564. package/dist/lib/components/Messaging/index.ts +7 -0
  565. package/dist/lib/components/Messaging/styles.tsx +177 -0
  566. package/dist/lib/components/Messaging/types.ts +131 -0
  567. package/dist/lib/components/Modal/Modal.tsx +127 -0
  568. package/dist/lib/components/Modal/index.ts +3 -0
  569. package/dist/lib/components/Modal/styles.tsx +62 -0
  570. package/dist/lib/components/Modal/types.ts +38 -0
  571. package/dist/lib/components/PageLayout/PageLayout.tsx +80 -0
  572. package/dist/lib/components/PageLayout/index.ts +3 -0
  573. package/dist/lib/components/PageLayout/types.ts +47 -0
  574. package/dist/lib/components/PageLoading/PageLoading.tsx +64 -0
  575. package/dist/lib/components/PageLoading/index.ts +3 -0
  576. package/dist/lib/components/PageLoading/styles.tsx +24 -0
  577. package/dist/lib/components/PageLoading/types.ts +15 -0
  578. package/dist/lib/components/Pagination/Pagination.tsx +265 -0
  579. package/dist/lib/components/Pagination/PaginationButton.tsx +51 -0
  580. package/dist/lib/components/Pagination/index.ts +4 -0
  581. package/dist/lib/components/Pagination/styles.tsx +72 -0
  582. package/dist/lib/components/Pagination/types.ts +61 -0
  583. package/dist/lib/components/Paginator/Paginator.tsx +162 -0
  584. package/dist/lib/components/Paginator/index.ts +3 -0
  585. package/dist/lib/components/Paginator/styles.tsx +36 -0
  586. package/dist/lib/components/Paginator/types.ts +16 -0
  587. package/dist/lib/components/ProgressBar/ProgressBar.tsx +68 -0
  588. package/dist/lib/components/ProgressBar/index.ts +3 -0
  589. package/dist/lib/components/ProgressBar/styles.tsx +55 -0
  590. package/dist/lib/components/ProgressBar/types.ts +13 -0
  591. package/dist/lib/components/ProgressCircle/Circle.tsx +30 -0
  592. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +93 -0
  593. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +48 -0
  594. package/dist/lib/components/ProgressCircle/Value.tsx +31 -0
  595. package/dist/lib/components/ProgressCircle/clean-percentage.ts +7 -0
  596. package/dist/lib/components/ProgressCircle/index.ts +3 -0
  597. package/dist/lib/components/ProgressCircle/styles.tsx +55 -0
  598. package/dist/lib/components/ProgressCircle/subtypes.ts +11 -0
  599. package/dist/lib/components/ProgressCircle/types.ts +31 -0
  600. package/dist/lib/components/Rating/Rating.tsx +177 -0
  601. package/dist/lib/components/Rating/index.ts +3 -0
  602. package/dist/lib/components/Rating/styles.tsx +52 -0
  603. package/dist/lib/components/Rating/types.ts +24 -0
  604. package/dist/lib/components/ResetScroll/ResetScroll.tsx +22 -0
  605. package/dist/lib/components/ResetScroll/index.ts +3 -0
  606. package/dist/lib/components/Section/Section.tsx +30 -0
  607. package/dist/lib/components/Section/index.ts +3 -0
  608. package/dist/lib/components/Section/styles.tsx +24 -0
  609. package/dist/lib/components/Section/types.ts +7 -0
  610. package/dist/lib/components/Select/Select.tsx +284 -0
  611. package/dist/lib/components/Select/SelectButton.tsx +58 -0
  612. package/dist/lib/components/Select/index.ts +3 -0
  613. package/dist/lib/components/Select/styles.tsx +22 -0
  614. package/dist/lib/components/Select/subtypes.ts +32 -0
  615. package/dist/lib/components/Select/types.ts +33 -0
  616. package/dist/lib/components/Skeleton/Skeleton.tsx +60 -0
  617. package/dist/lib/components/Skeleton/SkeletonCard.tsx +78 -0
  618. package/dist/lib/components/Skeleton/SkeletonShine.tsx +26 -0
  619. package/dist/lib/components/Skeleton/index.ts +5 -0
  620. package/dist/lib/components/Skeleton/styles.tsx +102 -0
  621. package/dist/lib/components/Skeleton/subtypes.ts +16 -0
  622. package/dist/lib/components/Skeleton/types.ts +39 -0
  623. package/dist/lib/components/Slideshow/Slideshow.tsx +218 -0
  624. package/dist/lib/components/Slideshow/SlideshowButton.tsx +99 -0
  625. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +84 -0
  626. package/dist/lib/components/Slideshow/index.ts +3 -0
  627. package/dist/lib/components/Slideshow/styles.tsx +361 -0
  628. package/dist/lib/components/Slideshow/subtypes.ts +22 -0
  629. package/dist/lib/components/Slideshow/types.ts +99 -0
  630. package/dist/lib/components/SrOnly/SrOnly.tsx +23 -0
  631. package/dist/lib/components/SrOnly/index.ts +3 -0
  632. package/dist/lib/components/SrOnly/styles.tsx +21 -0
  633. package/dist/lib/components/SrOnly/types.ts +5 -0
  634. package/dist/lib/components/Stepper/Step.tsx +118 -0
  635. package/dist/lib/components/Stepper/Stepper.tsx +96 -0
  636. package/dist/lib/components/Stepper/index.ts +4 -0
  637. package/dist/lib/components/Stepper/styles.tsx +115 -0
  638. package/dist/lib/components/Stepper/types.ts +48 -0
  639. package/dist/lib/components/Sticky/Sticky.tsx +30 -0
  640. package/dist/lib/components/Sticky/index.ts +3 -0
  641. package/dist/lib/components/Sticky/styles.tsx +15 -0
  642. package/dist/lib/components/Sticky/types.ts +7 -0
  643. package/dist/lib/components/Table/TBody.tsx +17 -0
  644. package/dist/lib/components/Table/THead.tsx +17 -0
  645. package/dist/lib/components/Table/Table.tsx +124 -0
  646. package/dist/lib/components/Table/Td.tsx +26 -0
  647. package/dist/lib/components/Table/Tr.tsx +17 -0
  648. package/dist/lib/components/Table/index.ts +7 -0
  649. package/dist/lib/components/Table/styles.tsx +114 -0
  650. package/dist/lib/components/Table/types.ts +52 -0
  651. package/dist/lib/components/Tabs/TabButton.tsx +50 -0
  652. package/dist/lib/components/Tabs/TabItem.tsx +34 -0
  653. package/dist/lib/components/Tabs/Tabs.tsx +137 -0
  654. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +46 -0
  655. package/dist/lib/components/Tabs/TabsContainer.tsx +23 -0
  656. package/dist/lib/components/Tabs/index.ts +7 -0
  657. package/dist/lib/components/Tabs/styles.tsx +178 -0
  658. package/dist/lib/components/Tabs/types.ts +60 -0
  659. package/dist/lib/components/Tag/Tag.tsx +97 -0
  660. package/dist/lib/components/Tag/index.ts +3 -0
  661. package/dist/lib/components/Tag/styles.tsx +41 -0
  662. package/dist/lib/components/Tag/types.ts +43 -0
  663. package/dist/lib/components/Text/Text.tsx +69 -0
  664. package/dist/lib/components/Text/index.ts +3 -0
  665. package/dist/lib/components/Text/styles.tsx +230 -0
  666. package/dist/lib/components/Text/subtypes.ts +15 -0
  667. package/dist/lib/components/Text/templates/Blockquote.tsx +34 -0
  668. package/dist/lib/components/Text/templates/Dl.tsx +34 -0
  669. package/dist/lib/components/Text/templates/Em.tsx +34 -0
  670. package/dist/lib/components/Text/templates/H1.tsx +36 -0
  671. package/dist/lib/components/Text/templates/H2.tsx +36 -0
  672. package/dist/lib/components/Text/templates/H3.tsx +36 -0
  673. package/dist/lib/components/Text/templates/H4.tsx +36 -0
  674. package/dist/lib/components/Text/templates/H5.tsx +36 -0
  675. package/dist/lib/components/Text/templates/H6.tsx +34 -0
  676. package/dist/lib/components/Text/templates/Ol.tsx +34 -0
  677. package/dist/lib/components/Text/templates/P.tsx +34 -0
  678. package/dist/lib/components/Text/templates/Small.tsx +34 -0
  679. package/dist/lib/components/Text/templates/Strong.tsx +34 -0
  680. package/dist/lib/components/Text/templates/Ul.tsx +34 -0
  681. package/dist/lib/components/Text/types.ts +28 -0
  682. package/dist/lib/components/TextIcon/TextIcon.tsx +104 -0
  683. package/dist/lib/components/TextIcon/index.ts +3 -0
  684. package/dist/lib/components/TextIcon/styles.tsx +38 -0
  685. package/dist/lib/components/TextIcon/types.ts +21 -0
  686. package/dist/lib/components/TextIcon/utils.ts +57 -0
  687. package/dist/lib/components/Timepicker/Timepicker.tsx +295 -0
  688. package/dist/lib/components/Timepicker/index.ts +3 -0
  689. package/dist/lib/components/Timepicker/styles.tsx +34 -0
  690. package/dist/lib/components/Timepicker/types.ts +69 -0
  691. package/dist/lib/components/Toast/Toast.tsx +210 -0
  692. package/dist/lib/components/Toast/Toaster.tsx +168 -0
  693. package/dist/lib/components/Toast/index.ts +3 -0
  694. package/dist/lib/components/Toast/styles.tsx +249 -0
  695. package/dist/lib/components/Toast/types.ts +32 -0
  696. package/dist/lib/components/Tooltip/Tooltip.tsx +120 -0
  697. package/dist/lib/components/Tooltip/index.ts +3 -0
  698. package/dist/lib/components/Tooltip/styles.tsx +151 -0
  699. package/dist/lib/components/Tooltip/types.ts +22 -0
  700. package/dist/lib/components/Truncate/Truncate.tsx +113 -0
  701. package/dist/lib/components/Truncate/index.ts +3 -0
  702. package/dist/lib/components/Truncate/styles.tsx +37 -0
  703. package/dist/lib/components/Truncate/types.ts +7 -0
  704. package/dist/lib/components/Video/Video.tsx +66 -0
  705. package/dist/lib/components/Video/index.ts +3 -0
  706. package/dist/lib/components/Video/styles.tsx +24 -0
  707. package/dist/lib/components/Video/types.ts +22 -0
  708. package/dist/lib/components/Wrapper/Wrapper.tsx +43 -0
  709. package/dist/lib/components/Wrapper/index.ts +3 -0
  710. package/dist/lib/components/Wrapper/styles.tsx +29 -0
  711. package/dist/lib/components/Wrapper/types.ts +9 -0
  712. package/dist/lib/components/Youtube/Youtube.tsx +44 -0
  713. package/dist/lib/components/Youtube/index.ts +3 -0
  714. package/dist/lib/components/Youtube/styles.tsx +20 -0
  715. package/dist/lib/components/Youtube/types.ts +11 -0
  716. package/dist/lib/context/Theme.context.tsx +106 -0
  717. package/dist/lib/context/Toaster/Toaster.context.tsx +131 -0
  718. package/dist/lib/context/Toaster/index.ts +5 -0
  719. package/dist/lib/context/Toaster/toast.reducer.ts +36 -0
  720. package/dist/lib/hooks/index.ts +17 -0
  721. package/dist/lib/hooks/useClickOutside.tsx +37 -0
  722. package/dist/lib/hooks/useCopyToClipboard.tsx +33 -0
  723. package/dist/lib/hooks/useDebounce.tsx +21 -0
  724. package/dist/lib/hooks/useExportData.tsx +55 -0
  725. package/dist/lib/hooks/useFetch.tsx +25 -0
  726. package/dist/lib/hooks/useForm.tsx +28 -0
  727. package/dist/lib/hooks/useIsOverflow.ts +44 -0
  728. package/dist/lib/hooks/useKeyPress.tsx +95 -0
  729. package/dist/lib/hooks/useMaxWidth.tsx +28 -0
  730. package/dist/lib/hooks/useMergeRefs.ts +33 -0
  731. package/dist/lib/hooks/useMinWidth.tsx +28 -0
  732. package/dist/lib/hooks/usePaginatedData.tsx +37 -0
  733. package/dist/lib/hooks/usePagination.tsx +112 -0
  734. package/dist/lib/hooks/useTouchScreen.tsx +21 -0
  735. package/dist/lib/hooks/useTranslation.tsx +30 -0
  736. package/dist/lib/icons/ArrowUp.tsx +32 -0
  737. package/dist/lib/icons/Bold.tsx +32 -0
  738. package/dist/lib/icons/Calendar.tsx +40 -0
  739. package/dist/lib/icons/CaretDown.tsx +32 -0
  740. package/dist/lib/icons/Check.tsx +32 -0
  741. package/dist/lib/icons/CheckCircle.tsx +38 -0
  742. package/dist/lib/icons/ChevronDown.tsx +32 -0
  743. package/dist/lib/icons/ChevronLeft.tsx +32 -0
  744. package/dist/lib/icons/ChevronRight.tsx +32 -0
  745. package/dist/lib/icons/ChevronUp.tsx +32 -0
  746. package/dist/lib/icons/Clipboard.tsx +32 -0
  747. package/dist/lib/icons/Clock.tsx +35 -0
  748. package/dist/lib/icons/Close.tsx +32 -0
  749. package/dist/lib/icons/CloseCircle.tsx +38 -0
  750. package/dist/lib/icons/Code.tsx +32 -0
  751. package/dist/lib/icons/CodeBlock.tsx +42 -0
  752. package/dist/lib/icons/Comment.tsx +42 -0
  753. package/dist/lib/icons/Drag.tsx +32 -0
  754. package/dist/lib/icons/Edit.tsx +38 -0
  755. package/dist/lib/icons/EditorCode.tsx +36 -0
  756. package/dist/lib/icons/EditorLive.tsx +36 -0
  757. package/dist/lib/icons/EditorPreview.tsx +36 -0
  758. package/dist/lib/icons/Hide.tsx +32 -0
  759. package/dist/lib/icons/Image.tsx +42 -0
  760. package/dist/lib/icons/Italic.tsx +32 -0
  761. package/dist/lib/icons/Link.tsx +36 -0
  762. package/dist/lib/icons/Minus.tsx +29 -0
  763. package/dist/lib/icons/OrderedList.tsx +32 -0
  764. package/dist/lib/icons/Plus.tsx +32 -0
  765. package/dist/lib/icons/Quote.tsx +32 -0
  766. package/dist/lib/icons/Search.tsx +38 -0
  767. package/dist/lib/icons/Send.tsx +32 -0
  768. package/dist/lib/icons/Separator.tsx +32 -0
  769. package/dist/lib/icons/Show.tsx +38 -0
  770. package/dist/lib/icons/Star.tsx +32 -0
  771. package/dist/lib/icons/StarFull.tsx +32 -0
  772. package/dist/lib/icons/Strikethrough.tsx +32 -0
  773. package/dist/lib/icons/Underline.tsx +36 -0
  774. package/dist/lib/icons/UnorderedList.tsx +32 -0
  775. package/dist/lib/icons/index.ts +41 -0
  776. package/dist/lib/icons/styles.tsx +19 -0
  777. package/dist/lib/icons/types.ts +11 -0
  778. package/dist/lib/index.css +1422 -0
  779. package/dist/lib/index.ts +159 -0
  780. package/dist/lib/lib-utils/append-styles.ts +9 -0
  781. package/dist/lib/lib-utils/colors-maps.ts +176 -0
  782. package/dist/lib/lib-utils/get-highlighted-text.tsx +31 -0
  783. package/dist/lib/lib-utils/get-icon-size-from-font.ts +27 -0
  784. package/dist/lib/lib-utils/index.ts +11 -0
  785. package/dist/lib/lib-utils/round-icon-size.ts +7 -0
  786. package/dist/lib/lib-utils/transfom-search-keys.ts +15 -0
  787. package/dist/lib/modules-declare.d.ts +18 -0
  788. package/dist/lib/utils/StyleSheetManager.tsx +32 -0
  789. package/dist/lib/utils/index.ts +6 -0
  790. package/dist/lib/utils/lib-tokens.json +860 -0
  791. package/dist/lib/utils/linkify-text.tsx +28 -0
  792. package/dist/lib/utils/options-markdown.ts +133 -0
  793. package/dist/lib/utils/set-default-theme.ts +14 -0
  794. package/dist/styles-BzlWff0X.cjs +7 -0
  795. package/dist/styles-D2xrGFT_.js +15 -0
  796. package/package.json +68 -57
  797. package/dist/index-6bd365ef.js +0 -23566
  798. package/dist/index-bf31844d.cjs +0 -4144
  799. package/dist/lib/Mixins.d.ts +0 -256
  800. package/dist/lib/Variables.d.ts +0 -248
  801. package/dist/lib/components/Accordion/Accordion.d.ts +0 -23
  802. package/dist/lib/components/Accordion/AccordionButton.d.ts +0 -2
  803. package/dist/lib/components/Accordion/AccordionContent.d.ts +0 -2
  804. package/dist/lib/components/Accordion/AccordionItem.d.ts +0 -14
  805. package/dist/lib/components/Accordion/index.d.ts +0 -2
  806. package/dist/lib/components/Accordion/styles.d.ts +0 -6
  807. package/dist/lib/components/Accordion/subtypes.d.ts +0 -11
  808. package/dist/lib/components/Accordion/types.d.ts +0 -21
  809. package/dist/lib/components/Alert/Alert.d.ts +0 -18
  810. package/dist/lib/components/Alert/index.d.ts +0 -1
  811. package/dist/lib/components/Alert/styles.d.ts +0 -10
  812. package/dist/lib/components/Alert/types.d.ts +0 -20
  813. package/dist/lib/components/Aside/Aside.d.ts +0 -12
  814. package/dist/lib/components/Aside/index.d.ts +0 -1
  815. package/dist/lib/components/Aside/styles.d.ts +0 -6
  816. package/dist/lib/components/Aside/types.d.ts +0 -5
  817. package/dist/lib/components/Autocomplete/Autocomplete.d.ts +0 -2
  818. package/dist/lib/components/Autocomplete/index.d.ts +0 -1
  819. package/dist/lib/components/Autocomplete/styles.d.ts +0 -3
  820. package/dist/lib/components/Autocomplete/types.d.ts +0 -32
  821. package/dist/lib/components/Avatar/Avatar.d.ts +0 -22
  822. package/dist/lib/components/Avatar/AvatarFunction.d.ts +0 -5
  823. package/dist/lib/components/Avatar/index.d.ts +0 -1
  824. package/dist/lib/components/Avatar/styles.d.ts +0 -22
  825. package/dist/lib/components/Avatar/types.d.ts +0 -63
  826. package/dist/lib/components/BackToTop/BackToTop.d.ts +0 -11
  827. package/dist/lib/components/BackToTop/index.d.ts +0 -1
  828. package/dist/lib/components/BackToTop/styles.d.ts +0 -9
  829. package/dist/lib/components/BackToTop/types.d.ts +0 -5
  830. package/dist/lib/components/Badge/Badge.d.ts +0 -19
  831. package/dist/lib/components/Badge/index.d.ts +0 -1
  832. package/dist/lib/components/Badge/styles.d.ts +0 -10
  833. package/dist/lib/components/Badge/types.d.ts +0 -23
  834. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.d.ts +0 -2
  835. package/dist/lib/components/Breadcrumbs/Breadcrumbs.d.ts +0 -24
  836. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.d.ts +0 -2
  837. package/dist/lib/components/Breadcrumbs/index.d.ts +0 -1
  838. package/dist/lib/components/Breadcrumbs/styles.d.ts +0 -10
  839. package/dist/lib/components/Breadcrumbs/subtypes.d.ts +0 -6
  840. package/dist/lib/components/Breadcrumbs/types.d.ts +0 -19
  841. package/dist/lib/components/Burger/Burger.d.ts +0 -16
  842. package/dist/lib/components/Burger/index.d.ts +0 -1
  843. package/dist/lib/components/Burger/styles.d.ts +0 -9
  844. package/dist/lib/components/Burger/types.d.ts +0 -10
  845. package/dist/lib/components/Button/Button.d.ts +0 -27
  846. package/dist/lib/components/Button/index.d.ts +0 -1
  847. package/dist/lib/components/Button/styles.d.ts +0 -3
  848. package/dist/lib/components/Button/subtypes.d.ts +0 -7
  849. package/dist/lib/components/Button/types.d.ts +0 -48
  850. package/dist/lib/components/ButtonGroup/ButtonGroup.d.ts +0 -48
  851. package/dist/lib/components/ButtonGroup/ButtonGroupButton.d.ts +0 -2
  852. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.d.ts +0 -2
  853. package/dist/lib/components/ButtonGroup/index.d.ts +0 -1
  854. package/dist/lib/components/ButtonGroup/styles.d.ts +0 -19
  855. package/dist/lib/components/ButtonGroup/subtypes.d.ts +0 -16
  856. package/dist/lib/components/ButtonGroup/types.d.ts +0 -22
  857. package/dist/lib/components/ButtonIcon/ButtonFunction.d.ts +0 -2
  858. package/dist/lib/components/ButtonIcon/ButtonIcon.d.ts +0 -30
  859. package/dist/lib/components/ButtonIcon/index.d.ts +0 -1
  860. package/dist/lib/components/ButtonIcon/styles.d.ts +0 -3
  861. package/dist/lib/components/ButtonIcon/subtypes.d.ts +0 -7
  862. package/dist/lib/components/ButtonIcon/types.d.ts +0 -55
  863. package/dist/lib/components/Card/Card.d.ts +0 -36
  864. package/dist/lib/components/Card/index.d.ts +0 -1
  865. package/dist/lib/components/Card/styles.d.ts +0 -33
  866. package/dist/lib/components/Card/types.d.ts +0 -14
  867. package/dist/lib/components/CodeContainer/CodeContainer.d.ts +0 -19
  868. package/dist/lib/components/CodeContainer/index.d.ts +0 -1
  869. package/dist/lib/components/CodeContainer/styles.d.ts +0 -10
  870. package/dist/lib/components/CodeContainer/types.d.ts +0 -36
  871. package/dist/lib/components/ComponentsMixins/ComponentsMixins.d.ts +0 -4
  872. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.d.ts +0 -14
  873. package/dist/lib/components/ComponentsMixins/index.d.ts +0 -3
  874. package/dist/lib/components/ComponentsMixins/types.d.ts +0 -20
  875. package/dist/lib/components/Cover/Cover.d.ts +0 -15
  876. package/dist/lib/components/Cover/index.d.ts +0 -1
  877. package/dist/lib/components/Cover/styles.d.ts +0 -15
  878. package/dist/lib/components/Cover/types.d.ts +0 -9
  879. package/dist/lib/components/Datepicker/Calendar.d.ts +0 -6
  880. package/dist/lib/components/Datepicker/Datepicker.d.ts +0 -80
  881. package/dist/lib/components/Datepicker/data.d.ts +0 -25
  882. package/dist/lib/components/Datepicker/index.d.ts +0 -1
  883. package/dist/lib/components/Datepicker/styles.d.ts +0 -29
  884. package/dist/lib/components/Datepicker/types.d.ts +0 -52
  885. package/dist/lib/components/DragList/DragList.d.ts +0 -32
  886. package/dist/lib/components/DragList/DragListItem.d.ts +0 -29
  887. package/dist/lib/components/DragList/index.d.ts +0 -2
  888. package/dist/lib/components/DragList/styles.d.ts +0 -14
  889. package/dist/lib/components/DragList/types.d.ts +0 -42
  890. package/dist/lib/components/Drawer/Drawer.d.ts +0 -23
  891. package/dist/lib/components/Drawer/index.d.ts +0 -1
  892. package/dist/lib/components/Drawer/styles.d.ts +0 -17
  893. package/dist/lib/components/Drawer/types.d.ts +0 -16
  894. package/dist/lib/components/Dropdown/Dropdown.d.ts +0 -18
  895. package/dist/lib/components/Dropdown/DropdownContainer.d.ts +0 -22
  896. package/dist/lib/components/Dropdown/DropdownItem.d.ts +0 -20
  897. package/dist/lib/components/Dropdown/index.d.ts +0 -3
  898. package/dist/lib/components/Dropdown/styles.d.ts +0 -15
  899. package/dist/lib/components/Dropdown/types.d.ts +0 -40
  900. package/dist/lib/components/Fade/Fade.d.ts +0 -10
  901. package/dist/lib/components/Fade/index.d.ts +0 -1
  902. package/dist/lib/components/Fade/styles.d.ts +0 -2
  903. package/dist/lib/components/Fade/types.d.ts +0 -3
  904. package/dist/lib/components/Fallback/Fallback.d.ts +0 -18
  905. package/dist/lib/components/Fallback/index.d.ts +0 -1
  906. package/dist/lib/components/Fieldset/Fieldset.d.ts +0 -25
  907. package/dist/lib/components/Fieldset/index.d.ts +0 -1
  908. package/dist/lib/components/Fieldset/styles.d.ts +0 -18
  909. package/dist/lib/components/Fieldset/types.d.ts +0 -17
  910. package/dist/lib/components/Flexbox/Flexbox.d.ts +0 -21
  911. package/dist/lib/components/Flexbox/index.d.ts +0 -1
  912. package/dist/lib/components/Flexbox/styles.d.ts +0 -15
  913. package/dist/lib/components/Flexbox/types.d.ts +0 -14
  914. package/dist/lib/components/Footer/Footer.d.ts +0 -28
  915. package/dist/lib/components/Footer/FooterLink.d.ts +0 -2
  916. package/dist/lib/components/Footer/FooterLogo.d.ts +0 -2
  917. package/dist/lib/components/Footer/index.d.ts +0 -1
  918. package/dist/lib/components/Footer/styles.d.ts +0 -17
  919. package/dist/lib/components/Footer/subtypes.d.ts +0 -7
  920. package/dist/lib/components/Footer/types.d.ts +0 -48
  921. package/dist/lib/components/Form/Form.d.ts +0 -15
  922. package/dist/lib/components/Form/index.d.ts +0 -1
  923. package/dist/lib/components/Form/styles.d.ts +0 -6
  924. package/dist/lib/components/Form/types.d.ts +0 -21
  925. package/dist/lib/components/FullBleed/FullBleed.d.ts +0 -13
  926. package/dist/lib/components/FullBleed/index.d.ts +0 -1
  927. package/dist/lib/components/FullBleed/styles.d.ts +0 -7
  928. package/dist/lib/components/FullBleed/types.d.ts +0 -6
  929. package/dist/lib/components/Grid/Grid.d.ts +0 -20
  930. package/dist/lib/components/Grid/index.d.ts +0 -1
  931. package/dist/lib/components/Grid/styles.d.ts +0 -14
  932. package/dist/lib/components/Grid/types.d.ts +0 -13
  933. package/dist/lib/components/Header/Header.d.ts +0 -25
  934. package/dist/lib/components/Header/HeaderBurger.d.ts +0 -2
  935. package/dist/lib/components/Header/HeaderLogo.d.ts +0 -2
  936. package/dist/lib/components/Header/HeaderNav.d.ts +0 -2
  937. package/dist/lib/components/Header/HeaderNavLink.d.ts +0 -2
  938. package/dist/lib/components/Header/HeaderSearch.d.ts +0 -2
  939. package/dist/lib/components/Header/index.d.ts +0 -1
  940. package/dist/lib/components/Header/styles.d.ts +0 -25
  941. package/dist/lib/components/Header/subtypes.d.ts +0 -43
  942. package/dist/lib/components/Header/types.d.ts +0 -67
  943. package/dist/lib/components/Helmet/Helmet.d.ts +0 -17
  944. package/dist/lib/components/Helmet/index.d.ts +0 -1
  945. package/dist/lib/components/Helmet/types.d.ts +0 -14
  946. package/dist/lib/components/Highlight/Highlight.d.ts +0 -15
  947. package/dist/lib/components/Highlight/index.d.ts +0 -1
  948. package/dist/lib/components/Highlight/types.d.ts +0 -8
  949. package/dist/lib/components/Hr/Hr.d.ts +0 -15
  950. package/dist/lib/components/Hr/index.d.ts +0 -1
  951. package/dist/lib/components/Hr/styles.d.ts +0 -8
  952. package/dist/lib/components/Hr/types.d.ts +0 -9
  953. package/dist/lib/components/Icon/Icon.d.ts +0 -14
  954. package/dist/lib/components/Icon/index.d.ts +0 -1
  955. package/dist/lib/components/Icon/styles.d.ts +0 -7
  956. package/dist/lib/components/Icon/types.d.ts +0 -10
  957. package/dist/lib/components/IconMenu/IconMenu.d.ts +0 -33
  958. package/dist/lib/components/IconMenu/IconMenuItem.d.ts +0 -38
  959. package/dist/lib/components/IconMenu/index.d.ts +0 -2
  960. package/dist/lib/components/IconMenu/styles.d.ts +0 -18
  961. package/dist/lib/components/IconMenu/types.d.ts +0 -33
  962. package/dist/lib/components/Image/Image.d.ts +0 -17
  963. package/dist/lib/components/Image/ImageFunction.d.ts +0 -2
  964. package/dist/lib/components/Image/index.d.ts +0 -1
  965. package/dist/lib/components/Image/styles.d.ts +0 -20
  966. package/dist/lib/components/Image/types.d.ts +0 -32
  967. package/dist/lib/components/Input/Input.d.ts +0 -53
  968. package/dist/lib/components/Input/index.d.ts +0 -1
  969. package/dist/lib/components/Input/styles.d.ts +0 -3
  970. package/dist/lib/components/Input/subtypes.d.ts +0 -85
  971. package/dist/lib/components/Input/templates/ColorInput.d.ts +0 -3
  972. package/dist/lib/components/Input/templates/DateInput.d.ts +0 -5
  973. package/dist/lib/components/Input/templates/FileInput.d.ts +0 -3
  974. package/dist/lib/components/Input/templates/PasswordInput.d.ts +0 -2
  975. package/dist/lib/components/Input/templates/SearchInput.d.ts +0 -2
  976. package/dist/lib/components/Input/templates/SelectInput.d.ts +0 -6
  977. package/dist/lib/components/Input/templates/TextInput.d.ts +0 -3
  978. package/dist/lib/components/Input/templates/TextareaInput.d.ts +0 -4
  979. package/dist/lib/components/Input/templates/TimeInput.d.ts +0 -5
  980. package/dist/lib/components/Input/types.d.ts +0 -2
  981. package/dist/lib/components/InputCheck/InputCheck.d.ts +0 -18
  982. package/dist/lib/components/InputCheck/index.d.ts +0 -1
  983. package/dist/lib/components/InputCheck/styles.d.ts +0 -16
  984. package/dist/lib/components/InputCheck/types.d.ts +0 -25
  985. package/dist/lib/components/InputComponents/components/InputAndListContainer.d.ts +0 -12
  986. package/dist/lib/components/InputComponents/components/InputButton.d.ts +0 -17
  987. package/dist/lib/components/InputComponents/components/InputContainer.d.ts +0 -19
  988. package/dist/lib/components/InputComponents/components/InputIcon.d.ts +0 -15
  989. package/dist/lib/components/InputComponents/components/InputLeftContainer.d.ts +0 -10
  990. package/dist/lib/components/InputComponents/components/InputPrefix.d.ts +0 -10
  991. package/dist/lib/components/InputComponents/components/InputRightContainer.d.ts +0 -12
  992. package/dist/lib/components/InputComponents/components/InputSuffix.d.ts +0 -10
  993. package/dist/lib/components/InputComponents/components/InputValidationHelper.d.ts +0 -9
  994. package/dist/lib/components/InputComponents/components/InputValidationIcon.d.ts +0 -10
  995. package/dist/lib/components/InputComponents/components/InputWrapper.d.ts +0 -15
  996. package/dist/lib/components/InputComponents/components/ListInput.d.ts +0 -14
  997. package/dist/lib/components/InputComponents/components/ListInputItem.d.ts +0 -15
  998. package/dist/lib/components/InputComponents/index.d.ts +0 -13
  999. package/dist/lib/components/InputComponents/styles.d.ts +0 -50
  1000. package/dist/lib/components/InputComponents/types.d.ts +0 -191
  1001. package/dist/lib/components/InputContainer/HelperBottom.d.ts +0 -3
  1002. package/dist/lib/components/InputContainer/InputContainer.d.ts +0 -21
  1003. package/dist/lib/components/InputContainer/index.d.ts +0 -1
  1004. package/dist/lib/components/InputContainer/styles.d.ts +0 -10
  1005. package/dist/lib/components/InputContainer/subtypes.d.ts +0 -2
  1006. package/dist/lib/components/InputContainer/types.d.ts +0 -16
  1007. package/dist/lib/components/InputCounter/InputCounter.d.ts +0 -2
  1008. package/dist/lib/components/InputCounter/index.d.ts +0 -1
  1009. package/dist/lib/components/InputCounter/styles.d.ts +0 -10
  1010. package/dist/lib/components/InputCounter/subtypes.d.ts +0 -4
  1011. package/dist/lib/components/InputCounter/types.d.ts +0 -37
  1012. package/dist/lib/components/InputImage/EmptyContainer.d.ts +0 -2
  1013. package/dist/lib/components/InputImage/HoverContainer.d.ts +0 -2
  1014. package/dist/lib/components/InputImage/InputImage.d.ts +0 -41
  1015. package/dist/lib/components/InputImage/index.d.ts +0 -1
  1016. package/dist/lib/components/InputImage/styles.d.ts +0 -18
  1017. package/dist/lib/components/InputImage/subtypes.d.ts +0 -6
  1018. package/dist/lib/components/InputImage/types.d.ts +0 -21
  1019. package/dist/lib/components/InputPhone/InputPhone.d.ts +0 -46
  1020. package/dist/lib/components/InputPhone/index.d.ts +0 -1
  1021. package/dist/lib/components/InputPhone/styles.d.ts +0 -19
  1022. package/dist/lib/components/InputPhone/types.d.ts +0 -21
  1023. package/dist/lib/components/InputPhone/utils/countries.d.ts +0 -2
  1024. package/dist/lib/components/InputPin/InputPin.d.ts +0 -41
  1025. package/dist/lib/components/InputPin/index.d.ts +0 -1
  1026. package/dist/lib/components/InputPin/styles.d.ts +0 -3
  1027. package/dist/lib/components/InputPin/subtypes.d.ts +0 -6
  1028. package/dist/lib/components/InputPin/types.d.ts +0 -20
  1029. package/dist/lib/components/InputSlider/InputSlider.d.ts +0 -28
  1030. package/dist/lib/components/InputSlider/Slider.d.ts +0 -11
  1031. package/dist/lib/components/InputSlider/index.d.ts +0 -1
  1032. package/dist/lib/components/InputSlider/styles.d.ts +0 -13
  1033. package/dist/lib/components/InputSlider/types.d.ts +0 -10
  1034. package/dist/lib/components/Key/Key.d.ts +0 -14
  1035. package/dist/lib/components/Key/index.d.ts +0 -1
  1036. package/dist/lib/components/Key/styles.d.ts +0 -6
  1037. package/dist/lib/components/Key/types.d.ts +0 -8
  1038. package/dist/lib/components/LibIcon/LibIcon.d.ts +0 -11
  1039. package/dist/lib/components/LibIcon/index.d.ts +0 -1
  1040. package/dist/lib/components/LibIcon/types.d.ts +0 -6
  1041. package/dist/lib/components/Link/Link.d.ts +0 -9
  1042. package/dist/lib/components/Link/index.d.ts +0 -1
  1043. package/dist/lib/components/Link/types.d.ts +0 -5
  1044. package/dist/lib/components/Linkify/Linkify.d.ts +0 -11
  1045. package/dist/lib/components/Linkify/index.d.ts +0 -1
  1046. package/dist/lib/components/Linkify/types.d.ts +0 -5
  1047. package/dist/lib/components/ListGroup/ListGroup.d.ts +0 -31
  1048. package/dist/lib/components/ListGroup/ListGroupItem.d.ts +0 -22
  1049. package/dist/lib/components/ListGroup/ListGroupTitle.d.ts +0 -2
  1050. package/dist/lib/components/ListGroup/index.d.ts +0 -3
  1051. package/dist/lib/components/ListGroup/styles.d.ts +0 -20
  1052. package/dist/lib/components/ListGroup/types.d.ts +0 -73
  1053. package/dist/lib/components/Loader/Loader.d.ts +0 -14
  1054. package/dist/lib/components/Loader/index.d.ts +0 -1
  1055. package/dist/lib/components/Loader/styles.d.ts +0 -11
  1056. package/dist/lib/components/Loader/templates/LoaderFour.d.ts +0 -2
  1057. package/dist/lib/components/Loader/templates/LoaderOne.d.ts +0 -2
  1058. package/dist/lib/components/Loader/templates/LoaderThree.d.ts +0 -2
  1059. package/dist/lib/components/Loader/templates/LoaderTwo.d.ts +0 -2
  1060. package/dist/lib/components/Loader/types.d.ts +0 -16
  1061. package/dist/lib/components/Main/Main.d.ts +0 -13
  1062. package/dist/lib/components/Main/index.d.ts +0 -1
  1063. package/dist/lib/components/Main/styles.d.ts +0 -7
  1064. package/dist/lib/components/Main/types.d.ts +0 -14
  1065. package/dist/lib/components/MarkdownContainer/MarkdownContainer.d.ts +0 -10
  1066. package/dist/lib/components/MarkdownContainer/index.d.ts +0 -1
  1067. package/dist/lib/components/MarkdownContainer/styles.d.ts +0 -22
  1068. package/dist/lib/components/MarkdownContainer/types.d.ts +0 -5
  1069. package/dist/lib/components/MarkdownEditor/MarkdownEditor.d.ts +0 -65
  1070. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.d.ts +0 -2
  1071. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.d.ts +0 -2
  1072. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.d.ts +0 -2
  1073. package/dist/lib/components/MarkdownEditor/MdEditorInput.d.ts +0 -2
  1074. package/dist/lib/components/MarkdownEditor/index.d.ts +0 -1
  1075. package/dist/lib/components/MarkdownEditor/markdown-buttons.d.ts +0 -15
  1076. package/dist/lib/components/MarkdownEditor/styles.d.ts +0 -45
  1077. package/dist/lib/components/MarkdownEditor/subtypes.d.ts +0 -23
  1078. package/dist/lib/components/MarkdownEditor/types.d.ts +0 -45
  1079. package/dist/lib/components/Masonry/Masonry.d.ts +0 -13
  1080. package/dist/lib/components/Masonry/index.d.ts +0 -1
  1081. package/dist/lib/components/Masonry/styles.d.ts +0 -8
  1082. package/dist/lib/components/Masonry/types.d.ts +0 -7
  1083. package/dist/lib/components/Masonry/utils.d.ts +0 -3
  1084. package/dist/lib/components/Messaging/Message.d.ts +0 -30
  1085. package/dist/lib/components/Messaging/MessageForm.d.ts +0 -15
  1086. package/dist/lib/components/Messaging/MessagesContainer.d.ts +0 -10
  1087. package/dist/lib/components/Messaging/MessagesList.d.ts +0 -14
  1088. package/dist/lib/components/Messaging/Messaging.d.ts +0 -25
  1089. package/dist/lib/components/Messaging/index.d.ts +0 -5
  1090. package/dist/lib/components/Messaging/styles.d.ts +0 -8
  1091. package/dist/lib/components/Messaging/types.d.ts +0 -85
  1092. package/dist/lib/components/Modal/Modal.d.ts +0 -27
  1093. package/dist/lib/components/Modal/index.d.ts +0 -1
  1094. package/dist/lib/components/Modal/styles.d.ts +0 -4
  1095. package/dist/lib/components/Modal/types.d.ts +0 -25
  1096. package/dist/lib/components/PageLayout/PageLayout.d.ts +0 -18
  1097. package/dist/lib/components/PageLayout/index.d.ts +0 -1
  1098. package/dist/lib/components/PageLayout/types.d.ts +0 -39
  1099. package/dist/lib/components/PageLoading/PageLoading.d.ts +0 -14
  1100. package/dist/lib/components/PageLoading/index.d.ts +0 -1
  1101. package/dist/lib/components/PageLoading/styles.d.ts +0 -5
  1102. package/dist/lib/components/PageLoading/types.d.ts +0 -8
  1103. package/dist/lib/components/Pagination/Pagination.d.ts +0 -29
  1104. package/dist/lib/components/Pagination/PaginationButton.d.ts +0 -13
  1105. package/dist/lib/components/Pagination/index.d.ts +0 -2
  1106. package/dist/lib/components/Pagination/styles.d.ts +0 -6
  1107. package/dist/lib/components/Pagination/types.d.ts +0 -43
  1108. package/dist/lib/components/Paginator/Paginator.d.ts +0 -19
  1109. package/dist/lib/components/Paginator/index.d.ts +0 -1
  1110. package/dist/lib/components/Paginator/styles.d.ts +0 -4
  1111. package/dist/lib/components/Paginator/types.d.ts +0 -26
  1112. package/dist/lib/components/ProgressBar/ProgressBar.d.ts +0 -13
  1113. package/dist/lib/components/ProgressBar/index.d.ts +0 -1
  1114. package/dist/lib/components/ProgressBar/styles.d.ts +0 -5
  1115. package/dist/lib/components/ProgressBar/types.d.ts +0 -8
  1116. package/dist/lib/components/ProgressCircle/Circle.d.ts +0 -2
  1117. package/dist/lib/components/ProgressCircle/ProgressCircle.d.ts +0 -17
  1118. package/dist/lib/components/ProgressCircle/ProgressCircleFn.d.ts +0 -2
  1119. package/dist/lib/components/ProgressCircle/Value.d.ts +0 -2
  1120. package/dist/lib/components/ProgressCircle/clean-percentage.d.ts +0 -1
  1121. package/dist/lib/components/ProgressCircle/index.d.ts +0 -1
  1122. package/dist/lib/components/ProgressCircle/styles.d.ts +0 -10
  1123. package/dist/lib/components/ProgressCircle/subtypes.d.ts +0 -3
  1124. package/dist/lib/components/ProgressCircle/types.d.ts +0 -23
  1125. package/dist/lib/components/Rating/Rating.d.ts +0 -21
  1126. package/dist/lib/components/Rating/index.d.ts +0 -1
  1127. package/dist/lib/components/Rating/styles.d.ts +0 -7
  1128. package/dist/lib/components/Rating/types.d.ts +0 -24
  1129. package/dist/lib/components/ResetScroll/ResetScroll.d.ts +0 -5
  1130. package/dist/lib/components/ResetScroll/index.d.ts +0 -1
  1131. package/dist/lib/components/Section/Section.d.ts +0 -11
  1132. package/dist/lib/components/Section/index.d.ts +0 -1
  1133. package/dist/lib/components/Section/styles.d.ts +0 -5
  1134. package/dist/lib/components/Section/types.d.ts +0 -4
  1135. package/dist/lib/components/Select/Select.d.ts +0 -42
  1136. package/dist/lib/components/Select/SelectButton.d.ts +0 -2
  1137. package/dist/lib/components/Select/index.d.ts +0 -1
  1138. package/dist/lib/components/Select/styles.d.ts +0 -4
  1139. package/dist/lib/components/Select/subtypes.d.ts +0 -12
  1140. package/dist/lib/components/Select/types.d.ts +0 -19
  1141. package/dist/lib/components/Skeleton/Skeleton.d.ts +0 -19
  1142. package/dist/lib/components/Skeleton/SkeletonCard.d.ts +0 -21
  1143. package/dist/lib/components/Skeleton/SkeletonShine.d.ts +0 -11
  1144. package/dist/lib/components/Skeleton/index.d.ts +0 -3
  1145. package/dist/lib/components/Skeleton/styles.d.ts +0 -11
  1146. package/dist/lib/components/Skeleton/subtypes.d.ts +0 -11
  1147. package/dist/lib/components/Skeleton/types.d.ts +0 -25
  1148. package/dist/lib/components/Slideshow/Slideshow.d.ts +0 -44
  1149. package/dist/lib/components/Slideshow/SlideshowButton.d.ts +0 -2
  1150. package/dist/lib/components/Slideshow/SlideshowPagination.d.ts +0 -2
  1151. package/dist/lib/components/Slideshow/index.d.ts +0 -1
  1152. package/dist/lib/components/Slideshow/styles.d.ts +0 -33
  1153. package/dist/lib/components/Slideshow/subtypes.d.ts +0 -11
  1154. package/dist/lib/components/Slideshow/types.d.ts +0 -88
  1155. package/dist/lib/components/SrOnly/SrOnly.d.ts +0 -10
  1156. package/dist/lib/components/SrOnly/index.d.ts +0 -1
  1157. package/dist/lib/components/SrOnly/styles.d.ts +0 -2
  1158. package/dist/lib/components/SrOnly/types.d.ts +0 -3
  1159. package/dist/lib/components/Stepper/Step.d.ts +0 -23
  1160. package/dist/lib/components/Stepper/Stepper.d.ts +0 -31
  1161. package/dist/lib/components/Stepper/index.d.ts +0 -2
  1162. package/dist/lib/components/Stepper/styles.d.ts +0 -13
  1163. package/dist/lib/components/Stepper/types.d.ts +0 -29
  1164. package/dist/lib/components/Sticky/Sticky.d.ts +0 -11
  1165. package/dist/lib/components/Sticky/index.d.ts +0 -1
  1166. package/dist/lib/components/Sticky/styles.d.ts +0 -5
  1167. package/dist/lib/components/Sticky/types.d.ts +0 -4
  1168. package/dist/lib/components/Table/TBody.d.ts +0 -9
  1169. package/dist/lib/components/Table/THead.d.ts +0 -9
  1170. package/dist/lib/components/Table/Table.d.ts +0 -15
  1171. package/dist/lib/components/Table/Td.d.ts +0 -10
  1172. package/dist/lib/components/Table/Tr.d.ts +0 -9
  1173. package/dist/lib/components/Table/index.d.ts +0 -5
  1174. package/dist/lib/components/Table/styles.d.ts +0 -9
  1175. package/dist/lib/components/Table/types.d.ts +0 -26
  1176. package/dist/lib/components/Tabs/TabButton.d.ts +0 -14
  1177. package/dist/lib/components/Tabs/TabItem.d.ts +0 -11
  1178. package/dist/lib/components/Tabs/Tabs.d.ts +0 -24
  1179. package/dist/lib/components/Tabs/TabsButtonsContainer.d.ts +0 -12
  1180. package/dist/lib/components/Tabs/TabsContainer.d.ts +0 -10
  1181. package/dist/lib/components/Tabs/index.d.ts +0 -5
  1182. package/dist/lib/components/Tabs/styles.d.ts +0 -13
  1183. package/dist/lib/components/Tabs/types.d.ts +0 -34
  1184. package/dist/lib/components/Tag/Tag.d.ts +0 -20
  1185. package/dist/lib/components/Tag/index.d.ts +0 -1
  1186. package/dist/lib/components/Tag/styles.d.ts +0 -11
  1187. package/dist/lib/components/Tag/types.d.ts +0 -29
  1188. package/dist/lib/components/Text/Text.d.ts +0 -15
  1189. package/dist/lib/components/Text/index.d.ts +0 -1
  1190. package/dist/lib/components/Text/styles.d.ts +0 -16
  1191. package/dist/lib/components/Text/subtypes.d.ts +0 -9
  1192. package/dist/lib/components/Text/templates/Blockquote.d.ts +0 -2
  1193. package/dist/lib/components/Text/templates/Dl.d.ts +0 -2
  1194. package/dist/lib/components/Text/templates/Em.d.ts +0 -2
  1195. package/dist/lib/components/Text/templates/H1.d.ts +0 -2
  1196. package/dist/lib/components/Text/templates/H2.d.ts +0 -2
  1197. package/dist/lib/components/Text/templates/H3.d.ts +0 -2
  1198. package/dist/lib/components/Text/templates/H4.d.ts +0 -2
  1199. package/dist/lib/components/Text/templates/H5.d.ts +0 -2
  1200. package/dist/lib/components/Text/templates/H6.d.ts +0 -2
  1201. package/dist/lib/components/Text/templates/Ol.d.ts +0 -2
  1202. package/dist/lib/components/Text/templates/P.d.ts +0 -2
  1203. package/dist/lib/components/Text/templates/Small.d.ts +0 -2
  1204. package/dist/lib/components/Text/templates/Strong.d.ts +0 -2
  1205. package/dist/lib/components/Text/templates/Ul.d.ts +0 -2
  1206. package/dist/lib/components/Text/types.d.ts +0 -16
  1207. package/dist/lib/components/TextIcon/TextIcon.d.ts +0 -30
  1208. package/dist/lib/components/TextIcon/index.d.ts +0 -1
  1209. package/dist/lib/components/TextIcon/styles.d.ts +0 -10
  1210. package/dist/lib/components/TextIcon/types.d.ts +0 -13
  1211. package/dist/lib/components/TextIcon/utils.d.ts +0 -2
  1212. package/dist/lib/components/Timepicker/Timepicker.d.ts +0 -32
  1213. package/dist/lib/components/Timepicker/index.d.ts +0 -1
  1214. package/dist/lib/components/Timepicker/styles.d.ts +0 -8
  1215. package/dist/lib/components/Timepicker/types.d.ts +0 -39
  1216. package/dist/lib/components/Toast/Toast.d.ts +0 -30
  1217. package/dist/lib/components/Toast/Toaster.d.ts +0 -36
  1218. package/dist/lib/components/Toast/index.d.ts +0 -1
  1219. package/dist/lib/components/Toast/styles.d.ts +0 -18
  1220. package/dist/lib/components/Toast/types.d.ts +0 -14
  1221. package/dist/lib/components/Tooltip/Tooltip.d.ts +0 -18
  1222. package/dist/lib/components/Tooltip/index.d.ts +0 -1
  1223. package/dist/lib/components/Tooltip/styles.d.ts +0 -12
  1224. package/dist/lib/components/Tooltip/types.d.ts +0 -12
  1225. package/dist/lib/components/Truncate/Truncate.d.ts +0 -11
  1226. package/dist/lib/components/Truncate/index.d.ts +0 -1
  1227. package/dist/lib/components/Truncate/styles.d.ts +0 -7
  1228. package/dist/lib/components/Truncate/types.d.ts +0 -4
  1229. package/dist/lib/components/Video/Video.d.ts +0 -13
  1230. package/dist/lib/components/Video/index.d.ts +0 -1
  1231. package/dist/lib/components/Video/styles.d.ts +0 -7
  1232. package/dist/lib/components/Video/types.d.ts +0 -8
  1233. package/dist/lib/components/Wrapper/Wrapper.d.ts +0 -13
  1234. package/dist/lib/components/Wrapper/index.d.ts +0 -1
  1235. package/dist/lib/components/Wrapper/styles.d.ts +0 -6
  1236. package/dist/lib/components/Wrapper/types.d.ts +0 -6
  1237. package/dist/lib/components/Youtube/Youtube.d.ts +0 -11
  1238. package/dist/lib/components/Youtube/index.d.ts +0 -1
  1239. package/dist/lib/components/Youtube/styles.d.ts +0 -6
  1240. package/dist/lib/components/Youtube/types.d.ts +0 -6
  1241. package/dist/lib/context/Theme.context.d.ts +0 -22
  1242. package/dist/lib/context/Toaster/Toaster.context.d.ts +0 -39
  1243. package/dist/lib/context/Toaster/index.d.ts +0 -1
  1244. package/dist/lib/context/Toaster/toast.reducer.d.ts +0 -11
  1245. package/dist/lib/hooks/index.d.ts +0 -15
  1246. package/dist/lib/hooks/useClickOutside.d.ts +0 -10
  1247. package/dist/lib/hooks/useCopyToClipboard.d.ts +0 -8
  1248. package/dist/lib/hooks/useDebounce.d.ts +0 -7
  1249. package/dist/lib/hooks/useExportData.d.ts +0 -8
  1250. package/dist/lib/hooks/useFetch.d.ts +0 -11
  1251. package/dist/lib/hooks/useForm.d.ts +0 -13
  1252. package/dist/lib/hooks/useIsOverflow.d.ts +0 -11
  1253. package/dist/lib/hooks/useKeyPress.d.ts +0 -7
  1254. package/dist/lib/hooks/useMaxWidth.d.ts +0 -6
  1255. package/dist/lib/hooks/useMergeRefs.d.ts +0 -7
  1256. package/dist/lib/hooks/useMinWidth.d.ts +0 -6
  1257. package/dist/lib/hooks/usePaginatedData.d.ts +0 -12
  1258. package/dist/lib/hooks/usePagination.d.ts +0 -21
  1259. package/dist/lib/hooks/useTouchScreen.d.ts +0 -5
  1260. package/dist/lib/hooks/useTranslation.d.ts +0 -12
  1261. package/dist/lib/icons/ArrowUp.d.ts +0 -2
  1262. package/dist/lib/icons/Bold.d.ts +0 -2
  1263. package/dist/lib/icons/Calendar.d.ts +0 -2
  1264. package/dist/lib/icons/CaretDown.d.ts +0 -2
  1265. package/dist/lib/icons/Check.d.ts +0 -2
  1266. package/dist/lib/icons/CheckCircle.d.ts +0 -2
  1267. package/dist/lib/icons/ChevronDown.d.ts +0 -2
  1268. package/dist/lib/icons/ChevronLeft.d.ts +0 -2
  1269. package/dist/lib/icons/ChevronRight.d.ts +0 -2
  1270. package/dist/lib/icons/ChevronUp.d.ts +0 -2
  1271. package/dist/lib/icons/Clipboard.d.ts +0 -2
  1272. package/dist/lib/icons/Clock.d.ts +0 -2
  1273. package/dist/lib/icons/Close.d.ts +0 -2
  1274. package/dist/lib/icons/CloseCircle.d.ts +0 -2
  1275. package/dist/lib/icons/Code.d.ts +0 -2
  1276. package/dist/lib/icons/CodeBlock.d.ts +0 -2
  1277. package/dist/lib/icons/Comment.d.ts +0 -2
  1278. package/dist/lib/icons/Drag.d.ts +0 -2
  1279. package/dist/lib/icons/Edit.d.ts +0 -2
  1280. package/dist/lib/icons/EditorCode.d.ts +0 -2
  1281. package/dist/lib/icons/EditorLive.d.ts +0 -2
  1282. package/dist/lib/icons/EditorPreview.d.ts +0 -2
  1283. package/dist/lib/icons/Hide.d.ts +0 -2
  1284. package/dist/lib/icons/Image.d.ts +0 -2
  1285. package/dist/lib/icons/Italic.d.ts +0 -2
  1286. package/dist/lib/icons/Link.d.ts +0 -2
  1287. package/dist/lib/icons/Minus.d.ts +0 -2
  1288. package/dist/lib/icons/OrderedList.d.ts +0 -2
  1289. package/dist/lib/icons/Plus.d.ts +0 -2
  1290. package/dist/lib/icons/Quote.d.ts +0 -2
  1291. package/dist/lib/icons/Search.d.ts +0 -2
  1292. package/dist/lib/icons/Send.d.ts +0 -2
  1293. package/dist/lib/icons/Separator.d.ts +0 -2
  1294. package/dist/lib/icons/Show.d.ts +0 -2
  1295. package/dist/lib/icons/Star.d.ts +0 -2
  1296. package/dist/lib/icons/StarFull.d.ts +0 -2
  1297. package/dist/lib/icons/Strikethrough.d.ts +0 -2
  1298. package/dist/lib/icons/Underline.d.ts +0 -2
  1299. package/dist/lib/icons/UnorderedList.d.ts +0 -2
  1300. package/dist/lib/icons/index.d.ts +0 -39
  1301. package/dist/lib/icons/styles.d.ts +0 -6
  1302. package/dist/lib/icons/types.d.ts +0 -8
  1303. package/dist/lib/index.d.ts +0 -90
  1304. package/dist/lib/lib-utils/append-styles.d.ts +0 -1
  1305. package/dist/lib/lib-utils/colors-maps.d.ts +0 -9
  1306. package/dist/lib/lib-utils/get-highlighted-text.d.ts +0 -3
  1307. package/dist/lib/lib-utils/get-icon-size-from-font.d.ts +0 -2
  1308. package/dist/lib/lib-utils/index.d.ts +0 -7
  1309. package/dist/lib/lib-utils/round-icon-size.d.ts +0 -1
  1310. package/dist/lib/lib-utils/transfom-search-keys.d.ts +0 -1
  1311. package/dist/lib/types/component-items.d.ts +0 -438
  1312. package/dist/lib/types/components-props.d.ts +0 -79
  1313. package/dist/lib/types/generate-int-range.d.ts +0 -7
  1314. package/dist/lib/types/global.d.ts +0 -350
  1315. package/dist/lib/types/index.d.ts +0 -5
  1316. package/dist/lib/types/require-at-least-one.d.ts +0 -3
  1317. package/dist/lib/types/theme.d.ts +0 -2
  1318. package/dist/lib/types/type-values.d.ts +0 -2285
  1319. package/dist/lib/utils/StyleSheetManager.d.ts +0 -4
  1320. package/dist/lib/utils/index.d.ts +0 -4
  1321. package/dist/lib/utils/linkify-text.d.ts +0 -2
  1322. package/dist/lib/utils/options-markdown.d.ts +0 -4
  1323. package/dist/lib/utils/set-default-theme.d.ts +0 -6
  1324. package/dist/styles-3686a5c6.js +0 -19
  1325. package/dist/styles-9e4aa8e9.cjs +0 -7
  1326. package/dist/tsx-library-julseb.cjs.js +0 -1
  1327. package/dist/tsx-library-julseb.es.js +0 -213
  1328. package/dist/tsx-library-julseb.umd.js +0 -4150
  1329. package/dist/types/component-items.d.ts +0 -438
  1330. package/dist/types/component-items.js +0 -2
  1331. package/dist/types/generate-int-range.d.ts +0 -7
  1332. package/dist/types/generate-int-range.js +0 -3
  1333. package/dist/types/global.d.ts +0 -350
  1334. package/dist/types/global.js +0 -2
  1335. package/dist/types/index.d.ts +0 -5
  1336. package/dist/types/index.js +0 -6
  1337. package/dist/types/require-at-least-one.d.ts +0 -3
  1338. package/dist/types/require-at-least-one.js +0 -1
  1339. package/dist/types/type-values.d.ts +0 -2285
  1340. package/dist/types/type-values.js +0 -2151
  1341. /package/dist/{types → lib/types}/component-items.ts +0 -0
  1342. /package/dist/{types → lib/types}/components-props.ts +0 -0
  1343. /package/dist/{types → lib/types}/generate-int-range.ts +0 -0
  1344. /package/dist/{types → lib/types}/global.ts +0 -0
  1345. /package/dist/{types → lib/types}/index.ts +0 -0
  1346. /package/dist/{types → lib/types}/require-at-least-one.ts +0 -0
  1347. /package/dist/{types → lib/types}/theme.ts +0 -0
  1348. /package/dist/{types → lib/types}/type-values.ts +0 -0
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-et" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-61.3 0h682.7v512H-61.3z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)" transform="translate(57.5) scale(.94)">
8
+ <path fill="#ffc621" d="M-238 3.5H800v498H-238z"/>
9
+ <path fill="#ef2118" d="M-240 342.5H799.3V512H-240z"/>
10
+ <path fill="#298c08" d="M-238 0H800v180H-238z"/>
11
+ <circle cx="534.2" cy="353" r="199.7" fill="#006bc6" transform="matrix(.54 0 0 .54 -25.8 74)"/>
12
+ <path fill="#ffc621" d="m214.3 188.2-6.5 4.5 23.5 33 6.3-4-23.4-33.5zm29.4 78-9.7-6.8 4-12.7-48.1.7-14-10.7 65.7-.7 12.2-36.9 6.6 15-16.7 52zm76.5-70.7-6.3-4.8-24.3 32.4 5.6 4.7 25-32.3zM254.8 247l3.5-11.2h13.3L256.4 190l6-16.5 20.5 62.4 38.8.5-12.2 10.7-54.7-.2zm90.6 51.2 2.7-7.4-38.3-13.3-2.8 7 38.4 13.7zm-69.1-46.4 11.7-.1 4.1 12.6 38.8-28.5 17.6.6-53.1 38.7 11.5 37.2-14-8.4-16.6-52.1zm-19.8 102 7.9.2.3-40.5-7.4-.5-.8 40.9zm22-80.3 3.8 11.1-10.7 8 39.4 27.7 5 16.8-53.6-38-31.5 22.7 3.5-16 44-32.3zm-103.3 13 2.3 7.5 38.7-12.2-2-7.2-39 11.9zm83.2-4-9.4 7.1-10.8-7.7-14.2 46-14.4 10 19.5-62.7-31.4-23 16.3-1.6 44.4 31.9z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,28 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-eu" viewBox="0 0 640 480">
2
+ <defs>
3
+ <g id="d">
4
+ <g id="b">
5
+ <path id="a" d="m0-1-.3 1 .5.1z"/>
6
+ <use xlink:href="#a" transform="scale(-1 1)"/>
7
+ </g>
8
+ <g id="c">
9
+ <use xlink:href="#b" transform="rotate(72)"/>
10
+ <use xlink:href="#b" transform="rotate(144)"/>
11
+ </g>
12
+ <use xlink:href="#c" transform="scale(-1 1)"/>
13
+ </g>
14
+ </defs>
15
+ <path fill="#039" d="M0 0h640v480H0z"/>
16
+ <g fill="#fc0" transform="translate(320 242.3) scale(23.7037)">
17
+ <use xlink:href="#d" width="100%" height="100%" y="-6"/>
18
+ <use xlink:href="#d" width="100%" height="100%" y="6"/>
19
+ <g id="e">
20
+ <use xlink:href="#d" width="100%" height="100%" x="-6"/>
21
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(-144 -2.3 -2.1)"/>
22
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(144 -2.1 -2.3)"/>
23
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(72 -4.7 -2)"/>
24
+ <use xlink:href="#d" width="100%" height="100%" transform="rotate(72 -5 .5)"/>
25
+ </g>
26
+ <use xlink:href="#e" width="100%" height="100%" transform="scale(-1 1)"/>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-fi" viewBox="0 0 640 480">
2
+ <path fill="#fff" d="M0 0h640v480H0z"/>
3
+ <path fill="#002f6c" d="M0 174.5h640v131H0z"/>
4
+ <path fill="#002f6c" d="M175.5 0h130.9v480h-131z"/>
5
+ </svg>
@@ -0,0 +1,120 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-fj" viewBox="0 0 640 480">
2
+ <path fill="#68bfe5" d="M0 0v480h640V0H0z"/>
3
+ <g stroke-miterlimit="4.8">
4
+ <path fill="#fff" d="M420.9 193.2v136.4c0 44.6 80.6 71 80.6 71s80.5-26.4 80.5-71V193.2z"/>
5
+ <path fill="#d21034" d="M490.3 241.2v61.4h-69.4v22.3h69.4v71.5l11.2 4.3 11.1-4.3V325H582v-22.4h-69.4v-61.4z"/>
6
+ <path fill="#d21034" d="M420.9 193.2H582V246H420.8z"/>
7
+ <g stroke-miterlimit="3">
8
+ <g fill="#fff" stroke="#000" stroke-width=".8" transform="translate(-96.9 97.5) scale(.66486)">
9
+ <ellipse cx="798.2" cy="192.2" rx="13.6" ry="11"/>
10
+ <ellipse cx="798.2" cy="186.5" rx="12.1" ry="6.1"/>
11
+ <ellipse cx="798.2" cy="198.8" rx="12.1" ry="6.1"/>
12
+ <ellipse cx="798.2" cy="192.2" rx="12.1" ry="6.1"/>
13
+ </g>
14
+ <path fill="#ffd100" stroke="#000" stroke-width=".8" d="m578 235.4-1.3-3.6s-3.6-1.5-3.9-3.4c-.6-5.1-2.4-7-5.2-7.8a6 6 0 0 0-4.5.5c-.8 1.2-5 1.2-7.2 1.3-2.3 0-2.4-1-2.4-1-1.7 0-2.5-1.3-2.5-1.3-1.1-2.3-2-3.2-2.6-3.5 3 0 5.2-1.3 8.6-4.8 3.6-3.8 6.2-2.4 6.2-2.4-1.8 3.6.6 3.3.6 3.3 4.8-2.5.6-8.7-.8-8.4-1.5.3-1.9-.7-1.9-.7 0 1.1-1.6 1.6-1.6 1.6 1.2-7.1-3-9-3-9-.6.6-1 1.9-1 1.9-1.2 4.3-5.1 3.6-9.5 1.5-4.4-2-16 2.2-19.7 3.7-3.7 1.5-10.4 3.7-16.4.4-6-3.4-7.5-2.8-9.9-2.1-2.3.6-6.5 1.6-8 .8a8.5 8.5 0 0 0-3.4-.9c.4-.2-.2-1.2-.2-1.2-1.9-2.5.2-4 .2-4s-3.4 1-2 6.8l.6.8s.4 1.9 1.4 2.4v.4s.9-.4 1.1.8c.3 1.2 1.6 0 2.1-1 0 0-.9 5.4 5.7 6.7 0 0-.7-.9-.5-1.4.3-.6-.8-1-.7-1.8.1-.9-1.6-1.2-.3-1.9 1.4-.6 2-1.9 5-.1 2.9 1.7 5.2 1.3 5.2 1.3s-1.8-3.6-.8-3.6 5.4 5.4 7.5 5.2c2.2-.3 6.4-2.8 8.5-1.9 0 0 .2-1 8.2-2.4 8-1.4 18-5.4 21.7-1.9 0 0 .4 2.8 2 3.5 0 0-.3 5.8-10.2 2.6l-3.6-1s-.6-1.7-19.5 3.2c0 0-1.1.4-1.9.9-.7.5-1.7-.3-5.5 1-3.7 1.5-17.7 6-26.3 4.4-1.9-.6-3.6-.3-3.7-.6 0-.3 1 .1 1 .1-.6-.7-.9-.8-.9-.8-7.2-.8-6-4-6-4l.4 1c1.2-1.6-.4-5.2-.4-5.2h-.1a3.8 3.8 0 0 0 0-.3l.5-.4c3.5-3 7.5-3.5 7.5-3.5-2.4-3-7.4-1.4-7.4-1.4.1-3.5-1.4-7.7-1.4-7.7a12 12 0 0 0-7.7 4.7c-.2-3.7-4.9-5.8-4.9-5.8 1.8 2.1.7 7.2.7 7.2h.2-.5l-.1 1.1h-.2s-1.7.6-3.7 5.2c0 0-.2 1-1 2v-.4s-2.3 3-7.4 0c0 0-7-4.1-9.6-4-2.4.2-4 1.3-3.9 2 0 0-5.7-.4-7.6 2.8 0 0-4.3 1.6-.6 5 0 0 .5 1.6 1.5 2.4 0 0-.1-3.2.7-2.3l.5.6c.1.4.5 1.6 1.2 2.3l.6-.2c0-.8.2-1.8.4-2.2h.2l1 1.6 1-.6c.6 0 1.3.5 1.3.5l1.3-1.1c1.3.2 1.7-2.4 1.7-2.4a4 4 0 0 0 3.1-.5c.6 2 5.2 4.3 5.2 4.3h.2l-.6.4c2.1 1.5 6 1.1 6 1.1-1.6.6-1.4 3.7-1.4 3.7-1 .4-1 1.3-1 1.3 3.2 1.3 5.3.2 5.3.2.2 1 0 1.2 0 1.2-1.3 2.7-1.9 5.4-1.9 5.4h.1v.2s-5.7 2-8.1 4.7c0 0-.3-.8-1-.8s-2.8-1.8-3.8-2.1c-1-.3-2.5.3-3-.2-.3-.4-.1-3.6-.8-4l-.7-2c-.4 1-2.4.8-2.4.8l-.8.6-.8-.1c-.2 0-.4.5-.5 1l-.3.3v-.6c-.3.3-1.1-.1-1.4-.1-.2 0-.4.4-.5.9l-1.9.1c-.3.2 0 2.6 0 2.6-2.3 1.2-1.2 3.1-1.2 3.1 1.2 6 11.5 3.3 12.3 4.1.8.8 2.6 1 3.5 1 1 0 2.1 2.2 3.4 2.4 1.3.2 0-1.8 6.1-3.2 6.1-1.5 8.2-4 8.2-4 1.9-.4 2.4-2.7 2.5-3.6l.2 1.4c.3 2.1-1.2 3-1.2 3l5.3-1.7c2.1-.5 1.8-2.4 1.8-2.4 2 5.8 5.7 6.2 5.7 6.2.7-2.2.6-2.9.6-2.9h1.7c0-1.3-1-2.2-1.7-2.6l2.6 1.5 1-.1c0 .9 1.3 1.7 1.3 1.7l.2-1.2c1.2 1.6 3.4 1 3.4 1a7.3 7.3 0 0 0-.2-.8c4.7 2.9 12.2-.8 12.2-.8 2 .4 2.3-.8 2.3-.8 2.2.3 2.8-1.3 2.8-1.3 5.3-.4 9.1-4.2 9.1-4.2 2.7-.2 2.8-2.1 2.8-2.1s2.6.5 5.2-2.7c6-8.5 14.8-4 14.8-4l-5.1.3c-13.5-.1-7.9 9-7.9 9h.8c1.3.2 5.7 3.7 4 6.2v.2c-2.8 3.7-7.8.2-9.3-3-1.4-3.2-4.4-2.5-4.4-2.5s-7.5 1.3-4.4 7.3c.1 1.5 1 3.2 3.8 4.8 1.5 2.2 6.5 2.4 10.1 1.6C524 244 533 240 533 240c.7-2 3-1.5 5-4.4 2-2.8-2.9-3.8-4-5.4-1-1.5.3-1.2.3-1.2 4.4 2.3 4.8-5.2 4.8-5.2a6.6 6.6 0 0 0 4.3 5.5c2.3-2.3.6-7.2.6-7.2 5.7 10.2 9.1 8.5 9.1 8.5-3-1.8-1.5-4.4-1.5-4.4 2.7 10.8 14 1.4 14 1.4-.6 1.6 0 2.5 1 3.5s2.2 1.4 1.6 3.3c-.5 1.8-5.8 1.4-5.8 1.4s-5-.2-4.6 4c.3 1 3.6 1.4 5 1.1 0 0-.6.2 1.3.4h2.2c2.1 0 4.5-.4 4.5-.4 2.9-.6 2.4-1.6 2.4-1.6 4.5-.8 5-3.8 5-3.8z"/>
15
+ <path d="M429.6 216.7s.3-.5.7-.6c.4 0 .8.2 1.2.8l.3-.2s-1.2-1.8-.8-3c.3-.6.8-1 1.6-1.1v-.3c-1 .2-1.6.6-1.8 1.3a2 2 0 0 0-.2.7c0 .6.2 1.2.5 1.7a1.1 1.1 0 0 0-.8-.2 1 1 0 0 0-.8.6zm141 24c-3 .5-7.5.7-7.9-.2 0-.2 0-.8 2.4-2.4l-.2-.5c-2.1 1.4-3 2.3-2.7 3 .7 1.8 7.2.8 8.5.6zm-58.4 1.7c-.7-1-.3-2.5 1-4.3l-.5-.3c-1.4 2-1.7 3.6-1 5z"/>
16
+ <path d="M508.1 237.8c0 1.9 1.4 3.6 3.9 5.1l.3-.5c-2.4-1.4-3.6-3-3.6-4.6-.2-2.5 2.5-4.5 2.6-4.5l-.3-.4c-.2 0-3 2.1-2.9 5zm52 .7c-.8 1.3-.5 2.8-.5 2.8h.5c0-.1-.2-1.4.5-2.5a3 3 0 0 1 2-1.2v-.5c-1.1.2-2 .7-2.4 1.4zM441 215.1h-.2v.2s-.2 1.6-1 2a.8.8 0 0 1-.6 0l-1.3-.7c-.2-.2-.4-.3-.8-.2a1.8 1.8 0 0 1-.4-1.4c.1-.7.6-1.4 1.6-2l-.2-.3c-1 .7-1.6 1.5-1.7 2.3 0 1 .5 1.6.5 1.6v.1h.2c.3-.1.3 0 .6.2l1.4.8h1c.7-.5 1-1.9 1-2.2 3.2.7 5.8-3.3 6-3.4l-.3-.2s-2.7 4-5.8 3.2z"/>
17
+ <path d="M433.1 214.5a3 3 0 0 0 .4 2c.3.5.7.8 1 .9.5 0 .8-.3 1.2-.6.2-.2.4-.4.6-.4l.3.2.2-.2-.5-.3c-.3 0-.6.2-.8.5s-.6.5-1 .5c-.2 0-.5-.3-.8-.8a2.2 2.2 0 0 1-.3-1.7c.4-1.4 2.1-2.5 2.1-2.5l-.1-.3c-.1 0-1.9 1.2-2.3 2.7zm-4.4 20.7c.1-.6.6-1 1.3-1.4-.2 0 .6.6 1.3.6l.5-.3c.2.2 1.4 1.3 1.4 2.7 0 .3 0 .6-.2.9l.3.1c.9-2.1-1.4-4-1.4-4h-.2l-.4.3c-.6 0-1.3-.6-1.3-.6-1 .4-1.4 1-1.6 1.6zm10.3-5.4c-.7.1-2.5.4-3.1 1.4-.2.4-.3.8-.1 1.2l.2.6c.6 1.6 1.2 3.2 1.9 3.6l.1-.3c-.6-.3-1.2-2-1.7-3.4l-.2-.6a1 1 0 0 1 0-1c.5-.7 2.2-1 3-1.1.4 0 .5 1.5.6 2.4h.3c-.1-1.4-.3-2.8-1-2.8z"/>
18
+ <path d="M433.9 231.4c-.4.3-.3.8-.3.9 0 .1.2 4 2 4.8l.1-.3c-1.6-.7-1.8-4.5-1.8-4.6 0 0 0-.4.2-.6.3-.2.8-.3 1.6 0l.1-.3c-.9-.3-1.5-.2-1.9 0z"/>
19
+ <path d="M432.4 231.7c-.8.6-.7 2.2-.7 2.3h.3s0-1.6.6-2c.3-.2.6-.2 1 0l.1-.4c-.5-.2-1-.2-1.3 0z"/>
20
+ <g transform="translate(-96.9 97.5) scale(.66486)">
21
+ <path d="M862.3 169.5s1.3 3 1.3 5.3c0 .4-.2.7-.3 1l-.5-1.3-.3 1s-.6 1.4.3 2.9c1.2 2 4.2 3.2 9 3.7v.1a.8.8 0 0 0-.4.1l-.2.2v.4c.2.5.7.5 1.8.5l.7.1.6.2-.1-.1c1 0 2.3.3 3.6.8l-1 .2 1.1.5c.1 0 8.7 3.5 12.2 6.3-1 .9-5.3 4-12.7 2.2l-1.2-.3.8 1s4.9 5.6 5.9 9c-1.7 0-8.2 0-10.5-2l-.5.5s3 4.6 3.8 8.1c-1 .2-3 .3-4.3-1.4l-.6-.7-.3 2c-.6-.5-1.4-1.1-1.4-1.9v-.4l-1.8.3-3.8-2.3a8 8 0 0 0-.6-.4l-.4.7.6.3c.8.6 2.2 1.7 2.3 3.3H863v.5c0 .3 0 1.4-.9 3.7-1.1-.2-5.3-1.7-7.8-8.8l-.8.2v.2c0 .7-.2 2.3-2.4 2.9l-6.5 2a4.5 4.5 0 0 0 .8-2.8v-.8a20.3 20.3 0 0 1-.2-2.6c0-1.5.3-2.4 1.4-3l-.4-.8c-.1 0-9.6 3.9-14.3 2.3.2-1 1-4.2 2.6-7.6l-.2.2c.3-.2.6-.6.3-2.2v-.5l-.5.2s-3 1.4-7.4-.2c0-.4.3-1 1.2-1.4l.3-.1v-.8c0-1.2.1-4 1.8-4.6l-.2-.8s-5.1.4-8.2-1.3a11 11 0 0 1 4.5-1.9h.3v-.4a6 6 0 0 0-.5-2.3c1.2.4 2.6.7 3.1.3l.2-.1-.2-3.1h-.8l.1 2.6-3-.7-1.2-.4.8 1a4 4 0 0 1 .7 2.4 12.7 12.7 0 0 0-5 2.3l-.5.4.5.3c2.4 1.6 6.1 1.8 8 1.7a8.4 8.4 0 0 0-1.3 4.5v.4a3.1 3.1 0 0 0-1.5 2.2v.3l.2.1a11 11 0 0 0 7.9.5v.9c-2 4.2-3 8.3-3 8.3v.4h.3c3.9 1.6 10.7-.5 13.8-1.6-.4.7-.7 1.5-.7 2.5a22.1 22.1 0 0 0 .3 3.4c0 2.3-1.5 3.2-1.6 3.2l.3.8 8-2.4c1.8-.5 2.5-1.6 2.8-2.5 3.1 7.4 8 8 8.3 8.1h.3l.1-.3a14 14 0 0 0 1-4 439.6 439.6 0 0 0 2.4-.1v-.5c0-.7-.1-1.3-.4-1.8l1.4.8 1.3-.2c.3 1.3 1.9 2.4 2.1 2.5l.5.3.3-1.7c2 1.7 4.7 1.2 4.9 1.2l.3-.1v-.4c-.4-2.7-2.2-5.9-3.3-7.6 3.5 1.6 9.9 1.5 10.2 1.5h.4v-.5a30 30 0 0 0-5.6-9c8.2 1.5 12.6-2.8 12.8-3l.3-.3-.4-.2a53.8 53.8 0 0 0-11.6-6.3l.9-.2-1-.5a12.8 12.8 0 0 0-5.8-1.4c-1-1.2-1.5-1.3-1.6-1.4-5.6-.6-7.6-2.1-8.4-3.3v-.3l.2-.3c.5-.7.7-1.6.7-2.6 0-2.6-1.3-5.5-1.3-5.6l-.8.3z"/>
22
+ <path d="M836.8 167.9s-.6 3-3.2 4.5c-2 1-4.5 1-7.6-.3l-.4-.1v.4a5 5 0 0 0 2 3.2c1.3 1 3.3 1.4 5.9 1.2-.9 1-3.6 4.4-3.6 7.8v.5c.4.2 4.6 1.4 6.6-1.1 0 1 .4 4.5 1.7 5.8.8.8 1 1.8 1 2.7 0 .8-.2 1.4-.2 1.4l-.2.6.5-.4c.2-.1 4.1-3 5.3-6.7 0 0 .7-1 1.9-1.3v.5c0 1.5.6 4.1 4.8 5.7l.3.1v-.3a7.1 7.1 0 0 1 0-.7c0-1.1 0-3 1.1-4a2.8 2.8 0 0 0 .6-3.3c.9.2 2.9.9 3.7 2.4 1.2 2.2 5.3.4 5.5.4l-.1-.5s-1.8.4-2.9-.3a2.1 2.1 0 0 1-.8-1.5l-.2-2.4c0-1-.2-1.7-.7-2.2.5 0 1.6 0 2 1 .8 1.6 3.3 1.7 3.4 1.7l.9.1-.7-.5s-2.2-1.4-1.8-3.3l.3-1.4c.6-2.5 1.6-6.6.7-9.2l-.4.2c.2.6.3 1.4.3 2.2 0 2.2-.7 5-1 6.7l-.4 1.4a2.6 2.6 0 0 0 0 .5c0 1.3.7 2.2 1.3 2.7-.7-.1-1.7-.5-2-1.3-.7-1.4-2.3-1.4-3-1.3l-.6.1.4.4c.7.4.8 1 .8 2.3l.2 2.3c.1.8.5 1.4 1 1.8.6.4 1.2.4 1.7.5-1.2.3-2.9.5-3.5-.6-1.1-2.2-4.3-2.7-4.4-2.8h-.5l.2.4s.4.6.4 1.4c0 .5-.2 1.2-.7 1.7-1.1 1.1-1.3 3.2-1.3 4.3v.4c-3.6-1.5-4.2-3.7-4.2-5v-1l.2-.3h-.4a3.5 3.5 0 0 0-2.5 1.8 15 15 0 0 1-4.7 6.2 6.9 6.9 0 0 0 .1-1c0-.9-.2-2-1-2.9-1.5-1.4-1.7-6-1.7-6v-.8l-.4.7c-1.6 2.8-6.2 1.4-6.3 1.4-.2-3.5 4-8.1 4-8.2l.4-.4h-.6c-2.7.4-4.8 0-6.2-1a4.6 4.6 0 0 1-1.6-2.5c3 1.1 5.6 1.2 7.6.1a7.4 7.4 0 0 0 3.4-4.8c3-6.6 5.5-7.7 5.5-7.7l-.1-.4c-.2 0-2.8 1-5.8 8z"/>
23
+ <path d="M843.5 158h-.2l-2.4 3.3h.7a31 31 0 0 1 19.7 9.2l.3.3 2.3-2.5-.2-.3c-6.5-10.2-20.1-10-20.3-10zm.2.9c1.6 0 13.2.3 19.2 9.3l-1.3 1.4a33 33 0 0 0-19.3-8.9 631.2 631.2 0 0 1 1.4-1.8z"/>
24
+ <path d="M841.6 164.8a11 11 0 0 0-2.1 4.8l.1.4a7.3 7.3 0 0 0-2 5.5c0 1.3.2 2.6.6 3.8l.3.7c1.2 3.4 2.3 6.4 7.8 4.6 5.2-1.6 5.4-2 6.7-4.2l.4-.5c.7-1.2 1.5-1.4 2.3-1.7 1-.3 2-.6 3-2.4l.8-1.3c1-1.3 2.2-3 2.3-5h-.4a9.8 9.8 0 0 1-2.2 4.7l-1 1.4a3.6 3.6 0 0 1-2.6 2.2 3.9 3.9 0 0 0-2.6 1.8l-.4.6c-1.2 2.1-1.4 2.4-6.5 4-5 1.6-6-.9-7.2-4.4l-.3-.7c-1.4-3.8-.3-7.6 1.6-9l.6-.5-.9.1v-.1c0-.7.7-2.6 2-4.5 1.2-1.6 4-3.1 4-3.2l-.2-.4c-.2.1-2.9 1.7-4.1 3.3z"/>
25
+ <path d="M839.2 178.7c.9.6 2.1.5 3.7 0 0 .5 0 1.7 1 2.5 1.2 1 3 1.2 5.5.6v-.5c-2.4.6-4.2.4-5.2-.5a3 3 0 0 1-.9-2.4v-.4l-.3.2c-1.5.6-2.7.7-3.6 0-1.5-1-1.4-3.7-1.4-3.7h-.4s-.2 3 1.6 4.2z"/>
26
+ <path d="M842 175c-.6.2-.8.7-.8 1.1v.3c.2 1.2 1.5 2 2.6 2.3 1.2.3 2.6.4 3.1-.3.2-.3.4-.8 0-1.7a3.7 3.7 0 0 0-4.8-1.7zm2 3.3c-1-.3-2.2-1-2.3-2 0 0-.1-.7.5-.9a3.3 3.3 0 0 1 4.2 1.6c.3.4.3.8.1 1-.3.5-1.4.6-2.5.3zm-2-3.3zm1.6 6c-.3 2.5 0 2.6.1 2.6h.2l.2-.1 1.4-2-1.8-.8v.3zm.5.4.7.3-.8 1.1v-1.4zm-4.2-2.4-.1 2.3 2-2.4-2-.2v.3zm.4.2h.6l-.6.8v-.8z"/>
27
+ <path d="M838.5 178.2s1.5 2.9 1.8 4c.1.6 1 1.4 2 1.7 1 .4 2 .4 2.7-.1l1.3-1.1c.4-.5.6-.6 1-.5v-.5c-.6 0-.9.2-1.3.6l-1.3 1c-.8.6-1.7.4-2.2.2-1-.3-1.7-1-1.8-1.5-.3-1-1.7-3.9-1.8-4l-.4.2zm2-8.6a5 5 0 0 0-2.4 2.8l.4.1s.7-1.8 2.1-2.5a2.9 2.9 0 0 1 2.4 0l.1-.4c-1-.4-1.8-.4-2.7 0zm10.8 5.2c.2 0 3.2 2.4 1.5 5.2l.3.3c2-3.3-1.5-5.9-1.5-6l-.3.5zm-9.2.4s-.5 1.7 2 2.3c0 0-2.3 0-2.5-.6-.1-.6 0-1.9.5-1.7zm7.5 2c0 .2-.2.3-.3.3a.3.3 0 0 1-.3-.2c0-.2.1-.3.3-.3.1 0 .3.1.3.3zm.2 1.2c0 .1 0 .2-.2.2a.3.3 0 0 1-.3-.2.3.3 0 0 1 .3-.3c.1 0 .2.1.2.3z"/>
28
+ <circle cx="848" cy="177.8" r=".3"/>
29
+ <path d="M848.8 179.4a.3.3 0 1 1-.6 0c0-.1.1-.2.3-.2l.3.2zm-7.1-7.3a.3.3 0 0 1-.6 0 .3.3 0 0 1 .5 0z"/>
30
+ <circle cx="841.6" cy="173.2" r=".3"/>
31
+ <circle cx="840.1" cy="172.7" r=".3"/>
32
+ <path d="M840.8 174.3a.3.3 0 0 1-.2.3.3.3 0 0 1 0-.6.3.3 0 0 1 .2.3zm4.8-9.6s3.5 2.2.1 6.3c0 0 1.7-1.3 1.8-3.4.2-2.1-1.2-3.8-2-2.9zm13.5 5.9c-1.2.6-2.8-.5-3.6-1.5-.8-1-2.5-1.3-3.6.6-1 1.8-2.5 2.5-2.5 2.5s1.5-.8 3-2.5c1.5-1.6 2.4-.3 3.9.5 1.4.8 1.7 1 2.7.5v-.1z"/>
33
+ <path d="M858.8 170.9a1.7 1.7 0 0 1-2.2-.1c-1-.8-1.7-1.8-2.8-1.2-1.2.6-3.3 2.2-3.3 2.2s3.5-2.4 4.2-1.8c.6.5 2.2 1.8 3.1 1.4l1-.5z"/>
34
+ <path d="M856.1 172.3c-1.1-.8-2.2 1-3.1.8-1-.2-1.7-1.8-1.7-1.8s.8 1.6 2 1.3c1.3-.4 2.1-1.2 2.9-.6.7.6-.1.3-.1.3z"/>
35
+ <path d="M854.4 172.6a2 2 0 0 1-2.4-1.9s.7 1.8 2.6 1.5l-.2.4z"/>
36
+ <path d="M854.3 171.2c.1.5.1.8-.5.8s-1-.2-1-.8c0-.5 1.4-.4 1.5 0zm-7.8-3a.7.7 0 0 1-.7.6c-.4 0-.5-.2-.5-.6s0-.7.5-.7.7.3.7.7z"/>
37
+ <path d="M844 165.7s3.8 0 2 4.7c0 0 1.4-2.3.5-4-1-1.6-2.3-1.2-2.3-1.2s-.4.3-.2.5z"/>
38
+ <path d="M844 167.6c0 1 .6 1.9 1.8 2.9l.3-.4c-1.1-.9-1.7-1.7-1.7-2.5s.6-1.3.6-1.3l-.3-.3s-.7.6-.8 1.6z"/>
39
+ <path d="M844.8 168.4c.1.5.6 1 1.2 1.2l.2-.4c-.5-.2-.9-.6-1-1-.2-.8.4-1.7.4-1.7l-.4-.3s-.7 1.2-.4 2.2zm5.1 2.6s.7 1.5-.3 3.1l-1 1.6s1.2-2.3.7-3.2c-.4-1 .6-1.5.6-1.5zm14.6 15.8c3.8.7 12.5 7.5 12.5 7.5l.5-.6c-.3-.3-8.9-7-12.9-7.7l-.2.8zm3.4 9.5c.2 3.5 4 5.6 4 5.7l.5-.7s-3.5-2-3.7-5h-.8zm-9.3.8c0 3.8 3.6 8.4 3.8 8.6l.6-.5s-3.6-4.6-3.6-8.1h-.8zm-12.1.4c.6 1.3.6 1.9.4 2.2-.2.4-.6.4-.6.4l.1.8c.3 0 .9-.2 1.2-.8.4-.7.3-1.7-.4-3l-.7.4z"/>
40
+ </g>
41
+ <g fill="#fff" stroke="#000" stroke-width=".2">
42
+ <path d="M429.6 216.3s.1 1.7 1.4 2.7c0 0-.1-1.8.3-2.6 0 0-.7-.8-1.7-.1zm2.6 1s.3 1.6 1.2 2.3l.6-.1s.2-2 .5-2.2c.3-.2-1.3.7-2.3 0z"/>
43
+ <path d="m434.5 217.3 1 1.6 1.2-.7-.2-1.8s-.7-.2-2 .9zm4.7.3-1.3 1.1s-.7-.5-1.2-.5l.2-1.7s1-.7 2.3 1.1zm-9.3 16s-.2-2.4 0-2.5c0 0 1 .3 1.4 0 0 0 .5 1.8.4 2.6-.2.8-1.1.5-1.8 0zm6-2.4s-.1-2 .2-2.3c0 0 2 .3 2.4-.8l.7 2s-2.1-.3-3.4 1z"/>
44
+ <path d="M433.8 231.6s.3-2.1.7-2.2c0 0 1 .3 1.3-.1v2.6s0-1.1-2-.3zm-2.3.3s.5-1.9.8-1.9 1 .5 1.4.2v1.4s-1.6-.4-1.9 1.9l-.3-1.6z"/>
45
+ </g>
46
+ </g>
47
+ <g fill="#00a651" stroke="#000" stroke-width=".8">
48
+ <path stroke-width=".5" d="M461.7 270.4s5.2 4.9 3.9 9.2c0 0 3.3-7.3-.3-9.5-3.6-2-3.7-.5-3.6.3z"/>
49
+ <path fill="#964b36" stroke-width=".5" d="M455 275.1s-1.3 2 .2 3.3c0 0-1.7 2.4-.4 4.4 0 0-1 2.1-.8 4.4 0 0-.8 3.5 1 5.1 0 0 2 1 3 .1 0 0 1.7-2.6.6-5.3 0 0 1.2-2.3-.2-5.2 0 0 .4-1.6-.7-3.5 0 0 .7-1.2.1-2.2 0 0-2.5-2.7-2.8-1z"/>
50
+ <path stroke-width=".5" d="M456.5 269s-6.2-12-10.6-12.5c-4.4-.5-4.6-4.8-4.6-4.8s.5 2 4 2 10.2 5 11 8.7c.7 3.7 1.5 3.2 1.5 3.2l-1.3 3.4z"/>
51
+ <path stroke-width=".5" d="M456.5 268.1s2.3-15.1 12.2-15.4c9.9-.2 6.6.8 9-.8 0 0-6.6 3.4-10.7 4-4.2.4-7.6 8.5-7.4 10 0 1.5-2.3 4.4-3.4 3.4-1.2-1 .3-1.2.3-1.2z"/>
52
+ <path stroke-width=".5" d="M458.8 273.8s2.3-6 6.1-4c0 0-3-5.8-8.4-.8 0 0 2.4 3.3 2.3 4.8zm-7.5-6s3.2 13.4-1.8 17.5c0 0 .2-6.9-2.9-11-3-4.2 3-8.7 4.7-6.5z"/>
53
+ <path stroke-width=".5" d="M451.7 270.1s5.9 5.7 6.2 7.6c.4 1.8 1.8-5.7-1-7.8s-5.7-2.5-5.7-2.5l.5 2.8z"/>
54
+ <path fill="#964b36" stroke-width=".5" d="M440.8 285s.5 2.3 2 2.8c0 0 0 1.7 1.4 2.2 0 0-.7 1.5.4 2.4 0 0-.2 3 .8 3.5 0 0 2.7-.1 3.6-.9 0 0 .5-1.9-1-3.8 0 0 .3-1.8-1.2-2.8 0 0 .5-2.5-1.4-3.4 0 0-.3-2-1.4-3 0 0-2.2 3.1-3.2 3z"/>
55
+ <path stroke-width=".5" d="M443.7 282s-7.7-2.8-12 1.2c0 0 6.6 1 7.4 2.3.8 1.3 4.9-2.2 4.6-3.5z"/>
56
+ <path stroke-width=".5" d="m441.3 286.8-1.4-1c-.7-.6-7.2-2.3-8.1 4 0 0-2.4-6.3 1-7 3.5-1 6.2 1 8.5 4m-5-12.8s2.3 5.2 3.2 5.4c.9.3 1.5-.6 1.5-.6s-3.1-4.6-4.8-4.8zm-1.8-7.9s-2-6.6-4.4-4.8c-2.4 1.7-1.8 6.5-1.8 6.5s-4.7-5-2-8.8c2.8-3.9 8.2.4 8.2 7.1z"/>
57
+ <path fill="#964b36" stroke-width=".5" d="M439.9 279.8s0 1.3.9 1.6c.8.4 2.5 1 2.5.3s-1.3-3.7-1.8-3.3c-.5.4-1.4.4-1.6 1.4z"/>
58
+ <path stroke-width=".5" d="M438.4 272s-.3-5.7 3.5-7.9c0 0 .7.2 1.1-1 0 0-3 7.3-2.1 11l-.1.4"/>
59
+ <path stroke-width=".5" d="M439.1 265s6.8-14 15-9.1c0 0-8.6 1.7-11.7 7.9l-3.1 4.6-.2-3.4z"/>
60
+ <path stroke-width=".5" d="M435.5 270.1s-2-9.4-3.3-10.6c-1.2-1.3-3.3-2.6-5.9-.5 0 0 4.4-3.9 9-.6 4.7 3.2 3.7 8.4 3.7 8.4l-.5 6.5-3.1-2.9"/>
61
+ <path stroke-width=".5" d="M442.8 281.3s-8.3-15.7-13.7-4.5c0 0-1 2.9.1 4 0 0-3-2.3-1.6-7.8s10.5-3 13.2 1.5c2.6 4.5 3.3 6.8 3 7-.4.3-1-.2-1-.2zm23.3 4.5s6-12.4 9.5-6.8c0 0 1 2.8-.5 4 0 0-2.4-3-4.5.6-2.2 3.5-1.3 3.2-1.3 3.2s-2.2.6-3.2-1z"/>
62
+ <path stroke-width=".5" d="M475 283s3.3 1.7 2.2 5.2c0 0 4.4-8.4-1.6-9.2 0 0 1.1 2.7-.5 4zm.5-8.6s7.9 2.3 8.1 5.7c0 0 1.4-6.6-3.1-8.6 0 0-5.4 1-5 3z"/>
63
+ <path stroke-width=".5" d="M479 264c3.4-6.6 7.6 2.1 7.6 2.1s1.5-6.9-2.7-8.1c-4.3-1.3-7 14.7-7 14.7l-5 1s1.3-13.8 8.8-15h1"/>
64
+ <path stroke-width=".5" d="M473 268s-4.8-9.8-8-10.8 1.7-2.5 3.7-.6 5.8 4.3 5.4 9.3L473 268zm-5 13.4s1.4-6.6 5.2-8.6c3.8-2 7.3-1.3 7.3-1.3s-4.5 1-5.3 3.3c-.7 2.2-2 2.4-2 2.4l-5.1 4.2z"/>
65
+ <path fill="#964b36" stroke-width=".5" d="M466 285.8s-2 4-1.6 4.6c0 0-2.2 3.3-1.3 5 0 0 2.2 1.7 3.2 1 0 0 2.6-3.7 1.9-5.7 0 0 1.8-2.4 1.1-3.9 0 0-2.6.1-3.2-1z"/>
66
+ <path fill="#000" stroke="none" d="M455 278.6c.2.1 1.5.7 2.3.4l.6-.5-.5-.2c-.3.6-1.7.1-2.1-.1l-.2.4zm-.1 4-.2.5c.1 0 2.7.5 3.9-.6l-.4-.4c-1 .9-3.3.4-3.4.4zm-.7 4.4-.3.4s3 2.1 4.9-.2l-.5-.3c-1.5 1.9-4 .2-4.1 0zm-11.5.6.1.3c.1 0 2.6-1 2.8-2.9h-.3c-.1 1.6-2.5 2.6-2.6 2.6zm1.4 2.3v.3c.2 0 2.5-.2 2.9-1.8h-.3c-.4 1.3-2.5 1.5-2.6 1.5zm.5 2.4v.3c.1 0 2.7.1 3.6-1.3l-.3-.2c-.8 1.3-3.3 1.2-3.3 1.2zm19.7-1.7s1.1 1.2 2.4 1.1a2.3 2.3 0 0 0 1.7-.8l-.4-.4c-.4.5-.8.7-1.3.7-1 0-2-1-2-1l-.4.4z"/>
67
+ </g>
68
+ <g fill="#964b36" stroke="#000" stroke-width=".3">
69
+ <path d="M542 299.8a1.1 1.1 0 0 0-.3.3l.4-.3zm9.3-2.3c-.1-.2-.2-.1-.3-.2l-.4-.8h-.3l-.7-1.4a.4.4 0 0 0 0-.3 7.6 7.6 0 0 0 0-.4s-.2 0-.3-.2v-1.6l-.1-.5a2 2 0 0 1-.3-1.1v-1c.1-.4-.1-.6-.1-1l.1-.9v-5.4l-.1-1-.1-.4v-1.6 2.6l-.2-4.3-3.4-1.6s-.3 6.2-.2 7c0 .9.4 6.7.2 7.4l-.5 4.3s-1.6 1.2-2.2 2.4c-.7 1.3-.5 1.7-.7 1.7l1.5-.2-1.1.8a.7.7 0 0 1 .7.1l.2.2.2-.2c.3 0 .5.4.7.3l.4-.2.2-.4c.1-.1.3 0 .4 0h.7c.3 0 .6-.5.9-.7.2-.2.4-.3.7-.3.3 0 .6.3 1 .3.2 0 .3 0 .5-.2l.4-.6.8-.1.4.1h.6l.3.2.2-.4-.1-.4z"/>
70
+ <path d="M544.5 299.7h.6v.2a.2.2 0 0 0 .2 0l.3.2h.3l.4.1c.2.1.4 0 .6-.1.2-.2.3 0 .6.2.1.1.1.1.2 0l.1-.1.3-.1.3-.1.4-.2.4.2a.8.8 0 0 1 .2 0l.7-.5c.3-.2.5 0 .7 0h.3c.1-.1.2 0 .4 0 0-.1 0-.2.2-.3l.7.4c.1.1.7.2.6-.2 0-.4-.4-.1-.5-.4v-.6a.7.7 0 0 0-.3-.4c-.2 0-.2.1-.4 0l-.2-.6-.3.2c-.2 0-.2-.1-.3-.3-.3-.3-.4.2-.7.1-.2 0-.4-.5-.5-.7-.1-.1-.3-.5-.5-.4-.2.1 0 .5 0 .7h-.5c-.2 0-.2 0-.3.2-.2.4-.3.7-.7.6-.1 0-.3-.1-.4 0l-.5.2a1 1 0 0 1-.4 0l-.4-.4a.1.1 0 0 0-.2 0 8.7 8.7 0 0 0-.1-.2c-.2 0-.2 0-.3.3l-.1.5-.3.4-.4.1c-.2 0-.4.3-.4 0-.2-.4.3-1.1-.2-1-.1 0-.2 0-.3.2v.7c-.1.3-.7.8-.6 1 0 .3.4 0 .4 0l.2.4c.2.3.7-.4.7 0m-2.1-2.7v-.2l-.4-.1c-.2 0-.4.3-.5.4-.2.4-.2 1-.6 1h-.5v1s-.2 0-.2.2c-.1.4.2.2.4.2h1l.5-.1c.2 0 .4 0 .5-.2a2.2 2.2 0 0 0 .2-.4v-.4c0-.2.3-.1.3-.4.1-.7-.6-.2-.5-.9"/>
71
+ </g>
72
+ <g stroke="#000" stroke-width=".5">
73
+ <path d="M550.8 277.9c0 .9-.6 1.6-1.4 1.6-.7 0-1.4-.7-1.4-1.6 0-.9.7-1.6 1.4-1.6.8 0 1.4.7 1.4 1.6zm-4.5-2c0 .9-.6 1.6-1.4 1.6s-1.4-.7-1.4-1.6c0-1 .7-1.6 1.4-1.6s1.4.7 1.4 1.6z"/>
74
+ <path d="M548.7 276.5c0 1-.6 1.6-1.4 1.6-.8 0-1.4-.7-1.4-1.6 0-.9.6-1.6 1.4-1.6.8 0 1.4.7 1.4 1.6z"/>
75
+ <path d="M546.4 278c0 .9-.6 1.6-1.4 1.6-.8 0-1.4-.7-1.4-1.6 0-.9.6-1.6 1.4-1.6.8 0 1.4.7 1.4 1.6z"/>
76
+ <path d="M548.5 279.3c0 .8-.6 1.6-1.4 1.6-.7 0-1.4-.7-1.4-1.6 0-1 .7-1.7 1.4-1.7.8 0 1.4.7 1.4 1.6z"/>
77
+ </g>
78
+ <path fill="#00a651" stroke="#000" stroke-width=".5" d="M549.2 261.5s13.9-19.4 28.8.7c0 0 .1 2-1.3 4.2l-.3-1.7-1 .3-.2-1-1.6-.1.5-2.2-1.7 1.4.2-1.5-2 2 .3-4.3-2.2 3.7.3-2.5-.8 1.1-.4-1.5-.7 1.5-1-.7v1l-1.8-1.5-.6 2-.9-2.2-.2 1.5-.9-1.7-.1 1.9-2.9-1.3.6 1.8-1.3-1 .2 1-1.9-.4.2 1.1-2-.4.3 1-2.7-.3 1 1-.3.6s15-5 16 13.8l-2.7 1.3.8-1.5-.8-.5-2.3-1.7.7-2.4-.8.3-.1-1.4-.4.2-.9-1.3-.2.5-.6-1.7-.7 1.2-.3-2.8-1 1.8-.2-1-.3.6-1.3-1.5-.4 1-.5-.8-.3 1-1.4-1.4v1l-1-.7-.3.5-2.1-1.1-.1 1-1.2-1-.3 1s13.6 7.8 9.4 20.4l-.8 1.6-.2-4.2-1.3 2.2.9-4.9-.9 1-.1-2-1.1 2-.4-2.2-.5.6-.8-3.2-.6 1.3-1-3.6-.8 1.5-.5-3.1-.5 1.9-1.5-2.8-.2 1.1-.9-2.2-.5.7s-2.5-.1-3.3-.7c-.7-.7-2.8 3.7-2.8 3.7l.2-2.6-.9 1.8v-1.8l-1.6 5.3-.4-3.8-.8 3.3-.4-1-.3 1.3-.5-.5-.4 1.5-.8-.6v2l-.8-1-.6 3-.4-1.2v1.3l-.6-.7-.6 3-1-1.3v2.2l.3 1.6-1-.5.4 2.6s-3.9-7.2.8-14.2c4.6-7 10.9-9 10.9-9l-.7-.6v-.6l-3.8 1.9v-1.1l-1 .8-.2-1.2-.6 1.1-.1-.5-1 1.4-.4-2-.6 2.4-.6-1.7-1.3 3.5V270l-1 2.8-.4-3-.7 3.4v-3l-1.2 3-.7-3-.5 3-.8-2.3-.7 3.4-1.2-3-.6 4.5-.7-1.8-.2 3.3-.8-2 .8 4.2-1-1.6.3 2.6-1.6-2.9v3.4l-.8-1.1-.4 1.3s-.3-13 8.6-15.6c8.9-2.5 14.6.8 14.6.8l-3.4-2.8.4-.9h-1.2l.5-1-2.7.1.8-1-2 .3v-.6l-1.3 1 .5-1.2-1.7 1.2-.1-1.7-1 1.4-.4-1.5-4 4 1-4.1-.7.9-.1-1-1.1 1.8-.3-1.2-.5 1.5-.4-1.8-.8 1.8-1-1.6-.3 2.1-.6-1.1-.8 1.6-1-1v1l-2-.9.4 1.5-1.5-1.2-.4 2-.8-1-.7 2.5-.6-2.4-.6 1.9s7.8-20.2 27.6-7c0 0 2.2 2.1 2.7 3.6s.1.2.1.2l-.4-13.9.8 6 .5-2-.1 3 2-4.3s-2.4 7.2-1.5 9.9c0 0 .9-8.4 3.9-9.4l-2.8 6 .9-.1-.6 1.2h.7l-.9 2-.5 1 .5 1 .8-.7z"/>
79
+ <path d="m547.1 269.6.4.4s1.3-1.4 3.4.4l.3-.4c-2.5-2.1-4-.4-4-.4zm-.6-6.8v.5l.9-.4-.7 1.2 1.5-.5-1.8 2.3.4.3 2.9-3.7-1.8.6.8-1.3-1.6.6.3-1.9h-.5l-.4 2.3z"/>
80
+ <path d="m543.9 263 .6 1.3-1-.4 2.9 5.2.4-.5-.6 1.5.5.2 1.2-3.2-.4-.3-1 1.3-1.8-3.1.8.3-.8-1.7 1.1.6v-1.9h-.5v1l-1.8-1.1.4.8zm-1.9 6.4.2.5c.8-.3 1.5-.4 2-.2.5.3.7.9.7 1l.5-.2s-.2-.9-1-1.2c-.6-.3-1.4-.3-2.4.1zm2.3 5.4-.5-2.8h.6l.4 2.7zm3.8-.4-.7-2.2.5-.1.7 2zm1.4 1.5-.5-2.1.5-.1.6 2.1z"/>
81
+ <path fill="#00a651" stroke="#000" stroke-width=".5" d="M442.6 340.2s-2.4-1-3.5-.2c-1 .7-.9 1.9-1.8 1.8 0 0 3.6.8 4.3-.1l1-1.2m.4.7s-1.6 2-1 3.3c.5 1.2 1.7 1.3 1.4 2.2 0 0 1.5-3.3.8-4.3s-1-1.1-1-1.1m-2.8-5.8s-2.5.8-2.8 2c-.2 1.4.6 2.1-.1 2.7 0 0 3.2-1.8 3.1-3v-1.5m1.2.7s1.2-2.3.5-3.4c-.8-1.2-2-1-1.8-2 0 0-1 3.5 0 4.4l1.1 1m-2.2-.9s0-2.6-1-3.2c-1.2-.7-2.2-.1-2.5-1 0 0 .7 3.6 1.8 4l1.5.3m4.4 4.2s2.7-1 3 2c.2 3-.2 2-.2 2s-1.4-3.2-3-3.7l.2-.3z"/>
82
+ <path d="m443 341.3.2 2.2h.4l-.3-2.2 1-4.9h-.4l-1 4.9z"/>
83
+ <path d="m440.5 340.6-.1.3c1.3.5 3-1 3.1-1l-.2-.3s-1.7 1.3-2.8 1zm3.4-2.9-6-3 .2-.5 6 3z"/>
84
+ <path d="m439.5 337-.4-.4 1.2-1.2.4.4zm2.1-.6-1.3-2.8.5-.2 1.3 2.8zm1.8 3.4v.6c1.7-.1 2 1 2 1l.6-.2c0-.3-.7-1.5-2.6-1.4z"/>
85
+ <path fill="#fff" stroke="#000" stroke-width=".7" d="M471.2 341c2-1 2.4-5 2.4-5-.5 1.4-4.2 2.9-4.2 2.9 2.7-1.7 6-9.4 6-9.4-.8 2.7-8 5-12.6 7.6-4.6 2.6-2.2 10-2.2 10-1.3-.9-3.8-4.8-4.3-8.3-.5-3.5-1.8-4.9-5-5.3-3.1-.4-5 3.2-5 3.2l-4.7 2.4 4.8.2s3.4 1.1 3.4 3.8c0 2.6-3 13.3 2 19.3 3.3 4.1 16 6.5 16 6.5"/>
86
+ <path fill="#fff" stroke="#000" stroke-width=".7" d="M461.9 349.3s1-4.8 4.1-4.6c3.1.2 4-3.6 5.9-4.1 1.9-.6 11.5-3.2 12.5-7.8 0 0-.9 7.6-9.7 11.4 0 0 7.1-2.3 8-3.9 0 0-3.2 6.8-10.9 7.9 0 0 7.2-.6 8.2-2.5 0 0-3.2 4.2-8.5 4.8 0 0 5 2 6.2.3 0 0-2.7 3.2-6 3.4l1 .2s-3.2 3.8-6.7 1.3-3.6.6-3.6.6"/>
87
+ <path fill="#fff" stroke="#000" stroke-width=".7" d="M469 356.5s4.1 6.8 4.5 10.4c0 0 7.8 8.5 10.7 9 0 0-1.4.6-4-1.5 0 0 2.2 2.2 2.6 2.3.4 0-1.7-.2-2-.8a6 6 0 0 0 1.4 1.5l-.5-.2s-1-.1-1.6-.5c-.5-.4-.1 1-.1 1s-1.2-.3-1.6-.7c-.4-.4.1.9.1.9l-1-.3-.8.5s0 .5-.5 0c-.5-.3-1.4 0-1.4 0s-.6.6-1 .2c-.3-.4-1.5 1.6-1.5 1.6l-5-12.3"/>
88
+ <path d="m473.9 378.7-6.4-12.2.6-.4 6.4 12.3zm5.6-.8-11-12.3.6-.5 11 12.3zm2.5-1L469.5 365l.5-.5 12.5 11.7z"/>
89
+ <g transform="translate(-96.9 97.5) scale(.66486)">
90
+ <path d="M823.4 360.8s-1.2-2.2-2.3-1.3c-1 .8-1.6 1-1.8.9 0 0 1 0 1.7-.5.6-.6 1.6-.3 2.4 1zm-6.6-1 .7 1.4-.8 2.3.6.2.7-2.5-.7-1.6-.5.2z"/>
91
+ <path d="M823.2 360.5s-1 1-2.2.8l-1.3-.3h1.8c.7 0 1.6-.3 1.7-.5z"/>
92
+ <path d="M822.9 360.7s-1.2-1.2-2-.8c0 0 1.4-.5 2.2.7l-.2.1z"/>
93
+ <path d="M822.7 360.5s-1.3.9-2.7 0l-.1-.2h.2s1.7.7 2.6.2z"/>
94
+ <circle cx="821.6" cy="360.3" r=".4"/>
95
+ </g>
96
+ <path d="M450 359.6s-.7 1.2-.3 2c.3.7 2 1 2.1 2 .2 1 .8 1 1.5 1l.9-.3s-3.1-1.6-4-4.3l-.2-.4z"/>
97
+ <g fill="#964b36" stroke="#000" stroke-width=".5">
98
+ <path stroke-width=".3" d="M549.4 334.8s5.6-7.4 10.6-5.5c5 2 8.1 3 8.1 3s.1 4.9-2.5 4.9-5.2-5-7.6-3.5a13 13 0 0 0-4.5 4.2c-.1.7-6.3.8-4.1-3.1z"/>
99
+ <path d="M528.2 370.4s-1.6 1.6-.9 2c.7.4 2.1 0 2.1-.6s-1-1.6-1.2-1.4z"/>
100
+ <path d="M527 372s-3-1.7-5.2 2.2c-2.3 3.8-4.1 10.1-5.4 11-1.3.8 12.8-6.2 13-9.2 0 0 .9-3.8-.6-3.7-1.5 0-1.6.2-1.9-.4z"/>
101
+ <path stroke-width=".3" d="M527.3 372.4s-3 .7-3.6 4.9c-.6 4.2-4.7 6.3-5 6.5m49.4-51.6s-4.4 1.6-3.7 4.7"/>
102
+ </g>
103
+ <path fill="#fff200" stroke="#000" stroke-width=".3" d="M533.7 341.3s.2-10.6 8.9-10.2c1.6.2.8 2.1.8 2.1s2-1.3 2.8.8c0 0 2.7-1.2 3 1.5 0 0 3-.4 2.6 2 0 0 2-.5 2 1.2 0 0 2.3-.9 2 1.5 0 0 2.6-1.7 2.3 1.4 0 0 2.6-1.9 3.5 1.2 1 3.2-2.6 9.8-6.1 11.5"/>
104
+ <path d="M557.9 342s1.1 8.2-3.5 11.3l.1.2c4.9-3 3.7-11.5 3.7-11.6h-.3zm-5.7 9 .2.2c3-2.9 3.7-10.6 3.7-11h-.3s-.7 8-3.6 10.8zm-2.7-1.9h.3a26 26 0 0 1 4.1-10.3l-.2-.1s-3.8 5.5-4.2 10.4zm-2.2-1.4h.3c.5-5.7 4.4-10 4.4-10.1l-.2-.2s-4 4.5-4.5 10.3zm-3-2h.3c.3-6.7 4.8-10 4.8-10l-.2-.3s-4.6 3.4-5 10.4zm-2.8-1.6h.3c-.2-6.2 4.5-10 4.6-10l-.2-.2s-5 3.8-4.7 10.2zm-5-2.3h.3a10.2 10.2 0 0 1 6.8-8.4v-.3a10.5 10.5 0 0 0-7.1 8.7z"/>
105
+ <path fill="#00a651" stroke="#000" stroke-width=".3" d="M528.6 354.2s-1.5-9.9 4.4-13c0 0 1.1-.2 1.7 1.2 0 0 3.1-1.3 3.2 1.3 0 0 1.6-1.2 2 .5 0 0 3.3-.7 2.7 1.8 0 0 2.8-.8 2.5 1.6 0 0 2.8-1 2.4 1 0 0 3-.6 2.2 1.8 0 0 3.7-.4 2.6 2.1 0 0 2.7-.7 2 1.4 0 0 3.6.7 2 3a24.1 24.1 0 0 1-9.8 7"/>
106
+ <path fill="#00a651" stroke="#000" stroke-width=".3" d="M525.4 364.1s-2.4-8.2 2.2-10.3c0 0 .9-.2 1 .6 0 0 1-1.3 1.8-.1 0 0 2.3-1.1 2.9.6 0 0 1.5-1.3 2.3.6 0 0 1.5-.6 1.5 1 0 0 2-1 2 1 0 0 2-.8 1.5 1.2 0 0 3 .5 2.1 1.9 0 0 2.7.7 1.7 1.8 0 0 2.8-.3 1.3 1.6 0 0 2.2-.7 1 1.7-1.3 2.4-5.2 5-8 5.4"/>
107
+ <path fill="#00a651" stroke="#000" stroke-width=".3" d="M528.3 370.6s-5.1-5-2.7-6.4c0 0 1 .3 1.5 1.4 0 0 1.2-1.8 2 0 0 0 1.8-.6 1.8.7l1.4 1s1.7-.1 1.4 1c0 0 1.9-.3 1.8.7 0 0 1.6.1 1.5 1.2 0 0 2.8.5 1.5 1.9 0 0-4.8 1-8.3-.4 0 0-1.7-.6-1.9-1.1z"/>
108
+ <path d="M545.9 362.4v.3a36 36 0 0 0 8.6-8.7l-.3-.2c0 .1-5.4 7.5-8.3 8.6zm-1.8-1.3.2.3c2.6-1.5 7.9-8.5 8-8.8l-.1-.2c-.1.1-5.5 7.2-8 8.7zm-1.5-.6.2.2a48 48 0 0 0 7-10.3l-.2-.1s-4.2 7.9-7 10.2zm-1.3-1.8h.3c.5-3.8 6-9.9 6-10l-.3-.1c-.2.2-5.5 6.2-6 10.1zm-10.9-4.7h.3c-.4-5.5 4.1-11.5 4.2-11.5l-.3-.2s-4.7 6.2-4.2 11.7zm2.9.5h.3c-.8-4.4 4.4-10.6 4.4-10.7l-.2-.2c-.2.3-5.3 6.4-4.5 10.9zm4.4 1.6h.3c-.2-5 4.6-10 4.7-10l-.2-.3c0 .1-5 5.2-4.8 10.3zm-10.5 9h.3c-1.8-4.7 1.2-10.6 1.3-10.6l-.3-.2s-3.1 6.1-1.3 10.9zm2 .4.3-.1c-1.6-4.7 1-11 1-11l-.2-.2s-2.7 6.5-1.1 11.3zm8.3 4.7v.2c5-1.7 8.3-6.3 8.3-6.3l-.3-.2s-3.2 4.5-8 6.3zm-1-1.1v.3c4-1.8 7.7-6.8 7.7-6.8l-.2-.2s-3.7 5-7.5 6.7zm-1-.4.2.3c3-2.3 7-8 7-8l-.2-.2s-4 5.7-7 7.9zm-5-2.9h.4a21 21 0 0 1 2.5-10.9l-.3-.1s-3.2 6-2.5 11zm2.2 1.4.2.2c3.2-2.9 4.3-10.6 4.3-11h-.3s-1 8-4.2 10.8zm2.2.8.2.3a17 17 0 0 0 5.7-9.5h-.3s-1.2 6-5.6 9.3zm.5-13.4v.9l-3.4 11 .3.1 3.4-11c-.5-5.4 4.2-11.3 4.3-11.3l-.3-.2s-4.3 5.3-4.3 10.5z"/>
109
+ <path d="M539 357.3c0 .2-1.1 7.7-5.2 10.5l.2.3c4.2-2.9 5.2-10.3 5.2-10.7 1.8-2.1 6-9.7 6-9.7l-.2-.2s-4.2 7.6-6 9.8zm-12 8.3c0 .1.6 4 1.4 5.2l.3-.1c-.8-1.3-1.5-5.1-1.5-5.2l-.3.1zm1.9 0-.1 5.3h.3v-5.3h-.2z"/>
110
+ <path d="m529 371 .3.1c1.3-2.8 1.7-4.8 1.7-4.8h-.3s-.4 1.9-1.7 4.7zm.3.1.2.3a6.6 6.6 0 0 0 3-4h-.3s-.6 2.4-2.9 3.7zm.5.2v.3c2.4-.2 4-3.1 4-3.3h-.2s-1.6 2.8-3.8 3z"/>
111
+ <path d="M530 371.5v.3c3.9-.3 5.6-2.6 5.6-2.7l-.2-.1s-1.7 2.2-5.4 2.5z"/>
112
+ <path d="M530.3 371.5v.3c.1 0 5 1.1 6.7-1.4l-.3-.2c-1.5 2.4-6.4 1.4-6.4 1.3z"/>
113
+ <path fill="none" stroke="#000" stroke-width="2.8" d="M420.9 193.2v136.4c0 44.6 80.6 71 80.6 71s80.5-26.4 80.5-71V193.2z"/>
114
+ </g>
115
+ <path fill="#012169" d="M0 0h320v240H0z"/>
116
+ <path fill="#FFF" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"/>
117
+ <path fill="#C8102E" d="M212 140.5 320 220v20l-135.5-99.5zm-92 10 3 17.5-96 72H0zM320 0v1.5l-124.5 94 1-22L295 0zM0 0l119.5 88h-30L0 21z"/>
118
+ <path fill="#FFF" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
119
+ <path fill="#C8102E" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
120
+ </svg>
@@ -0,0 +1,90 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-fk" viewBox="0 0 640 480">
2
+ <defs>
3
+ <linearGradient xlink:href="#a" id="c" x1="444.4" x2="470.9" y1="592.2" y2="577.1" gradientTransform="matrix(-1.08448 0 0 1.26674 909.5 -414.7)" gradientUnits="userSpaceOnUse"/>
4
+ <linearGradient xlink:href="#a" id="g" x1="851.8" x2="646.2" y1="369.9" y2="369.9" gradientTransform="matrix(.85733 0 0 .9624 -161.5 .3)" gradientUnits="userSpaceOnUse"/>
5
+ <linearGradient xlink:href="#a" id="d" x1="458.2" x2="520.5" y1="562.5" y2="552.8" gradientTransform="matrix(-1.01941 0 0 1.3554 909.5 -414.7)" gradientUnits="userSpaceOnUse"/>
6
+ <linearGradient xlink:href="#a" id="e" x1="472.4" x2="445.3" y1="578.7" y2="580.2" gradientTransform="matrix(1.08448 0 0 1.26674 49.7 -414.7)" gradientUnits="userSpaceOnUse"/>
7
+ <linearGradient xlink:href="#a" id="f" x1="518" x2="456.4" y1="553.7" y2="558.1" gradientTransform="matrix(1.01941 0 0 1.3554 49.7 -414.7)" gradientUnits="userSpaceOnUse"/>
8
+ <linearGradient id="a">
9
+ <stop offset="0" stop-color="#a43907"/>
10
+ <stop offset="1" stop-color="#fff"/>
11
+ </linearGradient>
12
+ <linearGradient xlink:href="#a" id="h" x1="388.5" x2="677.4" y1="507.2" y2="508.8" gradientTransform="matrix(.88927 0 0 1.54542 50.4 -413.6)" gradientUnits="userSpaceOnUse"/>
13
+ <linearGradient xlink:href="#a" id="i" x1="579.8" x2="556.8" y1="504.9" y2="505.9" gradientTransform="matrix(.91096 0 0 1.52008 49.7 -414.7)" gradientUnits="userSpaceOnUse"/>
14
+ <linearGradient xlink:href="#a" id="j" x1="581.4" x2="558.9" y1="512" y2="514.3" gradientTransform="matrix(-.88927 0 0 1.54542 908.8 -413.6)" gradientUnits="userSpaceOnUse"/>
15
+ <linearGradient xlink:href="#a" id="k" x1="552" x2="589.8" y1="517.9" y2="503.9" gradientTransform="matrix(-.91096 0 0 1.52008 909.5 -414.7)" gradientUnits="userSpaceOnUse"/>
16
+ <linearGradient xlink:href="#a" id="b" x1="444.4" x2="470.9" y1="592.2" y2="577.1" gradientTransform="matrix(.85733 0 0 .9624 -162.4 -.6)" gradientUnits="userSpaceOnUse"/>
17
+ </defs>
18
+ <path fill="#012169" d="M0 0h640v480H0z"/>
19
+ <path fill="#012169" fill-rule="evenodd" d="M0 0h400v200H0z"/>
20
+ <path fill="url(#b)" fill-rule="evenodd" stroke="#fff" stroke-width="10" d="M412.9 308.9a11.3 12.7 0 0 0-1.7 0c-3 .6-7.6 11.3-10 17.6-4.1 5.4-6.2 9.6-7.8 12.7-.7 1.2-1.7 2.6-1.4 4.2-6 1.6-6.3 7.4-6.3 9.6 0 2.5.7 3.7.7 3.7l3.6 7.5v.1c3.8 9 9.4 20.9 12.7 21.8 4.4 1.5 16-3.3 24.8-11.7a140.6 157.8 0 0 0 53.2 12.1c20.4 0 38.7-5.5 53-12.1 8.8 8.4 20.4 13.2 25 11.7 3-1 8.7-13 12.6-21.8l3.5-7.6s.7-1.2.7-3.6c0-2.2-.3-8-6.3-9.6.3-1.6-.6-3-1.3-4.3-1.7-3.2-3.8-7.4-7.7-13-2.6-6.2-7.2-16.7-10-17.2-4.2-.8-13 1.5-13 2.4v.4l-17.7 18.6c0 .5.9 14 4.3 26a126 141.5 0 0 1-43.3 8.2c-17 0-31.5-3.4-43.2-8.3a116.6 130.9 0 0 0 4.3-26L424 311.8v-.4c0-.7-6.8-2.5-11.1-2.5zm4.4 23c2.3 0 4.6 2.2 6.5 4.4l-.1 1.3a67.5 75.7 0 0 1-2.8 10.2 73.6 82.6 0 0 1-12.2-9.9c1.9-2.3 5-5.4 8.2-5.8h.4zm126.6 0h.4c3.3.6 6.3 3.7 8.3 6a73.4 82.4 0 0 1-12.3 10 67.1 75.4 0 0 1-2.8-10.3 14.6 16.4 0 0 1-.2-1.3c2-2.3 4.3-4.3 6.6-4.3zm-142.4 26.4c2.4 2 5.4 4.4 9.1 6.8a10.5 11.8 0 0 1-3.2 1.6c-1.6.4-3.1.3-4.7 0a15 16.8 0 0 1-1-5.6 60.3 67.7 0 0 1-.2-2.8zm158.2 0-.1 2.8a15 17 0 0 1-1 5.5 10.3 11.5 0 0 1-8-1.5c3.7-2.4 6.8-4.8 9.1-6.8z"/>
21
+ <path fill="url(#c)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M426.2 339.6s-6.1-11.1-11.1-10.2c-5.1.7-10 7.8-10.2 8.2a44.5 52 0 0 1-7.5-9.5c.3-.4 7.8-20.9 12-21.8 4-.9 12.7 1.5 12.7 2.3z"/>
22
+ <path fill="url(#d)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M439.8 327.7c0 .8-2.2 30.2-10.9 40.4-8.6 10.3-23 16.6-28.2 15.1-5-1.6-16.5-31.3-16.5-31.3s12.2 14.2 21.3 11.8c9.1-2.3 14.6-20.1 16.3-28.9 1.7-8.6.3-25.7.3-25.7l17.8 18.6z"/>
23
+ <path fill="url(#e)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M532.9 339.6s6.2-11.1 11.2-10.2c5 .7 9.8 7.8 10.2 8.2a44.5 52 0 0 0 7.5-9.5c-.4-.4-7.9-20.9-12-21.8-4.1-.9-12.8 1.5-12.8 2.3z"/>
24
+ <path fill="url(#f)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M519.3 327.7c0 .8 2.2 30.2 10.9 40.4 8.7 10.3 23 16.6 28.2 15.1 5-1.6 16.6-31.3 16.6-31.3s-12.3 14.2-21.4 11.8c-9-2.3-14.5-20.1-16.2-28.9-1.8-8.6-.4-25.7-.4-25.7l-17.8 18.6z"/>
25
+ <path fill="url(#g)" fill-rule="evenodd" stroke="#000" stroke-width="1.5" d="M401.2 326.2c-4 5.5-6.1 9.8-7.9 13-1.7 3.2-.6 7.7 3.2 14 4.3 6.7 39 33.4 84.1 33.4 45.2 0 79.8-26.6 84-33.4 4-6.4 5-10.8 3.3-14-1.7-3.2-3.9-7.5-7.9-13 0 8.3-28.7 38.5-79.4 38.5s-79.4-30.2-79.4-38.5z"/>
26
+ <path fill="url(#h)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="m557.7 378.8 7.8-15.1-3.9-3.2c-1 3.8-5.5 5.1-6.3 10-.7 4.7 3 9.4 2.4 8.3z"/>
27
+ <path fill="url(#i)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M564.8 374.5s1.4-6.8-3-7.6c-4.4-.8-6.8 3.8-6.1 2 .6-2 3.2-4 3.7-10.7.3-6.7-.4-10.3-.4-10.3s1.8-8.7 8.8-7.5c7.2 1.3 7.5 7.6 7.5 9.9a9 9 0 0 1-.6 3.5z"/>
28
+ <path d="m539.2 351.7 1.5 2.8 1-.6-.7-2 .1-.3 1.7-1.2 4.4 8.7v.5l-1 .7.5.8 4.2-3-.4-.8-1 .6h-.3l-4.4-8.8 1.6-1.2h.4l1 1.6 1-.7-1.5-2.8-8 5.7zm-10.5 6.7.4.8.9-.4.3.1 3.9 8.9-.1.4-.8.6.3.8 4.1-2.5-.3-.8-.9.4h-.4l-1.8-4.3 4.3-2.4 1.8 4v.5l-1 .6.4.9 4.2-2.5-.4-.8-.9.4-.3-.2-3.8-8.8v-.4l.8-.6-.3-.8-4.1 2.5.3.8 1-.5.3.2 1.5 3.6-4.2 2.5-1.6-3.7.2-.4.8-.5-.4-.9zm-2.4 7.6.2.8 1.2-.3.4.1.9 3.7-.8.4c-2.5.8-4.4-.5-5.3-3.7-.8-3.2.2-5.6 2.5-6.4a3.5 4 0 0 1 1.4-.1l.3.2.8 1.7 1.2-.4-.7-3c-1.3 0-2.5.2-3.5.6-3.6 1.3-5.2 4.5-4.3 8.2 1 3.7 3.9 5.4 7.2 4.3a11.3 12.7 0 0 0 3.4-2L530 366l.2-.4.9-.4-.3-.9zm-9.7 10.3 4.7-1.7-.3-.9-1 .2-.3-.1-2.6-9.6.1-.3 1-.5-.2-.8-4.7 1.6.3.9 1-.3.4.2 2.5 9.5-.2.4-1 .4.3.9zm-25.5 4.6 8.3-.8-.3-3.4-1 .1-.2 2-.2.3-3.5.4-.4-4.9 2-.2.3.3.2 1.3h1l-.4-4.4h-1v1.4l-.2.4-2 .1-.4-4.4 3.1-.3.2.2.4 1.7 1.1-.1-.2-3-7.8.8v.9h1l.3.3.7 9.9-.1.3-1 .2v1zm-12.4-12.3v1h1l.2.3.1 9.9-.2.3-.9.2v.8h4.4v-.9h-1l-.2-.4V375h4.4v4.6l-.2.3-.9.1v1h4.4v-1h-1l-.1-.4-.2-10 .2-.3h1v-1h-4.5v1l1 .1.2.3v4l-4.3.1-.2-4 .3-.3h.9v-1zm-9.4-.3v3.3h1l.3-2 .2-.3h1.9v10.2l-.3.4h-1v1h4.6v-.9l-1-.1-.3-.4.1-10h1.8l.3.2.3 2h1v-3.3zM455 378.9l8 .4.2-3.3h-1l-.3 1.9-.2.2-3.5-.1.2-5 1.9.2.2.3.2 1.4h.8l.2-4.3h-.9l-.2 1.2-.2.3h-2l.2-4.6 3 .2.2.2.1 1.7h1.1v-2.9l-7.5-.4v.9l1 .2.1.3-.4 9.9-.2.3h-1v.9zm-18.6-5.4 4.4 1.6.2-.8-1-.5v-.4l2.5-9.5.3-.2 1 .3.2-.8-4.3-1.7-.2.9.9.4.2.4-2.7 9.4-.2.3-1-.3zm-7.6-3.3a8.4 9.4 0 0 0 2.6 1.6c2.4.8 4.3-.2 4.8-2.2a3 3.5 0 0 0-.5-3.2l-1.8-2c-.6-.9-.8-1.6-.6-2.5.3-.9 1.1-1.4 2.2-1 .4.2.8.4 1 .7v.3l-.2 2 1 .3.8-2.8a8 9 0 0 0-2.5-1.7c-2-.8-3.8.3-4.4 2.2a3.2 3.5 0 0 0 .4 2.8c.4 1 1 1.5 1.5 2 .9 1 1.2 2 1 2.9-.3 1-1.2 1.5-2.4 1a4 4.5 0 0 1-1.2-.8l-.1-.3.4-2.2-1.1-.4zm-9.8-4.6 7.4 4 1.2-3-1-.5-.9 1.7-.3.1-3.1-1.8 1.8-4.3 1.8 1v.3l-.3 1.3.8.5 1.6-4-.8-.4-.7 1.1-.3.2-1.7-1 1.6-4 2.7 1.5.1.3-.4 1.6 1 .5 1-2.6-6.8-3.9-.4.8.8.6.1.4-3.6 9h-.3l-.9-.3zm-1.1-15-3.7-2.9-.5.8.7.7.1.4-4.6 8.2-.4.1-.7-.5-.5.8 3.6 2.8c1.4 1 2.5 1.5 3.6 1.4 1.6-.2 3-1.2 4-3 1.8-3.4 1.3-6.6-1.6-8.8zm-1.6 0 .8.6c2 1.5 2.2 3.7.5 6.6-1.7 3-3.5 3.6-5.4 2l-.8-.4 5-8.7zm29.3 13-.1.8.9.3.1.4-1.7 9.7-.3.2h-1v.8l4.1 1 .2-.8-1-.4-.1-.3.7-4.1h.3c1.5.4 1.8 1.3 1.8 3.2.1.9.1 1.7.8 2.7.3.4.7.8 1.4.9a10.1 11.4 0 0 0 1.5.2l.1-.8h-.1c-1-.3-1.5-.7-1.5-1.8-.2-1 0-2-.4-3a2.6 2.9 0 0 0-1.3-1.4c1.7 0 2.7-.9 3-2.5.4-2-.5-3.5-2.9-4l-4.4-1.1zm3 1.7.6.2c1.4.4 2 1.4 1.7 2.9-.3 1.7-1.2 2.3-2.8 1.8l-.5-.1.9-4.8zm54.2 1 .1 1h1l.3.2 1.4 9.8-.2.3-1 .3.2.8 4.5-.8v-1l-1.1.2-.3-.3-.6-4h.3c1.6-.5 2.2.2 3 1.9.3.8.5 1.6 1.5 2.2.4.3 1 .4 1.8.3a12 13.6 0 0 0 1.6-.5l-.1-.9h-.2c-1.1.3-1.7 0-2.2-.9-.4-.8-.7-1.8-1.3-2.5-.4-.5-1-.8-1.8-.8 1.7-.8 2.5-2 2.3-3.7-.3-2-1.7-3-4.2-2.5zm3.5.5h.7c1.6-.4 2.5.2 2.8 1.8.2 1.6-.5 2.6-2.2 3h-.6l-.8-4.8z"/>
29
+ <path fill="url(#j)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="m401.5 378.8-7.8-15.1 3.9-3.2c1 3.8 5.5 5.1 6.3 10 .7 4.7-3 9.4-2.4 8.3z"/>
30
+ <path fill="url(#k)" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M394.3 374.5s-1.4-6.8 3-7.6c4.4-.8 6.8 3.8 6.2 2-.7-2-3.3-4-3.7-10.7-.4-6.7.3-10.3.3-10.3s-1.7-8.7-8.8-7.5c-7.1 1.3-7.5 7.6-7.5 9.9 0 2.2.7 3.5.7 3.5z"/>
31
+ <path fill="#0072c4" fill-rule="evenodd" stroke="#fff" stroke-width="3.9" d="M480.5 356.1s-82-27-81.4-129.4l.6-135.6H561l.6 134.8c.5 102.4-81.4 130.1-81.4 130.1z"/>
32
+ <g fill-rule="evenodd">
33
+ <path fill="#bcbcbc" d="m410.3 123.6 2-2c1.3-.8 2.4-1.7 3.7-2.4 1-.6 3-1.1 3.7-1.6a9.2 10.3 0 0 0 3-2.8c.2-1.7.5-3 .5-5 1.3-1 2.4-1.6 3.6-2 1.7-.6 2-1.4 3.8-1.7 1-.4 2.8-.4 4.4-.4 1.6 0 2.7 1.4 4.2 1.6 1.8.8 2.6 1.4 4.1 2.8.7 1.2 1.3 2.2 2.6 3 1.1.6 2.2 1.6 3.4 2 1.5.9 2.7 1.4 3.8 2.8 1 .8 1.4 2 2.3 2.7a26.5 29.7 0 0 0 3.4 2.8c1.5 1.1 3 2 5.2 1.7 1.3 0 2.6-.3 4 0 1.8 0 3.4 0 4.8.5 1.8 0 3.2.2 4.8.4 1.5.2 3 .3 4.7.3 1.5.5 3 .4 4.8.4h9.5c1.7 0 3.4.1 4.7.4a37.4 42 0 0 0 4.7-.4c1.9 0 3.3-.3 5-.4h5.8c1.5.5 3.4.8 4.4 1.7 1.4.4 2 1.1 3.4 1.5 1 .6 2.6 1.6 3.4 2.8a18.1 20.3 0 0 1 2.7 4.4c1 1.5 1.3 3.3 2 5.2.4 1.8.7 3.5.7 5.5.4 1.7.3 3.6.3 5.6-.3 1.8-.4 3.8-1 5.5 0 2-.4 3.7-.7 5.2-.2 1.6-.6 2.7-.7 4.7v5.6c0 1.8-.4 3.2-.6 5.1a52 58.4 0 0 0-2.4 6 10.8 12 0 0 0-2.7 3.2c-.7.5-1.1 1.3-1 1.6 1.4.5 1 1.6 1 3.5l.7 5.2c.1 2 .5 3 1 4.4.6.8.7.4-.7.4-1 .8-2 .4-2.3-1.2a8.8 9.9 0 0 1-1.4-4.4c-.2-1.8-.5-3.6-1-4.8-.2-2.2-.7-2.2-2.7-2.4-1-.9-2.2-1.1-4-1.1-2 0-2-.2-2 2v5.6c-.4 1.6-1 2.8-1.5 4.3-1 .8-1.4 2.2-2.7 3.2-.5 1.8-1.4 2-3 2.4l-2-2.8c1-1.8 1.7-2 2.3-4 .8-1.6 1.2-2.6 1.7-4-.7-1.2-1.3-1.8-2-3.5a19.3 21.6 0 0 1-1.7-4.4c-1.1-.4-2.9-.5-3.7-1.2-1.7-.4-2.1 1.7-4 1.7h-4.8c-2.1 0-2.6 1.2-4.4 1.1-.5.2-1.8 0-3.7 0-1.5.6-3.2.4-4.8.4-1.7 0-3-.5-4.4-.8-1.5-.5-3-1-4.7-1.2-2 0-2.7.2-4 1.2-1 .7-2.6 2.3-3.7 3.2-.5 1.3-.8 3.5-1.5 5.1-.3 1.7-.9 2.6-1.2 4a13.5 15.1 0 0 0-1 4.8c-.2 2.6-.7 2.3-2.1 1.6-.6-1.2-1.5-2.3-2-3.6.2-2 .7-3 .7-5.1-.4-1.7-1.1-1.5-2-.5 0 2.1 0 3.7-.8 4.8a4.4 5 0 0 1-2 3.1c-.5 1.5-1.6 2.3-2.7 2.8-.2 0 0-.5 0-1.6-.8-1.7 0-3.3 0-5.5 0-2-.2-3.3.4-5.1 0-2-.8-3.8-1-5.2-.7-1.5-1.1-2.2-2.8-2.8-1.2-.6-3-1.2-3.7-2.5a7 7.9 0 0 0-3.1-2.7c-1.5-.6-2.3-1.2-3.4-2-1-1.3-1.9-1.8-2.3-3.5-.7-1.2-.8-3.5-1.3-5.2a15.9 17.8 0 0 0-1-4.7 17.8 20 0 0 0-1-4.8l-1.1-5.2c0-1.9 0-3.8-.4-5.5v-5.6c-.2-1.7-.3-4-.6-5.2 0-2.1-.3-3.3-.8-4.8-.7-1.4-.7-2-2-2.3-.8 1.2-2.2 1.8-4 2-1.2-.3-3-.6-4.4-1.2-1.4-.4-2.2-1-3.3-1.7a31.7 35.5 0 0 0-2.1-3c-.2-2.1-.6-3.2-.7-5.3 0-1.5 0-.6 1.4-2.7z"/>
34
+ <path fill="#fefefe" d="m430.3 138 .3-.4c-.6.7-.4.3 1-.3.6-.4 2-1.4 2.5-2 .6-.3 1.7-.7 2.2-1.3.6-.8 1.3-1.5 2.2-2.2.9-1 1.7-1.3 2.8-2 1.3-.2 1.9-.8 3.1-.3 1.2.3 1.7.3 2.6-.9 1-.6 2.1-1.4 2.5-2.4v-1.8c0 1.8-.4 2.5-1.5 3-.7 1.1-1.8 2.2-2.2 3.2-.7 1.2-.9 1.9-1.6 2.5-.7.9-1.7 1.4-2 2.8.4.7 0 1 .8 1.1.7.7 1.4.4 2.4 0a10.4 11.7 0 0 0 1.9-3.3l1.7-2.9c.8-.6 1.3-1.1 1.6-2.2 1-.6 1.8-1.3 2.5-2 .7-.4 1-.9 2-1.1a4.4 5 0 0 1-.7 3.1c-.2 1.6-.1 2.3.3 3.3.7.6.6 1 1 2 .4-1 .6-2.7.7-3.9v-.2c0 1.1 0 2.8-.3 3.6 0 1.6.4 2.4.8 3.6.3.7.7 1 1.1 1.4 0-1.6.5-2.6.6-4.1l.4 3.9c0 1.3.5 2.3 1 3.3.5.4.7 1.5.9.6.6-2 .6-4 1-6.2 0-1 0-2.6.5-3.3l-.6 3.3c.1-1 .2-2.5.6-3.3v-.4a28.6 32 0 0 1 .5 4.6c0 1.2-.1 2.4.2 3.6.7-.4 1.2-1.4 1.7-2.5a13.3 15 0 0 1 1.9-3.1l-2 3a13.3 15 0 0 1 2-3v-.2a29.5 33.1 0 0 0-.2 3.8c0 1.3 0 2.8.2 3.7.3 1.5.6 1.7.7 3.3 0 .8-.1 1.7.2 2 1 .3 1-.3 1.2-2 0-1.7.4-3 .5-4.7 0-2.1.2.3.5 1a9.5 10.7 0 0 1 .7 3.8c0 .8 0 1.6.2 2 1-.5 1.3-1.7 2-2.3.4-1.4 1-2 1.4-2.8 1.2-.3 1.2-.9 1.2-2.5 0-1.4-.1-2.8.3-4a30 33.7 0 0 0 .9-3.7c.4-.2.9.5 1.2 1.2.5.9.4 2.2.4 3.6.3 1.3.7 2.2 1.3 3.4a11 12.3 0 0 0 1.6 2.8c.3.9.3 2.5.3 3.7 1-1.2 1-3 1.1-4.8-.1-1.2-.1-2.8-.4-4 0-1.2-.3-2.4-.5-3.3-.7-.4-1-.8-.2-2 .7-.7 1.6-.4 2.8-.2.7.7.9 1.1 1 2.8 0 1.5 0 2.6.5 3.6.4.8.9 1.4 1.2 2.8.3.4.6 1 1.1.3.3-.8.5-2.4.8-3.4.2-1 .6-1.6 1.1-2 0 1.6 0 2.5.6 3.7l1.1 3.1c.5.4.6 1.3 1.3 1.7l.2-4.5v-4c0-1.2.4-2 .7-3 .8 1.1.8 1.5.8 3 .7-.3.8-1 1.1-1.9.5-.6.8-.8 1 .6.1 1.5.4 2.8.7 4.2.5.6 1 2.2 1.6 2.8a12 13.5 0 0 0 1.5 2.3c.4.8.4 1.4 1.5 1.6 0-1.9 0-3.8-.3-5.6 0-1.6-.3-2.2-.5-3.7-.4-.9-.6-2.4-.5-2.8a8 9 0 0 1 2.2 3.4l1.5 3.7a14.7 16.5 0 0 1 1.8 2.8c.9.8 1.3 1.7 2.2 2.5.4.5 1.5.8 1.7.5 0-1.6-.3-3-.7-4.4a6.6 7.4 0 0 0-.8-3.4c-1-.9-1.7-1.5-2.2-2.8-.3-.4-.3-.6-.4-1.4a19.3 21.6 0 0 1 3.4 3.9 5.1 5.8 0 0 0 1.9 2c.4.6 1.8 1.4 2.8 1.6a4.1 4.6 0 0 0 2.4 1.7l-2.4-1.6a4.1 4.6 0 0 0 2.4 1.6v.4a9.5 10.7 0 0 0-1.4-4.6 6.4 7.2 0 0 0-2.2-3 6.8 7.6 0 0 0-2.4-2.5c-.6-.9-1.6-2.4-2.2-2.8 1.1-.9 2.3.4 3.4 1 1 1.2 1.8 2.7 2.4 3.4a13.2 14.8 0 0 0 2.2 3.7c1 .7 1.7 1.3 2.6 2.2 1.4.4.9-.1.5-1.4-.5-1.6 0-1.6 1-.6.6.6 1.4 1.4 2.4 2 .3.6 1 1 1.6.6.3-.4.3-.4.3-.8-.5-1.8-1-3.2-2.2-3.7-.5-.9-1.5-1.7-2.2-2.5-.5-.8-1-1.3-1.4-2.3l1.4 2.2c-.5-.8-1-1.2-1.4-2.2h-.2c1.4 0 2 .5 3 1.2a5 5.6 0 0 1 2.2 2c.5.6 1.2 1.3 1.7 2.1l2.4 2c.8 1.2 1 2 1 3.6.4.9.5 2.5.7 3.4-.2 1.6-.7.3-.8-.6-.1-1.2-.6-1.1-1.4-.8 0 1.7.2 2.2.7 3.4a5.9 6.6 0 0 1-.9 2.8c-.6.4-.7-.8-1.2-1.4 0-1.7-.5-2-1.5-2.8v1.1c.6 1.2 1.2 2.3 1.2 3.9a8.8 9.9 0 0 1 .6 3.7c0 1.4 0 2.7-.3 4 0 1.4-.3 2-.3 3.6v7.9a17 19.2 0 0 0-.2 3.6l.2-3.6c-.2 1-.2 2.2-.2 3.6v.2c-.4-1.4-1-2.6-1.2-4a7.5 8.5 0 0 1-1.6-3c-.3-1.2-.3-2.6-.5-3.6-.4-1-.8-2-1.5-1.4-.3 2 0 3.3.7 5.3.4 1.3.4 2.5.8 3.7.5 1.5 1 1.6 0 3.3-.6 1-.8 1.2-1 2.3-.9.5-1.1.8-1.2 2-.3-1.1-1-2.4-1.4-3.7-.5-1.4-1-2.8-1.2-4-.6-.9-1.3-2.4-2-3l-1.8-3.3c-1-1.3-1.2-2-2-2.6-.1-.5-.4-1.3-1-.8 0 1.3 0 2.7.3 3.9.3 1.6.7 2.5.8 4.2v3c-.6-1.6-1.3-2.9-1.7-4.4-.6-.9-1.1-2.5-1.7-3-.4-1.2-.7-2.1-1.2-2.9-.1-.8-.5-.8-.8-1.4 0 1.6.5 2.2.8 3.3.5 1.2.6 2.9.5 3.5-.6-2-1.2-4.1-2-6a26 26 0 0 1-1.8-3.7c-.8-.9-1.5-1-2.2-1.6a4.3 4.9 0 0 1-1.7-1.4c.2 1.5.7 2.5 1 3.6.2 1.4.7 2.6.9 3.7-.2 2-.6-.5-1-1.4-.2-1.6-.7-2.4-1.1-3.3-.7-.6-1.3-1.5-2-2-.7-.3-.4 0-.4 1 0 1.8 0 3 .5 4 .5.8.5 1.9.5 3.4-.1 1.4-.3 2.4-.3 4v2.1c-.5-1.1-1-1.9-1.5-3.3-.7-1.3-1-2.3-1.6-3.7-.5-.2-1.5-.4-2 0 .2 1.4.7 2 .8 3.7-1 1-.8 1.4-1.4-.3-.6-1.3-1.2-1.2-2-2-1.2-.1-.8-1-1.1-2.3 0-1 0-2-.3-3-1.3 0-2 0-2.9.8-.3.8-.2 2.5 0 3.7v3.9c-.3 1-.7 1-1 2.3-.4 1.1-.5 2.5-.9 3.3-.9.9-.5 1-1-.5v-9c0-1.5.3-2.3.3-3.7-.5-1.1-.6-1.4-2.2-1.4a6 6 0 0 0 0 2.8c0 1.4.1 2.7.3 3.7l.2 3.6c0 1.5-.3 2.7-1 3.3-.8.4 0 1-.9 1.3a11 12.3 0 0 1-2.6-2c-1-.3-1.8-.6-3.1-.6-1.6 0-1.6-.2-2.2-1.6a23 25.8 0 0 1-1-4.6c-.5-1.3-.6-2.2-1-3.7a4.5 5.1 0 0 0-1.4-2c-.3 1.6-.6 2.7-.6 4.3-.3.7-.4 2.4-.6 3-.4-.7-.6-2.4-1-3.5-.3-1.7-.7-2.8-2.3-2.2-1.6 0-1.6 0-1.6 2l1.9 3.2v4c0 1.6 0 2.1-1 2.4-.4-1.6-1.2-3.3-2.2-4.7 0-1.1-.4-.8-1.4-.8-.6 0-1.3-.1-1.7.3v2.4c-.5.2-.7 0-1.1-.5-.5.9-.2 2 0 3a10 10 0 0 1-1.2 3.2c-.2-.4-.4-.2 0-.2-1.7-.8-3-1.2-4.4-1.7-.7 0-1.4 1-1.8 1.7-1.3.4-1.8.8-3.2.8l-3 .2c-1 .3-2 .4-3.2.4-.6-.3-1.8-.3-2.1-.6.5-.8 1-1.2 1.4-2.5a14.7 16.5 0 0 0 2-2l1.8-2.3c.4-1.4 1-1.6 1.7-2.2 1.5 0 1.7.6 3.1.8 1.4.6 2.2.9 3-.3 1-.5 2-1.4 3.2-1.6l2.4-1.7c1-.7 1.5-1.5 2.4-2.3.3-1.1 1-2 .7-3.3-1.3-.4-2.1-.3-3 .5-.9 1-1 1.4-2.3 2.2-1 .4-1.4.9-2.6 1.2-1 .4-2.2.2-3.3.2s-2.5 0-3.1.4c1-.8 2.3-1.7 3.3-2 1-.7 1.4-1 2.7-1.2.6-.8 1.1-.8 1.4-2.2.4-1.6-1-1.1-2-.5-.9.2-2 1-2.8 1.3a10.5 11.8 0 0 1-3 .6c-.4-.5.1-.9.4-1.6 1-.5 1.3-.7 1.4-2-1.3.2-1.7.7-2.9.8a18 18 0 0 1-3.8.6h-3.3c-1.2 0-1.8-.3-3.2-.3-1-.6-1-.8-1-2.5.8-1 1.5-.8 3-.8l2.6-1.5c.9-.2 1.4-.6 1.2-1h-3.3c-1.4-.7 0-1 .7-1.5 1 0 2.3 0 3 .5 1.5 0 2-.5 3.1-1.6 1-.8 1.5-1.4 2.5-2 .7-.9 1.4-1.4 1.9-2.2 1-1 1.7-1.7 2.2-2.6.6-.4 1-.8.7-1.4-1.5.2-2.2.9-3.2 1.7a7.3 8.2 0 0 1-1.9 1.6 6 6.7 0 0 1-3.1 1.3c-1.2 0-2.2-.3-3.3-.4-1.3-.1-.2-.5.2-1.1.5-.3.9-1.2.5-2-1-.3-2.2-.2-3.3-.2h-3.4c-1.3 0-1.8-.4-2.7-.9-.2-.8 0-.5 1-.5a13.2 14.8 0 0 0 3.1-.6c1.1-.3 1.3-.8 1.5-2.2-1.2 0-2.4 0-3.1-.3zm-20.7-6.5c-.2-2-.7-3.1-.7-5.2 0-1.5 0-.6 1.4-2.7l2-2c1.3-.8 2.4-1.7 3.7-2.4 1-.6 3-1.1 3.7-1.6a9.2 10.3 0 0 0 3-2.8c.2-1.7.4-3 .4-5 1.4-1 2.5-1.6 3.7-2 1.7-.6 2-1.4 3.8-1.7 1-.4 2.8-.4 4.4-.4 1.6 0 2.7 1.4 4.2 1.6 1.8.8 2.6 1.4 4 2.8.8 1.2 1.4 2.2 2.7 3 1.1.6 2.2 1.6 3.4 2 0 1.4.3 1.2-.6 1.2-.1 1.5-.4 1.3-1.7 1.4a5.9 6.6 0 0 1-2.2-2.3c.6-1.4.3 1.2 0 1.7-.5.6-.9 1.2-1.6.6-.4-1.4-.7-2.3-.7-4-.2-1.7-.7-.5-1 .3-.3 1.5-.2 2 .3 3.1-1.3 0-2.2-.2-3.1-.3-.9-.3-2 0-3 .6-1.2.9-.7.9-.2 2 1.1.3 2 1 3 1.6l3.3-.8c1.1-.5 2.2-.2 3.3 0 .6.4 1.4.4 1.7.8 0 .9 0 1.8-.3 2.3-.4.4-1 1.4-1.7 1.6a11.8 13.2 0 0 1-3.2 1.5c-1.5 0-2.1.4-3.2 1-.1 1.6-.5 1.9-1.7 2.4a7.5 8.5 0 0 1-3.3.8c-.7 0-1.4 0-1.7-.3a9.4 10.5 0 0 0 2-3.3c.2-.7.6-1 .2-1.5-1.4 0-1.8 0-2 1.6-.1 1.6-.6 1.9-1.6 2.4.3-1.4.3-2.5.7-3.7a18.3 20.6 0 0 1-3 .3c-.8.5-1.1.7-.8 1.6-1 .4-2.2.2-3.4 0-1 0-.4-.5-1.2-1-.5-1.1-1-1.4-2.2-1.4-.5.8-1.4 1-2 1.6-1.1.4-1.8 0-2.7-.5-1.2 0-1 .4-.7 1.4.5.3 0 .7.7.8.7.7 1.3.9 2.6.9 1-.4 2.2-.3 3.4-.3 1.2 0 1 .3 1 1.6-.8.7-2 .6-3.2.6a12.2 13.7 0 0 1-2.9-.8c-1 0-2-.3-2.8 0-.4.5-1.5.7-.2.8.5.6 3.3.3 3.4 1.3.7.8.5 1.9-.6 1.9a1.6 1.8 0 0 0-1.7 0l-3.1.1c1.8.2-1.3-2.2-2-3.2z"/>
35
+ <path fill="#bcbcbc" d="m417.1 122.2-1.4 1-2.9 2.3c-.5.5-.5.8-1.1.8 1-.1 1.6-.5 2.6-1 1.2-.2 2.4-.5 3-1.2.7-.2 0-1.3-.2-2zm11-13.2c.2 0 .5.8 1 1.4.4 1 .7 1.8.7 3 .3-1.3.8-2.4 1-3.9-.4-.8-.4-1-1.5-1.1 0 .8.2.2-1.2.6z"/>
36
+ <path fill="#c4c4c2" stroke="#000" stroke-width=".9" d="M349.4 417.7c-.5 0 .8-.5 1.3-.6.4-.8.6-1.3 1.3-1.8 1.1 0 1.7.4 2.2 1.1 1 .3 1.3.7 2.4.9.5.4 1 .4 0 .7-.6.3-1.5.4-2.6.4a7.2 7.2 0 0 0-2.6.7c-1.5 0-1.3 0-2-1.4z" transform="matrix(1.08448 0 0 1.26674 42.6 -410.2)"/>
37
+ <path fill="#bcbcbc" d="M432.5 109.2v.3c0-.8 0-.4.2 1.2a6.6 7.4 0 0 1 .5 3.3 5 5.5 0 0 0 1.5-2.5c0-2.2-.4-2.1-2.2-2.3zm8.8 32.3h.3c-.8 0-.3 0 .9-.8.8-.6 1.5-1.6 2.6-2a9.5 10.7 0 0 1 3.1-2c.6-.3 1.1-.8 1.7-.2-.1 1.3-.4 2-1.5 2.5-.5.8-1.3 1.3-2 1.6-.8.5-1.7.5-2 1.5-1.3.7-1.5.5-3-.6zm4.6 8.2c.3-.4 1.9-2.2 2.6-2.8a11 12.3 0 0 1 2.4-2.8c.7-1.2 1.6-2 2.2-3.1l1.9-2.8c0 1.2-.2 2.8.2 3.6a5.1 5.8 0 0 1-.8 3.4c-.5 1-1 1.6-2.2 2.3-1 .6-1.6.8-2.5 1.6a19 21.4 0 0 1-2.2 1.4c-.7.3-.4.3-1.6-.8zm-7.5 6.4h.3c-.7 0-.4 0 1-.8 1-1.2 1.8-1.7 3-2.2a7.5 8.5 0 0 0 3-.9c.5-.1 1-.5 1.3 0 .8 1.2 1 1.5-.2 2.3a6.9 7.7 0 0 1-2.4 1.4c-.6.5-1.8.5-3 .8-.8 0-1.4.1-1.8-.6l2 .6c-1 0-1.5.1-3.2-.6zm10.3 0v-.2c0 .8 0 .4.5-1.2 1-1.6 1.2-2.5 2.4-2.8.5-.8 1.5-1 2.6-1.4.5.8.1 1.8 0 2.8-.3 1-1.1 1.8-1.7 2.6-.7.5-1 1.1-2.2 1.4-.8 0-.3 0-1.6-1.2z"/>
38
+ <path d="M425.3 119.7c0 .7-.5 1.4-1.2 1.4s-1.2-.7-1.2-1.4c0-.8.6-1.4 1.2-1.4.7 0 1.2.5 1.2 1.4z"/>
39
+ </g>
40
+ <g fill="#005120" fill-rule="evenodd" stroke="#002b0d" stroke-width="1pt">
41
+ <path d="M351.8 479.6h.9c-2.8 0-1.1-.2 3.5 3.5 2-1.6 2-1.8 3.5 1 1 1.5 1.2-.2 2.7-1.8.7 3.2 1.1 6.5 3.5 3.5 2.8 0 5.6-.2 7.1.9 1.8 3.3 1.2-.6 2.6.9 4 .4 3.9-3.4 8.1-4.4 2.6 3.3 3.8.8 7-.8 2.5.6 4.8 4.3 5.3.7 2-3.2 2.1-3 3.5 0 2 1.8 2.8-.8 4.4-1.7 3 1.7 6.3 2 10.6.9.8 2.9 2.6 1.6 4.5.8 3.9 1.7 5.2 2.2 9.7 0 2.2-2.6 1 .1 2.6 1.8 3.3-1 2.4-1.2 6.2-.9 3.9 0 4.2 0 5.3-2.6 2 1.9 2.6 3.3 5.3.9 4.2 0 2.9.5 5.3-1 1.9 4 2.3 1.2 4.5 2.7a14.5 14.5 0 0 1-6.2 7c-1.7 3-2.8 6-6.2 7.2-2.5 2.5-5.2 4-8 6.2-3.8 1-8 .8-12.3.8H388c-2.6 1.4-7 2-10.6 2.7-4 0-8.7 0-11.5-.9-1.9-1.9-5.2-4-7-6.2-2-1.5-2-4.4-3.6-6.2-1.4-2.5-2-6.5-3.5-8.8z" transform="matrix(1.08448 0 0 1.26674 47.3 -411.4)"/>
42
+ <path d="M437.5 487.6v.8c0-2.4.1-1.1-1.8 3.6-.3 1.1-1.2 1.4-2.6 1.8m-3.5-2.7h.9c-3.3 3-5.5 4.5-6.2 8l6.2-8c-3.3 3-5.5 4.5-6.2 8m-7.1-12.4s-.1 3.1-.9 4.4m-2.6 1.8v.8zm-7.1-5.3h.9-1c.4 0 .7 0 0 0zm-49.5 0c.4 0 2.2 2.8 4.4 4.4-.5 2.6-1.4 5.6 0 8m2.7-7.1c.4 0 2.1 2.8 4.4 4.4l-4.4-4.4c.4 0 2.1 2.8 4.4 4.4v.9c0-2.8-.2-5.6.9-7.1 1 1.7 2.2 4.3 2.6 1.8 5-.2 7.4-1.6 10.6-2.7 0 1.3-.2.7 1 1.8m60-3.6h.9c-1.7 1.4-3 4.3-4.4 6.2m-32.7-8.8h7" transform="matrix(1.08448 0 0 1.26674 47.3 -411.4)"/>
43
+ </g>
44
+ <path fill="#fff" fill-rule="evenodd" d="M425.9 214.3c-11.5 0-15.4 13.5-26.9 13.5h-.6v.8c0 9.4.6 18.1 1.8 26.2 10.6-.8 14.5-13.4 25.7-13.4 11.5 0 15.3 13.4 26.8 13.4 11.6 0 15.4-13.4 26.9-13.4 11.5 0 15.4 13.4 26.9 13.4 11.5 0 15.3-13.4 26.8-13.4 11 0 15 12.5 25.6 13.4a139 156.1 0 0 0 1.9-27h-.7c-11.5 0-15.3-13.4-26.8-13.4s-15.4 13.5-26.8 13.5c-11.5 0-15.4-13.5-27-13.5-11.4 0-15.3 13.5-26.8 13.5-11.4 0-15.3-13.5-26.8-13.5zm0 52.7c-9 0-13.2 8.2-20.2 11.8a111 124.5 0 0 0 8.6 20.5c3.3-2.8 6.7-5.2 11.6-5.2 11.5 0 15.3 13.5 26.8 13.5 11.6 0 15.4-13.5 26.9-13.5 11.5 0 15.4 13.5 26.8 13.5s15.4-13.5 26.9-13.5a18.3 20.6 0 0 1 11.3 5 112 125.7 0 0 0 8.6-20.4c-6.7-3.7-11-11.7-20-11.7-11.4 0-15.3 13.5-26.8 13.5S491 267 479.6 267s-15.4 13.5-26.9 13.5c-11.4 0-15.3-13.5-26.8-13.5zm53.7 52.7c-11.5 0-15.4 13.5-26.9 13.5-10.9 0-14.9-12-25-13.4a132 132 0 0 0 39.3 33c3.6-3.2 7.3 3.6 12.5 3.6 5.3 0 9-6.9 12.5-3.8a129.1 145 0 0 0 39-32.7c-9.8 1.7-14 13.3-24.6 13.3-11.5 0-15.3-13.5-26.8-13.5z"/>
45
+ <g transform="matrix(.86465 0 0 .97062 -175.4 2.5)">
46
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M332.5 541.4a110 110 0 0 1 10.5-3l16.3 15.7-13.4 2.7z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
47
+ <path fill="none" stroke="#512007" stroke-width=".6" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 31.3 6.7-31.1m-4.4 31.2 5.6-31.2m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(1.06 0 0 1.03 276.8 -178)"/>
48
+ <path fill="none" stroke="#512007" stroke-width=".4" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 30.1 6.7-30m-3.7 27.7c.2-1.7 4.9-27.6 4.9-27.6m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(-1.25 0 0 1.76 1290.4 -502)"/>
49
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 30.1 6.7-30m-3.7 27.7c.2-1.7 4.9-27.6 4.9-27.6m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(-1.25 0 0 1.3 1321.3 -302)"/>
50
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="m395.3 572.2.9-73s2.6-.3 2.6 0-.3 72.7-.6 73c-.3.3-3.2.5-2.9 0zm28.5-69.8-.6 61.3-2 2.4.6-63.7z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
51
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M363 560.2s3 30 36.4 29.1c33.4-.9 42.7-30.2 42.7-30.2l-14.5-.6c-.3 0-11.6 14-26.2 13.7-14.6-.3-19.2-3.8-22.4-6.7-3.2-3-6-7.3-6-7.3l-17-6.7 1 6.4zm90.3-3-1-4v-3.4l1.6-3.6s-25.3 3.7-25.3 4l-.1 6.8 24.8.1z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
52
+ <path fill="none" stroke="#512007" stroke-width=".5" d="m448.5 549.8-.6 6h4.1l-.3-6zm-4.3.3-.3 6.4 2.6-.3.3-6.1zm-4.4 6.4v-5l2.6-.9.3 5zm-5-.3.6-4.4 3 .3.2 4.7zm-5.5 0 .3-3.8 3-.3v4.4zm-67.4 3.7c.9 0 7.6 1.5 7.6 1.5l7 9.3" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
53
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M366.8 561.1c.3.3 6.1 19.8 34 19.8s34.6-22.1 34.6-22.1" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
54
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M439.8 559.4s-13.4 29-39 27c-25.5-2-29.6-11.6-31.6-16.6-2-5-3.2-9-3.2-9" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
55
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M373.2 558.2c.3-1.7.3-54.4.3-54.4l-1.7-.2-.3 53.7 1.7 1zm-41.5-17.1 22 10.7-.5 1.5S332 543.3 332 543c0-.3.2-1.5-.3-2z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
56
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M341.8 537.9c0 .8 3.2 18.6 3.2 18.6s2 .3 2 0l-3.4-18.3zm20.4.5c1.1 0 21-3.2 21-3.2l-.4 3.2-19.5 2z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
57
+ <path fill="#fecf3e" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M365 514.3c.7 0 7 3.2 9.7 2.4 2.7-.8.9-3 1.4-3 .6 0 2.6 1.5 3.8.3 1.2-1.1 2-4.6 1.5-4.3-.6.3-16 5.8-16.3 4.6z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
58
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M362.5 521.6c1.1.3 23.8-6.1 23.8-6.1s0 2-.3 2l-23.5 6.1z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
59
+ <path fill="#fecf3e" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M415 512.6s1.5 3.5 3 2.9c1.5-.6 2.9-1.8 2.9-1.8s1.2 3 3.2 2.4c2-.6 3.2-3.8 3.2-3.8s2 .6 2.9.3c.9-.3 2-5 2-5l-17.1 5zm-1.7 28.2c-.3.6 1.5 2 3 2s2-2 2.3-1.4c.3.5.3 3.2 4 2.3 3.7-.9 3.8-3.5 3.8-3.5s-1.1.9 1.5 1.2c2.6.3 5.2-3.8 5-3.8-.4 0-19 3.5-19.6 3.2z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
60
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M363.4 513.1a5 5 0 0 0 .2 2.7l19-6.4s.8-1.5 0-1.5-19.5 5.8-19.3 5.3zm25-4c.5 0 19.4-6.1 19.4-6.1s.3 2.6 0 2.6l-17.7 5.2-1.8-1.7z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
61
+ <path fill="#fecf3e" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M413.3 521.9s-2.9 3.2-2 7.5c.9 4.4 2 8.2 2.3 8.2.3 0 3.5-5.8 7-6.1 3.5-.3 9.9 3.2 9.9 3.2s-.9-7-.6-10.2c.3-3.2 5.2-8.7 5.2-8.7l-21.8 6z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
62
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M386.9 516.6s-.6 2.7-.3 2.7l24.7-6.4V511l-24.4 5.5z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
63
+ <path fill="#b6b6b4" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M355.5 551.8s-5.8-.8-5.5.6c.3 1.5 2.9 2.9 3.2 3.8.3.9-.9 4 .9 3.8 1.7-.3 3.4-1.5 3.4-2.4l-.3-5z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
64
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M387.8 537.3v2l20.9-2.9-.6-1.5z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
65
+ <path fill="#fecf3e" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M363 540.8c.4 0 0 2.6 2.4 2 2.3-.6 2.9-2 2.9-2s.6 3.2 3.8 2.9c3.2-.3 5-3.8 5-3.8s.2 2.6 2.2 1.7c2-.9 2.6-2.9 2.6-2.9l-18.3 2.6-.5-.5zm0-17.2s-2.6.9-1.7 6.1c.9 5.2 3 8.2 3.2 8.2.3 0 2.6-5 6.1-5.8 3.5-1 9.6 2.6 9.6 2.6s-.6-4.7.3-9a18 18 0 0 1 3.8-7.6s-20.4 5.5-21.2 5.5z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
66
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="m411.9 538.7.3 1.8s21-2.6 21-3c0-.2 0-2-.4-2-.3 0-20.6 3.5-21 3.2zm-.3-18.6.3 2 24.7-6.6s.6-1.8.3-1.8-24.7 7.3-25.3 6.4z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
67
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M414.2 510.8s-.3 1.8 0 1.8 18.3-4.4 18.3-4.7c0-.3 1.8-2 .3-1.7-1.4.3-18 5.5-18.6 4.6zm38.7 33.7-18-28.4m-2.4 19.7c.3-.8 1.2-18.3 1.2-18.3" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
68
+ <path fill="#fecf3e" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M389 510c1 .2 3.1 3.2 4.3 2.6 1.2-.6 2.9-2.4 2.9-2.4s-.3 3.5 2 3c2.4-.6 2.7-3 2.7-3s1.7 1 3.2 0c1.4-.8 2.8-5.2 2.3-5.2s-16.9 5.2-17.5 5zm-.6 8.4c0 .6-3 5.2-2 9.6 1 4.4 2.5 8.4 2.8 8.4.3 0 4.7-4.6 8.5-5.5 3.7-.9 9.3 2.9 9 2.9-.3 0-1.5-4.4-1.5-7.6 0-3.2 4.4-13 4.4-13zm0 21c0 .2.8 2.2 2.9 2.2 2 0 2.3-2 2.3-2s-.3 3.5 2.9 3.2c3.2-.3 4.3-3.5 4.3-3.5s.3 1.8 3 .9c2.6-.9 6-3.8 5.8-3.8-.3 0-21 3.8-21.3 3z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
69
+ <use xlink:href="#l" width="992.1" height="496.1" transform="translate(-6.6 7.3)"/>
70
+ <use xlink:href="#l" width="992.1" height="496.1" transform="translate(6.6 3.8)"/>
71
+ <use xlink:href="#l" width="992.1" height="496.1" transform="translate(0 11)"/>
72
+ <path id="l" fill="#be0f17" fill-rule="evenodd" stroke="#512007" stroke-width=".6" d="M409 477a1.9 1.9 0 1 1-3.8 0 1.9 1.9 0 0 1 3.8 0z" transform="matrix(.04 -1.07 1.02 .04 251.6 668)"/>
73
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M398.2 500c0-.2 9 3.8 9 4.1 0 .3 32 42.8 32.3 42.8m-16-42.8 8.2 3.5 2.6 6.4m-61.4-10.4c-.3 0 9 7 9 7l1.2 5.7M341.3 546c4-1.7 32.2-26.4 32.2-26.4m-39.8 21.7 31.7-26.7m21.2 4 30 49.8m-3.6-29.2s3.5 11.7 7 13.5a86 86 0 0 1 7.6 4.6" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
74
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M412.6 539.5s2.5 13.8 6 16.4c3.5 2.6 7 5.5 7 5.5" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
75
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M391 439s3.4 19.2 10.4 23.6a950 950 0 0 1 12.8 8.1" transform="matrix(1.25 0 0 1.3 256.3 -299.5)"/>
76
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M390.7 438.7s7.5 15.2 14 19.8c6.3 4.7 15 9 15 9M366.3 440c2 3.5 1.7 10.2 4 12.5a66 66 0 0 1 5.8 7.6m-9.3-19.9c1.2 1.7 4.4 10.4 6.4 13 1.5 2.4 16.3 17.2 16.3 17.2" transform="matrix(1.25 0 0 1.3 256.3 -299.5)"/>
77
+ <path fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M384.6 471.1a2.2 2.2 0 1 1-4.4 0 2.2 2.2 0 0 1 4.4 0zm10.7 4.7a1.9 1.9 0 1 1-3.8 0 1.9 1.9 0 0 1 3.8 0zM409 477a1.9 1.9 0 1 1-3.8 0 1.9 1.9 0 0 1 3.8 0zm11.9-4.5c0 1-.7 1.7-1.6 1.7-.9 0-1.6-.8-1.6-1.7 0-.9.7-1.8 1.6-1.8.9 0 1.6.8 1.6 1.8zm9.6-5.7c0 .9-.9 1.6-1.9 1.6-1 0-1.9-.7-1.9-1.6 0-.9.9-1.6 1.9-1.6 1 0 1.9.7 1.9 1.6z" transform="matrix(1.25 0 0 1.3 256.3 -299.5)"/>
78
+ <path fill="red" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="M374.1 404.4c-.9.6-15.4 4.1-13.4 3.8 2-.3 13.7 3 13.4 2-.3-1 0-5.2 0-5.8zm24.7-4.3c-.6 0-9 3.2-8.7 3.2.3 0 9.6 2.6 9.3 2-.3-.6-.3-4.4-.6-5.2zm25.3 2.9c-.6.3-10.5 2.6-8.7 2.9 1.8.3 8.4 2.6 8.4 2 0-.5 0-4.6.3-5z" transform="matrix(1.25 0 0 1.3 256.3 -299.5)"/>
79
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 30.1 6.7-30m-3.7 27.7c.2-1.7 4.9-27.6 4.9-27.6m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(1.25 0 0 1.3 256.3 -299.5)"/>
80
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 31.3 6.7-31.1m-4.4 31.2 5.6-31.2m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(1.25 0 0 1.36 225.3 -323.4)"/>
81
+ <path fill="none" stroke="#512007" stroke-width=".5" d="M413.6 471c.3-4.6 8.8-31 8.8-31m-5.9 30.1 6.7-30m-3.7 27.7c.2-1.7 4.9-27.6 4.9-27.6m-10.5 27c1.5-.8 5.8-2 5.8-2m-3.7-2.6c1.4 0 4.3-1.2 4.3-1.2m-3.5-2.3a24 24 0 0 1 4.4-1.2m-3.8-3.2 4.7-.8m-2.6-3c0 .3 3.2.3 3.2.3m-2.4-3.7 3.2.5" transform="matrix(-1.25 0 0 1.32 1259.2 -307.3)"/>
82
+ <path fill="#dd8b59" fill-rule="evenodd" stroke="#512007" stroke-width=".5" d="m426.4 558.5 27.6.6.3-2-28.5-.3zm1.2-7.3c3.2 0 27.3-4.6 27.3-4.6s.9-3 0-3-27.3 5.6-27.3 5.6z" transform="matrix(1.25 0 0 1.3 259.4 -430)"/>
83
+ <use xlink:href="#l" width="992.1" height="496.1" transform="translate(0 5.5)"/>
84
+ </g>
85
+ <path fill="#012169" d="M0 0h320v240H0z"/>
86
+ <path fill="#FFF" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"/>
87
+ <path fill="#C8102E" d="M212 140.5 320 220v20l-135.5-99.5zm-92 10 3 17.5-96 72H0zM320 0v1.5l-124.5 94 1-22L295 0zM0 0l119.5 88h-30L0 21z"/>
88
+ <path fill="#FFF" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
89
+ <path fill="#C8102E" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
90
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-fm" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-81.3 0h682.6v512H-81.3z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)" transform="translate(76.3) scale(.94)">
8
+ <path fill="#6797d6" d="M-252 0H772v512H-252z"/>
9
+ <path fill="#fff" d="m259.8 123-32.4 22.2 12.4-35.9-32.5-22.2h40.1l12.4-35.9 12.4 36h40l-32.4 22.1 12.4 35.9M259.8 390l-32.4-22.2 12.4 36-32.5 22.1h40.1l12.4 35.9 12.4-36 40 .1-32.4-22.2 12.4-35.9m-188.4-92.4L79.3 306l1.4-38-37.5-11.7 38.4-11.7 1.3-38 22.3 30.8 38.4-11.8-24.6 30.7 22.4 30.7m274.2-11.7 24.6 30.7-1.4-38 37.5-11.7-38.4-11.7-1.3-38-22.3 30.8-38.4-11.8 24.6 30.7-22.4 30.7"/>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-fo" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-78 32h640v480H-78z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" stroke-width="0" clip-path="url(#a)" transform="translate(78 -32)">
8
+ <path fill="#fff" d="M-78 32h663.9v480H-78z"/>
9
+ <path fill="#003897" d="M-76 218.7h185.9V32H216v186.7h371.8v106.6H216V512H109.9V325.3h-186V218.7z"/>
10
+ <path fill="#d72828" d="M-76 245.3h212.4V32h53.1v213.3H588v53.4H189.5V512h-53V298.7H-76v-53.4z"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-fr" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#fff" d="M0 0h640v480H0z"/>
4
+ <path fill="#002654" d="M0 0h213.3v480H0z"/>
5
+ <path fill="#ce1126" d="M426.7 0H640v480H426.7z"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ga" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#ffe700" d="M640 480H0V0h640z"/>
4
+ <path fill="#36a100" d="M640 160H0V0h640z"/>
5
+ <path fill="#006dbc" d="M640 480H0V320h640z"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gb-eng" viewBox="0 0 640 480">
2
+ <path fill="#fff" d="M0 0h640v480H0z"/>
3
+ <path fill="#ce1124" d="M281.6 0h76.8v480h-76.8z"/>
4
+ <path fill="#ce1124" d="M0 201.6h640v76.8H0z"/>
5
+ </svg>
@@ -0,0 +1,132 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-gb-nir" viewBox="0 0 640 480">
2
+ <path fill="#fff" d="M0 0h640v480H0z"/>
3
+ <rect fill="#fff" fill-rule="evenodd" rx="0" ry="0"/>
4
+ <rect id="a" width="640" height="96" y="192" fill="#c00" fill-rule="evenodd" rx="0" ry="0"/>
5
+ <use xlink:href="#a" width="600" height="300" transform="matrix(0 .75 -1 0 560 0)"/>
6
+ <path fill="#ebeae3" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="M355.2 146.6c3-4.8 1.2-8-3.4-8.9 0 0-14.9 4.8-31 5.3-16 .5-35-4-35-4-3.5 2.1-2.7 7.2-1 10.4 0 0 16.8 5.6 36 5a111 111 0 0 0 30.1-5.5c3.7-1.2 4.3-2.2 4.3-2.3z"/>
7
+ <path fill="#fff" stroke="#161111" stroke-width="1.6" d="m320 357.6-30.9-64.2-70.9 5.4 40-58.8-40-58.8 71 5.4 30.8-64.1 30.9 64 70.9-5.3-40 58.8 40 58.8-71-5.4z"/>
8
+ <path fill="#b02320" fill-rule="evenodd" stroke="#000" stroke-width="1.3" d="M319.5 122.2c38.8 6.4 37.4 8.2 37.4 8.2l10.1-30.2s1.1-6-1.7-9.6-10.5-1.6-10.5-1.6-1-4.9-4.5-6c-3.4-1.2-16 4.5-20 5.8-4 1.3-6 2.5-11.5 2.4-5.5 0-15.4-5-17.3-6-1.7-.9-4.4-1.8-6.9-1.7-2.4 0-5 .7-6.3 2.4-1.2 1.7-1.2 3.9-1.2 3.9s-2-1.3-5.2-1.3-5 .4-6.5 2.1c-1.5 1.7-3.4 6.5-3.4 6.5l3.6 8.2.2 11.3 7.5 12 36.2-6.4z"/>
9
+ <path fill="#ebeae3" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="M355.7 139.3s2 2.3 1.9 3.2c-.1.8-1 1.5-1 1.5s.7.6.5 1.5c-.1 1-1.4 1-1.4 1s.3.8-.5 1.2c-.7.4-3.8 1-3.8 1s-15-4.2-31-4.2-35 5.2-35 5.2-2-.7-2-2c-.2-1.2.1-2.1.1-2.1s-1 0-1.3-.9c-.4-1.3.1-2.3.1-2.3s-.7.2.1-1.5c.6-1.3 1.5-1.7 1.5-1.7s16.8-6 36-6.1c19.1 0 35.8 6 35.8 6.2z"/>
10
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M276.2 101.5s-.6-2.2.8-4.1a4.3 4.3 0 0 1 4.7-1.4c.8.4.7 1.3 1.7 1.5 1 .3 1.8-.5 1.8-.5"/>
11
+ <path fill="#fc0" fill-opacity=".9" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="m369.8 106.6-5.8 12-2.3.4s-1.4-.8-5.4-.5c-2.8.2-3.7 1-3.7 1l5.2-12s.4 2.5 1 4c.8 2 3.7 3.7 3.7 3.7s.4-2.3-.4-5a55.9 55.9 0 0 0-2.8-7.3l10.5 3.7z"/>
12
+ <path fill="#121116" stroke="#121116" stroke-linejoin="round" stroke-width="1.2" d="M316.5 69.2h6.5v27.7h-6.5z"/>
13
+ <path fill="#f6ca1f" fill-rule="evenodd" stroke="#000" d="m276.6 120.2 4.1 9s17.9-7 38.9-6.8c31.5.2 40.5 6.5 40.5 6.5l4.6-11.1-3.5 2-3.6 2.3-4 1.5-5-.3-4.4-3.2-2.2-4.7-3.7 3.4-6.6 1.4-6.4-1.6-5.6-7.1s-4.2 7.9-9.6 8.4c-7.7.6-12.1-3.7-12.1-3.7s-2.9 6.4-7.6 7.5c-7.5 1.9-13.7-3.5-13.8-3.5z"/>
14
+ <g stroke-width="2.2">
15
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M348.4 65.7c0 1.8-1.4 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.5 3.4 3.4 0 0 1 3.3 3.4"/>
16
+ <path fill="#a3afb8" fill-rule="evenodd" d="M343.5 67.4s2.7 0 3-1.1c.3-1.2-.2-2.6-.2-2.6s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.7a3 3 0 0 1-2-.5z"/>
17
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M340.3 69.5c0 1.8-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.4-3.4A3.4 3.4 0 0 1 337 66a3.4 3.4 0 0 1 3.4 3.3"/>
18
+ <path fill="#a3afb8" fill-rule="evenodd" d="M335.3 71.2s2.8 0 3-1.1c.3-1.1-.2-2.6-.2-2.6s1.3 1.5 1 2.6c-.4 1-.8 1.4-1.7 1.6a3 3 0 0 1-2-.5z"/>
19
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M358 63.4c0 1.9-1.6 3.4-3.4 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
20
+ <path fill="#a3afb8" fill-rule="evenodd" d="M353 65.2s2.7 0 3-1.2c.3-1.1-.2-2.5-.2-2.5s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.6a3 3 0 0 1-2-.4z"/>
21
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M368.6 65.6c0 1.8-1.5 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.4 3.4 3.4 0 0 1 3.3 3.3"/>
22
+ <path fill="#a3afb8" fill-rule="evenodd" d="M363.7 67.3s2.7 0 3-1.1c.3-1.2-.2-2.6-.2-2.6s1.3 1.4 1 2.6c-.4 1-.8 1.3-1.7 1.6a3 3 0 0 1-2.1-.5z"/>
23
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M376.8 72.3c0 1.8-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.4 3.4 3.4 0 0 1 3.4 3.3"/>
24
+ <path fill="#a3afb8" fill-rule="evenodd" d="M371.9 74s2.7 0 3-1.1c.2-1.1-.2-2.6-.2-2.6s1.3 1.5.9 2.6c-.4 1-.7 1.4-1.7 1.6-.6.1-1.5-.1-2-.5z"/>
25
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M380.3 83.3c0 1.9-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
26
+ <path fill="#a3afb8" fill-rule="evenodd" d="M375.4 85s2.7 0 3-1.1c.2-1.1-.2-2.6-.2-2.6s1.3 1.5.9 2.6c-.4 1-.7 1.4-1.7 1.6a3 3 0 0 1-2-.5z"/>
27
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M379 94.4c0 2-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.3 3.4 3.4 0 0 1 3.3-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
28
+ <path fill="#a3afb8" fill-rule="evenodd" d="M374 96.2s2.8 0 3-1.2c.3-1-.1-2.5-.1-2.5s1.3 1.4.9 2.5-.7 1.4-1.7 1.6a3 3 0 0 1-2-.4z"/>
29
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M374 104.2c0 1.9-1.5 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.4 3.4 3.4 0 0 1 3.3 3.4"/>
30
+ <path fill="#a3afb8" fill-rule="evenodd" d="M369.1 106s2.7 0 3-1.2c.3-1-.2-2.5-.2-2.5s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.6a3 3 0 0 1-2-.4z"/>
31
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M332.3 72.4c0 1.9-1.5 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
32
+ <path fill="#a3afb8" fill-rule="evenodd" d="M327.4 74.2s2.7 0 3-1.2c.3-1.1-.2-2.5-.2-2.5s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.6-.7.2-1.6 0-2.1-.4z"/>
33
+ <g stroke-width="2.7">
34
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322.1 71.5a2.8 2.8 0 0 1-2.8 2.9 2.8 2.8 0 0 1-2.8-2.9 2.8 2.8 0 0 1 2.8-2.8 2.8 2.8 0 0 1 2.8 2.8"/>
35
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318 73s2.3 0 2.5-1c.3-.9-.1-2-.1-2s1 1.1.8 2c-.4 1-.7 1.2-1.4 1.4a2.5 2.5 0 0 1-1.8-.4z"/>
36
+ </g>
37
+ <g stroke-width="2.7">
38
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322.2 75a2.8 2.8 0 0 1-2.8 3 2.8 2.8 0 0 1-2.8-3 2.8 2.8 0 0 1 2.8-2.8 2.8 2.8 0 0 1 2.8 2.8"/>
39
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318 76.5s2.3 0 2.6-1c.2-.8-.2-2-.2-2s1 1.2.8 2c-.3 1-.6 1.2-1.4 1.4a2.5 2.5 0 0 1-1.7-.4z"/>
40
+ </g>
41
+ <g stroke-width="2.7">
42
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322.4 80.3a2.8 2.8 0 0 1-2.8 2.8 2.8 2.8 0 0 1-2.9-2.8 2.8 2.8 0 0 1 2.9-2.9 2.8 2.8 0 0 1 2.8 2.9"/>
43
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318.3 81.8s2.2 0 2.5-1c.2-1-.2-2.1-.2-2.1s1 1.2.8 2c-.3 1-.6 1.3-1.4 1.4a2.5 2.5 0 0 1-1.7-.3z"/>
44
+ </g>
45
+ <g stroke-width="2.5">
46
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322.7 85.8a3 3 0 0 1-3 3.1 3 3 0 0 1-3.1-3 3 3 0 0 1 3-3.2 3 3 0 0 1 3 3.1"/>
47
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318.2 87.4s2.5 0 2.7-1-.2-2.3-.2-2.3 1.2 1.3.9 2.3c-.4 1-.7 1.2-1.5 1.4a2.6 2.6 0 0 1-1.9-.4z"/>
48
+ </g>
49
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M323 93.3c0 1.8-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.4 3.4 3.4 0 0 1 3.3-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
50
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318 95s2.8 0 3-1.1c.3-1.1-.1-2.6-.1-2.6s1.3 1.5.9 2.6c-.4 1-.7 1.4-1.7 1.6a3 3 0 0 1-2-.5z"/>
51
+ <g stroke-width="2.4">
52
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322.7 108.5c0 1.8-1.4 3.2-3.2 3.2a3.2 3.2 0 0 1-3.2-3.2c0-1.7 1.4-3.2 3.2-3.2a3.2 3.2 0 0 1 3.2 3.2"/>
53
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318 110.2s2.6 0 2.8-1.1c.3-1-.1-2.4-.1-2.4s1.2 1.3.8 2.4c-.3 1-.7 1.3-1.5 1.5-.6.1-1.5-.1-2-.4z"/>
54
+ </g>
55
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M313.6 72.3c0 1.9-1.6 3.4-3.4 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
56
+ <path fill="#a3afb8" fill-rule="evenodd" d="M308.6 74s2.7 0 3-1c.3-1.2-.2-2.6-.2-2.6s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.6a3 3 0 0 1-2-.4z"/>
57
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M305.2 69c0 1.9-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
58
+ <path fill="#a3afb8" fill-rule="evenodd" d="M300.3 70.8s2.7 0 3-1.2c.2-1-.2-2.5-.2-2.5s1.3 1.4 1 2.5c-.5 1.1-.8 1.4-1.8 1.6-.6.2-1.5 0-2-.4z"/>
59
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M297.2 65.3c0 1.8-1.5 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.3-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
60
+ <path fill="#a3afb8" fill-rule="evenodd" d="M292.3 67s2.7 0 3-1.1c.3-1.1-.2-2.6-.2-2.6s1.3 1.5 1 2.6c-.4 1-.8 1.4-1.7 1.6a3 3 0 0 1-2.1-.5z"/>
61
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M288 63.3c0 1.9-1.4 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
62
+ <path fill="#a3afb8" fill-rule="evenodd" d="M283.1 65s2.7 0 3-1.1c.3-1.1-.2-2.6-.2-2.6s1.3 1.5 1 2.6c-.4 1-.8 1.4-1.7 1.6a3 3 0 0 1-2-.5z"/>
63
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M277.2 65.8c0 2-1.5 3.4-3.3 3.5a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.4-3.5 3.4 3.4 0 0 1 3.3 3.4"/>
64
+ <path fill="#a3afb8" fill-rule="evenodd" d="M272.3 67.6s2.7 0 3-1.1c.3-1.2-.2-2.6-.2-2.6s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.7a3 3 0 0 1-2-.5z"/>
65
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M269.6 73.5c0 1.9-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.4"/>
66
+ <path fill="#a3afb8" fill-rule="evenodd" d="M264.7 75.2s2.7 0 3-1.1c.2-1.1-.2-2.6-.2-2.6s1.3 1.5.9 2.6c-.4 1-.7 1.4-1.7 1.6a3 3 0 0 1-2-.5z"/>
67
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M266.4 84.2c0 1.9-1.5 3.4-3.3 3.4a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.3-3.4 3.4 3.4 0 0 1 3.4 3.3"/>
68
+ <path fill="#a3afb8" fill-rule="evenodd" d="M261.5 86s2.7-.1 3-1.2c.3-1.1-.2-2.6-.2-2.6s1.3 1.5 1 2.6c-.4 1-.8 1.4-1.7 1.6a3 3 0 0 1-2.1-.5z"/>
69
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M267.8 95.3c0 2-1.5 3.5-3.3 3.5a3.4 3.4 0 0 1-3.4-3.4 3.4 3.4 0 0 1 3.3-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
70
+ <path fill="#a3afb8" fill-rule="evenodd" d="M262.9 97.1s2.7 0 3-1.2c.3-1-.2-2.5-.2-2.5s1.3 1.4 1 2.5c-.4 1.1-.8 1.4-1.7 1.7a3 3 0 0 1-2-.5z"/>
71
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M273 105.5c0 1.8-1.5 3.4-3.4 3.4a3.4 3.4 0 0 1-3.3-3.4 3.4 3.4 0 0 1 3.3-3.5 3.4 3.4 0 0 1 3.4 3.4"/>
72
+ <path fill="#a3afb8" fill-rule="evenodd" d="M268 107.2s2.8 0 3-1.1c.3-1.1-.1-2.6-.1-2.6s1.3 1.4 1 2.5c-.5 1.1-.8 1.4-1.7 1.7a3 3 0 0 1-2.1-.5z"/>
73
+ <g stroke-width="2.8">
74
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" d="M430.6 247.4a6.5 6.5 0 0 1-6.4 6.5 6.5 6.5 0 0 1-6.5-6.5 6.5 6.5 0 0 1 6.4-6.5 6.5 6.5 0 0 1 6.5 6.5" transform="matrix(.31597 -.08466 .13499 .50378 109.4 30)"/>
75
+ <path fill="#a3afb8" fill-rule="evenodd" d="M276.3 120.7s1.6-.5 1.5-1.6c0-1.1-.7-2.4-.7-2.4s1.1 1.1 1.2 2.3c0 1-.1 1.4-.6 1.8-.3.2-1 .2-1.4-.1z"/>
76
+ </g>
77
+ <g stroke-width="2.8">
78
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" d="M430.6 247.4a6.5 6.5 0 0 1-6.4 6.5 6.5 6.5 0 0 1-6.5-6.5 6.5 6.5 0 0 1 6.4-6.5 6.5 6.5 0 0 1 6.5 6.5" transform="matrix(.31758 .0784 -.125 .50636 260 -40.2)"/>
79
+ <path fill="#a3afb8" fill-rule="evenodd" d="M362.3 119.8s1.7.4 2.1-.7c.5-1 .5-2.5.5-2.5s.5 1.6 0 2.6-.8 1.3-1.4 1.3c-.4.1-1-.3-1.2-.7z"/>
80
+ </g>
81
+ </g>
82
+ <path fill="#b3a192" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="m316.7 53.8.3 5.7s-6.8.6-7 1.2c-1.4 3 1.5 7 1.5 7s2.3-1.8 8-1.8c5.5 0 8.3 1.4 8.3 1.4s1.4-2.3 1.4-4c0-1.7-.6-3.4-.6-3.4l-3.6-.4h-2.5l-.2-5.8-5.6.1z"/>
83
+ <path fill="#f0ddcb" stroke="#121116" stroke-linejoin="round" stroke-width=".6" d="M326.4 62.6c0 .7-.6 1.2-1.2 1.2-.7 0-1.3-.5-1.3-1.1 0-.7.6-1.2 1.2-1.2.7 0 1.2.5 1.3 1.1m2.7.7c0 .6-.5 1.2-1.2 1.2s-1.3-.6-1.3-1.2c0-.7.6-1.2 1.3-1.2.7 0 1.2.5 1.2 1.2m-5.5-.7c0 .6-.6 1.2-1.2 1.2-.7 0-1.2-.6-1.2-1.2s.5-1.2 1.1-1.2c.7 0 1.3.6 1.3 1.2m-5.6 0c0 .7-.6 1.3-1.3 1.3-.7 0-1.2-.6-1.2-1.2 0-.7.5-1.2 1.2-1.2s1.3.5 1.3 1.2m-3.1.2c0 .6-.6 1.2-1.3 1.2-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.3.5 1.3 1.2m5.7-3.5c0 .6-.5 1-1 1a1 1 0 0 1-1.2-1c0-.6.5-1 1.1-1 .6 0 1 .4 1 1m0-4.7c0 .5-.4 1-1 1a1 1 0 0 1-1-1c0-.6.4-1 1-1s1 .4 1 1m0 2.5c0 .6-.4 1-1 1s-1-.4-1-1c0-.5.4-1 1-1s1 .4 1 1m-8.8 6.5c0 .7-.5 1.2-1.2 1.2-.6 0-1.2-.5-1.2-1.2 0-.6.5-1.1 1.2-1.1s1.2.5 1.2 1.1"/>
84
+ <path fill="#916c68" stroke="#4d3126" stroke-linejoin="round" stroke-width=".6" d="M320.9 62.4c0 .7-.6 1.2-1.4 1.2a1.3 1.3 0 0 1-1.3-1.2c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3"/>
85
+ <g stroke-width="2.5">
86
+ <path fill="#eee" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.2" d="M322 45.5a2.5 2.5 0 0 1-2.4 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.6 2.5 2.5 0 0 1 2.5 2.5"/>
87
+ <path fill="#a3afb8" fill-rule="evenodd" d="M318.4 46.8s2 0 2.2-1c.2-.7-.1-1.8-.1-1.8s1 1 .7 1.9c-.3.8-.6 1-1.2 1.2a2.2 2.2 0 0 1-1.6-.3z"/>
88
+ </g>
89
+ <path fill="#fc0" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="M280 130.1s2.2 2.1 2.8 4c.6 1.8 1.5 6.8 1.5 6.8s23.2-6.5 34.6-6c11.4.6 37.7 6.3 37.7 6.3l1-5.7c.5-3 2.7-6.3 2.7-6.3s-25.1-7.8-41-7a116 116 0 0 0-27.3 3.5 258.5 258.5 0 0 0-12 4.4z"/>
90
+ <path fill="#fc0" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="M314.7 36h10s-2.5 1.7-3 3.4c-.4 1.4-.3 3.7-.3 3.7s2.7 0 4-1a78.8 78.8 0 0 1 3.7-2.9v12.7s-2.5-2.3-4-3.1a14.4 14.4 0 0 0-3.5-1.3s0 2 .8 3.3 4.3 5.8 4.3 5.8l-14.3.5s3.4-3.5 4.8-6.1c.9-1.7.5-3.5.5-3.5s-2.4 0-3.6.9c-1.3.8-3.4 3.3-3.4 3.3V39.5s1 2.4 3 3.3c2 .9 3.8.4 3.8.4s.4-2.4-.4-4c-.8-1.5-2.6-3.2-2.4-3.1z"/>
91
+ <path fill="#fc0" fill-rule="evenodd" stroke="#121116" stroke-width="1.2" d="M313.9 76.5s-7.1-.1-13.2-3.7-12.3-7.4-21.3-5.3c-1.8.5-8.6 3.5-11.6 13.2a26 26 0 0 0 2.4 18.7 50.2 50.2 0 0 0 5.6 7.4l3.7-2.5s-9.3-8-8.2-18.2c1-10.3 6.2-12.7 6.2-12.7s6.4-5 14.9-.3a80 80 0 0 0 25.3 8.7c.6-.1-4-5.4-3.8-5.3z"/>
92
+ <path fill="#fc0" fill-rule="evenodd" stroke="#000" stroke-width="1.2" d="m274.5 115-3.8-7.4 11.4-4.4s-2.8 3.6-3.4 6.2c-.8 3.2-.5 5.9-.5 5.9s1-.8 2.3-2.9c1-1.5 2.6-7.3 2.6-7.3l5.1 16.3s-2.6-2.6-4.5-2.9c-2-.4-4.6.3-4.6.3l-3 1-1.6-4.8z"/>
93
+ <path fill="#fc0" fill-rule="evenodd" stroke="#121116" stroke-width="1.2" d="M326.7 76.3s7.1 0 13.2-3.7c6.1-3.6 12.2-7.3 21.3-5.2 1.8.4 8.6 3.4 11.6 13.1a26 26 0 0 1-2.5 18.7 116.7 116.7 0 0 1-3.6 5.9l-4.4-1.6s8.1-7.3 7-17.6c-1.1-10.3-6.2-12.7-6.2-12.7s-6.4-5-14.9-.2c-8.5 4.7-16.8 6.8-16.8 6.8s-7.8 2-8.5 1.8c-.7 0 4-5.4 3.8-5.3z"/>
94
+ <path fill="#fc0" stroke="#121116" stroke-linejoin="round" stroke-width="1.2" d="M323 69.3h3V97h-3zm-10-.2h3.5v27.7H313z"/>
95
+ <path fill="#fc0" stroke="#121116" stroke-linejoin="round" stroke-width="1.2" d="M329.2 62.7c0 5-4.3 9-9.7 9-5.3 0-9.7-4-9.7-9 0-4.9 4.3-8.9 9.6-8.9 5.4 0 9.8 4 9.8 8.9"/>
96
+ <path fill="#fc0" fill-rule="evenodd" stroke="#000" d="m310.9 96.8 16.7-.2s-2 1.2-3.7 4.2c-1.6 3-1.4 4.8-1.4 4.8s2.5 0 4.3-1.3a25.9 25.9 0 0 0 3.8-3.7v15.3s-1.3-2-3.3-3c-2-1.3-4.8-1.3-4.8-1.3h-5.7s-2.6.2-3.7 1a29 29 0 0 0-3.7 3.2l-.3-14.6s.8 2.6 3.5 3.6 4.2 1 4.2 1 0-3.4-1.4-5a33 33 0 0 0-4.5-4z"/>
97
+ <path fill="#f6ca1f" fill-rule="evenodd" stroke="#000" stroke-width=".9" d="M320.2 108.8s2.4 5.7 5.3 8.2c1.6 1.5 6.6 2.6 8.8 2 5-1.3 8.6-5.3 8.6-5.3s-.2 4.4 3 6.9c3.1 2.4 5.6 3 8.2 2.3 2.7-.7 10-6.2 10-6.2l1.6 1.3s-4.3 4.2-8.7 6.3c-2.3 1.2-9.3.5-11.5-1.3-2.3-1.8-3.6-6.1-3.6-6.1s-1.4 2.8-4.4 3.8c-3 1-7 1-10.9-.2-2.5-.8-5.9-4.3-6.5-5.5-.6-1.1-.4-1.8-.4-1.8s-2 5.4-5.8 6.9a18.7 18.7 0 0 1-11.5.4c-3.6-1-3.9-3.1-3.9-3.1s-.2 5.7-8 7.3c-8 1.6-14.2-4.1-14.2-4.1l1.1-1.7s4.4 5 11.2 4.6c6.8-.5 9-9.2 9-9.2s3 4.5 11 4.6c7.9.1 10.2-10.3 10.2-10.3l1.4.2z"/>
98
+ <g fill="#fc0" stroke="#000" stroke-width="1.1">
99
+ <path fill-rule="evenodd" d="M300.6 112.1s0-2.7.7-3.6c.8-1.1 2-1.2 2.6-1 .7.2 1.4.8 1.3 2.8-.1 1.9-.7 2.8 0 3.6.5.7.6 1.2 1.7 1 1-.2 1.6-.5 1.3-1.5s-.5 0-.7-.8c-.2-.9 1-4.6.8-6.9-.2-2.2-1-4-2.8-4.5-1.6-.4-3-.4-4.5.7-1.4 1-3.3 4.5-3.3 4.5v7.5l3-.2v-1.6z"/>
100
+ <path fill-rule="evenodd" d="M295 114.1s-1.2-2.5-2-3a2.5 2.5 0 0 0-2.8 0c-.6.5-1 1.4-.1 3.1.8 1.7 1.7 2.4 1.4 3.3-.2.9 0 1.4-1.1 1.7-1.1.3-1.7.1-1.9-1-.2-1 .6 0 .4-1-.1-.8-2.8-3.7-3.5-5.9-.7-2.1-.6-4.1.8-5.2 1.3-1 2.5-1.6 4.3-1.2 1.8.4 4.9 2.9 4.9 2.9l3 6.8-2.8 1-.6-1.5z"/>
101
+ <path fill-rule="evenodd" d="M294.4 92.1s-3 5-2.3 8.8c.7 3.8 4.6 12 4.6 12v1l2.2-.2-.5-1.1s1-9.8.4-12.9a33 33 0 0 0-4.4-7.6zm4.7 22.7s1.5 1.7 3.2 2.6c2 .9 2.8 1 3.5.3.6-.4.4-2.2-.3-2.7-.6-.5-1.4-.2-1.5.3-.2.8-.4.8-1 .4-1-.4-3-1.7-3-1.7l-.9.8zm-2.3.4s-.6 2.2-1.8 3.7c-1.4 1.6-2.1 2-3 1.7-.7-.1-1.3-1.8-.9-2.6.4-.7 1.2-.8 1.5-.4.5.7.7.6 1.1 0l2-2.7 1.1.2z"/>
102
+ <path stroke-linejoin="round" d="M302.4 113.4c.2.6-1.8 1.5-4.3 1.9-2.5.4-4.6.3-4.8-.4 0-.6 1.9-1.5 4.4-2 2.5-.4 4.6-.2 4.7.5"/>
103
+ </g>
104
+ <g fill="#fc0" stroke="#000" stroke-width="1.1">
105
+ <path fill-rule="evenodd" d="M345.6 113.2s1-2.5 2-3.1c1.1-.8 2.2-.5 2.7 0 .6.3 1 1.2.3 3-.8 1.7-1.6 2.4-1.4 3.3.3 1 .2 1.4 1.3 1.6 1.1.3 1.7.1 1.8-1 .1-1-.5 0-.4-1 0-.8 2.6-3.9 3.2-6 .6-2.3.4-4.2-1-5.3-1.4-1-2.7-1.4-4.5-.9-1.7.5-4.7 3.1-4.7 3.1l-2.6 7 2.9.9.4-1.6z"/>
106
+ <path fill-rule="evenodd" d="M339.7 113.1s-.2-2.7-.9-3.5c-.9-1.1-2-1.1-2.6-1-.7.3-1.4 1-1.2 2.9.2 2 .8 2.8.3 3.6-.6.8-.6 1.2-1.7 1.1-1.1 0-1.7-.4-1.5-1.4.2-1 .6 0 .8-.9.1-.8-1.3-4.5-1.2-6.8 0-2.2.8-4 2.5-4.6 1.6-.5 3-.6 4.5.5 1.5 1 3.6 4.3 3.6 4.3l.4 7.4h-3v-1.6z"/>
107
+ <path fill-rule="evenodd" d="M346.8 92.3s-4.5 3.6-5.2 7.4c-.7 3.8.1 12.8.1 12.8l-.3 1 2 .6v-1.2s4.4-8.8 4.9-12a32 32 0 0 0-1.5-8.6zm-3.5 22.9s.8 2.1 2.1 3.5c1.5 1.6 2.2 1.9 3.1 1.6.7-.2 1.1-2 .7-2.6-.4-.7-1.2-.7-1.5-.3-.5.7-.7.5-1.1 0a77.7 77.7 0 0 1-2.2-2.6l-1.1.4zm-2.3-.5s-1.3 1.9-3 2.8c-1.9 1.1-2.7 1.2-3.5.6-.6-.3-.5-2.1.1-2.7.7-.5 1.4-.3 1.6.2.2.8.5.7 1 .4l2.8-2 1 .7z"/>
108
+ <path stroke-linejoin="round" d="M346.9 115c-.1.7-2.3.8-4.8.3s-4.4-1.4-4.3-2c.1-.7 2.3-.8 4.8-.3s4.4 1.4 4.3 2"/>
109
+ </g>
110
+ <path fill="#cca715" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="M279 129.9s.6 2 1.7 1c1.2-1.1 17.3-7.5 40-7.5s37.5 6.3 38.4 6.7c.9.3 1.3.8 2 0 .8-1-.7-2.3-.7-2.3s-15.8-6.7-40.4-6.6c-24.7.1-40.6 7.1-40.6 7.1s-1 .8-.3 1.6z"/>
111
+ <path fill-rule="evenodd" d="M307.9 139.3s.7-2 2-2.4c1-.3 2.5.7 2.5.7s-1.9-.2-2.5.2c-.5.3-.7 1.2-.7 1.2s.4-.8 1.9-.7h1.6s-2.5.3-3 1c-.6.7 2.3 1 2.3 1s-4.5 0-5-.2c-.6-.3-1-1.2-2-1-1 .4-2 1.3-2 1.3s1.1-2 1.8-2 1.2 0 1.8.3l1.3.6zm-16.8 3.6s.3-2 1.5-2.7c1-.5 2.7.2 2.7.2s-2 .2-2.5.6c-.4.4-.4 1.4-.4 1.4s.3-.8 1.7-1a68.5 68.5 0 0 0 1.6-.3s-2.4.7-2.8 1.5c-.5.8 2.5.6 2.5.6s-4.4.8-5 .7c-.7-.2-1.2-1-2.1-.5-1 .4-1.8 1.5-1.8 1.5s.8-2.1 1.5-2.3c.7-.1 1-.2 1.8 0l1.3.3zm30.9-4.3s.8-2 2-2.3c1.1-.3 2.7.8 2.7.8s-2-.3-2.6 0c-.5.3-.7 1.2-.7 1.2s.4-.7 1.9-.5l1.6.1s-2.5 0-3.1.8c-.6.6 2.3 1.1 2.3 1.1s-4.5-.2-5-.5c-.6-.3-1-1.2-2-1-1 .2-2 1-2 1s1.2-1.8 1.9-1.8 1.1 0 1.8.4l1.2.7zm14.1 1.6s1-1.9 2.4-2c1-.2 2.4 1 2.4 1s-1.8-.4-2.5-.2c-.6.2-.9 1-.9 1s.5-.6 2-.3l1.6.4s-2.5-.2-3.2.4c-.7.6 2.1 1.4 2.1 1.4s-4.4-.8-5-1.1c-.4-.4-.7-1.4-1.7-1.3-1 .1-2.2.8-2.2.8s1.5-1.6 2.2-1.5c.7 0 1.1.1 1.7.5l1.1.9zm14 2.5s1-1.4 2.1-1.5c.9 0 1.9 1.1 1.9 1.1s-1.5-.5-2-.4c-.5.1-.8.8-.8.8s.5-.5 1.6-.1l1.3.4s-2-.4-2.6 0c-.6.5 1.6 1.4 1.6 1.4s-3.5-1-4-1.3c-.3-.3-.4-1.1-1.2-1.1-.9 0-1.9.5-1.9.5s1.3-1.3 1.9-1.1c.5 0 .9.2 1.3.5l.9.8z"/>
112
+ <path fill="#0f6545" stroke="#000" stroke-linejoin="round" stroke-width=".7" d="M305 129.7c.4 1.7-1.6 3.5-4.4 4-2.8.6-5.3-.3-5.6-2-.3-1.6 1.6-3.4 4.4-4 2.8-.6 5.3.3 5.6 2z"/>
113
+ <path fill="#cecfc1" d="M298.8 129.4c0 .4-.4.9-1 1-.6.1-1.2-.1-1.3-.5 0-.4.4-.8 1-1 .6 0 1.2.1 1.3.5z"/>
114
+ <path fill="#0f6545" stroke="#000" stroke-linejoin="round" stroke-width=".7" d="M344.1 131.8c-.5 1.6-3 2.2-5.8 1.4-2.7-.9-4.4-2.9-4-4.5.6-1.6 3.2-2.3 5.9-1.4 2.7.8 4.5 2.8 4 4.4z"/>
115
+ <path fill="#cecfc1" d="M338.8 128.5c-.2.4-.7.6-1.3.4-.6-.2-1-.7-.9-1 .1-.5.7-.6 1.3-.5.6.2 1 .7.9 1z"/>
116
+ <path fill="#1f2d86" stroke="#000" stroke-linejoin="round" d="M314.6 126h10.1v5h-10.1z"/>
117
+ <path fill="#707c8b" d="M318.9 127c0 .3-.4.5-1 .5s-1-.2-1-.5c0-.2.5-.4 1-.4s1 .2 1 .4z"/>
118
+ <path fill="#9f1209" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="m286 131 1.6 5-3 1.7s-1.5 1-3 .2c-1.4-.7-2.2-3-1.4-4 1.5-1.8 5.7-3 5.7-2.9z"/>
119
+ <path fill="#8f322f" d="M283.4 134.6c0 .8-.7 1.5-1.5 1.5s-1.4-.7-1.4-1.5c0-.9.6-1.5 1.4-1.5s1.5.6 1.5 1.5z"/>
120
+ <path fill="#e2a494" d="M282 134a.8.8 0 0 1-.2.7.4.4 0 0 1-.5 0 .8.8 0 0 1-.4-.5.8.8 0 0 1 .2-.7.4.4 0 0 1 .5-.1c.2 0 .4.3.4.6z"/>
121
+ <path fill="#9f1209" fill-rule="evenodd" stroke="#000" stroke-width=".5" d="m353.9 131.7-1.7 4.4 4 2s1.7.8 2.8-.1c1-.8 1.2-2.8.4-3.7-.7-1-5.6-2.6-5.5-2.6z"/>
122
+ <path fill="#aa675d" d="M358.6 135.2c0 .6-.6 1-1.3 1s-1.2-.4-1.2-1 .6-1 1.2-1c.7 0 1.3.5 1.3 1z"/>
123
+ <path fill="#e2a494" d="M357.4 135c0 .3-.1.6-.3.7a.5.5 0 0 1-.6 0 .8.8 0 0 1-.3-.6c0-.3.1-.5.3-.6a.5.5 0 0 1 .6 0c.2 0 .3.3.3.6z"/>
124
+ <path fill="#f5d8bc" d="M328.6 126.4a.7.7 0 0 1-.8.7.7.7 0 0 1-.7-.7.7.7 0 0 1 .7-.7c.4 0 .8.3.8.7zm4.3.2a.7.7 0 0 1-.7.7.7.7 0 0 1-.8-.7.7.7 0 0 1 .8-.6c.3 0 .7.2.7.6zm-2.2 1.7c0 .5-.4.9-1 .9s-.8-.4-.8-.9.4-.9.9-.9.9.4.9 1zm2 2.8a.7.7 0 0 1-.6.7.7.7 0 0 1-.8-.7.7.7 0 0 1 .7-.7c.5 0 .8.3.8.7zm-4.1-.5a.7.7 0 0 1-.7.7.7.7 0 0 1-.7-.7.7.7 0 0 1 .7-.7c.4 0 .7.3.7.7zm-20.9-3.5a.7.7 0 0 1-.5.8.7.7 0 0 1-.9-.5.7.7 0 0 1 .6-.8.7.7 0 0 1 .8.5zm4.3-.7a.7.7 0 0 1-.6.8.7.7 0 0 1-.8-.5.7.7 0 0 1 .5-.8.7.7 0 0 1 .9.5zm-1.8 2.1c.1.5-.2 1-.6 1a.9.9 0 0 1-1.1-.6c-.1-.4.2-1 .7-1a.9.9 0 0 1 1 .6zm2.7 2.3a.7.7 0 0 1-.5.8.7.7 0 0 1-.9-.5.7.7 0 0 1 .5-.8.7.7 0 0 1 .9.5zm-4.2.4a.7.7 0 0 1-.5.8.7.7 0 0 1-.9-.5.7.7 0 0 1 .6-.8.7.7 0 0 1 .8.5zm-19.2-.2a.7.7 0 0 1-.4 1 .7.7 0 0 1-.9-.4.7.7 0 0 1 .4-1 .7.7 0 0 1 1 .4zm4.1-1.3a.7.7 0 0 1-.4 1 .7.7 0 0 1-.9-.5.7.7 0 0 1 .4-.9.7.7 0 0 1 1 .4zm-1.4 2.4a.9.9 0 0 1-.5 1 .9.9 0 0 1-1.1-.4.9.9 0 0 1 .5-1.1.9.9 0 0 1 1.1.5zm3 1.8a.7.7 0 0 1-.4 1c-.4 0-.8-.1-1-.5s.1-.7.5-.9a.7.7 0 0 1 .9.4zm-4.1 1a.7.7 0 0 1-.4 1 .7.7 0 0 1-1-.4.7.7 0 0 1 .5-1 .7.7 0 0 1 1 .4zm56.2-5.8c-.1.4-.5.6-1 .5a.8.8 0 0 1-.5-1c0-.3.5-.5 1-.4.3 0 .6.5.5.9zm4.4 1.3c0 .4-.5.7-.9.6a.8.8 0 0 1-.6-1c.1-.3.5-.6 1-.5.4.1.6.5.5 1zm-2.7 1.2a1 1 0 0 1-1.1.7 1 1 0 0 1-.8-1.1 1 1 0 0 1 1.2-.7c.5.1.8.6.7 1.1zm1.5 3.5c-.1.4-.5.6-1 .5a.8.8 0 0 1-.5-.9c0-.4.5-.6.9-.5.4.1.7.5.6 1zm-4.3-1.6c0 .4-.5.6-.9.5a.8.8 0 0 1-.5-.9c0-.4.5-.6.9-.5.4 0 .6.5.5.9z"/>
125
+ <path fill="none" stroke="#000" stroke-width="1.2" d="M356 89s-2 1.9-4.5 1.9a7 7 0 0 1-4.6-1.6c-.8-.5.2-2 .2-2"/>
126
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M312.9 92.8s-3.7-.7-5.3-1.2c-1.5-.5-1.1-1.5-3-1.4-1.7.1-3.5 1.4-3.1 3.2.4 1.8 1.7 2 3 1.7 1.2-.4.8-2.6-.8-2.4-1.7 0-.3 1.5-.3 1.5"/>
127
+ <path fill="none" stroke="#000" d="M287.3 90s1 1.5 3.7 1.2c2.7-.2 3.7-1.6 3.8-2.3.2-.6 0-1.8-.5-2.3-.5-.5-2.3-.7-2.3-.7"/>
128
+ <g stroke="#161111" stroke-width="1.6">
129
+ <path fill="#c00" d="M339.2 270.4c2.5-2.5 6.5-5.2 8.7-11 2-5.6 3-15.7 5-20.8 2.5-8.8 7.5-17.4 1.5-16.8-5.7.6-7.5 6-9.6 10-1 1.5-3.3 4.7-3.7 6.5-.1-3-1.7-11.9-2-20.8-.3-8.4 0-17-.3-20.3-.2-4.3-.2-8.3-1.2-11.4-.5-1.5-2.6-3-3.8-2.9-2.2 0-3.6 2-4 3.9l-.2 2.8c-.2 2.4 0 5.5-.2 8.3-.1 3 .2 6.2 0 9-.2 5.4-.6 10.5-.8 11.5 0-2-1-11.7-1.3-20.9l-.2-10c0-2.6 0-5.4-.2-7.4-.5-3.4-1.6-5-4-5-1.8 0-4.2 1.3-5 5-.3 2.1-.4 4.6-.3 7.4l.2 8c-.2 10.5-.4 21.5-.8 24.8 0-1-1.1-6.5-1.4-13.9l-.4-9.6-.3-9.6c0-1.6-.7-6.2-3.7-6-1.7-.2-3.4 1-4 5.3-.4 2.5-.4 6.6-.5 9.9-.1 6-.4 11.4 0 16.9l.1 7.7c0 .4-.9-2.9-1.3-7.4l-.8-8.6c0-2.3-.1-5.7-.3-8.5-.2-2.1-.1-4.5-2.5-4.3-2.4.1-3.8 1-4.3 5-.4 2.7-.4 8.5-.5 10.5.2 5.3-1.2 17.7-1.8 21.2-.2 2.5-1.2 5.7-1.6 9.2a70 70 0 0 0 1 20.6c2 7 7 10.2 6.8 15-.3 4.8 0 13.3 0 17 0 3.8 3.3 4 10 2.6 11.2-2.4 17.3 2.4 26.4-1.2-1.1-10.4 1.1-16.7 1-20.5zm-6.5-24.7c2.3-6.4 5.2-8.9 8-10.2"/>
130
+ <path fill="none" d="M307.4 239.2c3.5-1.4 7-2.4 10.6-3.6 4.3-1.2 8.5-3 13-3.6 2-.5 4.2-1 6.4-1m-36.1 42c.4-.3 1 .2 1.4.3.6.2 1.3.4 2 .3a107.4 107.4 0 0 1 4 0c1.7 0 3-.2 4.3-1m10 .6 1.6.9c.8.3 1.8.4 7.3 0 3.5.2 6.5-2.8 7.4-3.6"/>
131
+ </g>
132
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gb-sct" viewBox="0 0 640 480">
2
+ <path fill="#0065bd" d="M0 0h640v480H0z"/>
3
+ <path stroke="#fff" stroke-width=".6" d="m0 0 5 3M0 3l5-3" transform="scale(128 160)"/>
4
+ </svg>