iss-ctrl 0.0.2 → 0.0.3

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 (1034) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.json +90 -0
  3. package/README.md +25 -24
  4. package/angular.json +190 -0
  5. package/bun.lock +1998 -0
  6. package/package.json +48 -19
  7. package/projects/iss/.eslintrc.json +37 -0
  8. package/projects/iss/README.md +24 -0
  9. package/projects/iss/ng-package.json +10 -0
  10. package/projects/iss/package.json +17 -0
  11. package/projects/iss/src/components/controls/base/control.base.ts +77 -0
  12. package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
  13. package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
  14. package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
  15. package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
  16. package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
  17. package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
  18. package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
  19. package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
  20. package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
  21. package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
  22. package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
  23. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
  24. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
  25. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
  26. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
  27. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
  28. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
  29. package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
  30. package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
  31. package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
  32. package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
  33. package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
  34. package/projects/iss/src/components/controls/input/input.control.ts +95 -0
  35. package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
  36. package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
  37. package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
  38. package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
  39. package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
  40. package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
  41. package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
  42. package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
  43. package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
  44. package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
  45. package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
  46. package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
  47. package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
  48. package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
  49. package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
  50. package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
  51. package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
  52. package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
  53. package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
  54. package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
  55. package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
  56. package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
  57. package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
  58. package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
  59. package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
  60. package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
  61. package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
  62. package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
  63. package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
  64. package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
  65. package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
  66. package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
  67. package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
  68. package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
  69. package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
  70. package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
  71. package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
  72. package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
  73. package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
  74. package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
  75. package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
  76. package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
  77. package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
  78. package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
  79. package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
  80. package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
  81. package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
  82. package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
  83. package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
  84. package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
  85. package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
  86. package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
  87. package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
  88. package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
  89. package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
  90. package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
  91. package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
  92. package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
  93. package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
  94. package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
  95. package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
  96. package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
  97. package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
  98. package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
  99. package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
  100. package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
  101. package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
  102. package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
  103. package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
  104. package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
  105. package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
  106. package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
  107. package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
  108. package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
  109. package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
  110. package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
  111. package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
  112. package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
  113. package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
  114. package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
  115. package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
  116. package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
  117. package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
  118. package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
  119. package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
  120. package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
  121. package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
  122. package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
  123. package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
  124. package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
  125. package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
  126. package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
  127. package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
  128. package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
  129. package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
  130. package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
  131. package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
  132. package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
  133. package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
  134. package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
  135. package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
  136. package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
  137. package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
  138. package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
  139. package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
  140. package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
  141. package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
  142. package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
  143. package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
  144. package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
  145. package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
  146. package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
  147. package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
  148. package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
  149. package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
  150. package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
  151. package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
  152. package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
  153. package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
  154. package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
  155. package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
  156. package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
  157. package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
  158. package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
  159. package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
  160. package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
  161. package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
  162. package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
  163. package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
  164. package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
  165. package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
  166. package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
  167. package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
  168. package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
  169. package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
  170. package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
  171. package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
  172. package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
  173. package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
  174. package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
  175. package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
  176. package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
  177. package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
  178. package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
  179. package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
  180. package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
  181. package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
  182. package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
  183. package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
  184. package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
  185. package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
  186. package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
  187. package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
  188. package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
  189. package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
  190. package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
  191. package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
  192. package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
  193. package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
  194. package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
  195. package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
  196. package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
  197. package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
  198. package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
  199. package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
  200. package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
  201. package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
  202. package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
  203. package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
  204. package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
  205. package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
  206. package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
  207. package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
  208. package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
  209. package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
  210. package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
  211. package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
  212. package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
  213. package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
  214. package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
  215. package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
  216. package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
  217. package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
  218. package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
  219. package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
  220. package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
  221. package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
  222. package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
  223. package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
  224. package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
  225. package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
  226. package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
  227. package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
  228. package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
  229. package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
  230. package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
  231. package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
  232. package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
  233. package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
  234. package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
  235. package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
  236. package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
  237. package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
  238. package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
  239. package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
  240. package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
  241. package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
  242. package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
  243. package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
  244. package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
  245. package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
  246. package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
  247. package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
  248. package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
  249. package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
  250. package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
  251. package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
  252. package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
  253. package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
  254. package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
  255. package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
  256. package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
  257. package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
  258. package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
  259. package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
  260. package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
  261. package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
  262. package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
  263. package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
  264. package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
  265. package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
  266. package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
  267. package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
  268. package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
  269. package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
  270. package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
  271. package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
  272. package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
  273. package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
  274. package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
  275. package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
  276. package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
  277. package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
  278. package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
  279. package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
  280. package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
  281. package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
  282. package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
  283. package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
  284. package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
  285. package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
  286. package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
  287. package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
  288. package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
  289. package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
  290. package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
  291. package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
  292. package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
  293. package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
  294. package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
  295. package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
  296. package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
  297. package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
  298. package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
  299. package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
  300. package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
  301. package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
  302. package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
  303. package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
  304. package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
  305. package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
  306. package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
  307. package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
  308. package/projects/iss/src/components/controls/select/select.control.ts +261 -0
  309. package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
  310. package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
  311. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
  312. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
  313. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
  314. package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
  315. package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
  316. package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
  317. package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
  318. package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
  319. package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
  320. package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
  321. package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
  322. package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
  323. package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
  324. package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
  325. package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
  326. package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
  327. package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
  328. package/projects/iss/src/components/outlet/outlet.ts +152 -0
  329. package/projects/iss/src/components/shared/hints.component.ts +38 -0
  330. package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
  331. package/projects/iss/src/events/event-handler.service.ts +47 -0
  332. package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
  333. package/projects/iss/src/events/load/load-event.service.ts +26 -0
  334. package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
  335. package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
  336. package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
  337. package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
  338. package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
  339. package/projects/iss/src/events/show/show-event.service.ts +11 -0
  340. package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
  341. package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
  342. package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
  343. package/projects/iss/src/public-api.ts +102 -0
  344. package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
  345. package/projects/iss/src/shared/classes/field-action.ts +28 -0
  346. package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
  347. package/projects/iss/src/shared/classes/field-config.ts +113 -0
  348. package/projects/iss/src/shared/classes/field-option.ts +9 -0
  349. package/projects/iss/src/shared/classes/field-validation.ts +15 -0
  350. package/projects/iss/src/shared/classes/form-field.ts +94 -0
  351. package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
  352. package/projects/iss/src/shared/constants/date.const.ts +18 -0
  353. package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
  354. package/projects/iss/src/shared/constants/provider.const.ts +7 -0
  355. package/projects/iss/src/shared/constants/regex.const.ts +1 -0
  356. package/projects/iss/src/shared/constants/validation.const.ts +115 -0
  357. package/projects/iss/src/shared/indexes/components.index.ts +27 -0
  358. package/projects/iss/src/shared/indexes/services.index.ts +11 -0
  359. package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
  360. package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
  361. package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
  362. package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
  363. package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
  364. package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
  365. package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
  366. package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
  367. package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
  368. package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
  369. package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
  370. package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
  371. package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
  372. package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
  373. package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
  374. package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
  375. package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
  376. package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
  377. package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
  378. package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
  379. package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
  380. package/projects/iss/src/shared/services/loader.service.ts +51 -0
  381. package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
  382. package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
  383. package/projects/iss/src/shared/tokens/field.token.ts +4 -0
  384. package/projects/iss/src/shared/tokens/host.token.ts +3 -0
  385. package/projects/iss/src/shared/tokens/language.token.ts +3 -0
  386. package/projects/iss/src/shared/tokens/url.token.ts +3 -0
  387. package/projects/iss/src/shared/types/iso2.type.ts +244 -0
  388. package/projects/iss/src/shared/types/validation.type.ts +3 -0
  389. package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
  390. package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
  391. package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
  392. package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
  393. package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
  394. package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
  395. package/projects/iss/src/validators/core.validator.ts +39 -0
  396. package/projects/iss/src/validators/file.validator.ts +100 -0
  397. package/projects/iss/src/validators/time.validator.ts +31 -0
  398. package/projects/iss/tsconfig.lib.json +13 -0
  399. package/projects/iss/tsconfig.lib.prod.json +9 -0
  400. package/projects/iss/tsconfig.spec.json +13 -0
  401. package/projects/iss/upgrade.scss +68 -0
  402. package/projects/playground/.eslintrc.json +37 -0
  403. package/projects/playground/public/favicon.ico +0 -0
  404. package/projects/playground/public/flags/ad.svg +282 -0
  405. package/projects/playground/public/flags/ae.svg +6 -0
  406. package/projects/playground/public/flags/af.svg +9 -0
  407. package/projects/playground/public/flags/ag.svg +15 -0
  408. package/projects/playground/public/flags/ai.svg +35 -0
  409. package/projects/playground/public/flags/al.svg +7 -0
  410. package/projects/playground/public/flags/am.svg +5 -0
  411. package/projects/playground/public/flags/ao.svg +19 -0
  412. package/projects/playground/public/flags/aq.svg +45 -0
  413. package/projects/playground/public/flags/ar.svg +66 -0
  414. package/projects/playground/public/flags/as.svg +225 -0
  415. package/projects/playground/public/flags/at.svg +4 -0
  416. package/projects/playground/public/flags/au.svg +32 -0
  417. package/projects/playground/public/flags/aw.svg +11 -0
  418. package/projects/playground/public/flags/ax.svg +11 -0
  419. package/projects/playground/public/flags/az.svg +11 -0
  420. package/projects/playground/public/flags/ba.svg +18 -0
  421. package/projects/playground/public/flags/bb.svg +11 -0
  422. package/projects/playground/public/flags/bd.svg +4 -0
  423. package/projects/playground/public/flags/be.svg +5 -0
  424. package/projects/playground/public/flags/bf.svg +14 -0
  425. package/projects/playground/public/flags/bg.svg +5 -0
  426. package/projects/playground/public/flags/bh.svg +4 -0
  427. package/projects/playground/public/flags/bi.svg +26 -0
  428. package/projects/playground/public/flags/bj.svg +5 -0
  429. package/projects/playground/public/flags/bl.svg +5 -0
  430. package/projects/playground/public/flags/bm.svg +374 -0
  431. package/projects/playground/public/flags/bn.svg +70 -0
  432. package/projects/playground/public/flags/bo.svg +3625 -0
  433. package/projects/playground/public/flags/bq.svg +5 -0
  434. package/projects/playground/public/flags/br.svg +92 -0
  435. package/projects/playground/public/flags/bs.svg +5 -0
  436. package/projects/playground/public/flags/bt.svg +487 -0
  437. package/projects/playground/public/flags/bv.svg +11 -0
  438. package/projects/playground/public/flags/bw.svg +5 -0
  439. package/projects/playground/public/flags/by.svg +15 -0
  440. package/projects/playground/public/flags/bz.svg +629 -0
  441. package/projects/playground/public/flags/ca.svg +7 -0
  442. package/projects/playground/public/flags/cc.svg +33 -0
  443. package/projects/playground/public/flags/cd.svg +5 -0
  444. package/projects/playground/public/flags/cf.svg +7 -0
  445. package/projects/playground/public/flags/cg.svg +5 -0
  446. package/projects/playground/public/flags/ch.svg +4 -0
  447. package/projects/playground/public/flags/ci.svg +5 -0
  448. package/projects/playground/public/flags/ck.svg +29 -0
  449. package/projects/playground/public/flags/cl.svg +14 -0
  450. package/projects/playground/public/flags/cm.svg +15 -0
  451. package/projects/playground/public/flags/cn.svg +11 -0
  452. package/projects/playground/public/flags/co.svg +5 -0
  453. package/projects/playground/public/flags/cr.svg +1332 -0
  454. package/projects/playground/public/flags/cu.svg +6 -0
  455. package/projects/playground/public/flags/cv.svg +24 -0
  456. package/projects/playground/public/flags/cw.svg +16 -0
  457. package/projects/playground/public/flags/cx.svg +24 -0
  458. package/projects/playground/public/flags/cy.svg +13 -0
  459. package/projects/playground/public/flags/cz.svg +5 -0
  460. package/projects/playground/public/flags/de.svg +5 -0
  461. package/projects/playground/public/flags/dj.svg +6 -0
  462. package/projects/playground/public/flags/dk.svg +5 -0
  463. package/projects/playground/public/flags/dm.svg +198 -0
  464. package/projects/playground/public/flags/do.svg +238 -0
  465. package/projects/playground/public/flags/dz.svg +5 -0
  466. package/projects/playground/public/flags/ec.svg +1292 -0
  467. package/projects/playground/public/flags/ee.svg +5 -0
  468. package/projects/playground/public/flags/eg.svg +125 -0
  469. package/projects/playground/public/flags/eh.svg +12 -0
  470. package/projects/playground/public/flags/er.svg +9 -0
  471. package/projects/playground/public/flags/es.svg +445 -0
  472. package/projects/playground/public/flags/et.svg +16 -0
  473. package/projects/playground/public/flags/eu.svg +28 -0
  474. package/projects/playground/public/flags/fi.svg +5 -0
  475. package/projects/playground/public/flags/fj.svg +203 -0
  476. package/projects/playground/public/flags/fk.svg +922 -0
  477. package/projects/playground/public/flags/flags.png +0 -0
  478. package/projects/playground/public/flags/flags@2x.png +0 -0
  479. package/projects/playground/public/flags/fm.svg +16 -0
  480. package/projects/playground/public/flags/fo.svg +11 -0
  481. package/projects/playground/public/flags/fonts.css +271 -0
  482. package/projects/playground/public/flags/fr.svg +5 -0
  483. package/projects/playground/public/flags/ga.svg +5 -0
  484. package/projects/playground/public/flags/gb-eng.svg +7 -0
  485. package/projects/playground/public/flags/gb-nir.svg +15 -0
  486. package/projects/playground/public/flags/gb-sct.svg +11 -0
  487. package/projects/playground/public/flags/gb-wls.svg +16 -0
  488. package/projects/playground/public/flags/gb.svg +15 -0
  489. package/projects/playground/public/flags/gd.svg +11 -0
  490. package/projects/playground/public/flags/ge.svg +17 -0
  491. package/projects/playground/public/flags/gf.svg +5 -0
  492. package/projects/playground/public/flags/gg.svg +8 -0
  493. package/projects/playground/public/flags/gh.svg +6 -0
  494. package/projects/playground/public/flags/gi.svg +69 -0
  495. package/projects/playground/public/flags/gl.svg +4 -0
  496. package/projects/playground/public/flags/gm.svg +7 -0
  497. package/projects/playground/public/flags/gn.svg +5 -0
  498. package/projects/playground/public/flags/gp.svg +5 -0
  499. package/projects/playground/public/flags/gq.svg +88 -0
  500. package/projects/playground/public/flags/gr.svg +4 -0
  501. package/projects/playground/public/flags/gs.svg +693 -0
  502. package/projects/playground/public/flags/gt.svg +317 -0
  503. package/projects/playground/public/flags/gu.svg +58 -0
  504. package/projects/playground/public/flags/gw.svg +13 -0
  505. package/projects/playground/public/flags/gy.svg +7 -0
  506. package/projects/playground/public/flags/hk.svg +17 -0
  507. package/projects/playground/public/flags/hm.svg +32 -0
  508. package/projects/playground/public/flags/hn.svg +10 -0
  509. package/projects/playground/public/flags/hr.svg +282 -0
  510. package/projects/playground/public/flags/ht.svg +1470 -0
  511. package/projects/playground/public/flags/hu.svg +5 -0
  512. package/projects/playground/public/flags/id.svg +4 -0
  513. package/projects/playground/public/flags/ie.svg +5 -0
  514. package/projects/playground/public/flags/il.svg +5 -0
  515. package/projects/playground/public/flags/im.svg +33 -0
  516. package/projects/playground/public/flags/in.svg +25 -0
  517. package/projects/playground/public/flags/io.svg +895 -0
  518. package/projects/playground/public/flags/iq.svg +12 -0
  519. package/projects/playground/public/flags/ir.svg +31 -0
  520. package/projects/playground/public/flags/is.svg +5 -0
  521. package/projects/playground/public/flags/it.svg +5 -0
  522. package/projects/playground/public/flags/je.svg +40 -0
  523. package/projects/playground/public/flags/jm.svg +9 -0
  524. package/projects/playground/public/flags/jo.svg +10 -0
  525. package/projects/playground/public/flags/jp.svg +4 -0
  526. package/projects/playground/public/flags/ke.svg +28 -0
  527. package/projects/playground/public/flags/kg.svg +7 -0
  528. package/projects/playground/public/flags/kh.svg +133 -0
  529. package/projects/playground/public/flags/ki.svg +54 -0
  530. package/projects/playground/public/flags/km.svg +13 -0
  531. package/projects/playground/public/flags/kn.svg +24 -0
  532. package/projects/playground/public/flags/kp.svg +16 -0
  533. package/projects/playground/public/flags/kr.svg +16 -0
  534. package/projects/playground/public/flags/kw.svg +6 -0
  535. package/projects/playground/public/flags/ky.svg +153 -0
  536. package/projects/playground/public/flags/kz.svg +49 -0
  537. package/projects/playground/public/flags/la.svg +5 -0
  538. package/projects/playground/public/flags/lb.svg +8 -0
  539. package/projects/playground/public/flags/lc.svg +6 -0
  540. package/projects/playground/public/flags/li.svg +79 -0
  541. package/projects/playground/public/flags/lk.svg +50 -0
  542. package/projects/playground/public/flags/lr.svg +15 -0
  543. package/projects/playground/public/flags/ls.svg +32 -0
  544. package/projects/playground/public/flags/lt.svg +5 -0
  545. package/projects/playground/public/flags/lu.svg +5 -0
  546. package/projects/playground/public/flags/lv.svg +4 -0
  547. package/projects/playground/public/flags/ly.svg +8 -0
  548. package/projects/playground/public/flags/ma.svg +4 -0
  549. package/projects/playground/public/flags/mc.svg +4 -0
  550. package/projects/playground/public/flags/md.svg +102 -0
  551. package/projects/playground/public/flags/me.svg +240 -0
  552. package/projects/playground/public/flags/mf.svg +5 -0
  553. package/projects/playground/public/flags/mg.svg +5 -0
  554. package/projects/playground/public/flags/mh.svg +18 -0
  555. package/projects/playground/public/flags/mk.svg +6 -0
  556. package/projects/playground/public/flags/ml.svg +5 -0
  557. package/projects/playground/public/flags/mm.svg +12 -0
  558. package/projects/playground/public/flags/mn.svg +12 -0
  559. package/projects/playground/public/flags/mo.svg +13 -0
  560. package/projects/playground/public/flags/mp.svg +2919 -0
  561. package/projects/playground/public/flags/mq.svg +5 -0
  562. package/projects/playground/public/flags/mr.svg +5 -0
  563. package/projects/playground/public/flags/ms.svg +59 -0
  564. package/projects/playground/public/flags/mt.svg +52 -0
  565. package/projects/playground/public/flags/mu.svg +6 -0
  566. package/projects/playground/public/flags/mv.svg +8 -0
  567. package/projects/playground/public/flags/mw.svg +24 -0
  568. package/projects/playground/public/flags/mx.svg +1129 -0
  569. package/projects/playground/public/flags/my.svg +12 -0
  570. package/projects/playground/public/flags/mz.svg +50 -0
  571. package/projects/playground/public/flags/na.svg +17 -0
  572. package/projects/playground/public/flags/nc.svg +5 -0
  573. package/projects/playground/public/flags/ne.svg +6 -0
  574. package/projects/playground/public/flags/nf.svg +8 -0
  575. package/projects/playground/public/flags/ng.svg +4 -0
  576. package/projects/playground/public/flags/ni.svg +281 -0
  577. package/projects/playground/public/flags/nl.svg +5 -0
  578. package/projects/playground/public/flags/no.svg +11 -0
  579. package/projects/playground/public/flags/np.svg +33 -0
  580. package/projects/playground/public/flags/nr.svg +8 -0
  581. package/projects/playground/public/flags/nu.svg +23 -0
  582. package/projects/playground/public/flags/nz.svg +37 -0
  583. package/projects/playground/public/flags/om.svg +307 -0
  584. package/projects/playground/public/flags/pa.svg +15 -0
  585. package/projects/playground/public/flags/pe.svg +767 -0
  586. package/projects/playground/public/flags/pf.svg +38 -0
  587. package/projects/playground/public/flags/pg.svg +16 -0
  588. package/projects/playground/public/flags/ph.svg +28 -0
  589. package/projects/playground/public/flags/pk.svg +7 -0
  590. package/projects/playground/public/flags/pl.svg +4 -0
  591. package/projects/playground/public/flags/pm.svg +5 -0
  592. package/projects/playground/public/flags/pn.svg +131 -0
  593. package/projects/playground/public/flags/pr.svg +6 -0
  594. package/projects/playground/public/flags/ps.svg +6 -0
  595. package/projects/playground/public/flags/pt.svg +79 -0
  596. package/projects/playground/public/flags/pw.svg +4 -0
  597. package/projects/playground/public/flags/py.svg +192 -0
  598. package/projects/playground/public/flags/qa.svg +7 -0
  599. package/projects/playground/public/flags/re.svg +5 -0
  600. package/projects/playground/public/flags/ro.svg +5 -0
  601. package/projects/playground/public/flags/rs.svg +1143 -0
  602. package/projects/playground/public/flags/ru.svg +5 -0
  603. package/projects/playground/public/flags/rw.svg +17 -0
  604. package/projects/playground/public/flags/sa.svg +23 -0
  605. package/projects/playground/public/flags/sb.svg +30 -0
  606. package/projects/playground/public/flags/sc.svg +7 -0
  607. package/projects/playground/public/flags/sd.svg +6 -0
  608. package/projects/playground/public/flags/se.svg +5 -0
  609. package/projects/playground/public/flags/sg.svg +15 -0
  610. package/projects/playground/public/flags/sh.svg +15 -0
  611. package/projects/playground/public/flags/si.svg +30 -0
  612. package/projects/playground/public/flags/sj.svg +11 -0
  613. package/projects/playground/public/flags/sk.svg +21 -0
  614. package/projects/playground/public/flags/sl.svg +5 -0
  615. package/projects/playground/public/flags/sm.svg +847 -0
  616. package/projects/playground/public/flags/sn.svg +15 -0
  617. package/projects/playground/public/flags/so.svg +13 -0
  618. package/projects/playground/public/flags/sr.svg +6 -0
  619. package/projects/playground/public/flags/ss.svg +8 -0
  620. package/projects/playground/public/flags/st.svg +16 -0
  621. package/projects/playground/public/flags/stc-icons.css +1 -0
  622. package/projects/playground/public/flags/sv.svg +3368 -0
  623. package/projects/playground/public/flags/sx.svg +172 -0
  624. package/projects/playground/public/flags/sy.svg +6 -0
  625. package/projects/playground/public/flags/sz.svg +54 -0
  626. package/projects/playground/public/flags/tc.svg +88 -0
  627. package/projects/playground/public/flags/td.svg +5 -0
  628. package/projects/playground/public/flags/tf.svg +18 -0
  629. package/projects/playground/public/flags/tg.svg +15 -0
  630. package/projects/playground/public/flags/th.svg +5 -0
  631. package/projects/playground/public/flags/tj.svg +32 -0
  632. package/projects/playground/public/flags/tk.svg +25 -0
  633. package/projects/playground/public/flags/tl.svg +6 -0
  634. package/projects/playground/public/flags/tm.svg +349 -0
  635. package/projects/playground/public/flags/tn.svg +9 -0
  636. package/projects/playground/public/flags/to.svg +8 -0
  637. package/projects/playground/public/flags/tr.svg +6 -0
  638. package/projects/playground/public/flags/tt.svg +5 -0
  639. package/projects/playground/public/flags/tv.svg +18 -0
  640. package/projects/playground/public/flags/tw.svg +12 -0
  641. package/projects/playground/public/flags/tz.svg +13 -0
  642. package/projects/playground/public/flags/ua.svg +4 -0
  643. package/projects/playground/public/flags/ug.svg +46 -0
  644. package/projects/playground/public/flags/um.svg +25 -0
  645. package/projects/playground/public/flags/us.svg +25 -0
  646. package/projects/playground/public/flags/uy.svg +138 -0
  647. package/projects/playground/public/flags/uz.svg +30 -0
  648. package/projects/playground/public/flags/va.svg +277 -0
  649. package/projects/playground/public/flags/vc.svg +9 -0
  650. package/projects/playground/public/flags/ve.svg +28 -0
  651. package/projects/playground/public/flags/vg.svg +96 -0
  652. package/projects/playground/public/flags/vi.svg +311 -0
  653. package/projects/playground/public/flags/vn.svg +12 -0
  654. package/projects/playground/public/flags/vu.svg +20 -0
  655. package/projects/playground/public/flags/wf.svg +7 -0
  656. package/projects/playground/public/flags/ws.svg +14 -0
  657. package/projects/playground/public/flags/xk.svg +11 -0
  658. package/projects/playground/public/flags/ye.svg +5 -0
  659. package/projects/playground/public/flags/yt.svg +5 -0
  660. package/projects/playground/public/flags/za.svg +17 -0
  661. package/projects/playground/public/flags/zm.svg +20 -0
  662. package/projects/playground/public/flags/zw.svg +130 -0
  663. package/projects/playground/src/app/app.component.ts +119 -0
  664. package/projects/playground/src/app/app.config.ts +51 -0
  665. package/projects/playground/src/app/app.routes.ts +41 -0
  666. package/projects/playground/src/app/login.service.ts +21 -0
  667. package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
  668. package/projects/playground/src/components/attachment.component.ts +35 -0
  669. package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
  670. package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
  671. package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
  672. package/projects/playground/src/components/date-picker-container.component.ts +22 -0
  673. package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
  674. package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
  675. package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
  676. package/projects/playground/src/components/datetime-container.component.ts +25 -0
  677. package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
  678. package/projects/playground/src/components/input-container.component.ts +35 -0
  679. package/projects/playground/src/components/input-wrapper.component.ts +41 -0
  680. package/projects/playground/src/components/mobile-container.component.ts +23 -0
  681. package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
  682. package/projects/playground/src/components/note-wrapper.component.ts +37 -0
  683. package/projects/playground/src/components/outlet-container.component.ts +144 -0
  684. package/projects/playground/src/components/plate-container.component.ts +22 -0
  685. package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
  686. package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
  687. package/projects/playground/src/components/select-container.component.ts +31 -0
  688. package/projects/playground/src/components/select-wrapper.component.ts +48 -0
  689. package/projects/playground/src/components/ships-container.component.ts +23 -0
  690. package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
  691. package/projects/playground/src/components/textarea-container.component.ts +23 -0
  692. package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
  693. package/projects/playground/src/components/time-picker-container.component.ts +23 -0
  694. package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
  695. package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
  696. package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
  697. package/projects/playground/src/eServices/create-request.component.ts +28 -0
  698. package/projects/playground/src/eServices/e-service.component.ts +112 -0
  699. package/projects/playground/src/eServices/view-request.component.ts +13 -0
  700. package/projects/playground/src/index.html +13 -0
  701. package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
  702. package/projects/playground/src/main.ts +8 -0
  703. package/projects/playground/src/services/ss.service.ts +62 -0
  704. package/projects/playground/src/styles.scss +33 -0
  705. package/projects/playground/src/validators/customValidator.validator.ts +10 -0
  706. package/projects/playground/tsconfig.app.json +15 -0
  707. package/tsconfig.json +31 -0
  708. package/components/autocomplete/autocomplete.component.d.ts +0 -6
  709. package/components/base-ctrl.d.ts +0 -33
  710. package/components/checkbox/checkbox.component.d.ts +0 -16
  711. package/components/chips/chips.component.d.ts +0 -6
  712. package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
  713. package/components/date-picker/date-adapter.d.ts +0 -37
  714. package/components/date-picker/date-picker.component.d.ts +0 -15
  715. package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
  716. package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
  717. package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
  718. package/components/file-picker/file-picker.component.d.ts +0 -17
  719. package/components/hints/hints.component.d.ts +0 -9
  720. package/components/input/input.component.d.ts +0 -8
  721. package/components/mobile/COUNTRIES.d.ts +0 -2
  722. package/components/mobile/mobile.component.d.ts +0 -26
  723. package/components/mobile/phone.service.d.ts +0 -17
  724. package/components/note/note.component.d.ts +0 -6
  725. package/components/plate-number/plate-number.component.d.ts +0 -16
  726. package/components/radio/radio.component.d.ts +0 -11
  727. package/components/select/select.component.d.ts +0 -20
  728. package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
  729. package/components/textarea/textarea.component.d.ts +0 -6
  730. package/components/time-picker/time-picker.component.d.ts +0 -19
  731. package/components/toggle-button/toggle-button.component.d.ts +0 -16
  732. package/directives/droppable.directive.d.ts +0 -10
  733. package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
  734. package/esm2022/components/base-ctrl.mjs +0 -93
  735. package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
  736. package/esm2022/components/chips/chips.component.mjs +0 -17
  737. package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
  738. package/esm2022/components/date-picker/date-adapter.mjs +0 -183
  739. package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
  740. package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
  741. package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
  742. package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
  743. package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
  744. package/esm2022/components/hints/hints.component.mjs +0 -66
  745. package/esm2022/components/input/input.component.mjs +0 -32
  746. package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
  747. package/esm2022/components/mobile/mobile.component.mjs +0 -141
  748. package/esm2022/components/mobile/phone.service.mjs +0 -99
  749. package/esm2022/components/note/note.component.mjs +0 -17
  750. package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
  751. package/esm2022/components/radio/radio.component.mjs +0 -40
  752. package/esm2022/components/select/select.component.mjs +0 -123
  753. package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
  754. package/esm2022/components/textarea/textarea.component.mjs +0 -17
  755. package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
  756. package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
  757. package/esm2022/directives/droppable.directive.mjs +0 -39
  758. package/esm2022/interfaces/country.interface.mjs +0 -2
  759. package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
  760. package/esm2022/interfaces/hint.interface.mjs +0 -2
  761. package/esm2022/interfaces/iso2.interface.mjs +0 -2
  762. package/esm2022/interfaces/mobile.interface.mjs +0 -2
  763. package/esm2022/interfaces/option.interface.mjs +0 -2
  764. package/esm2022/interfaces/time.interface.mjs +0 -2
  765. package/esm2022/iss-ctrl.mjs +0 -5
  766. package/esm2022/pipes/select-status.pipe.mjs +0 -18
  767. package/esm2022/public-api.mjs +0 -20
  768. package/fesm2022/iss-ctrl.mjs +0 -3658
  769. package/fesm2022/iss-ctrl.mjs.map +0 -1
  770. package/index.d.ts +0 -5
  771. package/interfaces/country.interface.d.ts +0 -10
  772. package/interfaces/date-range-emission-object.d.ts +0 -5
  773. package/interfaces/hint.interface.d.ts +0 -5
  774. package/interfaces/iso2.interface.d.ts +0 -1
  775. package/interfaces/mobile.interface.d.ts +0 -11
  776. package/interfaces/option.interface.d.ts +0 -4
  777. package/interfaces/time.interface.d.ts +0 -5
  778. package/pipes/select-status.pipe.d.ts +0 -8
  779. package/public-api.d.ts +0 -19
  780. package/src/components/mobile/flags/ad.svg +0 -154
  781. package/src/components/mobile/flags/ae.svg +0 -1
  782. package/src/components/mobile/flags/af.svg +0 -1
  783. package/src/components/mobile/flags/ag.svg +0 -1
  784. package/src/components/mobile/flags/ai.svg +0 -1
  785. package/src/components/mobile/flags/al.svg +0 -1
  786. package/src/components/mobile/flags/am.svg +0 -1
  787. package/src/components/mobile/flags/ao.svg +0 -1
  788. package/src/components/mobile/flags/aq.svg +0 -1
  789. package/src/components/mobile/flags/ar.svg +0 -1
  790. package/src/components/mobile/flags/as.svg +0 -1
  791. package/src/components/mobile/flags/at.svg +0 -1
  792. package/src/components/mobile/flags/au.svg +0 -1
  793. package/src/components/mobile/flags/aw.svg +0 -1
  794. package/src/components/mobile/flags/ax.svg +0 -1
  795. package/src/components/mobile/flags/az.svg +0 -1
  796. package/src/components/mobile/flags/ba.svg +0 -1
  797. package/src/components/mobile/flags/bb.svg +0 -7
  798. package/src/components/mobile/flags/bd.svg +0 -1
  799. package/src/components/mobile/flags/be.svg +0 -1
  800. package/src/components/mobile/flags/bf.svg +0 -1
  801. package/src/components/mobile/flags/bg.svg +0 -1
  802. package/src/components/mobile/flags/bh.svg +0 -1
  803. package/src/components/mobile/flags/bi.svg +0 -26
  804. package/src/components/mobile/flags/bj.svg +0 -1
  805. package/src/components/mobile/flags/bl.svg +0 -1
  806. package/src/components/mobile/flags/bm.svg +0 -1
  807. package/src/components/mobile/flags/bn.svg +0 -58
  808. package/src/components/mobile/flags/bo.svg +0 -1
  809. package/src/components/mobile/flags/bq.svg +0 -1
  810. package/src/components/mobile/flags/br.svg +0 -1
  811. package/src/components/mobile/flags/bs.svg +0 -1
  812. package/src/components/mobile/flags/bt.svg +0 -466
  813. package/src/components/mobile/flags/bv.svg +0 -1
  814. package/src/components/mobile/flags/bw.svg +0 -1
  815. package/src/components/mobile/flags/by.svg +0 -1
  816. package/src/components/mobile/flags/bz.svg +0 -1
  817. package/src/components/mobile/flags/ca.svg +0 -1
  818. package/src/components/mobile/flags/cc.svg +0 -19
  819. package/src/components/mobile/flags/cd.svg +0 -1
  820. package/src/components/mobile/flags/cf.svg +0 -1
  821. package/src/components/mobile/flags/cg.svg +0 -5
  822. package/src/components/mobile/flags/ch.svg +0 -1
  823. package/src/components/mobile/flags/ci.svg +0 -1
  824. package/src/components/mobile/flags/ck.svg +0 -1
  825. package/src/components/mobile/flags/cl.svg +0 -14
  826. package/src/components/mobile/flags/cm.svg +0 -15
  827. package/src/components/mobile/flags/cn.svg +0 -1
  828. package/src/components/mobile/flags/co.svg +0 -5
  829. package/src/components/mobile/flags/cr.svg +0 -1
  830. package/src/components/mobile/flags/cu.svg +0 -6
  831. package/src/components/mobile/flags/cv.svg +0 -24
  832. package/src/components/mobile/flags/cw.svg +0 -16
  833. package/src/components/mobile/flags/cx.svg +0 -15
  834. package/src/components/mobile/flags/cy.svg +0 -1
  835. package/src/components/mobile/flags/cz.svg +0 -5
  836. package/src/components/mobile/flags/de.svg +0 -1
  837. package/src/components/mobile/flags/dj.svg +0 -1
  838. package/src/components/mobile/flags/dk.svg +0 -5
  839. package/src/components/mobile/flags/dm.svg +0 -1
  840. package/src/components/mobile/flags/do.svg +0 -1
  841. package/src/components/mobile/flags/dz.svg +0 -5
  842. package/src/components/mobile/flags/ec.svg +0 -519
  843. package/src/components/mobile/flags/ee.svg +0 -1
  844. package/src/components/mobile/flags/eg.svg +0 -78
  845. package/src/components/mobile/flags/eh.svg +0 -9
  846. package/src/components/mobile/flags/er.svg +0 -6
  847. package/src/components/mobile/flags/es.svg +0 -1
  848. package/src/components/mobile/flags/et.svg +0 -1
  849. package/src/components/mobile/flags/eu.svg +0 -1
  850. package/src/components/mobile/flags/fi.svg +0 -5
  851. package/src/components/mobile/flags/fj.svg +0 -1
  852. package/src/components/mobile/flags/fk.svg +0 -1
  853. package/src/components/mobile/flags/fm.svg +0 -16
  854. package/src/components/mobile/flags/fo.svg +0 -11
  855. package/src/components/mobile/flags/fr.svg +0 -1
  856. package/src/components/mobile/flags/ga.svg +0 -5
  857. package/src/components/mobile/flags/gb-eng.svg +0 -7
  858. package/src/components/mobile/flags/gb-nir.svg +0 -1
  859. package/src/components/mobile/flags/gb-sct.svg +0 -1
  860. package/src/components/mobile/flags/gb-wls.svg +0 -9
  861. package/src/components/mobile/flags/gb.svg +0 -1
  862. package/src/components/mobile/flags/gd.svg +0 -1
  863. package/src/components/mobile/flags/ge.svg +0 -1
  864. package/src/components/mobile/flags/gf.svg +0 -1
  865. package/src/components/mobile/flags/gg.svg +0 -8
  866. package/src/components/mobile/flags/gh.svg +0 -6
  867. package/src/components/mobile/flags/gi.svg +0 -54
  868. package/src/components/mobile/flags/gl.svg +0 -4
  869. package/src/components/mobile/flags/gm.svg +0 -7
  870. package/src/components/mobile/flags/gn.svg +0 -5
  871. package/src/components/mobile/flags/gp.svg +0 -1
  872. package/src/components/mobile/flags/gq.svg +0 -75
  873. package/src/components/mobile/flags/gr.svg +0 -1
  874. package/src/components/mobile/flags/gs.svg +0 -1
  875. package/src/components/mobile/flags/gt.svg +0 -214
  876. package/src/components/mobile/flags/gu.svg +0 -1
  877. package/src/components/mobile/flags/gw.svg +0 -13
  878. package/src/components/mobile/flags/gy.svg +0 -7
  879. package/src/components/mobile/flags/hk.svg +0 -1
  880. package/src/components/mobile/flags/hm.svg +0 -1
  881. package/src/components/mobile/flags/hn.svg +0 -1
  882. package/src/components/mobile/flags/hr.svg +0 -1
  883. package/src/components/mobile/flags/ht.svg +0 -1
  884. package/src/components/mobile/flags/hu.svg +0 -1
  885. package/src/components/mobile/flags/id.svg +0 -1
  886. package/src/components/mobile/flags/ie.svg +0 -1
  887. package/src/components/mobile/flags/il.svg +0 -1
  888. package/src/components/mobile/flags/im.svg +0 -1
  889. package/src/components/mobile/flags/in.svg +0 -1
  890. package/src/components/mobile/flags/io.svg +0 -1
  891. package/src/components/mobile/flags/iq.svg +0 -1
  892. package/src/components/mobile/flags/ir.svg +0 -31
  893. package/src/components/mobile/flags/is.svg +0 -1
  894. package/src/components/mobile/flags/it.svg +0 -1
  895. package/src/components/mobile/flags/je.svg +0 -1
  896. package/src/components/mobile/flags/jm.svg +0 -1
  897. package/src/components/mobile/flags/jo.svg +0 -7
  898. package/src/components/mobile/flags/jp.svg +0 -4
  899. package/src/components/mobile/flags/ke.svg +0 -23
  900. package/src/components/mobile/flags/kg.svg +0 -1
  901. package/src/components/mobile/flags/kh.svg +0 -116
  902. package/src/components/mobile/flags/ki.svg +0 -1
  903. package/src/components/mobile/flags/km.svg +0 -13
  904. package/src/components/mobile/flags/kn.svg +0 -1
  905. package/src/components/mobile/flags/kp.svg +0 -16
  906. package/src/components/mobile/flags/kr.svg +0 -1
  907. package/src/components/mobile/flags/kw.svg +0 -6
  908. package/src/components/mobile/flags/ky.svg +0 -1
  909. package/src/components/mobile/flags/kz.svg +0 -37
  910. package/src/components/mobile/flags/la.svg +0 -1
  911. package/src/components/mobile/flags/lb.svg +0 -5
  912. package/src/components/mobile/flags/lc.svg +0 -6
  913. package/src/components/mobile/flags/li.svg +0 -56
  914. package/src/components/mobile/flags/lk.svg +0 -1
  915. package/src/components/mobile/flags/lr.svg +0 -15
  916. package/src/components/mobile/flags/ls.svg +0 -23
  917. package/src/components/mobile/flags/lt.svg +0 -1
  918. package/src/components/mobile/flags/lu.svg +0 -1
  919. package/src/components/mobile/flags/lv.svg +0 -1
  920. package/src/components/mobile/flags/ly.svg +0 -8
  921. package/src/components/mobile/flags/ma.svg +0 -1
  922. package/src/components/mobile/flags/mc.svg +0 -1
  923. package/src/components/mobile/flags/md.svg +0 -1
  924. package/src/components/mobile/flags/me.svg +0 -93
  925. package/src/components/mobile/flags/mf.svg +0 -1
  926. package/src/components/mobile/flags/mg.svg +0 -1
  927. package/src/components/mobile/flags/mh.svg +0 -1
  928. package/src/components/mobile/flags/mk.svg +0 -1
  929. package/src/components/mobile/flags/ml.svg +0 -5
  930. package/src/components/mobile/flags/mm.svg +0 -12
  931. package/src/components/mobile/flags/mn.svg +0 -1
  932. package/src/components/mobile/flags/mo.svg +0 -10
  933. package/src/components/mobile/flags/mp.svg +0 -1
  934. package/src/components/mobile/flags/mq.svg +0 -1
  935. package/src/components/mobile/flags/mr.svg +0 -1
  936. package/src/components/mobile/flags/ms.svg +0 -1
  937. package/src/components/mobile/flags/mt.svg +0 -1
  938. package/src/components/mobile/flags/mu.svg +0 -1
  939. package/src/components/mobile/flags/mv.svg +0 -1
  940. package/src/components/mobile/flags/mw.svg +0 -24
  941. package/src/components/mobile/flags/mx.svg +0 -1
  942. package/src/components/mobile/flags/my.svg +0 -1
  943. package/src/components/mobile/flags/mz.svg +0 -13
  944. package/src/components/mobile/flags/na.svg +0 -1
  945. package/src/components/mobile/flags/nc.svg +0 -1
  946. package/src/components/mobile/flags/ne.svg +0 -6
  947. package/src/components/mobile/flags/nf.svg +0 -5
  948. package/src/components/mobile/flags/ng.svg +0 -4
  949. package/src/components/mobile/flags/ni.svg +0 -161
  950. package/src/components/mobile/flags/nl.svg +0 -1
  951. package/src/components/mobile/flags/no.svg +0 -1
  952. package/src/components/mobile/flags/np.svg +0 -33
  953. package/src/components/mobile/flags/nr.svg +0 -1
  954. package/src/components/mobile/flags/nu.svg +0 -1
  955. package/src/components/mobile/flags/nz.svg +0 -1
  956. package/src/components/mobile/flags/om.svg +0 -1
  957. package/src/components/mobile/flags/pa.svg +0 -1
  958. package/src/components/mobile/flags/pe.svg +0 -320
  959. package/src/components/mobile/flags/pf.svg +0 -1
  960. package/src/components/mobile/flags/pg.svg +0 -13
  961. package/src/components/mobile/flags/ph.svg +0 -1
  962. package/src/components/mobile/flags/pk.svg +0 -1
  963. package/src/components/mobile/flags/pl.svg +0 -1
  964. package/src/components/mobile/flags/pm.svg +0 -1
  965. package/src/components/mobile/flags/pn.svg +0 -1
  966. package/src/components/mobile/flags/pr.svg +0 -1
  967. package/src/components/mobile/flags/ps.svg +0 -1
  968. package/src/components/mobile/flags/pt.svg +0 -1
  969. package/src/components/mobile/flags/pw.svg +0 -1
  970. package/src/components/mobile/flags/py.svg +0 -1
  971. package/src/components/mobile/flags/qa.svg +0 -1
  972. package/src/components/mobile/flags/re.svg +0 -1
  973. package/src/components/mobile/flags/ro.svg +0 -1
  974. package/src/components/mobile/flags/rs.svg +0 -1
  975. package/src/components/mobile/flags/ru.svg +0 -1
  976. package/src/components/mobile/flags/rw.svg +0 -13
  977. package/src/components/mobile/flags/sa.svg +0 -1
  978. package/src/components/mobile/flags/sb.svg +0 -1
  979. package/src/components/mobile/flags/sc.svg +0 -7
  980. package/src/components/mobile/flags/sd.svg +0 -6
  981. package/src/components/mobile/flags/se.svg +0 -5
  982. package/src/components/mobile/flags/sg.svg +0 -11
  983. package/src/components/mobile/flags/sh.svg +0 -1
  984. package/src/components/mobile/flags/si.svg +0 -1
  985. package/src/components/mobile/flags/sj.svg +0 -1
  986. package/src/components/mobile/flags/sk.svg +0 -1
  987. package/src/components/mobile/flags/sl.svg +0 -1
  988. package/src/components/mobile/flags/sm.svg +0 -1
  989. package/src/components/mobile/flags/sn.svg +0 -1
  990. package/src/components/mobile/flags/so.svg +0 -1
  991. package/src/components/mobile/flags/sr.svg +0 -1
  992. package/src/components/mobile/flags/ss.svg +0 -1
  993. package/src/components/mobile/flags/st.svg +0 -1
  994. package/src/components/mobile/flags/sv.svg +0 -1
  995. package/src/components/mobile/flags/sx.svg +0 -1
  996. package/src/components/mobile/flags/sy.svg +0 -1
  997. package/src/components/mobile/flags/sz.svg +0 -1
  998. package/src/components/mobile/flags/tc.svg +0 -1
  999. package/src/components/mobile/flags/td.svg +0 -1
  1000. package/src/components/mobile/flags/tf.svg +0 -1
  1001. package/src/components/mobile/flags/tg.svg +0 -1
  1002. package/src/components/mobile/flags/th.svg +0 -1
  1003. package/src/components/mobile/flags/tj.svg +0 -1
  1004. package/src/components/mobile/flags/tk.svg +0 -1
  1005. package/src/components/mobile/flags/tl.svg +0 -1
  1006. package/src/components/mobile/flags/tm.svg +0 -1
  1007. package/src/components/mobile/flags/tn.svg +0 -9
  1008. package/src/components/mobile/flags/to.svg +0 -1
  1009. package/src/components/mobile/flags/tr.svg +0 -1
  1010. package/src/components/mobile/flags/tt.svg +0 -5
  1011. package/src/components/mobile/flags/tv.svg +0 -1
  1012. package/src/components/mobile/flags/tw.svg +0 -1
  1013. package/src/components/mobile/flags/tz.svg +0 -1
  1014. package/src/components/mobile/flags/ua.svg +0 -1
  1015. package/src/components/mobile/flags/ug.svg +0 -1
  1016. package/src/components/mobile/flags/um.svg +0 -1
  1017. package/src/components/mobile/flags/us.svg +0 -1
  1018. package/src/components/mobile/flags/uy.svg +0 -1
  1019. package/src/components/mobile/flags/uz.svg +0 -1
  1020. package/src/components/mobile/flags/va.svg +0 -1
  1021. package/src/components/mobile/flags/vc.svg +0 -1
  1022. package/src/components/mobile/flags/ve.svg +0 -1
  1023. package/src/components/mobile/flags/vg.svg +0 -1
  1024. package/src/components/mobile/flags/vi.svg +0 -1
  1025. package/src/components/mobile/flags/vn.svg +0 -1
  1026. package/src/components/mobile/flags/vu.svg +0 -1
  1027. package/src/components/mobile/flags/wf.svg +0 -1
  1028. package/src/components/mobile/flags/ws.svg +0 -1
  1029. package/src/components/mobile/flags/xk.svg +0 -1
  1030. package/src/components/mobile/flags/ye.svg +0 -1
  1031. package/src/components/mobile/flags/yt.svg +0 -1
  1032. package/src/components/mobile/flags/za.svg +0 -1
  1033. package/src/components/mobile/flags/zm.svg +0 -1
  1034. package/src/components/mobile/flags/zw.svg +0 -1
@@ -0,0 +1,693 @@
1
+ <svg viewBox="0 0 750 375" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <linearGradient id="b">
4
+ <stop offset="0" stop-color="#d5dfff"/>
5
+ <stop offset="1" stop-color="#FFF"/>
6
+ </linearGradient>
7
+ <linearGradient id="a">
8
+ <stop offset="0" stop-color="#474747"/>
9
+ <stop offset="1" stop-color="#f50"/>
10
+ </linearGradient>
11
+ <linearGradient
12
+ gradientTransform="matrix(.74087 0 0 1.3286 40.513 .006)"
13
+ gradientUnits="userSpaceOnUse"
14
+ id="f"
15
+ x1="215.83"
16
+ x2="228.97"
17
+ xlink:href="#a"
18
+ y1="102.99"
19
+ y2="102.99"
20
+ />
21
+ <linearGradient
22
+ gradientTransform="matrix(1.5101 0 0 .65184 40.513 .006)"
23
+ gradientUnits="userSpaceOnUse"
24
+ id="c"
25
+ x1="109.34"
26
+ x2="110.94"
27
+ xlink:href="#a"
28
+ y1="218.47"
29
+ y2="173.45"
30
+ />
31
+ <linearGradient
32
+ gradientTransform="matrix(1.2315 0 0 .79928 40.513 .006)"
33
+ gradientUnits="userSpaceOnUse"
34
+ id="d"
35
+ x1="125.91"
36
+ x2="126.02"
37
+ y1="316.38"
38
+ y2="337.23"
39
+ >
40
+ <stop offset="0" stop-color="#b50000"/>
41
+ <stop offset="1" stop-color="#ffc500"/>
42
+ </linearGradient>
43
+ <linearGradient
44
+ gradientTransform="matrix(2.5627 0 0 .38409 40.513 .006)"
45
+ gradientUnits="userSpaceOnUse"
46
+ id="g"
47
+ x1="117.6"
48
+ x2="78.221"
49
+ xlink:href="#b"
50
+ y1="1040.4"
51
+ y2="1003.7"
52
+ />
53
+ <linearGradient
54
+ gradientTransform="matrix(.88634 0 0 1.1105 40.513 .006)"
55
+ gradientUnits="userSpaceOnUse"
56
+ id="h"
57
+ x1="264.72"
58
+ x2="255.03"
59
+ xlink:href="#b"
60
+ y1="245.98"
61
+ y2="226.38"
62
+ />
63
+ <linearGradient
64
+ gradientTransform="matrix(.55904 0 0 1.7607 40.513 .006)"
65
+ gradientUnits="userSpaceOnUse"
66
+ id="e"
67
+ x1="407.87"
68
+ x2="456.4"
69
+ xlink:href="#b"
70
+ y1="149.38"
71
+ y2="147.35"
72
+ />
73
+ </defs>
74
+ <path d="M0 0h750v375H0z" fill="#012169"/>
75
+ <path d="M0 0v20.963L333.073 187.5h41.925v-20.963L41.925.001H0zm374.998 0v20.962L41.925 187.5H0v-20.962L333.073 0h41.925z" fill="#FFF"/>
76
+ <path d="M156.25 0v187.499h62.499V0h-62.5zM0 62.5V125h374.998V62.5H0z" fill="#FFF"/>
77
+ <path
78
+ d="M0 75v37.5h374.998V75H0zM168.75 0v187.499h37.499V0h-37.5zM0 187.499l125-62.5h27.95l-125 62.5H0zM0 0l125 62.5H97.05L0 13.976V0zm222.049 62.5l125-62.5h27.95l-125 62.5h-27.95zm152.95 124.999l-125-62.5h27.95l97.05 48.525V187.5z"
79
+ fill="#c8102e"
80
+ />
81
+ <path
82
+ d="M552.668 265.56s-2.08 5.49-3.266 5.49-5.49-2.373-5.49-2.373-3.117 5.049-4.75 5.34c-1.634.299-5.937-.738-5.937-.738s-4.155 0-4.304-.596c-.149-.59.15-1.776.15-1.776s-5.936 4.744-7.272 4.446c-1.336-.292-5.788-5.93-5.788-5.93l-.742 2.968-8.458-.298-7.42-4.75s-4.156 6.824-4.304 6.675-7.272 1.633-7.272 1.633l-.445-1.335-4.749-2.82s3.71-5.191 3.71-5.34-1.78-.745-1.78-.745l-2.672 2.23-5.49 3.558-5.491-2.522 2.374-4.452.297-3.267 4.304-6.526 52.682-51.202 25.97 47.935-3.857 14.395z"
83
+ fill="#6a4c2d"
84
+ stroke="#000"
85
+ stroke-width=".828"
86
+ />
87
+ <path
88
+ d="M590.096 268.665l13.712-.497-5.838-2.881 52.251-1.969-7.383-2.813-6.54-8.862-27.075-2.037s-2.037-1.546-5.347-.776c-.137-2.105-2.67-4.85-2.67-4.85l-16.668-1.267-10.408 7.104 7.03 18.003 8.936.845z"
89
+ fill="#FFF"
90
+ stroke="#000"
91
+ stroke-width=".828"
92
+ />
93
+ <path
94
+ d="M121.32 150.76l2.22-7.56s3.89-6.56 3.89-9.46c0-2.89 2.9-6.33 2.9-6.33s8.89-2.56 10.78 2.89c9.57-14.46 20.8-.67 20.8-.67l3.11-3.67 6.34-7.78s9.01 8.45 9.12 9.89c.11 1.45 1.55.45 1.55.45l9.79-.78s4.64 3.64 3.67 10.56c3.45 2.04 6.56 14.01 6.56 14.01l-80.73-1.55z"
95
+ fill="url(#c)"
96
+ stroke="#000"
97
+ stroke-width="1pt"
98
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
99
+ />
100
+ <path
101
+ d="M590.102 170.97c1.05-.64 4.353-1.69 3.95-6.521s-4.59-5.397-6.924-5.235c-2.342.161-4.434 2.173-4.434 2.173l-7.732-4.912s3.87-24.405 7.974-25.933c3.9-2.813 4.59-4.03 4.59-4.67 0-.646-1.448-2.26-1.448-2.26l-25.212-2.981-23.84 2.82s-1.851 2.819-1.609 3.949c.242 1.124.323 2.335 4.59 5.638 4.725 3.633 7.973 24.486 7.973 24.486s-6.682 3.298-7.086 2.894c-.403-.397-2.415-.8-3.465-.64-1.043.162-4.508 1.932-4.508 6.521 0 4.596 3.465 7.253 3.465 7.253s22.79-2.657 26.175 3.62c3.304-7.57 24.964-4.911 27.541-6.203z"
102
+ fill="#656263"
103
+ stroke="#000"
104
+ stroke-width=".828"
105
+ />
106
+ <path
107
+ d="M614.657 145.601s.254-2.651 2.142-3.912c1.894-1.26 14.507-1.894 17.537 0 3.024 1.894 4.16 11.228 4.16 11.228s1.895 3.279 2.019 5.676.379 4.036.379 4.036 10.091 13.122 10.215 24.977c1.137 8.073.882 29.64-2.266 37.837-.13 10.222-4.416 16.904-4.416 16.904s1.006 1.763.882 3.658c-.13 1.894-1.136 3.657-1.136 3.657l14.755 7.316-5.422-2.019s5.552 4.67 5.422 4.546c-.125-.13-6.18-2.906-6.18-2.906l3.658 3.658c-.124-.125-8.954-4.037-8.954-4.037s4.16 3.912 3.912 3.788c-.255-.124-6.688-3.155-6.688-3.155s4.036 4.292 3.912 4.037-5.8-2.521-5.8-2.521l.248 2.142s-4.54-.254-4.54-3.658c-2.272-1.26-3.781-3.03-3.781-3.03l-10.47-1.764-11.861-35.446 2.776-59.914.757-3.025-1.26-8.073z"
108
+ stroke="#000"
109
+ stroke-linejoin="round"
110
+ stroke-opacity=".979"
111
+ stroke-width=".776"
112
+ />
113
+ <path
114
+ d="M606.733 337.074s-6.074-12.774-9.098-12.954c-2.732-5.21 9.495-47.792 33.149-50.22 13.004 1.068 1.068 14.99-7.483 10.706 1.068 3.745 5.34 9.104 5.34 9.104s-16.922 7.315-21.908 43.364z"
115
+ fill="#fb0"
116
+ stroke="#000"
117
+ stroke-width=".822"
118
+ />
119
+ <path
120
+ d="M525.307 338.937s5.03-14.544 8.08-14.724c3.055-.18-8.08-48.469-32.313-48.829-13.105 1.08-1.077 15.078 7.54 10.768-1.077 3.776-5.385 9.16-5.385 9.16s17.054 7.359 22.078 43.625z"
121
+ fill="#fb0"
122
+ stroke="#000"
123
+ stroke-width=".828"
124
+ />
125
+ <path
126
+ d="M547.539 248.104c-.062-.118-6.018 1.869-2.161 8.352.292-2.509 2.974-4.03 2.974-4.03s-4.086 4.85.236 8.936c.528-3.857 2.981-5.08 2.981-5.08s-3.036 8.936.056 10.743c.354-3.564 2.627-5.135 2.627-5.135s-2.745 7.998-.292 9.805c.292-3.03 2.335-4.378 2.335-4.378s-1.223 8.297 1.987 8.88c.062-2.924 2.397-5.78 2.397-5.78s-1.055 6.768 3.968 7.066c.063-2.57.994-5.49.994-5.49s2.28 7.18 5.608 6.012c-.056-2.1.056-6.074 0-6.074-.062 0 2.099 6.831 6.073 5.552-.584-1.931.23-4.21.23-4.21s2.105 4.266 5.9 2.862c.645-1.285-.175-3.794-.175-3.794s5.546 5.726 7.241 2.28-4.44-4.615-4.44-4.615h4.148s-1.34-3.502-6.949-4.266c1.926-.876 3.913-.23 3.913-.23s-1.168-4.384-6.893-4.85c2.223-.757 4.676-.23 4.676-.23s-.764-4.148-7.067-5.315c.993-1.112 3.676-.758 3.676-.758s-2.509-3.912-5.372-3.683c-2.862.236-28.733-2.626-28.671-2.57z"
127
+ fill="#00713d"
128
+ stroke="#000"
129
+ stroke-width=".828"
130
+ />
131
+ <path
132
+ d="M573.056 269.186s2.279 1.112 2.223 2.106m-.876-3.912s2.92 2.042 2.863 3.558m-.298-4.614s2.341 1.459 2.453 3.738m1.459-2.801s1.174 2.51.764 2.975m1.578-1.633c.173 1.987-.18 2.16-.18 2.16m-28.616-14.717s2.745 1.751 2.515 4.204m-2.689-2.099s1.285 1.224.994 2.043m2.397-4.086s1.807 2.51 1.223 4.26m1.869-2.627s.82 1.578.062 2.453m1.398-1.694s.993 1.576.117 2.104m-1.222 3.093s2.564.584 2.918 2.509m-1.404-4.26s2.69.173 2.981 3.036m.584-4.03c.056 0 1.807 3.099 1.515 4.086m1.931-3.794s.696 2.98.174 3.912m2.043-2.745c0 .062.056 3.447.056 3.447m-3.44-8.117s1.69.64 1.571 2.28m.001-3.801s2.16 1.23 1.93 3.565m.584-4.552s1.87 2.217 1.168 4.67m2.098-4.149s-.695 2.745-.41 3.857m2.398-1.988s-1.224.938-.584 2.106m-10.041 8.581s.403 2.106 0 2.454m-2.689-3.677s1.34 2.335.875 3.503m-3.739-3.62s1.522 1.75 1.46 3.154m-3.794-2.807s1.403 1.348 1.285 2.105m-2.509-.062s1.342 1.404 1.28 1.696"
133
+ fill="none"
134
+ stroke="#3ec26d"
135
+ stroke-linecap="round"
136
+ stroke-width=".776"
137
+ />
138
+ <path
139
+ d="M529.002 173.49c6.44-.118 12.88-.23 19.32-.347 0 0 12.76 0 14.14 4.142 2.415-5.521 13.45-5.173 13.45-5.173l20.003-.69c.118 16.097.23 32.193.348 48.29-3.907 18.735-17.475 31.962-32.423 37.595-17.823-5.75-29.087-20.81-32.764-37.943-.695-15.29-1.385-30.585-2.074-45.874z"
140
+ fill="#FFF"
141
+ stroke="#000"
142
+ stroke-width=".828"
143
+ />
144
+ <path
145
+ d="M535.883 173.31l28.137 74.98 25.418-76.613c-7.887.51-24.803-1.242-26.902 5.95-3.254-6.434-21.052-3.839-26.653-4.317z"
146
+ fill="#006b00"
147
+ stroke="#000"
148
+ stroke-width=".828"
149
+ />
150
+ <path
151
+ d="M555.034 213.905c1.087.565 1.056-20.35 2.478-20.996.404-1.733.609-2.49 1.118-4.328-1.223-2.168-6.7-2.062-8.731-.218.913 2.919 1.316 3.894 1.316 3.894 2.745 4.44 2.199 22.12 3.82 21.648z"
152
+ fill="#ffc900"
153
+ stroke="#006b00"
154
+ stroke-linecap="round"
155
+ stroke-width=".428"
156
+ />
157
+ <path
158
+ d="M547.495 52.251s1.994-2.259 2.08-2.8c.094-.543 9.036-.904 14.365-10.842 2.98-5.24 0-2.168 0-2.168l-.18-2.53s3.707-3.523 2.353-5.421c-1.36-1.897-.907 2.44-3.074 2.35s-.994-4.699-.994-4.699-.18-.542-.813-.813c-.907.09-.633 1.717-1.447 1.897-.813.181-1.534-3.794-1.534-3.794s-1.354-1.807-2.534 3.885c.634 6.053 4.521 4.878 4.521 8.854 0 3.975-3.434 7.047-4.427 7.137-.994.09-.634-3.343-.634-3.343s-.54-1.626-.9-1.626 1.987-.361 1.627-4.879c-.814-5.42-1.447 1.265-2.894.994-1.447-.27-.36-4.969.18-5.51s-.633-2.802-3.794 2.98c-.274 2.801-.634-.722-1.267-.542-1.08 2.26-.9 3.885.633 5.963 2.26 2.078 3.708 4.156 3.615 5.24-.087 1.085-1.267 3.524-2.888 3.524-1.627 0 .087-2.982 0-3.976-.093-.993-2.8-4.607-2.8-4.607s-1.901-3.072-1.721-3.162c.18-.09-.18-.542-1.08 2.62-.907 3.162-1.994-2.078-1.994-2.078s-1.26 3.884 1.447 6.234c-2.074-.271-2.254.542-2.254.542 0 1.084 2.8 1.536 3.16 3.433.36 1.897-2.893 2.981-2.893 2.981s1.36 1.897 5.148-1.806c.093 2.348-1.44 3.975-1.44 3.975 1.26.572 2.253.511 2.433 1.987z"
159
+ fill="#cdad56"
160
+ stroke="#000"
161
+ stroke-linejoin="round"
162
+ stroke-width=".776"
163
+ />
164
+ <path
165
+ d="M535.1 52.251s-1.689-2.507-1.763-3c-.081-.493-8.31.623-12.202-9.413-2.532-4.769 0-1.973 0-1.973l.154-2.302s-2.695-3.297-1.544-5.023.677 2.22 2.157 2.227c1.84-.082.844-4.275.844-4.275s.153-.493.69-.74c.766.083 1.082 2.556 1.772 2.72s2.117-2.91 2.564-3.542c.634-.09.61-2.548 1.609 2.631-.534 5.508-5.099 4.44-5.099 8.057s2.913 6.412 3.758 6.494c.844.082.54-3.041.54-3.041s.46-1.48.764-1.48c.31 0-2.683.574-2.373-3.536.69-3.848 2.217.248 3.447 0 1.23-.246-.143-4.069.211-4.653.08-.583 1.888-3.09 2.59 2.442.23 2.549 1.62-2.193 2.155-2.029.925 2.055-.404 4.8-1.708 6.691-1.92 1.89-2.789 3.962-2.708 4.949.075.986.528 2.212 1.913 2.212 1.379 0 .466-1.72.54-2.623s2.379-3.832 2.379-3.832c.453-.722.074-2.072.552-2.696.752.008 1.062-1.035 1.826 1.842.77 2.877 1.69-1.891 1.69-1.891s1.073 3.535-1.23 5.673c1.763-.247 1.918.493 1.918.493 0 .986-.838 1.397-1.148 3.123s.919 2.713.919 2.713-1.15 1.727-4.372-1.644c-.08 2.137 1.23 3.617 1.23 3.617-1.081.521-1.92.466-2.075 1.81z"
166
+ fill="#cdad56"
167
+ stroke="#000"
168
+ stroke-linejoin="round"
169
+ stroke-width=".682"
170
+ />
171
+ <path
172
+ d="M584.743 184.494c-1.683-1.527-1.882-.192-2.708-.534-.41-.167-.726-.546-1.08-.894-.304-.317-.67-.447-1.074-.615-.156.454-.305.9-.46 1.354s.429 1.205.416 1.882c-.118 1.006-.528 1.844-1.795 2.186.36-.714.566-.745.454-1.621-.05-.435-1.273-1.211-1.124-1.62.223-.665.608-1.43.323-2.094-.516.354-1.199.168-1.714.385-.441.193-.466 1.006-1.075 1.342-.62.292-1.993.149-3.142-.503.702-.528 1.28-.174 1.981-.702.348-.267.335-1.403.683-1.67.354-.268 1.193-.547 1.54-.814-.316-.36-.298-.925-.614-1.285-.311-.36-1.708-.286-2.025-.64-.633-.72-.51-1.664-1.143-2.379 1.634.584 1.398 1.38 1.808 1.317.77-.373 1.54-.44 1.943-.273.41.174 1.18 1.18 1.584 1.347.155-.453.379-1.024.528-1.478.155-.453-.683-1.235-.534-1.689.31-.9 1.068-1.701 1.372-2.608.112.876.255 1.608.366 2.478.056.434.913.664.97 1.099.055.44-.448 1.447-.398 1.888.472-.093 1.149-.031 1.614-.124.472-.094.783-1.18 1.249-1.273.937-.187 1.614-.13 2.564.05-.701.651-1.242.608-1.683 1.204-.347.267.137 1.143-.875 1.757-.38.224-1.379-.043-1.733.224.317.36.634.714.95 1.074.31.36 1.727.528 2.043.888.628.714.963 1.571.789 2.341zm-43.265.739c1.683-1.527 1.882-.192 2.714-.534.403-.173.72-.552 1.074-.894.304-.317.67-.447 1.074-.62.156.453.31.906.46 1.36.155.453-.422 1.198-.41 1.875.112 1.012.522 1.844 1.789 2.192-.36-.714-.566-.752-.454-1.621.056-.435 1.273-1.211 1.124-1.627-.223-.658-.608-1.428-.323-2.093.522.36 1.199.174 1.72.385.435.199.466 1.012 1.069 1.348.627.292 2 .149 3.142-.503-.702-.534-1.28-.174-1.981-.708-.348-.261-.33-1.404-.683-1.665-.348-.267-1.186-.552-1.54-.82.316-.353.298-.925.614-1.285.317-.354 1.714-.28 2.025-.64.633-.713.515-1.657 1.143-2.378-1.634.584-1.391 1.379-1.801 1.323-.777-.373-1.547-.447-1.95-.273-.404.167-1.18 1.173-1.584 1.347-.155-.453-.372-1.024-.528-1.478s.69-1.235.534-1.689c-.304-.906-1.068-1.701-1.372-2.608-.112.87-.255 1.602-.366 2.478-.056.434-.913.664-.97 1.099-.049.435.454 1.447.398 1.882-.472-.094-1.149-.031-1.614-.118-.466-.1-.777-1.187-1.249-1.28-.937-.186-1.608-.13-2.564.05.701.658 1.242.609 1.683 1.211.347.267-.137 1.143.875 1.757.38.224 1.385-.043 1.733.224a73.93 73.93 0 00-.944 1.074c-.317.36-1.733.528-2.043.882-.634.72-.969 1.577-.795 2.347z"
173
+ fill="#ffc900"
174
+ />
175
+ <path
176
+ d="M583.234 189.326c-1.528 1.186-11.37 3.676-11.476 12.227-.1 8.552 1.726 10.501-.1 10.719-3.552 0-4.06-9.526-3.961-13.75.105-4.222.204-3.57.204-3.57s2.435.646 2.236 2.708c-.205 2.055 2.434-5.093 1.522-7.036 1.62 1.62 3.757.975 3.757.863 0-.106-1.218-1.404-1.727-2.378s1.826.54 1.826.54.1-1.627-1.931-1.515c-2.64 0 .41-.87.41-.87s1.521 1.41 2.54-.105c-1.118-1.193-2.745-1.845-2.745-1.845s-1.423-2.701-3.348-3.241c-2.235-.547-1.93.968-4.47.757-.504.969-.504 1.08.508 1.404-1.726 1.192-.813 3.57-.813 3.57s2.745-1.186 2.64.758c-.1 1.95-1.622 1.627-2.64.435-.913-.54-1.217.54-1.217.54l1.422 1.515s-2.739-.105-3.453 1.733c1.522-.106 2.335.329 2.335.329s-3.148 1.403-3.453 2.161-.403-.863-.503-.863c-.105 0-3.049-1.087-3.049-1.087l-1.018 4.682s2.037 2.031 3.148 1.38c1.118-.647 3.149-2.597 4.366-2.056-3.552 2.707-7.104 6.6-9.036 7.147-.503-.434-2.23-2.167-2.943-1.304-.708.87-.199 1.95.714 1.845.913-.112-2.944.863-2.136 2.49.813 1.62.714 1.515 1.422 1.08.714-.434-.609-.54 2.03-1.298s2.54-1.515 2.54-1.515-.509 1.186-1.931 1.515c-1.422.323-2.534.323-2.23.758.305.429.913 1.186.709 1.62s2.943-2.272 3.757-.105c2.13-.112 3.552-2.707 2.54-4.223.099 1.621 1.117 2.168.502 2.925-.608.758 4.776-2.49 2.137-4.44.708 1.621.813 2.925.813 2.925s1.217-.112 1.522-.546c.304-.429-.609 1.192-.205 1.515.403.329 2.335 2.167 1.521 3.465-.503-.758-.608-1.95-1.217-1.838-.609.105-3.148 1.95-4.67 2.055s1.826 5.633 1.826 5.633-2.335-.33-2.64-.112-1.825-1.95-2.13-.646c-.509 1.621.51.969.51.969s-1.323-.646-2.03.112c-.715.757-1.423 1.515-.914 1.838.503.323 2.739.323 3.043.217s-2.54.218-2.738.54c-.205.324-.609 1.516 0 1.95s2.13-.217 2.229-.54c.105-.329.205 1.186.205 1.186s2.64.218 2.64-2.484c0-2.707.204 1.944.204 1.944s2.64.435 2.739-2.273c.105-2.701.304 1.845.304 1.845s1.726-.547 1.726-.975c0-.435-.099 5.409-1.316 7.036-1.932-1.305-3.149.863-3.149.863s.1 3.136-.105 3.893c-.199.758 1.322-.428 1.422-.757.105-.323 1.931-1.186 2.03-1.404.106-.217.61-1.298.61-1.298s-.405 1.516-1.112 1.733c-.715.211-1.423.969-1.118 1.62s1.422 1.081 1.825 1.733c.404.646 1.826-3.788 1.826-3.788l.106.975s1.825-.434 2.03-1.298c.2-.869-1.93-1.627-.205-3.03 1.727-1.41 0 1.298 0 1.298s.61 2.055 1.013 2.055c.41 0 1.422-3.9.41-4.868-1.019-.975 1.521 1.186 1.521 1.186s1.422-4.006-.1-4.546c-1.527-.54-2.235-.758-2.235-.758s.814-1.08.404-1.186c-.404-.111 2.136 2.379 2.54 1.727.41-.646 1.018-2.596-1.925-3.677-2.95-1.08-.106-4.117-.106-4.117s1.832 2.167 3.148.975c1.317-1.186-.099-1.186-.099-1.186s3.75-2.385 3.856-3.577c-.714-.105-1.93.112-1.93.112s2.135-1.41 1.626-3.683c-.813 1.193-1.931 1.193-1.931 1.193s1.832-1.838 1.521-3.571c-1.111.863-1.012 1.515-1.726 1.298-.708-.218-1.925-7.036.919-7.47 2.838-.43 1.317 3.359 1.416 3.359.105 0 4.266-1.733 0-4.546 1.018-.33 3.148 1.62 3.148 1.62s-.913-4.762-5.483-1.837c1.118-1.193 1.832-1.95 2.745-1.733s4.16-.112 4.16-1.08c-.807-.652-2.533.323-3.452 0-.913-.33 6.502-.87 5.893-4.546z"
177
+ fill="#ffc900"
178
+ stroke="#006b00"
179
+ stroke-linecap="round"
180
+ stroke-linejoin="round"
181
+ stroke-width=".428"
182
+ />
183
+ <path
184
+ d="M481.3 118.54s12.25-6.43 18.37 1.54m4.9 12.24c-.31 0-4.29 3.98-5.21 3.98m13.48 8.88s11.32.92 18.67-10.41"
185
+ fill="none"
186
+ stroke="#006b00"
187
+ stroke-linecap="round"
188
+ stroke-width="1.25"
189
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
190
+ />
191
+ <path
192
+ d="M525.08 141.81s.92 6.13 2.76 6.13c1.83 0-3.06 1.53-4.9.3 2.14 2.76 3.37 7.66 0 9.49"
193
+ fill="none"
194
+ stroke="#006b00"
195
+ stroke-linecap="round"
196
+ stroke-width="1.25"
197
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
198
+ />
199
+ <path
200
+ d="M519.26 218.97s-3.98 4.28-8.88 4.59"
201
+ fill="#e80000"
202
+ stroke="#006b00"
203
+ stroke-linecap="round"
204
+ stroke-width="1.25"
205
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
206
+ />
207
+ <path
208
+ d="M523.86 199.37s-2.45-12.24-.92-15.31c.92-3.98 4.9-5.51 7.96-10.71m-8.27 17.14s-3.06 7.35-16.53 4.9m20.21-23.27s.91 9.8-11.33 6.13m-3.68-50.21s-4.9 4.28-3.06 10.1"
209
+ fill="none"
210
+ stroke="#006b00"
211
+ stroke-linecap="round"
212
+ stroke-width="1.25"
213
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
214
+ />
215
+ <path
216
+ d="M567.087 191.703s2.132-.866 2.54-1.3c.404-.432 1.117-1.298 1.32-1.949.202-.647-1.423-1.623-.61-3.03.507-.649 1.216-.757 2.437 0 1.216.757-1.118-2.38-2.335-2.488-1.22-.109-2.033.865-2.334.649-.305-.217.1.866-.408.866s1.014.866.915 1.408c-.103.541 1.622 2.38 1.522 2.814-.103.432-2.54 2.92-3.047 3.03z"
217
+ fill="#006b00"
218
+ />
219
+ <path
220
+ d="M534.27 97.112c2.79-.636 3.24.07 2.75 2.449-1.31-.66-1.79-1.217-2.75-2.449z"
221
+ fill="#ffc900"
222
+ stroke="#ffc900"
223
+ stroke-linecap="round"
224
+ stroke-linejoin="round"
225
+ stroke-width="1.25"
226
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
227
+ />
228
+ <path
229
+ d="M514.71 233.52s-1.03 6.41 1.49 6.94c-.13-2.48.54-4.17 1.16-4.83-.54-.25-2.53-2.07-2.65-2.11zm-5.68-7.89c-2.32-.33-6.23 1.59-5.11 3.91 1.89-1.62 3.63.13 4.95-1.52.4-.46.29-1.81.16-2.39zm-.02-4.58s-3.65-.58-4.16 1.95c2.52-.32 3.27-.59 4.11-.06.24-.54.01-1.76.05-1.89z"
230
+ fill="#e80000"
231
+ stroke="#006b00"
232
+ stroke-linejoin="round"
233
+ stroke-width="1.25"
234
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
235
+ />
236
+ <path
237
+ d="M493.54 184.94s2.19.82 2.81 3.06c1.74-1.08 2.57-5.83-2.81-3.06zm-5.42 5.45c.09-.04 4.59-2.77 5.05-.16-.95.95-1.37 1.57-2.11 1.78-.58 0-1.74-1.78-2.94-1.62zm-.45 8.85c.08-.04 2.89-2.52 3.97-.87 1.07 1.66-.87 1.57-.87 1.57s-.99-.45-3.1-.7zm-3.97-49.28c-.04 0-3.6-1.37-5.09 1.11 2.36.29 3.19 1.12 4.26 1.95-.29-1.04-.78-2.61.83-3.06zm-6.9 18.56s.16-4.17 2.14-5.87c1.12.62 1.45 1.61 2.2 2.85-1.49.33-3.48.42-4.34 3.02zm9.5-2.98s-3.92 1.82-2.64 3.81c1.28-1.37 2.69-.95 2.69-.99s0-2.77-.05-2.82z"
238
+ fill="#e80000"
239
+ stroke="#006b00"
240
+ stroke-linejoin="round"
241
+ stroke-width="1pt"
242
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
243
+ />
244
+ <path
245
+ d="M480.64 125.6c-1.41 1.58 1.74 5.01 5.04 4.51.83-3.72-4.21-5.66-5.04-4.51z"
246
+ fill="#ffc900"
247
+ stroke="#006b00"
248
+ stroke-linejoin="round"
249
+ stroke-width="1pt"
250
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
251
+ />
252
+ <path d="M550.815 192.088c-.229.619.68 1.489 1.207 1.245.213-.637-.968-1.736-1.207-1.245z" fill="none"/>
253
+ <path
254
+ d="M484.28 122.75s.62 2.94 3.47 2.15c-.45-2.27-2.44-3.97-2.44-3.97-.12.67.41 1.7-1.03 1.82zm1.9 8.52s1.57 1.69 4.67-1.78c-1.4.41-3.88-.83-3.88-.83s0 2.4-.79 2.61z"
255
+ fill="#e80000"
256
+ stroke="#006b00"
257
+ stroke-linejoin="round"
258
+ stroke-width="1pt"
259
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
260
+ />
261
+ <path
262
+ d="M480.46 118.86c-1.4 1.57.59 3.76 3.89 3.27.83-3.72-3.06-4.42-3.89-3.27z"
263
+ fill="#ffc900"
264
+ stroke="#006b00"
265
+ stroke-linejoin="round"
266
+ stroke-width="1pt"
267
+ transform="matrix(.3316 0 0 .35352 391.45 150.228)"
268
+ />
269
+ <path
270
+ d="M144.62 266.62s7.04-2.01 10.78 1.01c3.73 3.01 3.73.28 3.73.28s5.46 2.01 7.04 1.58-1.15.15 1-1.15c2.16-1.29-4.31.29-4.88-2.44-1.01-1.72.14-3.88-2.15-3.16-1.58-2.01 1-3.44.43-5.6-1.58 1.15-2.45-.43-3.74 2.44-3.01-.57-.43-4.74-3.73-5.17 0 3.02-2.44 3.16-2.59 4.89-1.43 1-7.75 4.74-5.89 7.32z"
271
+ fill="url(#d)"
272
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
273
+ />
274
+ <path
275
+ d="M500.91 329.237c2.836-.683 18.2 3.397 24.124 9.744-1.26-11.309-4.392-19.972-4.392-19.972s-9.155-2.614-10.412-1.353c-1.843 1.937-7.38 7.756-9.32 11.581zm-4.683-52.238c-1.077.18-2.154.9-3.231 2.695-1.257 3.049-2.154 10.768-3.95 12.563s-3.41 1.974-3.41 3.595c0 1.615.18 5.384 5.026 6.819 4.847.18 12.567-7.72 12.567-7.72s3.95-4.309 5.564-8.973c-9.334 3.23-15.977-5.39-12.566-8.98z"
276
+ fill="#c01500"
277
+ stroke="#000"
278
+ stroke-width=".828"
279
+ />
280
+ <path
281
+ d="M631.237 327.436c-2.813-.677-18.35 3.379-24.231 9.688 1.248-11.24 4.36-19.86 4.36-19.86 1.086-.292 8.985-2.595 10.233-1.341 1.826 1.925 7.713 7.713 9.638 11.513zm4.353-51.934c1.069.18 1.447 1.584 2.323 3.372 1.242 3.03 2.528 7.452 4.31 9.234 1.782 1.789 3.384 4.428 3.384 6.036s-.372 3.776-5.185 5.204c-4.807.18-11.78-5.998-11.78-5.998s-3.919-4.28-5.521-8.924c9.265 3.217 15.264-5.055 12.47-8.924z"
282
+ fill="#c01500"
283
+ stroke="#000"
284
+ stroke-width=".822"
285
+ />
286
+ <path
287
+ d="M490.842 319.37s9.693 6.638 9.874 9.693c26.032-38.601 92.454-50.63 130.329-2.695 5.03-6.645 10.234-8.793 10.234-8.793-39.85-52.065-119.201-45.6-150.437 1.794z"
288
+ fill="#fb0"
289
+ stroke="#000"
290
+ stroke-width=".828"
291
+ />
292
+ <g fill="#1e5aa6" stroke="#000" stroke-width="1pt">
293
+ <path
294
+ d="M589.6 171.69l3.794-.094-6.776 8.583 8.13 9.488-15.991 20.146 15.09 18.158c-1.658 4.067-3.583 7.768-6.148 11.116l-8.67-9.582 15.718-19.6-12.916-14.636 7.768-23.58zm-54.208 1.713l-4.067.094 7.588 8.215-8.036 10.03 16.712 18.164-13.824 18.518c1.658 4.068 4.037 8.582 6.595 11.923l8.222-10.39-16.891-18.79 12.377-15.718-8.676-22.046z"
295
+ stroke-width=".828"
296
+ />
297
+ <path
298
+ d="M554.184 222.19l-5.962 7.948 21.319 24.666c3.763-1.9 6.72-4.067 9.942-6.682l-11.116-12.83 4.521-13.283 6.502 7.496-20.325 25.933c-3.403-1.447-7.167-3.708-10.57-6.509l10.75-13.637-5.061-13.103zm-6.595-12.377l3.887 4.88-2.534-6.594-1.353 1.714z"
299
+ stroke-width=".828"
300
+ />
301
+ <path d="M575.416 214.129c.08-.094 3.136-4.161 3.136-4.161l-1.186-1.62-1.95 5.78z" stroke-width=".802"/>
302
+ </g>
303
+ <g font-family="Timmons" font-size="14" font-weight="bold">
304
+ <text transform="matrix(.403 -.473 .473 .403 461.4 21.482)" x="-328.344" y="362.397">
305
+ <tspan x="-328.344" y="362.397">L</tspan>
306
+ </text>
307
+ <text transform="matrix(.436 -.442 .442 .436 461.4 21.482)" x="-292.335" y="384.266">
308
+ <tspan x="-292.335" y="384.266">E</tspan>
309
+ </text>
310
+ <text transform="matrix(.4737 -.33822 .35254 .46837 461.4 21.482)" x="-239.78" y="451.681">
311
+ <tspan x="-239.78" y="451.681">O</tspan>
312
+ </text>
313
+ <text transform="matrix(.51446 -.3478 .3478 .51446 461.4 21.482)" x="-188.526" y="429.958">
314
+ <tspan x="-188.526" y="429.958">T</tspan>
315
+ </text>
316
+ <text transform="matrix(.56 -.268 .268 .56 461.4 21.482)" x="-115.426" y="451.479">
317
+ <tspan x="-115.426" y="451.479">E</tspan>
318
+ </text>
319
+ <text transform="matrix(.567 -.252 .252 .567 461.4 21.482)" x="-94.111" y="453.046">
320
+ <tspan x="-94.111" y="453.046">R</tspan>
321
+ </text>
322
+ <text transform="matrix(.576 -.232 .232 .576 461.4 21.482)" x="-68.371" y="454.982">
323
+ <tspan x="-68.371" y="454.982">R</tspan>
324
+ </text>
325
+ <text transform="rotate(-4.6 467.783 -5492.19) scale(.621)" x="112.016" y="445.666">
326
+ <tspan x="112.016" y="445.666">R</tspan>
327
+ </text>
328
+ <text transform="matrix(.62 0 0 .62 461.4 21.482)" x="180.225" y="430.793">
329
+ <tspan x="180.225" y="430.793">R</tspan>
330
+ </text>
331
+ <text transform="matrix(.54 .307 -.307 .54 461.4 21.482)" x="414.759" y="275.217">
332
+ <tspan x="414.759" y="275.217">R</tspan>
333
+ </text>
334
+ <text transform="rotate(39.8 201.03 648.008) scale(.621)" x="483.878" y="193.05">
335
+ <tspan x="483.878" y="193.05">E</tspan>
336
+ </text>
337
+ <text transform="matrix(.59837 .11248 -.09645 .5911 461.4 21.482)" x="309.116" y="414.028">
338
+ <tspan x="309.116" y="414.028">O</tspan>
339
+ </text>
340
+ <text transform="matrix(.56007 -.08172 .08475 .60547 461.4 21.482)" x="105.058" y="459.272">
341
+ <tspan x="105.058" y="459.272">O</tspan>
342
+ </text>
343
+ <text transform="matrix(.582 -.215 .215 .582 461.4 21.482)" x="-45.708" y="455.835">
344
+ <tspan x="-45.708" y="455.835">A</tspan>
345
+ </text>
346
+ <text transform="rotate(45.196 204.897 565.016) scale(.621)" x="518.35" y="144.724">
347
+ <tspan x="518.35" y="144.724">A</tspan>
348
+ </text>
349
+ <text transform="rotate(11.357 122.69 2331.003) scale(.621)" x="271.188" y="388.298">
350
+ <tspan x="271.188" y="388.298">A</tspan>
351
+ </text>
352
+ <text transform="matrix(.61 -.115 .115 .61 461.4 21.482)" x="40.322" y="455.168">
353
+ <tspan x="40.322" y="455.168">M</tspan>
354
+ </text>
355
+ <text transform="matrix(.618 -.064 .064 .618 461.4 21.482)" x="94.429" y="448.079">
356
+ <tspan x="94.429" y="448.079">P</tspan>
357
+ </text>
358
+ <text transform="matrix(.62 0 0 .62 461.4 21.482)" x="155.088" y="437.607">
359
+ <tspan x="155.088" y="437.607">P</tspan>
360
+ </text>
361
+ <text transform="matrix(.54 .306 -.306 .54 461.4 21.482)" x="405.134" y="276.665">
362
+ <tspan x="405.134" y="276.665">P</tspan>
363
+ </text>
364
+ <text transform="rotate(6.586 44.083 4020.832) scale(.621)" x="232.095" y="409.793">
365
+ <tspan x="232.095" y="409.793">I</tspan>
366
+ </text>
367
+ <text transform="rotate(46.59 205.751 546.6) scale(.621)" x="530.392" y="132.089">
368
+ <tspan x="530.392" y="132.089">T</tspan>
369
+ </text>
370
+ <text transform="rotate(36.82 198.426 703.928) scale(.621)" x="464.158" y="218.519">
371
+ <tspan x="464.158" y="218.519">T</tspan>
372
+ </text>
373
+ <text transform="matrix(.596 .175 -.175 .596 461.4 21.482)" x="313.725" y="361.961">
374
+ <tspan x="313.725" y="361.961">M</tspan>
375
+ </text>
376
+ <text transform="rotate(47.66 206.381 533.067) scale(.621)" x="513.704" y="123.248">
377
+ <tspan x="513.704" y="123.248">G</tspan>
378
+ </text>
379
+ </g>
380
+ <path
381
+ d="M620.339 146.266s3.75-3.21 6.42-3.304m-5.88 2.857c.087-.087 22.387-3.21 23.095-3.925m-23.008 4.105c.087-.093 24.97-2.143 24.97-2.143m-25.057 2.23s26.486-1.249 28.094.093m-28.187-.18s25.958.18 26.405.8m-26.312-.8l24.97 2.049m-25.237-1.869c.087 0 25.418 2.23 27.914 5.44m1.335 4.545c-.087-.086-8.65-10.258-29.342-10.078m.093.18s14.357.98 18.903 5.974m-18.636-6.154s9.272-1.783 18.996 9.905"
382
+ fill="none"
383
+ stroke="#fff700"
384
+ stroke-linecap="round"
385
+ stroke-width=".828"
386
+ />
387
+ <path
388
+ d="M247.4 217.74s20.72.82 20.72 2.85-15.44 5.89-15.64 14.42 11.78 9.14 12.59 19.9c.81 10.77-9.34 12.39-11.37 15.24-2.04 1.42-6.91 16.65-6.3 25.59s3.25 39.2 7.92 45.3c3.66 2.84 9.14 11.98 15.03 9.14 5.89-2.85 1.83-13.2 1.22-16.05-.61-2.84 2.44-7.51 2.44-11.78s-2.24-7.72-2.03-8.73c.2-1.02 16.45 3.86 15.43 19.9-1.01 16.05-7.51 11.17-7.51 11.17s2.03 19.71-3.05 22.35c-9.14 4.87-15.84-1.02-15.84-1.02l.86 4.01-6.95-3.6s-8.94-12.8-10.97-18.49c-2.03-5.68-4.47-31.07-3.66-36.56.81-5.48 1.42-37.58 1.02-39.2-.41-1.63-2.03-28.44-1.02-32.5 1.02-4.06 7.31-21.94 7.11-21.94z"
389
+ fill="url(#e)"
390
+ stroke="#000"
391
+ stroke-width="1pt"
392
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
393
+ />
394
+ <path
395
+ d="M601.162 153.42s8.955-8.7 14.128-7.695c2.645 0 .124 1.895.124 1.895s4.54.378 5.173 2.397c.124.881-2.149 1.136-2.149 1.136s1.895.379 2.019 2.018c.13 1.64-19.17.373-19.295.249z"
396
+ fill="#ff7000"
397
+ stroke="#000"
398
+ stroke-width=".828"
399
+ />
400
+ <path d="M601.665 153.04s9.589-1.26 13.625-5.296m-3.912 2.651s7.06-.254 7.06.758" fill="none" stroke="#000" stroke-width=".828"/>
401
+ <path
402
+ d="M636.479 253.575s6.054-1.391 7.694-3.534c1.012-.758 6.31 7.949-7.694 3.534z"
403
+ fill="#FFF"
404
+ stroke="#000"
405
+ stroke-linejoin="round"
406
+ stroke-width=".776"
407
+ />
408
+ <path
409
+ d="M634.84 203.497s.757 4.67-1.386 7.818c-1.136 1.261-4.545 3.41-4.545 4.925 0 1.51 1.26 3.527 1.012 5.297-.255 1.764-2.143 3.534-2.018 5.043 0 1.515 2.142 9.588 1.887 9.712m-6.048-47.929s-4.794 1.64-5.807 6.434"
410
+ fill="none"
411
+ stroke="#FFF"
412
+ stroke-linecap="round"
413
+ stroke-width=".776"
414
+ />
415
+ <path d="M621.717 150.395s1.646 4.54 6.943.249c-3.41-4.664-6.943-.124-6.943-.249z" fill="#c75b00" stroke="#000" stroke-width=".828"/>
416
+ <path d="M625.632 150.204c0 .244-.254.442-.568.442s-.567-.198-.567-.442c0-.243.254-.441.567-.441s.568.198.568.441z"/>
417
+ <path
418
+ d="M578.403 139.857s10.047 10.874 16.55 10.756c1.18 3.192-2.957 6.16-4.609 7.576-3.31-1.062-6.303.192-13.984-9.26.478-6.03 2.16-8.836 2.043-9.072zm13.593-25.293c1.298-4.018 3.9-7.21 6.142-7.564-.59-3.074 4.732-16.662 20.214-21.866.943 6.974-6.62 13.83-6.62 13.83s22.809-3.9 27.417-9.694c-.472 2.602-5.08 18.792-29.43 18.674 9.222 8.75-2.95 15.724-8.153 13.594 9.576-7.328-2.714-11.7-9.57-6.974z"
419
+ fill="#FFF"
420
+ stroke="#000"
421
+ stroke-width=".828"
422
+ />
423
+ <path
424
+ d="M599.796 108.894c4.608-2.956 6.26-2.956 10.048-2.366-2.72.354-2.72.472-2.72.472s-.236.354 1.416 1.894c-1.888-.478-3.546-1.54-8.744 0z"
425
+ fill="#cccccd"
426
+ stroke="#CCC"
427
+ stroke-width=".828"
428
+ />
429
+ <path d="M598.02 107s9.104-4.844 14.184-8.154" fill="none" stroke="#000" stroke-width=".828"/>
430
+ <path
431
+ d="M590.22 158.177s12.532 3.427 13.948-14.538c-2.72-7.8-6.502-24.585-.708-29.43-5.322-3.663-11.11.119-11.11.119-.354.826-5.086 7.563 1.298 19.381-15.127-4.018-8.98 10.284-8.98 10.284.59-2.248 8.626-4.372 10.638 7.092.826 2.838-5.44 7.21-5.086 7.092z"
432
+ fill="#00F"
433
+ stroke="#000"
434
+ stroke-width=".828"
435
+ />
436
+ <path
437
+ d="M604.286 143.757s13.24-7.092 12.88-23.753c-11.228.236-15.246 14.767-15.246 14.767l2.366 8.986z"
438
+ fill="#00F"
439
+ stroke="#000"
440
+ stroke-width=".828"
441
+ />
442
+ <path
443
+ d="M544.956 142.931s-9.806 8.508-15.364 5.788c-4.136 2.484-8.98-1.888-8.98-1.888s5.67 20.915 26.002 5.788c-.354-4.608-1.422-9.334-1.658-9.688z"
444
+ fill="#FFF"
445
+ stroke="#000"
446
+ stroke-width=".828"
447
+ />
448
+ <path
449
+ d="M529.474 148.365c.826-4.372 4.254-6.502 6.974-2.366 3.664.714 7.328-14.296-5.676-11.818 3.664-19.617-7.325-26.945-7.325-26.945s-3.9 21.747-2.127 25.765c1.773 4.018-2.6-7.446-16.664-10.638-.237 16.432 15.719 24.114 15.719 24.114s4.491 4.136 9.099 1.888z"
450
+ fill="#00F"
451
+ stroke="#000"
452
+ stroke-width=".828"
453
+ />
454
+ <path
455
+ d="M530.772 134.063s-6.142 5.204-4.726 12.296m-4.608-13.004s-1.418 5.08 1.655 12.29m-2.601 1.658s2.837-4.608 8.982 1.298"
456
+ fill="none"
457
+ stroke="#000"
458
+ stroke-width=".828"
459
+ />
460
+ <path
461
+ d="M521.674 115.39c0-.118-9.336 0-3.782 9.457-4.136 1.298-13.354-4.725-6.972-12.767-20.92-.472-29.429-10.514-29.429-19.736 6.146 6.384 20.801 3.782 26.001 7.682-6.382-5.906-5.082-14.066-5.082-14.066s17.847 5.322 21.037 21.158c-1.064 3.074-1.536 8.508-1.773 8.272z"
462
+ fill="#FFF"
463
+ stroke="#000"
464
+ stroke-width=".828"
465
+ />
466
+ <path d="M507.318 99.616c3.444 3.503 12.293 4.552 16.784 8.452" fill="none" stroke="#000" stroke-width=".828"/>
467
+ <path
468
+ d="M511.392 109.956s7.326-.944 9.45 1.652c-2.867 0-3.823-.708-7.963.832 1.168-.596.849-1.658 1.486-1.658s-2.654-.826-2.973-.826z"
469
+ fill="#cccccd"
470
+ stroke="#CCC"
471
+ stroke-width=".589"
472
+ />
473
+ <path
474
+ d="M547.912 52.635s4.017-3.546 8.39-.355c-1.976 5.904-9.098 3.664-9.098 3.664s.236 2.955-.472 4.373c1.422 1.072 2.595 4.61 2.595 4.61s7.328-1.773 8.868 1.418c2.807-.388 4.844 0 4.844 0s5.676-1.418 7.682-1.418c2.012 0 8.39 1.654 8.98 2.836.596 1.181 2.72 9.1 4.142 8.982 1.415-.118-3.428 1.89-4.732-.118-1.298-2.01-.944 2.6-.944 2.6s4.017 4.254 4.49 5.2c.471.943-2.478 8.625-.237 13.947-1.968.18-2.123 2.242-2.123 2.242-.112 2.341-3.074 2.956-3.074 2.956l-.708-3.192-2.012 1.186.826-2.484s2.72-6.62 2.956-8.744c.236-2.13-2.484-5.911-4.608-5.911-2.13 0-3.664 6.737-3.664 6.737s-1.062 5.08-.708 5.552-1.422-1.652-1.422-1.652-.944 3.074-1.652 4.018-2.248 1.298-2.248 1.298-1.062-3.074-.708-4.254 5.794-5.788 5.322-9.097c-.478-3.31 0-2.484-.124-2.602-.118-.118-2.832-2.482-2.95-3.782-.118-1.3-3.546 1.655-8.036.709-1.378 2.402-1.54 8.388-1.54 8.388s-.472 7.21.472 8.042c.95.826-2.36 2.596-2.36 2.596l-2.366 3.192s-.826-2.006-.826-1.888-1.658 1.18-1.658 1.18l.95-2.366c-.062-1.788 2.298-6.676 2.298-10.812s.298-8.568.298-8.568-4.372-.237-4.254 4.252c.118 4.497-1.061 4.733-.825 6.03s1.415 4.962 1.061 6.03c-.354 1.062-1.77 1.416-1.77 1.416l-.353.59s-4.372 2.012-4.254 2.838-.118-2.366-.118-2.366L542 96.48s2.602-1.652 2.602-5.788-.597-4.725-.479-5.67c.118-.95.715-4.377.597-4.731-.118-.355-2.478.945-3.192.945-.708 0 1.304-2.482 1.54-4.255s-2.366 1.655-4.49-.354c.987-2.182 2.478-2.837 2.714-4.491s-1.652 1.418-3.31.236c.136-1.586 1.776-2.954 1.776-2.954s-1.348-.166-1.894 0c-1.062-.355 1.186-2.01 1.304-4.373s-1.304-3.31-1.304-3.428-2.36-2.127-2.714-2.954-.354-1.773-.354-1.773-3.906 2.836-8.514-3.191c4.223-3.604 8.75-.946 8.75-.946s1.18-3.31 6.614-3.073c5.44.237 6.501 3.31 6.266 2.955z"
475
+ fill="#923f00"
476
+ stroke="#000"
477
+ stroke-width=".828"
478
+ />
479
+ <path
480
+ d="M577.645 113.769c.093 0 10.035.298 10.135 5.614.1 5.31-3.05 3.937-3.149 3.937s-7.284-.888-7.284-.888l.298-8.663z"
481
+ fill="#00F"
482
+ stroke="#000"
483
+ stroke-width=".828"
484
+ />
485
+ <path
486
+ d="M567.995 112.29s12.401-.092 11.712 5.317c-.69 5.415-3.838 4.334-3.838 4.334l-6.005-.497-1.87-9.153z"
487
+ fill="#fffeff"
488
+ stroke="#000"
489
+ stroke-width=".828"
490
+ />
491
+ <path
492
+ d="M561.008 111.7l7.185.59s4.329.59 4.136 4.727c-.198 4.135-4.434 4.235-4.434 4.235l-6.986-.398.1-9.153z"
493
+ fill="#00F"
494
+ stroke="#000"
495
+ stroke-width=".828"
496
+ />
497
+ <path
498
+ d="M544.18 113.769c-.1 0-10.042.298-10.142 5.614-.093 5.31 3.056 3.937 3.155 3.937s7.284-.888 7.284-.888l-.298-8.663z"
499
+ fill="#FFF"
500
+ stroke="#000"
501
+ stroke-width=".828"
502
+ />
503
+ <path
504
+ d="M553.823 112.29s-12.4-.092-11.712 5.317c.69 5.415 3.838 4.334 3.838 4.334l6.005-.497 1.87-9.153z"
505
+ fill="#00F"
506
+ stroke="#000"
507
+ stroke-width=".828"
508
+ />
509
+ <path
510
+ d="M560.816 111.7l-7.185.59s-4.335.59-4.136 4.727 4.428 4.235 4.428 4.235l6.986-.398-.093-9.153z"
511
+ fill="#FFF"
512
+ stroke="#000"
513
+ stroke-width=".828"
514
+ />
515
+ <path
516
+ d="M580.054 171.46s5.167-7.614 7.347-6.8c1.9.633.453 6.526-.453 7.073l-6.894-.273zm-35.415 1.36c-1.627-2.267-3.987-8.52-6.16-6.8-1.907.633-.454 6.526.453 7.073l5.707-.273z"
517
+ fill="#5e0043"
518
+ stroke="#000"
519
+ stroke-width=".828"
520
+ />
521
+ <path d="M548.06 157.76s10.067 6.204 13.37 6.366 13.774-8.055 13.774-8.055" fill="none" stroke="#000" stroke-width=".828"/>
522
+ <path
523
+ d="M549.03 133.442l1.93-2.416 9.67 4.913 9.824-4.354 1.931 2.019-10.954 7.731-12.402-7.893z"
524
+ fill="#5e0043"
525
+ stroke="#000"
526
+ stroke-width=".828"
527
+ />
528
+ <path
529
+ d="M541.354 133.312c.782.987 7.03 8.582 8.16 14.866 1.124 6.285-.646-8.62-.646-8.62s7.731 3.789 7.973 6.205 3.695-.162 3.863-.578l-22.387-14.537 3.037 2.664zm38.197-.435s-8.135 10.712-7.166 22.387c-1.677-5.589-.323-14.817-.323-14.817l-1.77 1.13s-1.85 7.893-4.191 9.098c-.392-.938-.317-1.286-.317-1.286s-2.497 3.217-2.98 3.54.16 10.874.16 10.874.839 7.65 1.801 7.57c-1.099.534-2.446 1.372-2.446 1.372l-1-20.418 2.285-2.298s3.062-3.701 3.304-7.328c-1.329 1.13-2.82 1.453-2.82 1.453s-.403 5.155-1.608 5.875c-1.21.727-1.242 2.074-1.242 2.074l-.285-6.738 18.598-12.488z"
530
+ fill="#474747"
531
+ stroke="#474747"
532
+ stroke-linejoin="round"
533
+ stroke-width=".776"
534
+ />
535
+ <path d="M560.946 145.278l1.578 32.212" fill="none" stroke="#000" stroke-linecap="round" stroke-width=".776"/>
536
+ <path
537
+ d="M541.136 160.66s3.702 2.18 5.074 8.781c12.078-.888 15.867 3.385 15.867 3.385s9.904-4.75 14.5-3.869c1.608-3.378 6.197-7.731 6.197-7.731"
538
+ fill="none"
539
+ stroke="#000"
540
+ stroke-width=".828"
541
+ />
542
+ <path
543
+ d="M536.081 129.089l24.865 16.27 22.394-15.06s4.67-2.576 4.266-4.427c-.398-1.857-2.012-1.13-2.82-.807-.8.323-23.436 16.35-23.436 16.35l-24.082-15.226s-1.77-.56-2.093.565c-.323 1.13.664 1.77.906 2.335z"
544
+ fill="#b4b6b9"
545
+ stroke="#000"
546
+ stroke-width=".828"
547
+ />
548
+ <path
549
+ d="M580.551 124.866s-6.365-2.701-6.365-.36c0 2.335.18 2.577 1.205 4.08 1.018 1.496-.783 2.459-.783 2.459s-.242-.658-.602-1.683c-.36-1.018-3.782-1.739-4.08-2.937-.298-1.205.72-3.124-1.323-3.36-2.037-.242-4.018.839-4.44 3.18s-3.061 7.8-3.061 7.8l.36-12.42c4.483.316 12.805 1.297 19.207 2.036-1.919-.298.72.125.665.783-.18.54-.845.596-.783.422zm-22.511-3.124c-1.136 0-6.843.659-8.284 1.503-1.44.839 2.341 2.155 1.863 3.298s-.54 3.421-2.341 2.943c-1.801-.484-7.862-3.483-8.042-4.502s-1.441-1.08-1.441-1.08 17.407-2.342 18.245-2.162z"
550
+ fill="#474747"
551
+ stroke="#474747"
552
+ stroke-linejoin="round"
553
+ stroke-width=".776"
554
+ />
555
+ <path d="M560.785 120.314l-.044 15.264M549.03 102.33s-6.975 11.32-7.111 11.669" fill="none" stroke="#000" stroke-width=".828"/>
556
+ <path
557
+ d="M161.8 129.74s4.89 6.67 4.33 8.56c2 1.56 4.23 7.79 4.23 7.79"
558
+ fill="url(#f)"
559
+ stroke="#000"
560
+ stroke-width="1pt"
561
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
562
+ />
563
+ <path d="M573.615 101.361s-6.558 9.253-6.353 9.942" fill="none" stroke="#000" stroke-width=".828"/>
564
+ <path d="M540.013 57.364c-.149.517-.985.717-1.867.447s-1.478-.909-1.33-1.426c.15-.518.985-.718 1.868-.448s1.477.91 1.329 1.427zm2.651-.183c.148.517.984.718 1.867.447s1.477-.908 1.329-1.426c-.149-.517-.985-.718-1.867-.447s-1.478.909-1.33 1.426z"/>
565
+ <path
566
+ d="M619.438 248.849s-2.434.46-2.353.683c.074.23-7.073.46-7.223.23-.155-.23-1.068 1.217-1.068 1.217l1.143-.683s1.745 1.82 2.28 1.67-.23.683-.075.838c.149.15.683-.304.683-.304l11.811-.199-5.198-3.452z"
567
+ fill="#ff7000"
568
+ stroke="#000"
569
+ stroke-linejoin="round"
570
+ stroke-width=".828"
571
+ />
572
+ <path
573
+ d="M623.841 252.525l-9.65.28s-2.428 2.204-2.584 2.732c-.149.534 1.596.683 1.596.683l.535 1.826 1.217-.454s8.203 1.218 15.736-.46c3.8-1.328 4.465-2.924 1.8-3.893-2.657-.969-8.575-.677-8.65-.714z"
574
+ fill="#ff7000"
575
+ stroke="#000"
576
+ stroke-linejoin="round"
577
+ stroke-width=".776"
578
+ />
579
+ <path
580
+ d="M208.37 403.93l27.97-1.25-5.21-4.42 75.65-3.05-2.61-6.01-84.7 3.4 10.19 4.76-22.88.68.68 2.38-6-.23s6.68 2.6 6.91 3.74z"
581
+ fill="url(#g)"
582
+ stroke="#000"
583
+ stroke-width="1pt"
584
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
585
+ />
586
+ <path
587
+ d="M239.73 249.42c-2.23-1.11-12-2.44-22.89 4.67l.45 25.11s15.99-8.67 23.77-6.67c-.45-7.78-.45-17.77-1.33-23.11z"
588
+ fill="url(#h)"
589
+ stroke="#000"
590
+ stroke-width="1pt"
591
+ transform="matrix(.621 0 0 .621 461.4 21.482)"
592
+ />
593
+ <path
594
+ d="M514.231 223.71l-40.959 40.664m59.214-40.365l-33.244 43.78m31.76-55.207l-44.374 53.723m-1.336-.745l4.304-5.043m49.864-20.927l-17.216 23.747m-.742 3.117l.446 9.048m25.374-27.603l-18.252 22.859m14.991-1.783l7.421-12.171m-4.602-2.372l-8.904 10.09m6.234-19.586l-6.085 7.415m-1.783-18.251s-18.55 27.156-18.253 29.386m16.322-32.944c-.44.292-16.025 20.921-16.025 20.921m-.89 6.527l-2.82 3.415m-3.562 5.198l-4.303 5.639"
595
+ fill="none"
596
+ stroke="#000"
597
+ stroke-width=".828"
598
+ />
599
+ <path
600
+ d="M512.205 161.207s-1.257 3.95 0 5.924c1.256 1.975 9.155 17.953 9.155 17.953s5.388-6.644 7.363-6.824c1.974-.174 1.074 17.239 1.074 17.239s-3.23 3.049-5.204 2.869c-1.976-.18 4.844 6.824 4.664 12.749s-8.974 35.366-12.205 35.9c-3.232.54 1.436-5.384 1.256-6.999s-1.077-.54-1.795-2.335 1.078-4.49.718-6.284c-.359-1.795-1.975-1.435-2.154-2.69-.18-1.26 1.077-1.614.898-3.055-.18-1.434-2.155-1.074-1.975-2.335.18-1.254.359-.714.18-3.049s-.539 1.615-2.514 1.795-3.59 4.67-3.59 4.67-3.95 5.564-7.9 3.049c2.334 5.03.54 7.185-.358 7.359-.898.18.717 3.95-1.437 4.13s1.616 8.439-.897 9.16c2.692 1.254.538 2.868.538 2.868s-6.222.522-4.847 8.62c-18.311-6.465-27.287-17.593-27.108-28.902.18-11.314 3.77-21.542 12.567-25.312 2.513-9.34 6.822-19.393 6.822-19.393s-.718-4.13-.18-6.819c.54-2.695 3.052-5.384 3.052-5.384s-.36-6.465-.179-9.694c.18-3.235 1.436-4.67 1.615-6.464s-.538-10.955 1.257-12.57 5.206-1.434 7.001-2.508c1.796-1.08 4.13-3.056 6.463-2.876s4.308 1.795 4.308 1.795 8.798 0 9.336 3.41c.538 3.415-1.795 4.67-1.795 4.67s1.257 4.85-4.13 9.333z"
601
+ fill="#8a9396"
602
+ stroke="#2b2b2b"
603
+ stroke-width=".828"
604
+ />
605
+ <path
606
+ d="M504.394 148.77c.282.52-.36 1.413-1.433 1.994s-2.172.63-2.454.11c-.281-.521.36-1.414 1.434-1.995s2.172-.63 2.453-.11z"
607
+ fill="#cecfcf"
608
+ stroke="#2b2b2b"
609
+ stroke-width=".828"
610
+ />
611
+ <path d="M502.904 149.676c0 .329-.299.595-.667.595-.368 0-.667-.266-.667-.595 0-.328.299-.594.667-.594.368 0 .667.266.667.594z"/>
612
+ <path
613
+ d="M516.03 155.618s2.18 9.737-.427 16.456m1.097-20.716s4.255 5.626 3.706 12.625m-3.294-13.861c.138 0 3.568 3.018 3.43 5.074m-2.606-6.31s2.333 1.646 2.881 3.292"
614
+ fill="none"
615
+ stroke="#2b2b2b"
616
+ stroke-width=".388"
617
+ />
618
+ <path d="M516.838 147.924s-8.37 13.587-7.273 22.095" fill="none" stroke="#000" stroke-width=".828"/>
619
+ <path d="M517.387 147.514s-11.115 6.589-13.173 28.131" fill="none" stroke="#2b2b2b" stroke-width=".388"/>
620
+ <path d="M516.152 151.495l-4.391 3.29" fill="none" stroke="#000" stroke-width=".828"/>
621
+ <path d="M500.097 176.881s6.175-25.66 17.153-29.367" fill="none" stroke="#2b2b2b" stroke-width=".388"/>
622
+ <path
623
+ d="M521.503 185.525s5.903-7.408 7.275-7.135.957 17.152.957 17.152-4.39 3.291-5.347 3.155c-.963-.137 4.937 7.961 4.8 10.98s-.273 3.017-.273 3.017 0-1.782-1.372-4.664-.553-6.179-9.47-13.45c-2.196-4.528 4.391 2.744 5.762 1.645 1.373-1.093-2.469-10.563-2.332-10.7z"
624
+ fill="#2b2b2b"
625
+ stroke="#2b2b2b"
626
+ stroke-width=".828"
627
+ />
628
+ <path
629
+ d="M511.014 143.794s-2.48.677-2.82 1.69c-.338 1.018-1.803 2.03-2.592 1.688-.79-.335-2.256-1.577-2.256-1.577"
630
+ fill="none"
631
+ stroke="#2b2b2b"
632
+ stroke-width=".828"
633
+ />
634
+ <path
635
+ d="M496.919 152.476s-3.721 3.72-1.917 4.173c1.804.447 3.721-2.931 3.721-2.931s0 5.75 1.579 4.844c1.579-.9 6.201-4.167 6.201-4.167s1.579-.118 1.917 0c.339.111 4.285 3.49 6.878 2.254-1.465 3.831-3.157 4.285-3.157 4.285s-2.706 3.496-6.201 2.701c-3.496-.789-4.398-2.254-4.398-2.254s-2.932.23-3.834-1.124c-.902-1.354-1.24-2.143-1.24-2.143s-1.691 1.69-2.143.9c-.45-.788 0-5.414 2.594-6.538z"
636
+ fill="#2b2b2b"
637
+ stroke="#2b2b2b"
638
+ stroke-linejoin="round"
639
+ stroke-width=".776"
640
+ />
641
+ <path d="M518.005 147.29s-6.878-2.03-9.246 1.354c-2.368 3.378-1.804 5.297-.564 5.633" fill="none" stroke="#2b2b2b" stroke-width=".828"/>
642
+ <path d="M519.066 147.098c0 .81-.58 1.468-1.297 1.468s-1.296-.657-1.296-1.468.58-1.468 1.296-1.468 1.297.657 1.297 1.468z"/>
643
+ <path
644
+ d="M499.048 164.647s2.805 4.316 6.149 5.502-2.32 2.211-5.664-.05c-2.427-3.29-1.78-5.663-1.78-5.663s.647-.652 1.295.211zm24.002 25.461s-7.875-10.948-10.14-11.544c-2.266-.59 1.725-1.074 4.153 1.242 2.427 2.316-.647-3.776-.647-3.776l6.634 14.078z"
645
+ fill="#2b2b2b"
646
+ stroke="#2b2b2b"
647
+ stroke-width=".828"
648
+ />
649
+ <path
650
+ d="M498.293 253.376c3.02-.807 16.18 7.551 19.147 9.656 2.967 2.1 9.171.752 9.171.752s-2.863 1.726-4.64 2.16c-1.78.43 5.286.43 5.286.43s-16.828 4.638-33.926-4.366c-1.565-7.011 3.667-8.576 4.962-8.632z"
651
+ fill="#2b2b2b"
652
+ stroke="#2b2b2b"
653
+ stroke-linejoin="round"
654
+ stroke-width=".776"
655
+ />
656
+ <path
657
+ d="M517.548 192.803s-2.211-.428-3.344-1.726c-1.132-1.292-2.75-4.477-4.423-5.825-1.672-1.347-10.032-5.93-13.052-5.608s-3.938-.322-4.316-.701-1.617.161-1.402 1.726c.216 1.565-2.32 5.018-1.402 6.632.917 1.621 5.232 8.198 6.095 8.415.863.217.324 3.832.324 3.832s3.829 3.88 4.8 4.098c.97.217 1.941.92 1.834 1.832-.108.92-4.208 5.937-4.208 5.937s-4.422 2.316-4.476 3.614c-.054 1.292 1.078 3.987 4.585 4.85 3.505.863 12.944.162 13.43-.646.485-.807 1.24-5.663.916-6.148s-2.643-1.943-3.83-1.726c-1.185.217-2.264 1.186-2.157 1.403.108.218-1.671 1.13-1.671.267s3.505-4.744 3.829-4.421c.324.323 5.286.807 6.203 3.291.917 2.478.917 4.26 3.505 3.993 2.59-.273 6.202-2.645 6.525-7.607s-2.91-8.309-3.72-8.793-3.506-2.106-3.721-2.857c-.216-.758-.755-3.235-.324-3.832z"
658
+ fill="#2b2b2b"
659
+ stroke="#2b2b2b"
660
+ stroke-width=".828"
661
+ />
662
+ <path
663
+ d="M470.893 214.706s8.36-2.16 10.517-2.105c2.158.05 10.302 3.825 12.676 6.148 2.373 2.316 7.227 7.818 10.41 7.334 3.182-.485 4.099-1.13 4.099-1.13l-1.241 2.372s-2.589.702-3.883.379c-1.295-.323-3.83-1.137-6.365-3.615-2.535-2.484-10.356-9.172-16.99-8.687-6.634.49-10.464 7.017-10.464 7.017s.054-3.186.324-3.887-1.402 1.509-1.402 1.509l2.319-5.335z"
664
+ fill="#2b2b2b"
665
+ stroke="#2b2b2b"
666
+ stroke-width=".828"
667
+ />
668
+ <path
669
+ d="M501.69 221.177c.055.05 2.104.59 5.556.59s5.286-1.51 5.286-1.51l-.216-1.347.54-1.888s2.642 2.696 2.588 3.236-1.078.758-1.078.758l-.378-1.298-.916 1.136s-5.017 3.987-7.767 3.397c-2.751-.596-5.286-2.372-4.585-2.807.701-.428 1.079-.267.97-.267zm-12.19 7.067s-3.02-.056-4.368.59-1.834 1.46-2.75 1.347c-.917-.105-1.619-1.291-1.35-1.776.378-.757 2.158-1.726 5.556-1.459 3.398.273 2.913 1.298 2.913 1.298zm10.573 8.197c0-.161-.216-4.421-1.888-6.148-1.672-1.726-3.722-1.726-4.639-1.515-.917.217 3.398 2.105 3.83 3.347s1.834 4.695 1.456 5.558c-.378.857-1.079-2.428-3.722-3.347s-6.31-.429-5.555.758 3.722.105 5.232 2.639 2.643 5.235 2.643 5.235l.485-1.838 1.349-.373.161-3.509.648-.807z"
670
+ fill="#2b2b2b"
671
+ stroke="#2b2b2b"
672
+ stroke-width=".828"
673
+ />
674
+ <path
675
+ d="M497.915 250.246l-2.75-5.502s-.864-3.503-3.183-4.477c-2.319-.97-5.394-.808-5.448.378s4.963 2.695 5.286 3.348c.324.645.162 1.726-.27 1.776-.43.055-2.642-.808-3.775-.54-1.133.273-1.78 1.726-3.452 1.297-1.672-.435-3.075-5.769-2.427-6.31.647-.54-1.24.97-1.618-.434s.54-5.769-.108-6.31c-.647-.54-3.775-2.427-3.83-2.806-.053-.373.162-21.462 17.8-3.987-7.552-8.955-10.518-7.986-11.92-8.036-1.025 0-7.875.59-9.601 9.328-1.726 8.737-3.776 3.291-3.776 3.291s-.377 3.776 1.457 4.856c1.833 1.075-.864 4.204-.864 4.204s-3.29-8.035-2.804-11.544c-.647 2.807-.593 9.762 3.56 17.37 4.854 5.123 9.439 9.873 21.628 15.208 6.419-9.812 6.095-10.998 6.095-11.11z"
676
+ fill="#2b2b2b"
677
+ stroke="#2b2b2b"
678
+ stroke-linejoin="round"
679
+ stroke-width=".776"
680
+ />
681
+ <path
682
+ d="M486.373 250.302s3.56.428 4.53 2.267c.971 1.831 1.403 4.638 1.403 4.638.593-1.186.862-2.21 2.05-3.074s2.05-.975 1.995-1.62-3.776-4.583-5.663-4.8-5.178 2.049-5.178 2.049-.593.863.863.54z"
683
+ fill="#8a9396"
684
+ stroke="#2b2b2b"
685
+ stroke-linejoin="round"
686
+ stroke-width=".776"
687
+ />
688
+ <g fill="none" stroke-linecap="round" stroke-width="1.25">
689
+ <path d="M494.504 259.58s9.225 4.204 24.42 4.477" stroke="#8a9396" stroke-width=".776"/>
690
+ <path d="M525.3 216.755s-.788 7.744-6.744 23.02" stroke="#2b2b2b" stroke-width=".776"/>
691
+ <path d="M524.115 221.519s-1.788 5.557-6.75 9.724" stroke="#2b2b2b" stroke-linecap="butt" stroke-width=".828"/>
692
+ </g>
693
+ </svg>