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
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 675 450"><path d="M0 0l298.571 225.241H675V0z" fill="#dc171d"/><path d="M0 0l299.005 225.746L0 450z" fill="#fff" stroke="#fff"/><path d="M0 450l298.571-224.759H675V450z" fill="#012a87"/><path d="M150.828 170.286l.092-3.484s-1.871-2.98.3-6.18c0 0-4.612-2.44-3.538-6.262 0 0-4.17-1.066-3.864-5.654 0 0-4.502-.312-4.968-4.144 0 0-4.502.741-6.483-2.993 0 0-4.392.858-5.63-2.22 0 0-4.269 1.479-6.802-2.14 0 0-4.508 1.822-6.397-1.594-1.865 3.404-6.372 1.594-6.372 1.594-2.503 3.606-6.802 2.11-6.802 2.11-1.196 3.09-5.575 2.214-5.575 2.214-1.975 3.735-6.47 2.993-6.47 2.993-.442 3.82-4.937 4.133-4.937 4.133.355 4.6-3.809 5.642-3.809 5.642 1.098 3.82-3.508 6.254-3.508 6.254 2.227 3.22.374 6.176.374 6.176l-.104 3.212 74.506.345" fill="#ff0"/><path d="M377.175 843.108l.091-3.458s-1.857-2.958.298-6.136c0 0-4.578-2.422-3.512-6.215 0 0-4.139-1.059-3.835-5.613 0 0-4.468-.31-4.931-4.114 0 0-4.468.736-6.434-2.971 0 0-4.359.852-5.588-2.204 0 0-4.237 1.468-6.751-2.124 0 0-4.474 1.808-6.349-1.583-1.851 3.379-6.325 1.583-6.325 1.583-2.484 3.579-6.751 2.094-6.751 2.094-1.187 3.068-5.533 2.198-5.533 2.198-1.96 3.708-6.422 2.971-6.422 2.971-.438 3.793-4.9 4.103-4.9 4.103.353 4.566-3.78 5.601-3.78 5.601 1.09 3.792-3.482 6.208-3.482 6.208 2.21 3.196.371 6.131.371 6.131l-.103 3.189 73.949.342h-.012z" fill="#f9d90f" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M149.086 165.937c-11.702-1.172-25.177-3.949-35.579 1.908-6.973-4.11-16.683-3.858-24.95-3.053-4.49.802-9.77.802-14.462 1.57l-.735.103c-8.513.565-16.235-1.95-23.632-5.256 2.349 13.332 4.956 26.994 6.238 40.951 2.79 20.671-9.783 38.026-4.625 58.446 3.08 9.798 13.855 15.495 23.717 16.624 9.55.563 19.43 2.128 28.269 4.047 1.68.35 3.673 1.129 4.833 1.63 2.435 1.02 4.22 2.515 5.783 4.116 5.336-5.557 13.156-7.102 20.871-7.917 13.904-1.625 31.047-.741 39.56-13.336v-.713c4.624-6.965 4.01-17.592 2.005-25.485-.135-2.753-.87-5.181-1.27-7.806-8.494-22.431-1.22-47.658 2.436-70.268-4.465 2.44-9.446 3.593-14.413 4.814-3.961.528-8.377.288-12.388.072l-1.663-.447m17.485 64.376" fill="#dc171d"/><path d="M166.566 230.313c-.056 1.477.742 2.637 1.03 4.003 1.626 9.806 3.197 22.793-6.899 28.877-11.169 7.1-25.815 4.06-38.738 7.818-2.582.717-6.139 3.091-7.954 4.77-1.166-.766-2.337-1.944-3.84-2.636-10.634-5.654-24.459-3.759-36.462-6.813-6.029-1.907-12.315-6.603-13.842-12.774-3.926-16.188 5.477-29.985 4.366-46.045-.717-12.264-2.778-24.037-5.612-35.535 9.385 4.372 20.246 5.101 30.796 3.005 7.813-1.092 16.91-1.116 24.232 2.189 4.035-1.736 8.759-2.514 13.107-2.993 8.268.804 17.154 2.3 25.668 2.238 5.686-.295 10.85-1.938 15.793-4.127-2.932 19.004-8.562 38.91-1.65 58.023" fill="#62afe1"/><path d="M149.687 234.101l-.092-17.869h2.201L124.48 198.59l-.05-9.168h2.638l-13.659-9.78-13.591 9.774h2.63l.05 9.161-27.17 17.619 2.17.012.092 17.857 72.09.05" fill="#fff"/><path d="M376.042 906.458l-.091-17.739h2.185l-27.113-17.513-.049-9.101h2.618l-13.557-9.709-13.49 9.703h2.611l.049 9.094-26.967 17.49 2.155.012.091 17.727 71.551.049.006-.013z" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M158.083 257.576l.006 5.592-88.005-.098-.036-5.568 88.043.075" fill="#fff"/><path d="M384.376 929.761l.006 5.551-87.347-.097-.036-5.527 87.384.074h-.006z" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M75.929 257.238l-.074-18.924 3.564-.007-.196 19.145.214-18.99-5.133-.148v-4.06l78.652.087.037 4.023h-4.85l.09 19.162-.17-19.162h3.612l.08 18.947" fill="#fff"/><path d="M302.836 929.426l-.073-18.786 3.537-.007-.195 19.005.213-18.852-5.095-.146v-4.03l78.064.086.037 3.993h-4.815l.091 19.023-.17-19.023h3.585l.079 18.809m-58.475-4.698l-.055-13.1h-10.482l.061 13.087 10.476.013m0 0l-.055-13.1h-10.482l.061 13.087 10.476.013m0 0l-.055-13.1h-10.482l.061 13.087 10.476.013m0 0l-.055-13.1h-10.482l.061 13.087 10.476.013m0 0l-.055-13.1h-10.482l.061 13.087 10.476.013m-7.682-10.368l.03 7.609h4.797l-.024-7.609h-4.803m58.925 10.404l-.061-13.087-10.446-.012.049 13.099h10.458m-7.682-10.355l.055 7.585h4.791l-.043-7.585h-4.803m7.603-10.975l-.061-13.101h-10.458l.037 13.101h10.489-.006zm-7.682-10.343l.03 7.597h4.791l-.006-7.597h-4.815m-43.567 10.295l-.073-13.076-10.464-.013.049 13.082h10.489v.007zm-7.683-10.343l.024 7.585 4.803.012-.036-7.597h-4.791m26.651 10.366l-.049-13.076-10.47-.012.043 13.087h10.476m-7.676-10.353l.024 7.585 4.797.024-.03-7.609h-4.791m22.298 10.379l-.073-13.101-10.464-.012.049 13.087 10.489.025m-7.69-10.365l.037 7.609h4.797l-.024-7.609h-4.809" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M129.208 227.08l.117 30.421-30.561-.05-.111-30.395 30.55.024" fill="#fff"/><path d="M355.717 899.488l.116 30.199-30.333-.049-.11-30.174 30.321.024h.006zm-30.51 8.62l30.54.024m-30.54-.024l30.54.024m-30.54-.024l30.54.024m-30.54-.024l30.54.024m-30.54-.024l30.54.024m-26.729 21.543l-.103-21.342m23.228 21.354l-.103-21.329m14.75-21.732l-17.081-12.474-19.193-.024-16.947 12.449 53.222.049m-34.797-22.827l.03 7.609 16.144.012-.03-7.609-16.144-.012m0 0l.03 7.609 16.144.012-.03-7.609-16.144-.012" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M331.994 863.799l.03 7.609 16.144.012-.03-7.609-16.144-.012" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M336.371 865.686l.024 3.792h7.414l-.024-3.792h-7.414m3.665-10.544l8.979 6.348-17.891-.024 8.912-6.325m0 .001l8.979 6.348-17.891-.024 8.912-6.325m0 .001l8.979 6.348-17.891-.024 8.912-6.325m0 .001l8.979 6.348-17.891-.024 8.912-6.325m0 .001l8.979 6.348-17.891-.024 8.912-6.325" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M149.988 178.073c2.57-.062 3.232 10.584 3.238 15.857 2.208.62 7.102 3.698 9.267 6.482l-24.827-.037c2.134-2.747 6.992-5.837 9.181-6.456 0-5.28.54-15.919 3.14-15.858" fill="#fff"/><path d="M376.341 850.838c2.551-.061 3.208 10.507 3.214 15.742 2.191.615 7.049 3.671 9.198 6.434l-24.642-.036c2.118-2.727 6.94-5.795 9.113-6.409 0-5.242.536-15.803 3.117-15.742m-49.533 49.508h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186s1.065 1.37.018 2.94l.578 1.09h-2.131l.578-1.035s-1.09-1.82.049-2.995l-.657-1.186m4.505 0h2.21l-.639 1.186s1.065 1.334.006 2.94l.572 1.09h-2.124l.572-1.035s-1.065-1.82.055-2.995l-.651-1.186m4.911 0h2.204l-.657 1.186s1.077 1.37.018 2.94l.578 1.114-2.112-.024.566-1.035s-1.077-1.808.043-2.995l-.645-1.186h.006zm5.546.011h2.222l-.651 1.199s1.065 1.346.006 2.922l.597 1.108h-2.143l.572-1.035s-1.065-1.832.073-2.995l-.67-1.199h-.006zm4.93 0h2.204l-.651 1.199s1.071 1.346.012 2.916l.584 1.114h-2.124l.554-1.035s-1.071-1.82.085-2.995l-.664-1.199m4.901.013l2.204-.012-.651 1.199s1.09 1.346.03 2.922l.554 1.108h-2.131l.572-1.035s-1.065-1.82.073-2.995l-.651-1.187" fill="none" stroke-width="1.164" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M114.077 296.496c11.445.037 25.52-2.3 32.113-5.709l14.48-1.282.289 17.667c-12.267 6.763-40.59 8.216-46.821 8.167-6.238.05-34.91-1.428-47.233-8.216l.16-17.679 14.511 1.307c6.594 3.392 21.098 5.746 32.53 5.746h-.03" fill="#f9d90f"/><path d="M340.699 968.397c11.359.037 25.329-2.283 31.873-5.667l14.372-1.273.286 17.538c-12.175 6.714-40.286 8.156-46.471 8.108-6.191.049-34.649-1.418-46.879-8.156l.158-17.55 14.403 1.297c6.544 3.367 20.94 5.704 32.287 5.704h-.03" fill="none" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M29.63 221.138l12.757 4.06-3.858 20.653-12.076 1.876s-2.036-10.86 3.177-26.601" fill="#f9d90f"/><path d="M256.883 893.589l12.662 4.03-3.829 20.503-11.986 1.862s-2.021-10.781 3.153-26.407v.012z" fill="none" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M38.522 245.624l-12.07 2.103 7.636-10.86 4.434 8.757" fill="#7e7e7e"/><path d="M265.709 917.896l-11.98 2.088 7.579-10.781 4.401 8.693" fill="#f9b60f" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M22 236.015l12.297.889c.276 10.419 1.54 50.18 49.022 52.338l-1.478 14.465c-57.8.6-62.191-48.768-59.841-67.692" fill="#f9d90f"/><path d="M249.31 908.358l12.205.882c.274 10.343 1.528 49.813 48.656 51.956l-1.467 14.36c-57.367.596-61.726-48.413-59.394-67.198zm44.797 70.138l14.384-3.141m-14.384 3.141l14.384-3.141m-14.384 3.141l14.384-3.141m-14.384 3.141l14.384-3.141m-14.384 3.141l14.384-3.141" fill="none" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M197.52 221.285l-12.708 4.022 4.03 20.623 12.1 1.943s1.945-10.853-3.423-26.6" fill="#ff0"/><path d="M423.518 893.735l-12.613 3.993 3.999 20.472 12.01 1.929s1.93-10.774-3.397-26.406v.012z" fill="#f9d90f" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M188.842 245.715l12.1 2.171-7.74-10.865-4.36 8.694" fill="#7e7e7e"/><path d="M414.904 917.987l12.01 2.155-7.682-10.786-4.328 8.631" fill="#f9b60f" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M205.29 236.18l-12.315.842c-.178 10.406-1.085 50.184-48.569 52.293l1.613 14.454c57.787.668 61.762-48.677 59.272-67.594" fill="#f9d90f"/><path d="M431.23 908.522l-12.223.835c-.177 10.33-1.077 49.818-48.206 51.912l1.601 14.348c57.355.663 61.3-48.322 58.828-67.101v.005zm-44.194 70.053l-14.421-3.159" fill="none" stroke-width=".271" stroke="#000" transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"/><path d="M106.393 305.203c-.326.209-.767.264-1.276.24l-2.294-.118.197-2.863 2.275.122c.447.03.803.117 1.024.252.46.239.662.681.62 1.294-.03.527-.215.87-.552 1.072m-3.852 4.508l.227-3.49 2.674.185c.864.068 1.508-.159 1.944-.601.454-.43.687-.993.718-1.631.055-.743-.135-1.35-.577-1.797-.423-.43-1.024-.656-1.778-.73l-3.82-.238-.529 8.216 1.135.074m8.322-6.862l2.797.03m-2.797-.03l2.797.03m-2.797-.03l2.797.03m-2.797-.03l2.797.03m-2.797-.03l2.797.03c.405.038.724.086.957.197.43.202.632.607.632 1.196 0 .552-.16.92-.473 1.14-.3.202-.735.295-1.257.295l-2.686-.03.024-2.827m-.043 7.28l.024-3.508 2.625.037c.466 0 .81.036 1.048.153.387.178.577.552.595 1.067l.067 1.38c.019.331.025.534.044.669.037.098.055.202.104.277h1.41l-.024-.178c-.16-.086-.288-.251-.344-.503-.05-.16-.073-.4-.085-.7l-.025-1.097c-.018-.497-.103-.84-.294-1.03a1.474 1.474 0 00-.742-.529c.393-.207.687-.447.901-.742.203-.325.307-.735.307-1.238 0-.944-.386-1.589-1.172-1.938-.423-.19-.963-.29-1.601-.3l-3.943-.038-.03 8.241h1.134m8.753-1.748c-.502-.613-.773-1.38-.834-2.287-.055-1.141.165-2.012.687-2.601.528-.638 1.208-.944 2.098-.993.896-.05 1.631.239 2.177.803.558.552.877 1.318.932 2.275.03.92-.129 1.735-.552 2.452-.417.73-1.11 1.141-2.134 1.166-1.067.055-1.865-.196-2.374-.816m-1.349-5.188c-.528.816-.742 1.76-.687 2.901.08 1.232.46 2.25 1.178 3.017.797.767 1.852 1.152 3.152 1.079 1.393-.062 2.442-.588 3.153-1.557.576-.877.852-1.896.79-3.152-.079-1.123-.404-2.036-1.01-2.717-.767-.914-1.89-1.318-3.411-1.256-1.435.091-2.49.618-3.17 1.685m38.737-11.852c.79-.135 1.478-.097 2.104.117.92.288 1.54.97 1.925 2.012l-1.134.159c-.245-.563-.595-.95-1.067-1.165-.46-.202-1.037-.252-1.7-.154a2.648 2.648 0 00-1.827 1.123c-.429.661-.558 1.545-.368 2.672.16.933.503 1.724 1.067 2.25.521.54 1.288.73 2.289.589.748-.123 1.349-.422 1.772-.938.441-.49.57-1.233.423-2.189l-2.644.405-.135-.908 3.68-.565.717 4.36-.73.11-.453-1.005c-.306.455-.613.804-.883 1.006-.454.356-1.067.583-1.834.693-.994.153-1.901-.025-2.724-.552-.901-.669-1.484-1.662-1.704-3.041-.239-1.355-.024-2.515.601-3.428.595-.883 1.46-1.398 2.625-1.564m8.322-.625l2.638-.957c.362-.134.675-.179.944-.146.485.036.84.324 1.043.9.19.49.19.92-.024 1.221-.227.312-.583.54-1.099.73l-2.477.889-1.025-2.637m2.638 6.813l-1.288-3.305 2.454-.883c.46-.147.778-.227 1.018-.202.435.055.767.32.988.821l.558 1.259c.123.312.22.502.3.588.037.11.117.178.178.25l1.331-.489-.073-.178c-.197 0-.386-.111-.528-.326-.104-.153-.203-.373-.344-.63l-.435-1.03c-.197-.448-.399-.724-.632-.89a2.106 2.106 0 00-.876-.239c.27-.313.466-.627.54-.994.08-.374.043-.791-.135-1.256-.338-.877-.957-1.355-1.828-1.417-.46-.036-.987.062-1.595.275l-3.705 1.319 2.994 7.75 1.085-.398m9.64-4.108l-4.704-6.863 5.164-3.293.57.828-4.23 2.704 1.447 2.098 3.907-2.515.534.803-3.907 2.514 1.595 2.312 4.305-2.754.57.81-5.256 3.355m4.12-12.129l1.35-1.484c.626-.662 1.288-.963 2.012-.876.723.061 1.46.441 2.245 1.128.214.165.405.38.601.62.344.447.546.84.675 1.233.111.491.086.938-.085 1.368-.104.213-.289.465-.565.766l-1.355 1.472-4.875-4.237m7.127 3.23c.957-1.053 1.166-2.188.608-3.47a5.873 5.873 0 00-1.509-1.956c-.864-.767-1.766-1.16-2.717-1.232-1.055-.08-1.95.3-2.73 1.152l-2.3 2.465 6.342 5.532 2.3-2.477m4.916-6.411l-7.299-4.286.595-.944 7.31 4.262-.601.98m2.86-4.99l-7.882-3.153 2.325-5.544.957.368-1.895 4.568 2.373.933 1.773-4.208.907.375-1.754 4.2 2.656 1.08 1.945-4.623.957.361-2.368 5.643m3.624-9.677l-8.292-1.833.276-1.282 7.66-2.588-6.728-1.484.246-1.005 8.292 1.784-.264 1.245-7.672 2.644 6.728 1.453-.239 1.067m-.664-10.53l.104-1.043c.479.014.884-.061 1.19-.226.602-.326.951-.944 1.043-1.859.037-.428.018-.803-.08-1.16-.178-.685-.564-1.066-1.184-1.127-.46-.05-.79.061-1.03.313-.215.288-.442.704-.614 1.293l-.38 1.085c-.245.711-.472 1.202-.717 1.477-.393.516-.944.693-1.65.645-.754-.08-1.367-.38-1.803-.957-.447-.528-.632-1.282-.52-2.214.073-.853.355-1.57.858-2.146.466-.528 1.19-.78 2.115-.681l-.085 1.042c-.454 0-.816.08-1.08.264-.478.264-.742.822-.821 1.637-.068.675.024 1.129.282 1.473.258.288.582.472.963.503.405.037.723-.092.944-.404.16-.216.35-.681.608-1.436l.373-1.14c.185-.528.405-.932.662-1.22.46-.478 1.061-.68 1.816-.624.92.097 1.576.478 1.913 1.177.332.705.46 1.484.38 2.367-.104 1-.43 1.784-1.03 2.312-.602.54-1.35.724-2.258.65M27.63 252.45l.19 1.03c-.46.092-.828.277-1.098.516-.485.453-.65 1.134-.485 2.06.074.392.215.777.393 1.085.368.625.847.876 1.454.777.447-.08.743-.25.884-.57.135-.313.232-.792.264-1.404l.055-1.16c.037-.717.117-1.28.276-1.594.252-.564.724-.914 1.429-1.03a2.454 2.454 0 011.987.466c.576.399.957 1.092 1.098 2.011.178.841.098 1.595-.233 2.275-.32.663-.932 1.067-1.87 1.239l-.185-1.042c.435-.159.76-.313.975-.527.368-.411.479-1.006.338-1.822-.111-.663-.338-1.092-.681-1.306-.338-.252-.676-.35-1.043-.288-.411.061-.681.288-.81.655-.08.245-.141.754-.197 1.534l-.055 1.201c-.03.564-.117 1.03-.306 1.35-.3.588-.81.95-1.552 1.067-.938.16-1.663-.055-2.177-.656-.528-.588-.853-1.293-1.018-2.17-.184-1.043-.05-1.852.368-2.502.423-.669 1.092-1.055 1.999-1.184m-.521 10.862l8.107-2.441 1.89 5.709-.988.312-1.545-4.691-2.466.742 1.429 4.335-.944.3-1.417-4.347-2.747.821 1.57 4.795-.97.277-1.92-5.813m3.595 9.897l7.457-3.955.797 1.391-5.127 5.42 7.49-1.28.772 1.38-7.44 3.93-.528-.914 4.392-2.311c.16-.093.405-.228.76-.417.35-.16.743-.375 1.135-.578l-7.457 1.27-.547-.97 5.092-5.402-.245.123c-.16.092-.436.227-.81.441a6.053 6.053 0 01-.823.442l-4.378 2.348-.54-.932M44.6 284.2c-.374-.086-.743-.3-1.105-.675L41.92 281.9l2.121-1.944 1.59 1.62c.306.3.502.594.607.846.147.484 0 .926-.447 1.343-.405.374-.81.528-1.19.435m-5.992.755l2.6-2.386 1.846 1.87c.595.608 1.202.884 1.84.872a2.597 2.597 0 001.699-.742c.552-.49.816-1.067.816-1.685-.006-.602-.282-1.166-.791-1.693l-2.65-2.705-6.17 5.667.797.803m7.45 6.621l4.472-7.01 5.286 3.214-.552.834-4.342-2.6-1.343 2.122 3.993 2.422-.515.803-4-2.41-1.52 2.373 4.397 2.643-.528.828-5.348-3.219m13.236-1.356l2.687.853c.38.116.655.263.84.43.343.325.435.79.233 1.354-.166.49-.418.81-.81.945-.35.06-.791.06-1.307-.099l-2.533-.808.89-2.675m-2.319 6.886l1.116-3.342 2.503.816c.448.117.773.277.932.441.306.276.4.687.246 1.197l-.374 1.33c-.085.325-.129.54-.165.637 0 .105 0 .216.018.288l1.319.43.08-.191c-.141-.11-.221-.312-.215-.563.03-.154.074-.399.16-.681l.319-1.067c.129-.466.178-.816.061-1.067a1.678 1.678 0 00-.54-.729c.417-.074.779-.202 1.085-.43a2.28 2.28 0 00.681-1.091c.3-.89.135-1.632-.528-2.196-.331-.294-.803-.546-1.422-.779l-3.753-1.158-2.625 7.818 1.098.337m11.394-142.282" fill="#012a87"/><path d="M68.354 154.826c.97-2.337 9.949-8.709 39.412-5.918 0 0 4.98 3.04 7.906 2.649 1.669-.216-.981.104-3.158-1.705-2.221-1.809-2.693-5.519 2.38-5.421 5.047.129 23.943 1.196 24.3 2.894.33 1.717-9.992 2.435-13.831 2.336-3.858-.104-3.41 1.847.429 1.7 11.997-.43 25.09-4.655 38.921 5.126 1.65 1.189-4.17 1.38-8.673-.534 0 0-12.2.633-17.474-.233 0 0-4.054 3.298-9.334 2.974.687 1.71-1.95 8.094-18.553 3.292-2.742.841-12.732 2.514-11.641-.453-2.63 0-7.243.846-7.93-.65-.662-1.472 8.12-3.699 9.66-5.293 0 0-18.578.179-22.099-1.104 0 0-10.96 2.46-10.316.326" fill="#bc715f"/><path d="M74.31 180.838c.399-.54.558-1.508 1.404-1.484 1.84.49 3.091 3.856 5.354 1.673.803-.178 1.11.915 1.773 1.043.423 1.87 1.925-.38 3.047-.252 2.398-1.067 5.367-1.319 8.207-.79.085 1.832-1.35 3.856-3.153 4.899.038 1.846 1.711 3.03 1.68 4.888-.287.693-.049 1.784-1.097 2.011-1.331-.239-2.644-.38-3.747-1.122-.135-.135-.245-.399-.528-.312-.135.62.834 1.233 1.214 1.864-.67 1.14-1.779.098-2.712.111-.276.656-.012 1.484-.687 1.907-1.178-.036-1.416-1.318-2.14-1.956-.742.803.521 1.281.7 1.919-.454 2.415-.393 4.777-2.81 6.36l-1.619.803c-.44-1.214-.165-3.054-.46-4.323-.957 1.557-1.705 2.919-3.11 4.236-1.643-.54-2.6-2.477-2.961-4.083-.688-1.871-.295-4.11 1.183-5.464-.502-.981-2.226-.755-2.471-2.152-2.582-1.681-4.011 2.944-5.68.539-.54-2.243.104-5.035 1.73-6.709-.361-.919-1.563-.68-2.275-1.208-1.625-1.38-3.968-2.838-3.851-5.33 4.446-1.679 9.764-.447 12.996 2.932" fill="#008830"/><path d="M76.616 180.587c-.104 2.035 1.374.55 2.472 1.784-.859-.338-1.485 1.484-2.325.441l-.528.504c.307.698.902.79.282 1.557-.92.35-1.104-.803-1.533-1.257-.074-.201.141-.582-.197-.717-.52.441-1.067.601-1.784.528-.196-.393-.576-.908-.19-1.208.705-.951 1.797.342 2.33-.326.086-.588-.43-1.306.239-1.711.46.08 1.049-.171 1.24.405m5.495 1.668c.056.393-.202.944.313 1.221.669-.363 1.38-.087 1.766.576-.006.355.104.821-.362.993l-1.043-.195c.074-.202-.258-.331-.387-.528-.46-.14-.73.233-1.073.46.258.392.853.607.712 1.11-.614.612-.914-.528-1.59-.24-.46-.177.166-1.134-.557-1.423-.859 0-.289 1.41-1.387.859-.393-.442-.779-1.037-.355-1.533.46-.308 1.239-.228 1.63.17.67-.74.736-3.605 2.337-1.47m-6.854 2.956c.447.644-.098 1.52.473 2.238.895-1.673 1.76.362 2.827.202.325.4.11.951.171 1.405-1.319.35-2.907.766-4.072-.288l-.326.373c.693.645 1.35 1.374.797 2.453-.987.215-2.515.239-3.011-.778-.258-.84.601-1.447-.307-2.122-.656.816-.625 1.908-1.993 1.166-.846-.467-1.098-1.429-.675-2.239.884-1.392 2.43.044 3.386-.637.135-1.196-.307-2.239.79-2.9.939-.167 1.375.538 1.945 1.127" fill="#f9d90f"/><path d="M79.008 185.94c-.441 2.036-1.975-.104-2.692-.19.957-1.699 1.558.552 2.692.19m4.778 2.214c-1.067.3-.902-1.03-1.429-1.552l.411-.374c.387.466.681 1.307 1.019 1.926" fill="#fff"/><path d="M82.338 187.75c.306.704-.693 1.27.16 1.783.27-.226.6-.54.742-.669.73.216 1.575.345 2.085 1.067.546 1.497-.969 1.46-1.827 1.877l-.853-.036c.203-.418-.368-.595-.509-.883-.393-.098-.717.024-.938.355.19.95 1.35 1.692.154 2.538-1.012-.066-2.583.326-2.49-1.073-.38-.79 1.03-2.011-.479-2.06-.496 1.067-1.042 2.097-2.336 1.085l.159-1.52c1.24.035 2.705.25 3.262-1.135.356-1.005-.62-1.932.252-2.729 1.264-.288 1.975.558 2.619 1.397" fill="#f9d90f"/><path d="M81.43 190.036c.32.754-.54.804-.944 1.177-.546.044-.926-.17-1.257-.54-.245-.913.435-1.005.957-1.366.607-.252.858.453 1.245.729"/><path d="M80.689 190.526c-.135.179-.326.123-.528.172l-.19-.913c.404.036.931.165.717.741" fill="#fff"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><path d="M0 0h900v600H0z"/><path d="M0 0h900v400H0z" fill="#fff"/><path d="M0 0h900v200H0z" fill="#ce1126"/><path d="M251.264 375l48.738-150 48.738 150-127.6-92.705h157.72M551.264 375l48.738-150 48.738 150-127.6-92.705h157.72" fill="#007a3d"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 900 600"><path fill="#3e5eb9" d="M0 0h900v600H0z"/><path fill="#ffd900" d="M0 112.5h900v375H0z"/><path fill="#b10c0c" d="M0 150h900v300H0z"/><g transform="scale(1.5)" fill="#ffd900" stroke="#000" stroke-width="1.008"><g id="a"><path d="M492.85 154.28l-24.285 8.571 24.285 8.571 24.285-8.571z" fill="#fff"/><rect width="357.13" height="5.714" x="122.85" y="160" rx="3.106" ry="2.857"/><path d="M471.44 165.71c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857m-2.861 5.714c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857m-2.861 5.714c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857"/></g><use xlink:href="#a" x="-23.27" y="17.15" width="100%" height="100%"/><rect width="485.7" height="8.571" x="59.812" y="195.72" rx="4.224" ry="4.286" stroke-width="1.08"/></g><path d="M664.275 300c-42.856 42.853-100.002 128.566-214.29 128.566-100.002 0-171.42-85.712-214.29-128.566 42.857-42.861 114.282-128.574 214.29-128.574 114.282 0 171.42 85.713 214.29 128.574z" fill="#fff" stroke="#000" stroke-width="1.512"/><path d="M435.03 216.15c11.402 12.823 1.881 17.994 13.95 18.835 12.727.935 5.512 13.551 16.218 13.99 7.485.327-.747 30.226 6.457 40.093 7.34 10.286 13.487 3.014 13.616 10.444.127 7.686-19.976 6.911-20.328 30.585-.59 13.644-16.965 14.517-17.747 23.297-.972 8.257 32.261 12.892 31.817 20.284-.456 7.37-35.883 6.216-37.425 14.621-.79 7.55 48.669 13.737 52.647 35.57-7.38 2.413-28.379 4.685-44.249 4.697-99.985.072-171.42-85.72-214.275-128.574 42.857-42.86 114.282-128.574 214.29-128.574 0 0-29.683 27.123-14.956 44.723z"/><g transform="scale(1.5)" stroke="#fff"><g id="d" stroke-width="6.927"><g id="c"><path id="b" d="M213.933 192.377V169.52m13.85 0v22.857m13.86-22.857v22.857"/><use xlink:href="#b" y="38.1" width="100%" height="100%"/></g><use xlink:href="#c" x="41.56" width="100%" height="100%"/></g></g><use xlink:href="#d" x="104.76" width="100%" height="100%" transform="scale(1.5)" stroke="#000"/><g fill="#a70000"><path d="M767.025 294.9c-6.492 11.244 4.982-3.74 32.978 15.084 5.188 3.497 9.721 12.734 9.721 19.139-1.317-.881-2.295-2.841-3.745-4.115-2.031 2.035 1.939 11.366 2.52 15.775-4.377-2.449-3.956-3.609-5.41-6.619.29 3.639-.751 13.66.99 17.52-3.45-.986-3.22-3.762-5.021-4.32 1.225 4.368-1.068 9.122-.46 14.033-2.015-1.995-4.163-3.558-5.1-4.364-.157 2.338-3.877 8.484-3.961 10.695-1.71-1.033-2.175-2.644-2.46-3.729-2.126 2.671-9.681 12.537-10.165 15.546-5.822-5.142-20.735-17.663-22.676-24.309-1.716 3.772-4.2 5.046-9.11 7.8-1.939-10.533-9.194-22.372-5.314-31.401-2.75 1.63-5.013 3.261-7.761 5.267 2.604-15.255 15.88-33.143 34.979-42.002z" fill="#3d5da7" stroke="#000" stroke-width="1.282"/><path d="M742.815 350.58c2.695-5.388 5.178-7.096 6.92-10.566 3.076-6.098 3.515-10.949 6.196-10.238 2.68.711 2.677 3.209-.795 9.204-3.473 5.996-5.124 7.277-12.321 11.6zm18.225 12.84c-.347-4.103.843-5.816.627-8.457-.37-4.649-2.271-7.839.201-8.066 2.472-.226 3.627 1.36 3.634 6.044.008 4.685-.717 5.915-4.46 10.48zm13.83 8.04c-1.08-5.727-.271-8.267-.963-11.957-1.203-6.492-3.583-10.765-1.293-11.359 2.29-.594 3.674 1.506 4.54 8.09.868 6.583.41 8.392-2.284 15.226zm14.385-40.125c-3.378-2.564-5.349-2.736-7.527-4.383-3.837-2.89-5.778-5.985-7.013-4.449-1.234 1.536-.358 3.216 3.663 5.883 4.02 2.667 5.382 2.877 10.878 2.949zm-2.385 19.005c-1.78-3.697-3.654-4.635-4.806-7.014-2.035-4.18-2.038-7.797-4.246-6.87-2.208.927-2.385 2.82-.024 6.867 2.36 4.046 3.597 4.779 9.076 7.017z"/><path d="M121.174 305.73c-.363-3.274.338-3.666-1.677-6.135 2.933 1.227 3.044 4.488 6.61 2.174 1.309-.678 1.88-.7.289-4.337 3.718.173 15.894 4.348 17.844 4.444 5.12.236 14.466-5.378 20.953 1.525 6.227 6.294 4.148 12.826 4.148 21.543-2.502-1.199-1.296-1.79-3.951-4.907 1.99 7.619-.106 21.356-.106 29.436-1.022-1.948-.872-1.103-1.871-3.12-2.655 7.375-5.837 8.893-5.837 17.61-.958-3.418-.033-2.696-1.099-4.494-2.58 5.6-19.89 10.385-13.22 16.029-6.02-3.53-8.66-3.159-11.39-6.334-1.177.759-2.111 2.196-3.205 4.165-10.585-4.87-6.8-15.375-15.093-22.392-1.435 2.942-.781 2.516-2.332 7.304-1.679-6.651-2.138-10.877-4.026-15.767-1.629 2.71-1.484 1.671-4.442 5.768-1.224-8.102-3.216-10.014-2.428-15.375-3.144 2.218-1.086 1.32-4.229 4.05 2.978-20.76 15.837-36.101 25.065-31.188z" fill="#3d5da7" stroke="#000" stroke-width="1.6"/><path d="M108.151 339.615c2.728-6.684 5.186-8.783 6.949-13.086 3.112-7.563 3.619-13.61 6.233-12.687 2.615.922 2.573 4.037-.925 11.467-3.498 7.433-5.135 9.008-12.257 14.304zm10.326 16.725c1.094-5.992 2.819-8.175 3.528-12.034 1.259-6.786.557-11.84 2.987-11.573 2.43.266 2.979 2.828 1.362 9.578-1.617 6.751-2.733 8.349-7.878 14.029zm12.351 11.625c.308-5.81 1.67-8.077 1.874-11.82.369-6.582-.898-11.293 1.419-11.32 2.317-.027 3.143 2.34 2.433 8.929-.71 6.59-1.567 8.234-5.726 14.211zm26.522-37.995c-5.071-5.052-8.137-5.996-11.409-9.245-5.763-5.706-8.547-11.064-10.599-9.165-2.052 1.9-.817 4.746 5.25 10.176 6.068 5.43 8.178 6.222 16.758 8.234zm-3.09 19.53c-3.303-5.073-5.727-6.387-7.86-9.651-3.76-5.736-5.054-10.665-7.185-9.444-2.133 1.221-1.656 3.796 2.42 9.357 4.075 5.559 5.714 6.582 12.625 9.74z"/><path d="M380.7 194.25c-5.937 11.482 10.395-3.819 35.997 15.404 4.745 3.571 11.546 17.68 11.546 24.22-5.451-1.16-15.104-6.54-15.104-6.54s11.328 11.346 11.328 24.426c-4.002-2.502-6.004-2.127-7.335-5.199 0 4.234 3.56 6.933 3.56 13.473a52.938 52.938 0 00-7.78-5.19c3.776 6.54-6.88 19.227-1.547 23.462-9.327-1.349-18.87-7.308-22.646-13.848-2.001 1.348-2.218 3.466-2.296 5.723.294.245-14.198-10.756-12.866-14.982-1.944 2.727-2.217 4.226-2.661 7.3-5.323-5.25-10.203-10.5-11.979-17.288-2.365 3.073-2.514 3.073-4.88 6.147-1.774-10.757-1.774-10.373 1.775-19.592-2.514 1.665-4.584 3.33-7.098 5.38 2.38-15.578 14.523-33.845 31.988-42.892z" fill="#3d5da7" stroke="#000" stroke-width="1.239"/><path d="M366.06 250.35c.95-7.912 3.018-10.893 3.636-15.988 1.103-8.961-.206-15.512 2.97-15.345 3.176.165 4.09 3.47 2.52 12.414-1.569 8.941-2.893 11.113-9.126 18.92zm16.575 14.49c-.643-6.675.59-9.517.18-13.818-.705-7.566-3.042-12.691-.274-13.162 2.767-.471 4.167 2.067 4.465 9.706.299 7.64-.441 9.675-4.372 17.274zm25.875 11.82c-2.814-5.777-5.232-7.499-7.048-11.217-3.209-6.534-3.88-11.87-6.354-10.904-2.475.968-2.339 3.728 1.236 10.124 3.574 6.396 5.19 7.701 12.166 11.997zm8.955-51.735c-7.167-3.773-10.848-3.82-15.466-6.245-8.133-4.25-12.867-9.052-14.547-6.409-1.682 2.643.562 5.271 8.947 9.135s10.96 4.047 21.067 3.519zm2.625 21.615c-5.218-4.341-8.304-4.98-11.67-7.773-5.93-4.9-8.88-9.714-10.861-7.762-1.98 1.951-.657 4.528 5.566 9.145 6.224 4.617 8.352 5.19 16.965 6.39z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 9600 4800"><defs><clipPath id="g"><path d="M0 0h9600v4800H0z"/></clipPath><clipPath id="a"><path d="M0 0v15h65v15h-5zm60 0H30v35H0v-5z"/></clipPath><path id="b" d="M840-1000v720C840 200 600 717 0 997-600 717-840 200-840-280v-720z"/></defs><g fill="#012169"><path d="M0 0h4800A2683.282 2683.282 0 010 2400z"/><g fill="none"><path stroke="#fff" stroke-width="480" d="M0 0l4800 2400M0 2400L4800 0" clip-path="url(#g)"/><path stroke="#ce1126" stroke-width="4" clip-path="url(#a)" d="M0 0l60 30M0 30L60 0" transform="scale(80)"/><path stroke="#fff" stroke-width="800" d="M2400-400v3200M-400 1200h5600" clip-path="url(#g)"/><path stroke="#ce1126" stroke-width="480" d="M2400 0v2800M0 1200h5200"/></g><path d="M0 2400h4800V0h4800v4800H0"/></g><g transform="translate(7200 2400)" fill="none" stroke="#000"><use xlink:href="#b" fill="#fcd116" stroke-width="64"/><use xlink:href="#b" stroke="#fff" stroke-width="56"/><g stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path fill="#fcad56" d="M-303-207c-22 37-59 45-88 33-30-12-57-82-87-120-29-37-37-21-57-43-19-21-49-37-96-59-26-12-53-23-71-69 7-19 26-35 41-41 15-5 27-27 29-46 2-18 18-38 40-53-10 2-31-2-41-9-9-8-24-6-33 1-9 6-20 8-36 6 6-5 17-16 18-26s13-15 36-15c22 0 37-26 55-26-13 0-10-22-3-23-32-6-28-32-15-32-1-4-5-8-20-13-14-5-7-18 4-26-10-20-1-35 15-48-22-1 2-32 8-49 6-16 9-18 16-8 8 9 26 30 47 36 20 6 32 17 36 34 4 18 12 27 34 35 23 7 54 26 50 69 18 1 31 6 42 15"/><path fill="#ffa1a1" d="M-248-749c0 24 11 39 25 51 15 12 28 22 25 37-3 16 3 26 16 36 14 10 24 22 20 42s-1 32 7 47 22 27 16 51-3 56 5 72c7 15 0 27-14 54-14 26-22 36-51 46-30 9-32 27-32 58 0 32-21 48-60 42-40 33-65-6-75-55s-12-102-71-145c-58-44-35-118 14-148 49-29 43-115 37-168-5-53 30-83 57-112 36 14 81 69 81 92z"/><path fill="#f1b2dc" d="M-333-408c-11-26-23-52 6-108 30-57 11-100 2-129-9-28-11-54 0-66 12-11 17-18 18-37 1-18 16-12 18-3s4 24-12 51c-16 28 45 96 17 169-19 51 6 116 16 161s16 153-50 169c45-22 3-165-15-207z"/><path d="M-630-416c11 2 17-4 20-11s5-11 15-12c10 0 26-3 30-11 3-8 15-1 26-21 10-21 17-45 44-54m74-174c-10 0-39 1-51 27m-83-151c24 7 14 23 26 32 22 17 2 35 20 40s17 8 13 28c-6 23 16 24 8 39m-104 79c14-13 49-23 57-37m-58-32c21-1 49 7 53-1m-56-22c10 0 31-7 35-21m-50-11c12 0 27-1 42-12m-58-27c9-7 25 1 40-9m-25-39c7 0 22-2 22 7"/><g transform="translate(400 -400)" fill="#9e540a"><g id="d"><path d="M-55-233s-70-59-128-99-128-89-128-99c11-8 70 30 151 79 82 50 128 99 128 99zm-5 40s-68-41-135-70c-70-29-175-29-186-39 0-10 122-16 209 19 89 41 135 70 135 70zm-1 68s-74-34-146-50c-70-16-170-10-182-19 0-10 124-30 217 0 94 29 134 49 134 49zm-4 69s-56-38-130-46c-70-7-163 46-175 36 0-10 81-69 182-59 99 10 146 49 146 49zm23-218s-71-65-71-109c0-39 43-99 62-99-10 20-43 60-43 99 0 40 75 89 75 89z"/><path d="M-42-274s14-65 14-109c0-59-42-113-38-128 15 15 57 59 57 128 0 60-10 89-10 89z"/><g stroke="none"><use xlink:href="#c" stroke="#fcd116" stroke-width="12"/><path id="c" d="M-25-295c0-19-7-36-19-49-16-19-40-25-65-21-30 5-54 23-69 51-20 37-22 77-23 116 0 135 5 190 9 323 1 39 8 119-10 182-7 27-15 52-27 78 8-33 12-50 16-75 11-65 8-126 6-186-4-123-11-186-15-335-1-45 3-79 24-115 22-37 60-64 103-64 18 0 33 3 48 12 30 16 44 49 44 82z"/></g><path d="M-19 187s-28 50-49 86-38 44-54 33c-15-11-2-40 10-54s79-79 79-79z"/><path d="M-12 191s-11 57-20 98c-8 41-22 55-39 50-18-4-15-37-8-54s49-103 49-103z"/><path d="M0 193v100c0 42-10 59-29 58-18-1-22-33-18-52 3-18 28-111 28-111z"/></g><use transform="scale(-1 1)" xlink:href="#d"/><g id="e"><path d="M0 192c-53-1-58-20-58-20s-7-24-8-39c-1-2-15-32-11-45-5-12-17-41-6-46-5-14-13-30-14-45-4-11-14-35-6-43 0 0-19-40-10-50 0 0-9-39 0-49 0 0 0-40 10-50 0 0 0-39 9-49 0 2 28-55 94-55l-1 85h1z"/><path fill="none" d="M0-26c-85-1-103-20-103-20M0-76c-85 0-113-20-113-20M0-125c-85-1-113-20-113-20M0-175c-85-1-103-20-103-20m102-19c1 0-64 0-74-10l-19-19M0 152c-25 0-53-4-66-19m66-21c-47 0-75-19-75-19s-1-2-2-5M0 63c-62-1-79-14-83-21M0 23C-85 23-94 3-94 3l-3-6"/></g><use transform="scale(-1 1)" xlink:href="#e"/></g><g id="f"><path fill="#009e49" d="M0 712c-43 40-126 14-152-4-27 9-99-19-118-50-52 7-70-67-61-86 14-28-11-46 7-65 25-24-14-47 10-63 24-17-6-45 18-63 25-19-13-45 13-58s-3-47 19-60-13-46 17-61c29-15 3-41 26-52 25-13 2-40 25-49 26-11 7-40 29-48 19-7 7-25 19-41H0"/><path d="M-99 18c-20 20 4 35-16 59-21 25-2 38-19 60s8 33-11 58c-19 24 4 39-17 59-20 21 4 39-17 61-20 23 4 38-16 58-21 21 3 43-17 63-20 21 4 47-19 71-22 24 4 43-14 61-19 19-2 38-15 51s-15 31-10 39M-60 25c-18 25 10 36-7 56-17 21 7 28-6 52s10 30-7 54 9 43-9 67c-19 24 9 37-8 61-16 25 8 38-7 56-15 19 11 37-8 60-18 22 8 39-7 59-15 21 6 43-7 60-13 16 9 41-10 63-18 22 4 37-7 52s-20 37-9 43"/></g><use transform="scale(-1 1)" xlink:href="#f"/><path stroke="#009e49" d="M0 712V12"/><path d="M0 48c-9 39 13 73 0 106-13 32 9 45 2 71-8 26 9 45-2 73s15 50 0 87c-15 36 10 45 0 82-11 42 19 64 0 94s17 37 2 71c-15 33 9 46-2 80"/><path fill="#fcd116" d="M15 174c-5 11 15 37 4 57-12 19 6 49-6 73s19 54 7 82c-13 28 6 63 0 89-5 26 13 76 0 94-13 19 13 24-2 70s-25 7-16-7c19-31-21-41-2-71s-11-52 0-94c10-37-15-46 0-82 15-37-11-59 0-87s-6-47 2-73c7-26-15-39-2-71 10-32 20 9 15 20zm-84 32c-7 12 12 35-5 58-12 16 8 35-9 58-11 16 11 36-4 59-10 13 7 38-5 57-12 20 6 36-15 62-12 14 9 49-4 60s-1 54-10 60c-8 7 0 38-22 45 11-15-11-30 7-52 19-22-3-47 10-63 13-17-8-39 7-60 15-20-11-37 7-59 19-23-7-41 8-60 15-18-9-31 7-56 17-24-11-37 8-61 18-24-8-43 9-67s-6-30 7-54c24 9 12 61 4 73zm-50-65c-10 16 4 35-11 55-15 21 0 47-15 64-15 16 4 48-15 61s-7 52-22 65 0 50-17 69-9 58-19 67c-9 9 13 28-3 41-17 13-17 39-39 56 13-13-4-32 15-51 18-18-8-37 14-61 23-24-1-50 19-71 20-20-4-42 17-63 20-20-4-35 16-58 21-22-3-40 17-61 21-20-2-35 17-59 19-25-6-36 11-58 8-10 8-19 8-27 12-31 12 23 7 31z"/><path fill="#ce1126" d="M-139 35c0-210 29-283 139-283s139 73 139 283z"/><path fill="#000" d="M-139 35c0-210 29-283 139-283-50 0-81 39-89 65-9 26-4 24 7 14s6 12-4 24c-9 12-18 47-5 36 13-12 23 1 9 21-14 19-26 65-12 49s17 10 8 23c-8 13-7 25 0 19 8-6 7 21 0 32zm191-4C52 0 53-73 36-97c-12-19-12-39 2-17s21 11 11-11c-12-28-28-59-24-65 5-7 8-4 18 11s12-7 1-22c-11-14-10-17 13-7 41 17 61 66 61 231z"/><path fill="#ce1126" d="M0 65c-44 0-92-7-124-20-38-15-40-28-27-44 10-12 30-5 50 4 19 8 73 14 101 14s82-6 101-15c20-8 40-15 50-3 13 16 11 29-27 44C92 58 44 65 0 65z"/></g></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><path fill="#C8102E" d="M0 0h3v2H0z"/><path fill="#FFCD00" d="M0 0h2v2H0z"/><path fill="#00205B" d="M0 0h1v2H0z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 400"><defs><path id="a" transform="scale(21)" fill="#fff" d="M0-1L.588.809-.952-.309H.952L-.588.809z"/></defs><path fill="#002395" d="M0 0h600v400H0z"/><path fill="#fff" d="M0 0h244v164H0z"/><path fill="#002395" d="M0 0h80v160H0z"/><path fill="#ED2939" d="M160 0h80v160h-80z"/><path fill="#fff" d="M355 183l12.875 20.5H404.5V275L377 232l-37 59h18l19-34 39 70 39-70 19 34h18l-37-59-27.5 43v-39.5H444l12.25-19.5H427.5v-12.5h36.625L477 183H355zm43 87.5h-40v14h40zm76 0h-40v14h40z"/><use xlink:href="#a" x="416" y="362"/><use xlink:href="#a" x="371" y="328"/><use xlink:href="#a" x="461" y="328"/><use xlink:href="#a" x="333" y="227"/><use xlink:href="#a" x="499" y="227"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 809 500"><path fill="#006a4e" d="M0 0h809v500H0z"/><path fill="#ffce00" d="M0 100h809v100H0zm0 200h809v100H0z"/><path fill="#d21034" d="M0 0h300v300H0z"/><g transform="translate(150 150)" fill="#fff"><g id="b"><path id="a" d="M0-95V0h50" transform="rotate(18 0 -95)"/><use xlink:href="#a" transform="scale(-1 1)"/></g><use xlink:href="#b" transform="rotate(72)"/><use xlink:href="#b" transform="rotate(144)"/><use xlink:href="#b" transform="rotate(216)"/><use xlink:href="#b" transform="rotate(288)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 6"><path fill="#A51931" d="M0 0h9v6H0z"/><path fill="#F4F5F8" d="M0 1h9v4H0z"/><path fill="#2D2A4A" d="M0 2h9v2H0z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1400 700"><path fill="#060" d="M0 0h1400v700H0z"/><path fill="#fff" d="M0 0h1400v500H0z"/><path fill="#c00" d="M0 0h1400v200H0z"/><g fill="#f8c300"><path d="M672 340.7a12.5 12.5 0 0123.3 5.9v50h9.4v-50a12.5 12.5 0 0123.3-5.9 29.5 29.5 0 10-56 0"/><path d="M678.7 327.65a20 20 0 0121.3 9.55 20 20 0 0121.3-9.55 21.5 21.5 0 00-42.6 0" fill="#fff"/><path id="a" d="M695.3 376.627a38 38 0 01-63.845 24.316 39.5 39.5 0 01-59.734 17.467c3.65 36.426 58.252 28.989 62.32-6.429 17.154 30.115 54.873 21.49 65.91-15.4z"/><use xlink:href="#a" transform="matrix(-1 0 0 1 1400 0)"/><path id="b" d="M658.84 441.31c-7.618 16.446-22.845 19.271-36.164 5.995 0 0 5.354-3.783 11.086-4.826-1.075-4.574 1.13-10.902 4.235-14.324 3.258 2.227 7.804 6.689 8.96 11.874 8.03-1.04 11.883 1.282 11.883 1.282z"/><use xlink:href="#b" transform="rotate(9.37 700 804)"/><use xlink:href="#b" transform="rotate(18.74 700 804)"/><path d="M603 478a340 340 0 01194 0" fill="none" stroke-width="16" stroke="#f8c300"/><g transform="translate(700 380)"><g transform="translate(0 -140)"><path id="c" transform="scale(.00005)" d="M0-513674l301930 929245-790463-574305h977066l-790463 574305z"/></g><g id="d"><use xlink:href="#c" transform="translate(-70 -121.244)"/><use xlink:href="#c" transform="translate(-121.244 -70)"/><use xlink:href="#c" transform="translate(-140)"/></g><use xlink:href="#d" transform="scale(-1 1)"/></g></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1800 900"><defs><g id="b"><g id="a"><path d="M1 0H0v.5z" transform="translate(0 -.325)"/><path d="M1 0H0v-.5z" transform="rotate(-36 .5 -.162)"/></g><use xlink:href="#a" transform="rotate(72)"/><use xlink:href="#a" transform="rotate(144)"/><use xlink:href="#a" transform="rotate(216)"/><use xlink:href="#a" transform="rotate(288)"/></g></defs><path fill="#012169" d="M0 0h1800v900H0z"/><path d="M329.376 777.265c-17.934-.15 168.624-99.431 324.77-226.6C858.788 384 1299.54 117.157 1429.115 73.796c13.543-4.532-27.776 23.073-33.14 32.016-138.341 163.74-27.925 472.724 144.973 628.048 51.99 39.763 49.327 41.85 145.707 45.746v9l-1357.28-11.34zm-11.251 18.06S304.962 804.727 305 811.73c.043 7.772 14.766 18.047 14.766 18.047l1338.745 14.765 24.609-16.406-34.453-21.328-1330.542-11.484z" fill="#ffd100"/><g fill="#fff"><use xlink:href="#b" transform="matrix(45 0 0 45 342.957 112.581)"/><use xlink:href="#b" transform="matrix(37.5 0 0 37.5 521.205 267.53)"/><use xlink:href="#b" transform="matrix(45 0 0 45 135 321.808)"/><use xlink:href="#b" transform="matrix(52.5 0 0 52.5 342.957 652.581)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M1200 600V0H0v600z" fill="#dc241f"/><path d="M0 0v600l600-300z" fill="#ffc726"/><path d="M0 0v600l400-300z"/><path d="M92.858 208.928l19.76 189.181 95.212-164.663-173.817 77.251 186.025 39.67-127.18-141.44" fill="#fff"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 900 600"><defs><clipPath id="b"><path d="M0 0h900v600H0z"/></clipPath></defs><path fill="#00843d" d="M0 0h900v600H0z"/><g fill="#fff"><path d="M446.821 66.543c26.6 11.42 45.236 37.85 45.236 68.627 0 41.225-33.43 74.655-74.654 74.655-18.455 0-35.345-6.704-48.377-17.805a74.443 74.443 0 0026.15 5.951c41.185 1.798 76.042-30.142 77.84-71.327 1.044-23.91-9.287-45.687-26.195-60.101z"/><path d="M375.616 121.42l8.458-26.033-22.145 16.09h27.373l-22.145-16.09z" id="a"/><use height="600" y="-38.4" xlink:href="#a"/><use y="-18.722" x="37.937" xlink:href="#a"/><use y="18.722" x="-37.936" xlink:href="#a"/><use height="600" y="38.4" xlink:href="#a"/></g><path fill="#d22730" d="M107.998 0h162v600h-162z"/><g clip-path="url(#b)"><g id="c" fill="#383739"><path d="M107.998-39.619v5.88l9.11 8.527-3.072 2.86 6.515 6.038-2.86 2.596v-3.761h-5.562v4.502l12.553 11.759h6.356l.689-4.132h-3.655l3.972-3.707L142.002 0l-9.958 9.11-3.972-3.708h3.655l-.689-4.184h-6.356L112.13 12.977v4.502h5.562v-3.76l2.86 2.594-6.515 6.039 3.072 2.913-9.11 8.474v5.88l15.413-14.354-3.072-2.913 6.462-6.039-5.562-5.19 3.708-3.39 7.097 6.568L147.617 0l-15.573-14.3-7.097 6.62-3.708-3.443 5.562-5.19-6.462-6.039 3.072-2.86-15.413-14.407zm0 28.549v22.14l3.602-3.655v-4.29h3.813L118.485 0l-3.072-3.072H111.6v-4.343l-3.602-3.655zm26.271 7.839l-.53 3.019.53 3.072 3.284-3.072z"/><path d="M107.998-38.983v4.66l9.746 9.11-3.072 2.861 6.514 6.038-3.919 3.655v-4.396h-4.714v3.92l12.341 11.493h5.72l.583-3.284h-4.237l5.084-4.767L142.638 0l-10.594 9.693-5.084-4.714h4.237l-.584-3.337h-5.72L112.55 13.135v3.92h4.715v-4.396l3.919 3.654-6.515 6.038 3.072 2.913-9.745 9.058v4.66l14.777-13.718-3.072-2.913 6.462-6.038-5.562-5.19 4.344-4.026 7.097 6.62L146.927 0l-14.884-13.718-7.097 6.62-4.344-4.025 5.562-5.19-6.462-6.039 3.072-2.86-14.777-13.771zm0 28.548v20.87l3.178-3.179V2.648h4.078L117.903 0l-2.649-2.648h-4.078v-4.609l-3.178-3.177zm26.589 8.051l-.37 2.172.37 2.172 2.33-2.172z" fill="#ffc72c"/></g></g><use height="100%" width="100%" y="109.207" xlink:href="#c" fill="#383739"/><use height="100%" width="100%" y="222.005" xlink:href="#c" fill="#383739"/><use height="100%" width="100%" y="334.802" xlink:href="#c" fill="#383739"/><use height="100%" width="100%" y="447.598" xlink:href="#c" fill="#383739"/><g transform="matrix(-1 0 0 1 377.996 0)" fill="#383739"><g clip-path="url(#b)"><path d="M107.998-39.619v5.88l9.11 8.527-3.072 2.86 6.515 6.038-2.86 2.596v-3.761h-5.562v4.502l12.553 11.759h6.356l.689-4.132h-3.655l3.972-3.707L142.002 0l-9.958 9.11-3.972-3.708h3.655l-.689-4.184h-6.356L112.13 12.977v4.502h5.562v-3.76l2.86 2.594-6.515 6.039 3.072 2.913-9.11 8.474v5.88l15.413-14.354-3.072-2.913 6.462-6.039-5.562-5.19 3.708-3.39 7.097 6.568L147.617 0l-15.573-14.3-7.097 6.62-3.708-3.443 5.562-5.19-6.462-6.039 3.072-2.86-15.413-14.407zm0 28.549v22.14l3.602-3.655v-4.29h3.813L118.485 0l-3.072-3.072H111.6v-4.343l-3.602-3.655zm26.271 7.839l-.53 3.019.53 3.072 3.284-3.072z"/><path d="M107.998-38.983v4.66l9.746 9.11-3.072 2.861 6.514 6.038-3.919 3.655v-4.396h-4.714v3.92l12.341 11.493h5.72l.583-3.284h-4.237l5.084-4.767L142.638 0l-10.594 9.693-5.084-4.714h4.237l-.584-3.337h-5.72L112.55 13.135v3.92h4.715v-4.396l3.919 3.654-6.515 6.038 3.072 2.913-9.745 9.058v4.66l14.777-13.718-3.072-2.913 6.462-6.038-5.562-5.19 4.344-4.026 7.097 6.62L146.927 0l-14.884-13.718-7.097 6.62-4.344-4.025 5.562-5.19-6.462-6.039 3.072-2.86-14.777-13.771zm0 28.548v20.87l3.178-3.179V2.648h4.078L117.903 0l-2.649-2.648h-4.078v-4.609l-3.178-3.177zm26.589 8.051l-.37 2.172.37 2.172 2.33-2.172z" fill="#ffc72c"/></g><use height="100%" width="100%" y="109.207" xlink:href="#c"/><use height="100%" width="100%" y="222.005" xlink:href="#c"/><use height="100%" width="100%" y="334.802" xlink:href="#c"/><use height="100%" width="100%" y="447.598" xlink:href="#c"/></g><path d="M121.14 530.824c.8 3.407 3.508 5.979 4.154 9.513 1.292-3.685 2.484-6.773 1.594-10.804-.637-2.883-3.062-4.94-3.343-7.902-2.644 2.377-3.213 5.749-2.405 9.193zm-.67 14.276c2.243 3.075 5.36 5.434 8.803 7.007-.678-2.694.594-4.722 2.006-6.86 1.7-2.574 2.53-5.103 1.143-8.067-.646 1.541-1.514 2.821-2.533 4.139-1.506 2.055-2.497 3.883-2.73 6.52-1.742-1.292-2.507-3.22-3.439-5.086-1.42-2.673-3.712-4.908-6.345-6.369.7 2.998 1.238 6.169 3.095 8.716zm12.578 9.166c-.48 1.708-.893 3.4-.8 5.186-1.482-1.597-3.45-2.799-5.206-4.085-2.39-1.934-5.178-3.298-7.133-5.76.292 3.624 1.843 6.578 4.788 8.783 3.113 2.33 6.867 3.583 9.933 6.03-.46-3.297.752-5.937 1.784-8.967.86-2.895.028-5.834-1.935-8.04.029 2.445-.743 4.545-1.43 6.853zm6.986 11.133c.645 2.5 2.437 4.534 3.66 6.764-3.299-1.023-6.21-2.812-9.191-4.495-3.552-1.934-7.41-3.165-10.625-5.719 1.6 5.924 5.567 9.359 11.369 11.11 3.967 1.198 7.31.6 12.124 2.546-.552-3.259-1.525-6.776-3.066-9.714-1.195-2.125-2.521-4.221-3.26-6.562-1.07 1.923-1.576 3.879-1.011 6.07zm12.139 9.065a15.21 15.21 0 004.494 4.875c-4.683.299-8.451-2.669-13.017-2.798-2.82-.08-5.497.796-8.373.533 3.413 2.303 6.986 4.314 11.141 4.851 5.401.699 10.382-.66 16.341-.129-2.785-1.965-4.178-4.595-5.914-7.423-2.26-3.533-4.393-6.05-8.789-6.618 1.765 1.983 2.792 4.44 4.117 6.71zm16.631 7.773c-8.25 1.403-16.156 3.218-24.581 3.301 9.431 3.288 18.318 3.883 27.672.488 5.055-1.835 8.93-2.817 12.748-2.544 5.58.401 12.36 2.603 19.865 10.517l2.95-2.36c-10.756-9.583-24.829-11.753-38.654-9.403z" fill="#ffc72c"/><path d="M128.266 70.34l-12.981-7.961V43.244l12.981-7.96V25.159l12.267-7.388h9.8l18.648-10.488h40.033l18.648 10.488h9.8l12.267 7.388v10.125l12.981 7.96v19.135l-12.98 7.96v10.125l-12.268 7.387h-9.8L209.014 98.34h-40.033l-18.648-10.489h-9.8l-12.267-7.387z" fill="#383739"/><path d="M169.068 7.733L150.424 18.22h-9.746l-11.97 7.203V35.54l-12.977 7.945v18.644l12.977 7.945v10.17l11.917 7.203h9.799l18.644 10.487h39.83l18.644-10.487h9.8l11.97-7.204v-10.17l12.976-7.944V43.485l-12.976-7.945V25.423l-11.97-7.203h-9.8L208.898 7.733h-39.83zm1.112 3.866h37.66l18.643 10.488h9.746l9.057 5.455V37.66l13.03 7.945V60.01l-13.03 7.945v10.117l-9.057 5.455h-9.746L207.84 94.015h-37.66l-18.644-10.488h-9.745l-9.11-5.455V67.955l-12.977-7.945V45.604l12.976-7.945V27.542l9.11-5.455h9.746z" fill="#00843d"/><path d="M188.783 53.025V12.017h-18.506L151.63 22.505h-9.722l-8.795 5.296v10.1l-12.98 7.96v6.736h69.08v41.009h18.506l18.648-10.489h9.723l8.794-5.296v-10.1l12.98-7.96v-6.735z" fill="#ffc72c"/><path d="M120.131 53.025v6.736l12.98 7.96v10.1l8.795 5.296h9.722l18.648 10.489h18.506v-41.01h69.081v-6.735l-12.98-7.96v-10.1l-8.795-5.296h-9.723l-18.648-10.488h-18.505v41.008z" fill="#fff"/><g id="e" fill="#383739"><g id="d"><path d="M148.448 26.28l-3.196-2.978-3.166 1.952 3.201 2.985-4.11 2.546h8.969l7.73 7.29 2.472-2.61-7.515-7.09v-4.811z"/><path d="M163.573 24.972l-3.196-2.978-3.166 1.952 3.201 2.984-4.11 2.547h8.969l7.73 7.29 2.472-2.61-7.515-7.09v-4.812zm-16.234 9.864l-3.196-2.979-3.165 1.953 3.2 2.984-4.11 2.547h8.97l7.728 7.29 2.473-2.611-7.515-7.089v-4.812z"/><path d="M188.997 11.589h-8.093l-4.235 4.081h-8.255l-6.1 3.166 1.422 3.467 5.44-2.858h2.383l8.341 9.647 9.097-5.54z"/><path d="M145.199 23.838l2.872 2.676-2.406 1.49-2.876-2.68zm7.205.495v4.227l7.338 6.921-1.884 1.99-7.542-7.114h-7.635l9.723-6.024zm7.92-1.803l2.872 2.676-2.406 1.49-2.876-2.68zm7.205.494v4.227l7.338 6.922-1.884 1.99-7.542-7.114h-7.635l9.723-6.025z" fill="#d22730"/><path d="M144.091 32.393l2.871 2.677-2.406 1.49-2.875-2.68zm7.205.495v4.227l7.337 6.922-1.883 1.99-7.542-7.114h-7.636l9.724-6.025zm37.487-20.871h-7.706l-4.235 4.08h-8.324l-5.66 2.938 1.095 2.67 5.117-2.688h2.685l8.232 9.521 8.796-5.356z" fill="#d22730"/></g><use height="100%" width="100%" transform="matrix(1 0 0 -1 0 105.623)" xlink:href="#d"/><path d="M143.054 39.71l-3.859-1.441-.092.064-4.982 3.457v.93l-7.98 10.091 7.98 10.092v.93l5.074 3.52 3.859-1.441-2.355-1.56v-2.967l.936-1.12h4.181V45.358h-4.181l-.936-1.12V41.27z"/><path d="M134.549 42.014l4.706-3.266 2.862 1.07-1.846 1.223v3.352l1.164 1.392h3.952v14.053h-3.952l-1.164 1.392v3.352l1.846 1.223-2.862 1.07-4.706-3.266v-.855l-7.862-9.943 7.863-9.943z" fill="#d22730"/></g><use height="100%" width="100%" transform="matrix(-1 0 0 1 377.994 0)" xlink:href="#e" fill="#383739"/><path d="M136.203 61.282l-2.173-1.88v-.906l-4.66-5.685 4.661-5.685v-.906l2.173-1.88 3.902 3.174-2.252-.017 3.328 3.378h7.605l5.98-4.677V33.863h14.96l17.372-10.66v-2.796l-2.657-1.771h-.842l-2.893 1.936-.448 1.444-2.264-3.09 4.399-3.695h.703l4.964-3.642h1.871l4.964 3.642h.703l4.399 3.695-2.263 3.09-.448-1.444-2.894-1.936h-.841l-2.657 1.77v2.797l17.372 10.66h14.959v12.335l5.98 4.677h7.606l3.328-3.378-2.253.017 3.903-3.173 2.172 1.88v.905l4.662 5.685-4.662 5.685v.906l-2.172 1.88-3.903-3.173 2.253.017-3.328-3.378h-7.605l-5.981 4.677V71.76h-14.959l-17.372 10.66v2.796l2.657 1.77h.841l2.894-1.935.448-1.445 2.263 3.09-4.399 3.696h-.703l-4.964 3.642h-1.871l-4.964-3.642h-.703l-4.4-3.696 2.265-3.09.448 1.445 2.892 1.936h.842l2.658-1.77V82.42l-17.373-10.66h-14.958V59.424l-5.982-4.677h-7.604l-3.328 3.378 2.252-.017z" fill="#383739"/><path d="M189.211 87.319l1.901 1.454-1.901 1.453V87.32zm-6.044 2.644h.07l4.964 3.643h.58v-2.842l-2.604-1.991 2.604-1.992v-5.337l-18.589-11.408H156.45V58.574l-7.095-5.55h-10.701l-2.69 3.042-2.69-3.041h-3.176l4.36 5.318v.863l1.727 1.5 2.774-2.16-1.628.013v-.54l3.629-3.7h7.974l6.262 4.898V71.33h14.651l17.68 10.85v3.264l-2.956 1.97h-1.103l-3.126-2.093-.24-.777-1.525 2.08 3.973 3.338h.617zm-47.2-39.76l2.117 2.394h-4.236zm52.815-34.807l-1.9 1.453 1.9 1.454zm51.127 37.63l2.118 2.393 2.118-2.394zm-45.154-37.367l-4.964-3.642h-.58v2.84l2.606 1.993-2.606 1.992v5.337l18.59 11.407h13.741V47.05l7.095 5.549h10.7l2.69-3.041 2.69 3.04h3.177l-4.36-5.317v-.864l-1.726-1.5-2.775 2.16 1.629-.013v.54l-3.63 3.7h-7.973l-6.262-4.898V34.29h-14.652l-17.679-10.85v-3.264l2.956-1.97h1.102l3.127 2.094.24.776 1.525-2.08-3.973-3.339h-.688z" fill="#ffc72c"/><path d="M188.782 90.226l-1.9-1.453 1.9-1.453zm-50.698-37.2l-2.118 2.394-2.118-2.394zm56.741 36.937h-.07l-4.964 3.643h-.58v-2.84l2.606-1.993-2.606-1.993v-5.336l18.59-11.408h13.741V58.574l7.095-5.549h10.7l2.69 3.041 2.69-3.041h3.177l-4.36 5.318v.863l-1.726 1.5-2.775-2.16 1.629.013v-.54l-3.63-3.7h-7.973l-6.262 4.898v12.115h-14.652L190.466 82.18v3.264l2.956 1.97h1.102l3.127-2.093.24-.777 1.525 2.081-3.973 3.337h-.618zm47.202-39.76l-2.118 2.394h4.237zM183.24 15.66l4.963-3.642h.58v2.84l-2.605 1.993 2.606 1.992v5.337l-18.59 11.408h-13.74V47.05l-7.096 5.549h-10.703l-2.69-3.041-2.69 3.04H130.1l4.36-5.317v-.863l1.727-1.5 2.773 2.16-1.628-.014v.541l3.63 3.698h7.973l6.262-4.897V34.291h14.651l17.68-10.849v-3.265l-2.956-1.969h-1.102l-3.127 2.093-.24.776-1.525-2.08 3.974-3.338h.687zm5.972 2.645l1.901-1.454-1.901-1.454z" fill="#fff"/><path d="M188.783 53.025V24.68l-18.469 11.334H156.88v11.243l-6.828 5.34h39.16v28.345l18.467-11.334h13.435V58.366l6.828-5.34z" fill="#00843d"/><path d="M150.051 53.025l6.829 5.34v11.243h13.434l18.469 11.334V52.596l39.159.001-6.828-5.34V36.014h-13.435l-18.467-11.333v28.344z" fill="#d22730"/><path d="M169.118 39.063l-3.195-2.978-3.166 1.952 3.2 2.984-4.11 2.547h8.97l7.729 7.29 2.472-2.61-7.515-7.09v-4.811zm39.755 27.497l3.196 2.978 3.165-1.953-3.2-2.984 4.11-2.546h-8.97l-7.728-7.291-2.473 2.611 7.515 7.09v4.811zm-39.755 0l-3.196 2.978-3.165-1.953 3.2-2.984-4.11-2.546h8.97l7.728-7.291 2.473 2.611-7.515 7.09v4.811zm39.755-27.497l3.196-2.978 3.165 1.952-3.2 2.984 4.11 2.547h-8.97l-7.728 7.29-2.473-2.61 7.515-7.09v-4.811z" fill="#383739"/><path d="M212.122 69.002l-2.871-2.677 2.406-1.49 2.875 2.68zm-7.205-.495V64.28l-7.337-6.921 1.884-1.99 7.541 7.114h7.636l-9.724 6.024zM165.87 36.62l2.872 2.677-2.407 1.49-2.875-2.68zm7.206.496v4.226l7.337 6.922-1.884 1.99-7.541-7.114h-7.636l9.724-6.024z" fill="#d22730"/><path d="M212.122 36.62l-2.871 2.677 2.406 1.49 2.875-2.68zm-7.205.496v4.226l-7.337 6.922 1.884 1.99 7.541-7.114h7.636l-9.724-6.024zM165.87 69.002l2.871-2.677-2.406-1.49-2.875 2.68zm7.205-.495V64.28l7.338-6.921-1.884-1.99-7.541 7.114h-7.636l9.723 6.024z" fill="#00843d"/><path d="M208.856 52.812l-19.859 13.235-19.859-13.235 19.859-13.236z" fill="#383739"/><path d="M188.783 40.233l-18.551 12.364h37.531l-18.551-12.364V65.39l18.552-12.365h-37.533l18.552 12.365z" fill="#fff"/><path d="M194.308 57.363v3.639h-10.62v-3.64h-6.874V48.26h6.873v-3.64h10.621v3.64h6.873v9.103z" fill="#383739"/><path d="M184.116 45.048v3.64h-6.873v3.909h11.54v-7.549h-4.667zm5.096 7.549h11.54v-3.91h-6.872v-3.639h-4.668v7.549zm-11.969.428v3.91h6.873v3.639h4.667v-7.549h-11.54zm11.97 7.549h4.667v-3.639h6.873v-3.91h-11.54v7.55z" fill="#d22730"/><path d="M222.877 203.61v-5.83h15.988v-5.83h15.988v-52.682h-15.988v-5.83h-15.988v-5.83h-15.988v-5.83h-35.782v5.83h-15.989v5.83H139.13v5.83h-15.99v52.682h15.989v5.83h15.988v5.83h15.989v5.83h35.782v-5.83z" fill="#383739"/><path d="M171.558 122.193v5.826h-15.996v5.827h-15.996v5.826H123.57v51.854h15.996v5.827h15.996v5.825h15.996v5.826h34.903v-5.826h15.997v-5.825h15.997v-5.827h15.994v-51.854h-15.994v-5.826h-15.997v-5.827h-15.997v-5.826zm4.237 4.237h26.43v5.826h15.996v5.827h15.996v5.826h15.995v43.38h-15.995v5.826h-15.996v5.826h-15.997v5.825h-26.429v-5.825H159.8v-5.826h-15.996v-5.827h-15.996v-43.38h15.996v-5.825H159.8v-5.827h15.996z" fill="#ffc72c"/><path d="M160.209 198.519v-5.83h-15.988v-5.83h-15.989v-42.5h15.989v-5.831h15.988v-5.83h15.988v-5.83h25.601v5.83h15.989v5.83h15.987v5.83h15.99v42.5h-15.99v5.83h-15.987v5.831h-15.989v5.83h-25.6v-5.83z" fill="#d22730"/><path d="M163.921 137.014l-4.141-3.13v6.01l-3.966 2.52-.01-3.762-3.803 3.416-3.804-3.416-.01 3.763-4.394-2.793v5.573l-3.552 2.571-.01-3.417-4.219 3.056-4.219-3.056-.01 3.417-3.98-2.881v16.881h-4.662v7.685h4.662v16.881l3.98-2.882.01 3.418 4.22-3.056 4.218 3.056.01-3.418 3.551 2.571v5.574l4.395-2.793.01 3.763 3.803-3.416 3.804 3.416.01-3.763 3.965 2.52v6.011l4.142-3.13.009 4.198 4.058-3.63 4.059 3.63.009-4.198 3.713 2.806v6.411l5.551-5.06v5.946l7.678-4.936 7.678 4.936v-5.946l5.551 5.06v-6.41l3.712-2.807.01 4.198 4.058-3.63 4.06 3.63.008-4.198 4.14 3.13v-6.011l3.967-2.52.01 3.763 3.804-3.416 3.803 3.416.01-3.763 4.395 2.793v-5.574l3.552-2.57.01 3.417 4.218-3.056 4.22 3.056.01-3.418 3.98 2.882V169.45h4.661v-7.685h-4.662v-16.881l-3.98 2.881-.01-3.417-4.219 3.056-4.219-3.056-.009 3.417-3.551-2.571v-5.573l-4.395 2.793-.01-3.763-3.804 3.416-3.804-3.416-.01 3.763-3.966-2.521v-6.01l-4.14 3.13-.01-4.199-4.058 3.63-4.06-3.63-.008 4.199-3.713-2.807v-6.41l-5.55 5.06v-5.946l-7.679 4.936-7.678-4.936v5.946l-5.55-5.06v6.41l-3.714 2.807-.009-4.199-4.059 3.63-4.058-3.63z" fill="#383739"/><path d="M132.21 148.604l.01-3.418 3.793 2.748.127-.093 3.665-2.655.01 3.418 3.978-2.88v39.769l-3.978-2.88-.01 3.418-3.792-2.748-3.793 2.748-.01-3.418-3.978 2.88v-16.471h-4.662v-6.827h4.662v-16.47zm32.146-14.832l3.632 3.248 3.633-3.248.009 4.102 4.139-3.129v61.728l-4.14-3.13-.008 4.103-3.633-3.249-3.632 3.249-.008-4.102-4.139 3.129v-61.728l4.139 3.13zm49.284 0l-3.632 3.248-3.633-3.248-.009 4.102-4.138-3.129v61.728l4.138-3.13.01 4.103 3.632-3.249 3.632 3.249.009-4.102 4.139 3.129v-61.728l-4.139 3.13zm32.146 14.832l-.01-3.418-3.793 2.748-.128-.093-3.665-2.655-.01 3.418-3.977-2.88v39.769l3.977-2.88.01 3.418 3.793-2.748 3.793 2.748.01-3.418 3.977 2.88v-16.471h4.662v-6.827h-4.662v-16.47z" fill="#00843d"/><path d="M148.623 139.611l3.377 3.034 3.378-3.034.01 3.583 4.392-2.792v50.413l-4.392-2.791-.01 3.582-3.378-3.033-3.377 3.033-.01-3.582-4.393 2.791v-50.413l4.393 2.792zm33.125-5.784l-5.551-5.06v73.683l5.551-5.06v6.131l7.249-4.66 7.25 4.66v-6.131l5.55 5.06v-73.683l-5.55 5.06v-6.131l-7.25 4.66-7.249-4.66zm47.625 5.784l-3.377 3.034-3.378-3.034-.01 3.583-4.393-2.792v50.413l4.394-2.791.009 3.582 3.378-3.033 3.377 3.033.01-3.582 4.393 2.791v-50.413l-4.393 2.792z" fill="#ffc72c"/><g id="g" fill="#383739"><g id="f"><path d="M134.288 158.366c.485.49 1.066.737 1.724.737.659 0 1.239-.247 1.725-.737 1.518-1.53 1.57-4.297 1.554-6.289l-2.072 2.19-1.207-2.083s-.985 1.702-1.207 2.083l-2.072-2.19c-.015 1.992.036 4.759 1.555 6.289zm16.678-4.286l-1.28-1.278v-2.546l-2.937 2.722L152 158.23l5.252-5.252-2.938-2.722v2.546l-1.279 1.278v-4.511l2.265-1.945-3.3-2.834-3.3 2.834 2.266 1.945zm15.987-5.06l-1.279-1.279v-2.546l-2.937 2.723 5.251 5.251 5.251-5.251-2.937-2.723v2.546l-1.28 1.279v-4.512l2.266-1.945-3.3-2.833-3.3 2.833 2.265 1.945z"/><path d="M136.013 153.039l1.123 1.94 1.709-1.806c-.06 2.25-.553 4.026-1.412 4.89-.402.406-.88.612-1.42.612-.54 0-1.018-.206-1.42-.611-.859-.865-1.353-2.642-1.412-4.89l1.708 1.805 1.124-1.94zm32.582-8.727v5.743l2.136-2.135v-1.743l1.891 1.754-4.633 4.633-4.634-4.633 1.891-1.754v1.743l2.136 2.135v-5.743l-2.035-1.748 2.642-2.268 2.642 2.268z" fill="#fff"/><path d="M152.607 149.372v5.743l2.136-2.136v-1.742l1.891 1.753-4.634 4.634-4.633-4.634 1.891-1.753v1.742l2.136 2.136v-5.743l-2.035-1.748 2.641-2.268 2.643 2.268z" fill="#d22730"/></g><use height="100%" width="100%" transform="matrix(-1 0 0 1 377.996 0)" xlink:href="#f"/><path d="M195.282 150.937l-1.72-2.377 4.411-4.072-4.113-3.38v2.394l-1.72 1.472v-4.342l3.885-2.864-7.029-5.18-7.029 5.18 3.887 2.864v4.342l-1.72-1.472v-2.394l-4.114 3.38 4.412 4.072-1.72 2.377z"/><path d="M183.552 150.509l1.45-2.006-4.328-3.996 3.032-2.491v1.684l2.577 2.206v-5.49l-3.592-2.647 6.307-4.649 6.306 4.649-3.591 2.647v5.49l2.577-2.206v-1.684l3.032 2.491-4.329 3.996 1.451 2.006z" fill="#d22730"/><path d="M185.785 137.769l3.212 2.367 3.212-2.367-3.212-2.368-.127.095z"/><path d="M188.997 135.934l2.49 1.835-2.49 1.835-2.49-1.835 2.49-1.835z" fill="#00843d"/></g><use height="100%" width="100%" transform="matrix(1 0 0 -1 0 331.216)" xlink:href="#g" fill="#383739"/><path d="M245.902 163.15h-7.037v-2.805h-21.511l-14.974-9.836h-26.765l-14.974 9.836h-21.51v2.805h-7.038v4.918h7.037v2.805h21.511l14.974 9.836h26.765l14.974-9.836h21.51v-2.805h7.038z" fill="#383739"/><path d="M175.742 150.953l-14.99 9.799h-21.186v2.807h-7.044v4.078h7.044v2.808h21.187l14.989 9.851h26.536l14.936-9.851h21.24v-2.808h7.044v-4.078h-7.044v-2.807h-21.24l-14.936-9.799zm.318 1.43h25.847l13.718 9.004v1.377h15.308v5.72h-15.308v1.378l-13.718 8.951H176.06l-13.665-8.951v-1.377h-15.36v-5.72h15.36v-1.378z" fill="#d22730"/><path d="M201.799 152.826l13.379 8.783v1.56h15.332v4.88h-15.332v1.559l-13.379 8.783h-25.604l-13.38-8.783v-1.56h-15.331v-4.88h15.332v-1.559l13.379-8.783z" fill="#d22730"/><g fill="#383739"><path d="M169.551 170.598l5.793 4.349 3.81-2.862-2.215-1.663-1.595 1.198-1.362-1.022 21.815-16.379h-4.43zm12.645 6.4h4.43l21.816-16.378-5.792-4.348-3.811 2.86 2.215 1.663 1.596-1.198 1.362 1.023zm9.171 0h4.43l-21.815-16.378 1.362-1.023 1.595 1.198 2.216-1.662-3.811-2.861-5.793 4.348zm12.645-6.4l-1.362 1.022-1.596-1.198-2.215 1.663 3.811 2.862 5.792-4.349-21.816-16.379h-4.43zm-38.848-4.989l3.893 2.586 3.894-2.586-3.894-2.586z"/><path d="M185.104 165.609l3.893 2.586 3.894-2.586-3.894-2.586zm27.728 0l-3.893 2.586-3.894-2.586 3.894-2.586z"/><path d="M207.729 170.598l-5.078 3.813-3.098-2.326 1.502-1.127 1.596 1.198 2.075-1.558-21.245-15.95h3.003zm-13.216 5.972h-3.003l-21.244-15.95 5.079-3.813 3.096 2.326-1.501 1.126-1.595-1.198-2.076 1.559zm-8.029 0h-3.003l21.245-15.95-2.075-1.559-1.596 1.198-1.502-1.126 3.098-2.326 5.078 3.813zm5.026-21.922h3.003l-21.244 15.95 2.076 1.558 1.595-1.198 1.501 1.127-3.096 2.326-5.08-3.813z" fill="#ffc72c"/><path d="M169.057 163.538l3.119 2.071-3.119 2.071-3.119-2.07zm19.941 0l3.119 2.071-3.119 2.071-3.118-2.07zm19.941 0l-3.119 2.071 3.119 2.071 3.118-2.07z" fill="#00843d"/></g><g fill="#383739"><path d="M120.514 274.151l-1.528 2.16 2.739 2.095-2.74 2.094 1.528 2.16 3.182.37 3.081-2.38 7.682 4.88v-4.053l-4.835-3.071 4.835-3.071v-4.053l-7.682 4.88-3.08-2.38z"/><path d="M120.514 260.073l-1.528 2.161 2.739 2.094-2.74 2.094 1.528 2.161 3.182.37 3.081-2.381 7.682 4.88v-4.053l-4.835-3.07 4.835-3.072v-4.053l-7.682 4.88-3.08-2.38zm0 36.666l-1.528-2.16 2.739-2.095-2.74-2.094 1.528-2.16 3.182-.37 3.081 2.38 7.682-4.88v4.053l-4.835 3.071 4.835 3.071v4.053l-7.682-4.88-3.08 2.38zm136.968-22.588l1.528 2.16-2.739 2.095 2.739 2.094-1.528 2.16-3.181.37-3.081-2.38-7.683 4.88v-4.053l4.836-3.071-4.836-3.071v-4.053l7.683 4.88 3.08-2.38z"/><path d="M257.482 260.073l1.528 2.161-2.739 2.094 2.739 2.094-1.528 2.161-3.181.37-3.081-2.381-7.683 4.88v-4.053l4.836-3.07-4.836-3.072v-4.053l7.683 4.88 3.08-2.38zm0 36.666l1.528-2.16-2.739-2.095 2.739-2.094-1.528-2.16-3.181-.37-3.081 2.38-7.683-4.88v4.053l4.836 3.071-4.836 3.071v4.053l7.683-4.88 3.08 2.38zm-30.755-61.009v5.856h4.26v2.588h4.184v-4.713h-3.732v-3.731zm12.556 9.235v5.855h4.255v2.589h4.189v-4.713h-3.732v-3.731zm-88.014-9.235v5.856h-4.26v2.588h-4.184v-4.713h3.732v-3.731zm75.458 85.353v-5.856h4.26v-2.588h4.184v4.712h-3.732v3.732zm-75.458 0v-5.856h-4.26v-2.588h-4.184v4.712h3.732v3.732zm88.014-9.235v-5.855h4.255v-2.589h4.189v4.712h-3.732v3.732zm-100.569-66.883v5.855h-4.256v2.589h-4.188v-4.713h3.732v-3.731zm0 66.883v-5.855h-4.256v-2.589h-4.188v4.712h3.732v3.732zm66.039-76.254l-3.25-3.156-3.194 2.959 2.783 2.701-3.592 3.488h5.334l1.919-1.863 1.92 1.863h5.333l-3.593-3.488 2.783-2.701-3.193-2.959c-1.085 1.05-2.167 2.104-3.25 3.156zm-15.755 0l-3.25-3.156-3.193 2.959 2.783 2.701-3.593 3.488h5.334l1.919-1.863 1.92 1.863h5.333l-3.592-3.488 2.782-2.701-3.192-2.959c-1.085 1.05-2.167 2.104-3.251 3.156zm-15.754 0l3.25-3.156 3.194 2.959-2.783 2.701 3.592 3.488h-5.334l-1.919-1.863-1.92 1.863h-5.333l3.593-3.488-2.783-2.701 3.193-2.959c1.085 1.05 2.167 2.104 3.25 3.156zm31.509 85.625l-3.25 3.155-3.194-2.958 2.783-2.701-3.592-3.488h5.334l1.919 1.863 1.92-1.863h5.333l-3.593 3.488 2.783 2.7-3.193 2.96c-1.085-1.051-2.167-2.104-3.25-3.156zm-15.755 0l-3.25 3.155-3.193-2.958 2.783-2.701-3.593-3.488h5.334l1.919 1.863 1.92-1.863h5.333l-3.592 3.488 2.782 2.7-3.192 2.96c-1.085-1.051-2.167-2.104-3.251-3.156zm-15.754 0l3.25 3.155 3.194-2.958-2.783-2.701 3.592-3.488h-5.334l-1.919 1.863-1.92-1.863h-5.333l3.593 3.488-2.783 2.7 3.193 2.96c1.085-1.051 2.167-2.104 3.25-3.156z"/></g><path d="M134.029 281.713v3.037l-7.278-4.623-3.18 2.458-2.819-.327-1.178-1.668 2.856-2.184-2.856-2.184 1.179-1.667 2.817-.327 3.181 2.458 7.278-4.623v3.036l-5.206 3.307zm0-14.078v3.037l-7.278-4.623-3.18 2.458-2.819-.327-1.178-1.668 2.856-2.184-2.856-2.183 1.179-1.667 2.817-.328 3.181 2.458 7.278-4.623v3.037l-5.206 3.306zm0 21.543v-3.037l-7.278 4.623-3.18-2.458-2.819.327-1.178 1.668 2.856 2.184-2.856 2.184 1.179 1.667 2.817.327 3.181-2.458 7.278 4.623v-3.036l-5.206-3.307zm109.938-7.465v3.037l7.278-4.623 3.18 2.458 2.818-.327 1.179-1.668-2.856-2.184 2.856-2.184-1.179-1.667-2.818-.327-3.18 2.458-7.278-4.623v3.036l5.206 3.307zm0-14.078v3.037l7.278-4.623 3.18 2.458 2.818-.327 1.179-1.668-2.856-2.184 2.856-2.183-1.179-1.667-2.818-.328-3.18 2.458-7.278-4.623v3.037l5.206 3.306zm0 21.543v-3.037l7.278 4.623 3.18-2.458 2.818.327 1.179 1.668-2.856 2.184 2.856 2.184-1.179 1.667-2.818.327-3.18-2.458-7.278 4.623v-3.036l5.206-3.307zm-12.956-53.019v3.732h3.731v3.855h-3.326v-2.588h-4.26v-4.999zm12.555 9.234v3.731h3.731v3.856h-3.327v-2.588h-4.259v-4.999zm-96.581-9.234v3.732h-3.731v3.855h3.327v-2.588h4.259v-4.999zm84.026 84.494v-3.731h3.731v-3.855h-3.326v2.587h-4.26v4.999zm-84.026 0v-3.731h-3.732v-3.855h3.327v2.587h4.26v4.999zm96.581-9.234v-3.731h3.731v-3.855h-3.327v2.587h-4.259v4.999zM134.43 245.393v3.731h-3.731v3.856h3.327v-2.588h4.259v-4.999zm.001 66.026v-3.731h-3.732v-3.855h3.327v2.587h4.26v4.999zm67.065-78.39l3.257 3.162 3.257-3.162 2.564 2.375-2.776 2.694 3.151 3.06h-4.102l-2.094-2.033-2.094 2.033h-4.102l3.151-3.06-2.776-2.694 2.564-2.375zm-15.755 0l3.257 3.162 3.257-3.162 2.563 2.375-2.775 2.694 3.151 3.06h-4.103l-2.093-2.033-2.094 2.033h-4.102l3.15-3.06-2.775-2.694 2.564-2.375zm-9.239 0l-3.257 3.162-3.257-3.162-2.564 2.375 2.776 2.694-3.151 3.06h4.102l2.094-2.033 2.094 2.033h4.102l-3.151-3.06 2.776-2.694-2.564-2.375zm24.994 90.755l3.257-3.163 3.257 3.163 2.564-2.375-2.776-2.694 3.151-3.06h-4.102l-2.094 2.032-2.094-2.032h-4.102l3.151 3.06-2.776 2.694 2.564 2.375zm-15.755 0l3.257-3.163 3.257 3.163 2.563-2.375-2.775-2.694 3.151-3.06h-4.103l-2.093 2.032-2.094-2.032h-4.102l3.15 3.06-2.775 2.694 2.564 2.375zm-9.239 0l-3.257-3.163-3.257 3.163-2.564-2.375 2.776-2.694-3.151-3.06h4.102l2.094 2.032 2.094-2.032h4.102l-3.151 3.06 2.776 2.694-2.564 2.375z" fill="#00843d"/><path d="M146.58 306.421v9.234h84.836v-9.234h12.55v-56.03h-12.55v-9.233H146.58v9.234h-12.55v56.029z" fill="#383739"/><path d="M147.034 241.578v9.217h-12.553v55.19h12.553v9.217h83.95v-9.217h12.555v-55.19h-12.554v-9.217h-83.951zm5.403 3.55h73.146v8.897l3.019 2.226h11.388v44.332h-11.44l-2.967 2.171v8.951h-73.146v-8.898l-3.02-2.224h-11.44v-44.332h11.388l3.072-2.226v-8.898z" fill="#ffc72c"/><path d="M152.86 245.551v8.158l11.017-8.158zm61.228 0l11.017 8.158v-8.158zm-75.635 11.124v7.627l10.382-7.627h-10.381zm90.679 0l10.434 7.68v-7.68zm10.434 35.75l-10.434 7.734h10.434zm-101.113.053v7.681h10.381zm14.407 10.647v8.104h10.964zm72.245 0l-10.963 8.104h10.963z" fill="#d22730"/><path d="M213.377 245.559l26.188 19.342v27.01l-26.188 19.342h-48.76l-26.187-19.342V264.9l26.187-19.342z" fill="#00843d"/><path d="M144.667 295.021l-3.01-3.494 2.826-3.28-2.827-3.28 2.827-3.28-2.827-3.28 2.827-3.28-2.827-3.281 2.826-3.28-2.826-3.28 3.011-3.494h88.661l3.011 3.494-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-3.01 3.495zm60.946-45.236l-3.495-3.011-3.28 2.826-3.28-2.826-3.28 2.826-3.28-2.826-3.28 2.826-3.281-2.826-3.28 2.826-3.28-2.826-3.494 3.01v57.244l3.494 3.011 3.28-2.827 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.281 2.827 3.495-3.011z" fill="#383739"/><g fill="#ffc72c"><path d="M198.623 249.981l-3.065-2.642-3.066 2.642v56.85l3.066 2.641 3.065-2.641zm-13.12 0l-3.066-2.642-3.065 2.642v56.85l3.065 2.641 3.066-2.641z"/><path d="M144.863 294.593l-2.641-3.066 2.641-3.066h88.269l2.641 3.066-2.641 3.066zm88.269-19.253l2.642 3.066-2.642 3.065h-88.268l-2.642-3.065 2.642-3.066zm0-6.988l2.641-3.066-2.641-3.065h-88.269l-2.641 3.065 2.641 3.066z"/></g><g fill="#d22730"><path d="M205.184 249.981l-3.065-2.642-3.066 2.642v56.85l3.066 2.641 3.064-2.64zm-26.241 0l-3.066-2.642-3.066 2.642v56.85l3.066 2.641 3.066-2.641z"/><path d="M144.864 288.032l-2.642-3.066 2.642-3.066h88.268l2.642 3.066-2.642 3.066zm0-13.12l-2.642-3.066 2.642-3.066h88.268l2.642 3.066-2.642 3.066z"/><path d="M192.064 306.831l-3.066 2.641-3.066-2.641v-56.85l3.066-2.642 3.066 2.642z"/></g><path d="M218.631 251.09h-59.48v4.724h-7.602v45.185h7.602v4.723h59.694v-4.723h7.602v-45.185h-7.602v-4.724z" fill="#383739"/><path d="M159.587 251.535v4.715h-7.627v44.332h7.627v4.714h6.25l-12.447-10.434V261.97l12.447-10.434h-6.25zm52.596 0l12.393 10.434v32.893l-12.393 10.434h6.25v-4.714h7.574V256.25h-7.575v-4.715h-6.249z" fill="#d22730"/><g fill="#00843d"><path d="M166.525 251.535l-12.712 10.646v32.468c.15.127 12.594 10.547 12.712 10.646h44.968l12.659-10.646v-32.468l-12.659-10.646zm.636 1.8h43.644l11.546 9.694v30.773l-11.546 9.64H167.16l-11.494-9.64v-30.773z"/><path d="M178.72 294.289l1.954.844.359 2.282-2.46 2.164 3.573 3.454h-3.437l-2.458-2.366-2.458 2.366h-3.438l3.573-3.454-2.46-2.164.36-2.282 1.953-.844 2.47 1.975.134-.107zm12.748 0l1.953.844.36 2.282-2.46 2.164 3.573 3.454h-3.437l-2.459-2.366-2.457 2.366h-3.438l3.573-3.454-2.46-2.164.36-2.282 1.953-.844 2.47 1.975.133-.107zm7.809 0l-1.953.844-.36 2.282 2.46 2.164-3.573 3.454h3.437l2.459-2.366 2.457 2.366h3.438l-3.573-3.454 2.46-2.164-.36-2.282-1.953-.844-2.47 1.975-.134-.107zm-20.557-31.766l1.954-.844.359-2.281-2.46-2.164 3.573-3.454h-3.437l-2.458 2.365-2.458-2.365h-3.438l3.573 3.454-2.46 2.163.36 2.282 1.953.844 2.47-1.974.134.107zm12.748 0l1.953-.844.36-2.281-2.46-2.164 3.573-3.454h-3.437l-2.459 2.365-2.457-2.365h-3.438l3.573 3.454-2.46 2.163.36 2.282 1.953.844 2.47-1.974.133.107zm7.809 0l-1.953-.844-.36-2.281 2.46-2.164-3.573-3.454h3.437l2.459 2.365 2.457-2.365h3.438l-3.573 3.454 2.46 2.163-.36 2.282-1.953.844-2.47-1.974-.134.107zm22.624 3.644l-1.95 1.615 1.95 1.614v2.676l-2.999-2.471-2.152 1.95-2.308-.29-.813-1.5 1.986-1.98-1.986-1.98.813-1.5c.192-.023 2.135-.268 2.308-.29l2.152 1.95 2.999-2.47zm0 10.625l-1.95 1.615 1.95 1.613v2.677l-2.999-2.471-2.152 1.95c-.173-.022-2.116-.267-2.308-.29l-.813-1.5 1.986-1.98-1.986-1.98.813-1.5c.192-.023 2.135-.268 2.308-.29l2.152 1.95 2.999-2.47zm0 13.854l-1.95-1.615 1.95-1.614v-2.676l-2.999 2.471-2.152-1.95-2.308.29-.813 1.5 1.986 1.98-1.986 1.98.813 1.5c.192.023 2.135.268 2.308.29l2.152-1.95 2.999 2.47zm-65.804-24.479l1.95 1.615-1.95 1.614v2.676l2.999-2.471 2.152 1.95 2.308-.29.813-1.5-1.986-1.98 1.986-1.98-.813-1.5c-.192-.023-2.136-.268-2.308-.29l-2.152 1.95-2.999-2.47zm0 10.625l1.95 1.615-1.95 1.613v2.677l2.999-2.471 2.152 1.95c.172-.022 2.116-.267 2.308-.29l.813-1.5-1.986-1.98 1.986-1.98-.813-1.5c-.192-.023-2.136-.268-2.308-.29l-2.152 1.95-2.999-2.47zm0 13.854l1.95-1.615-1.95-1.614v-2.676l2.999 2.471 2.152-1.95 2.308.29.813 1.5-1.986 1.98 1.986 1.98-.813 1.5c-.192.023-2.136.268-2.308.29l-2.152-1.95-2.999 2.47z"/></g><path d="M167.32 253.761c-.116.097-10.602 8.876-11.07 9.27.945.783 1.86 1.602 2.807 2.383.24-.217 2.066-1.855 2.066-1.855l2.701.371 1.06 1.96-1.907 1.907c.259.257 1.906 1.906 1.906 1.906l-1.059 1.96-2.701.318s-1.826-1.584-2.066-1.8l-2.966 2.488v.848c.998.826 1.965 1.664 2.966 2.49.24-.217 2.066-1.801 2.066-1.801l2.701.317 1.06 1.96-1.907 1.907c.259.257 1.906 1.907 1.906 1.907l-1.059 2.012-2.701.318s-1.826-1.636-2.066-1.854l-2.966 2.49v.9l2.966 2.49c.24-.217 2.066-1.854 2.066-1.854l2.701.37 1.06 1.96-1.907 1.907 1.906 1.907-1.059 1.96-2.701.37s-1.826-1.636-2.066-1.854c-.944.778-1.865 1.554-2.807 2.331l11.07 9.27h2.436l3.55-3.444-2.278-2.012.423-2.755 2.384-1.006 2.436 1.907 2.384-1.907 2.383 1.006.477 2.755-2.33 2.012 3.442 3.284 3.443-3.284-2.33-2.012.423-2.755 2.437-1.006 2.383 1.907 2.436-1.907 2.384 1.006.424 2.755-2.278 2.012 3.39 3.337 3.443-3.337-2.278-2.012.424-2.755 2.436-1.006 2.384 1.907 2.383-1.907 2.437 1.006.424 2.755-2.278 2.012 3.549 3.443h2.383l11.07-9.269c-.943-.777-1.862-1.551-2.807-2.33-.24.217-2.013 1.853-2.013 1.853l-2.701-.37-1.112-1.96 1.906-1.907-1.906-1.907 1.112-1.96 2.701-.37s1.773 1.637 2.013 1.854l2.966-2.49v-.9l-2.966-2.49c-.24.218-2.013 1.854-2.013 1.854l-2.701-.318-1.112-2.012 1.906-1.907-1.906-1.907 1.112-1.96 2.701-.317s1.773 1.584 2.013 1.8c.994-.819 1.974-1.62 2.966-2.436v-.953l-2.966-2.437c-.24.217-2.013 1.8-2.013 1.8l-2.701-.317-1.112-1.96 1.906-1.906-1.906-1.907 1.112-1.96 2.701-.37s1.773 1.637 2.013 1.853c.95-.782 1.911-1.548 2.86-2.33l-11.123-9.322h-2.383l-3.549 3.442 2.277 2.013-.423 2.754-2.437 1.06-2.383-1.907-2.384 1.907-2.436-1.06-.424-2.754 2.278-2.013-3.39-3.284-3.443 3.284 2.278 2.013-.424 2.754-2.384 1.06-2.436-1.907-2.383 1.907-2.437-1.06-.424-2.754 2.33-2.013-3.442-3.284-3.443 3.284 2.33 2.013-.476 2.754-2.383 1.06-2.384-1.907-2.436 1.907-2.384-1.06-.423-2.754 2.277-2.013-3.602-3.442zm-11.229 23.57v2.171l1.271-1.112z" fill="#d22730"/><path d="M176.271 301.271l-1.854 1.747h3.654zm12.712 0l-1.8 1.747h3.654zm12.764 0l-1.853 1.747h3.707zm-27.383-47.51l1.907 1.8 1.854-1.8zm12.765 0l1.854 1.8 1.907-1.8zm12.766 0l1.853 1.8 1.854-1.8zm21.98 12.976l-1.271 1.06 1.271 1.006zm0 10.593l-1.271 1.06 1.271 1.059zm0 10.646l-1.271 1.06 1.271 1.059zm-65.784-21.291v2.171l1.271-1.06zm0 10.645v2.171l1.271-1.112zm0 10.594v2.171l1.271-1.06z" fill="#fff"/><g fill="#383739"><path d="M199.901 274.857v-3.791h-3.837v-4.157h-14.132v4.157h-3.837v3.791h-5.299v7.098h5.3v3.79h3.836v4.158h14.132v-4.157h3.837v-3.791h5.299v-7.098z"/><path d="M188.783 267.338v4.285l-6.074 3.453v3.116h-9.485v-2.906h5.299v-3.791h3.837v-4.157zm.429 22.137v-4.285l6.074-3.453v-3.116h9.485v2.906h-5.299v3.791h-3.837v4.157z" fill="#ffc72c"/><path d="M195.286 278.192v-3.116l-6.074-3.453v-4.285h6.423v4.157h3.837v3.79h5.299v2.907zm-22.061.429h9.484v3.116l6.075 3.453v4.285h-6.423v-4.157h-3.837v-3.791h-5.299z" fill="#fff"/><path d="M183.138 278.621v2.888l5.645 3.21v-6.098z" fill="#d22730"/><path d="M188.783 272.094l-5.645 3.21v2.888h5.645z" fill="#00843d"/><path d="M194.858 278.192v-2.888l-5.645-3.21v6.098z" fill="#d22730"/><path d="M189.212 284.719l5.645-3.21v-2.888h-5.645z" fill="#00843d"/></g><path d="M137.647 353.73v11.717h-11.165v10.627h-11.317v30.259h11.317v10.627h11.165v11.717h40.598l7.14 4.29-3.432 2.06h-14.476l-1.248-1.408h13.119l-3.696-3.721h-18.767l8.503 8.851h17.598l6.011-3.612 6.012 3.612h17.599l8.502-8.851h-18.766l-3.696 3.721h13.12l-1.25 1.409h-14.477l-3.43-2.061 7.14-4.29h40.597V416.96h11.166v-10.627h11.316v-30.259h-11.316v-10.627h-11.166V353.73h-40.597l-7.14-4.29 3.43-2.061h14.477l1.25 1.408h-13.12l3.696 3.722h18.766l-8.502-8.852h-17.6l-6.01 3.612-6.012-3.612h-17.598l-8.503 8.852h18.767l3.696-3.722h-13.12l1.25-1.408h14.475l3.431 2.062-7.14 4.289z" fill="#d22730"/><path d="M199.629 428.23h40.307v-11.706h11.123v-10.646h11.335v-29.396h-11.335v-10.593h-11.123v-11.706H199.63l-16.737-10.116h-17.32l-7.68 7.998h17.584l2.86-2.86h-13.082l2.013-2.278h14.83l18.962 11.44h34.64v11.706h11.176v10.646h11.335v20.975h-11.335v10.646H235.7v11.706h-34.64l-18.962 11.387h-14.83l-2.013-2.224h13.083l-2.86-2.86h-17.585l7.68 7.998h17.32zm-22.722-4.184h-34.64V412.34h-11.123v-10.646h-11.335v-20.975h11.335v-10.646h11.123v-11.705h34.64l19.014-11.441H210.7l2.013 2.278h-13.03l2.86 2.86h17.585l-7.68-7.998h-17.32l-16.737 10.116h-40.307v11.706h-11.176v10.593h-11.335v29.396h11.335v10.647h11.176v11.705h40.307l16.737 10.117h17.32l7.68-7.998h-17.585l-2.86 2.86h13.03l-2.013 2.224h-14.777z" fill="#ffc72c"/><path d="M188.983 351.59l-11.97 7.203H142.69V370.5h-11.123v10.646h-11.335v20.127h11.335v10.646h11.123v11.706h34.322l11.97 7.15 11.97-7.15h34.322v-11.706h11.176v-10.646h11.335v-20.127H246.45V370.5h-11.176v-11.706h-34.322zm0 2.966l11.282 6.78h32.521v11.705h11.176v10.593h11.282v15.096h-11.282v10.646h-11.176v11.705h-32.521l-11.282 6.78-11.229-6.78h-32.521v-11.705h-11.176V398.73h-11.334v-15.096h11.334v-10.593h11.176v-11.705h32.521z" fill="none"/><path d="M232.342 408.954v11.717h-32.2l-11.145 6.696-11.144-6.696h-32.2v-11.717h-11.166v-10.628h-11.316V384.08h11.316v-10.627h11.166v-11.717h32.2l11.144-6.696 11.145 6.696h32.2v11.717h11.165v10.627h11.316v14.246h-11.316v10.628z" fill="#00843d"/><g fill="#383739"><path d="M149.869 404.849v11.34h17.7l-17.7-11.74zm0-27.291v-11.34h17.7l-17.7 11.739zm78.258 27.291v11.34h-17.7l17.7-11.74zm0-27.291v-11.34h-17.7l17.7 11.739z"/><path d="M150.298 405.248l15.85 10.513h-15.85zm0-28.089c.616-.41 14.77-9.797 15.85-10.513h-15.85zm77.4 28.089l-15.85 10.513h15.85zm0-28.089l-15.85-10.513h15.85z" fill="#d22730"/></g><g id="h" fill="#383739"><path d="M172.445 388.094v-5.791h-1.975l-9.477-5.925-.113.071-9.362 5.854h-1.976v5.791h-4.455v6.22h4.455v5.79h1.976l9.475 5.925 9.477-5.925h1.975v-5.79h6.782v-6.22z"/><path d="M160.994 376.884l8.668 5.42h-17.335zm8.667 23.22l-8.667 5.42-8.666-5.42zm-2.099-11.581v5.363h-10.809v-5.363z" fill="#d22730"/><path d="M172.017 394.313v5.363h-10.809v-5.363zm-11.237 0v5.363h-10.809v-5.363zm18.019-5.79v5.363H167.99v-5.363zm-22.474 0v5.363h-10.809v-5.363zm15.692-5.791v5.362h-10.809v-5.362zm-11.237 0v5.362h-10.809v-5.362z" fill="#ffc72c"/><path d="M153.349 389.714v2.98h-4.855v-2.98zm4.455-5.791v2.98h-4.855v-2.98zm11.236 0v2.98h-4.855v-2.98zm-4.455 5.791v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-6.782 5.791v2.98h-4.855v-2.98zm-11.236 0v2.98h-4.855v-2.98z"/><path d="M152.891 390.171h-3.94v2.065h3.94zm4.455-5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-4.455 5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-6.782 5.791h-3.94v2.065h3.94zm-11.237 0h-3.94v2.065h3.94z" fill="#fff"/></g><use height="100%" width="100%" transform="matrix(-1 0 0 1 377.995 0)" xlink:href="#h" fill="#383739"/><g id="i" fill="#383739"><path d="M200.449 378.42v5.79h-1.975l-9.477 5.926-.113-.071-9.362-5.854h-1.976v-5.791h-5.618v-6.22h5.618v-5.79h1.976l9.475-5.926 9.477 5.926h1.975v5.79h5.618v6.22z"/><path d="M188.998 389.63l8.668-5.42H180.33zm8.667-23.22l-8.667-5.42-8.666 5.42z" fill="#ffc72c"/><path d="M200.021 372.2v-5.362h-10.809v5.362zm-11.237 0v-5.362h-10.809v5.362zm16.855 5.791v-5.363H194.83v5.363zm-11.237 0v-5.363h-10.809v5.363zm-11.237 0v-5.363h-10.808v5.363zm16.856 5.791v-5.363h-10.809v5.363zm-11.237 0v-5.363h-10.809v5.363z" fill="#d22730"/><path d="M185.807 368.029v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-16.856 5.791v2.98h-4.855v-2.98zm11.238 0v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-16.856 5.791v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98z"/><path d="M185.35 368.486h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-16.856 5.791h-3.94v2.065h3.94zm11.238 0h-3.94v2.065h3.94zm11.236 0h-3.94v2.065h3.94zm-16.855 5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94z" fill="#fff"/></g><use height="100%" width="100%" y="31.788" xlink:href="#i" fill="#383739"/><path d="M127.676 479.354l42.052-22.631h38.539l42.051 22.631v37.29l-42.051 22.63h-38.54l-42.051-22.63z" fill="#383739"/><path d="M169.863 457.151l-41.738 22.458v36.757l41.738 22.458h38.293l41.74-22.458V479.61l-41.74-22.458zm.74 3.019h36.812l39.514 21.239v33.21l-39.514 21.239h-36.834l-39.512-21.24v-33.21z" fill="#00843d"/><path d="M189.212 497.784v37.64h18.095l39.183-21.087v-16.124h-57.706v-37.64h-18.095l-39.184 21.086v16.125z" fill="#ffc72c"/><path d="M188.783 497.784v37.64h-18.095l-39.183-21.087v-16.124h57.706v-37.64h18.096l39.183 21.086v16.125z" fill="#fff"/><path d="M192.514 533.317v-10.88l-3.517 2.232-3.518-2.231v10.879h-10.942l7.383-5.414v-7.723l-11.26-7.144h-7.867v-30.073h7.868l11.26-7.144v-7.723l-7.384-5.414h10.942v10.88l3.518-2.232 3.517 2.232v-10.88h10.942l-7.383 5.414v7.723l11.26 7.144h7.867v30.073h-7.868l-11.26 7.144v7.723l7.384 5.414z" fill="#383739"/><path d="M192.956 463.135v11.229l-3.761-2.383v3.178l17.214 10.962h5.667v11.655h2.702v-14.407h-7.575l-11.545-7.31V467.9l6.513-4.766h-9.215zm-29.714 35.064v14.407h7.52l11.6 7.361v8.158l-6.514 4.766h9.216v-11.229l3.707 2.385v-3.285l-17.213-10.857h-5.615v-11.706h-2.701z" fill="#ffc72c"/><path d="M175.847 463.135l6.515 4.766v8.158l-11.6 7.31h-7.52v14.407h2.7V486.12h5.615l17.214-10.91v-3.23l-3.707 2.383v-11.229h-9.217zm36.229 35.064v11.705h-5.668l-17.214 10.858v3.285l3.761-2.385v11.229h9.216l-6.514-4.766v-8.158l11.546-7.36h7.574v-14.408h-2.701z" fill="#fff"/><path d="M166.352 509.458h5.338l17.307 10.98 17.307-10.98h5.338v-22.916h-5.338l-17.307-10.981-17.307 10.98h-5.338z" fill="#d22730"/><path d="M200.977 503.445h3.695v-1.748h-2.78v-3.179h5.942v8.106h-5.696v5.53h-11.724v-7.946h5.16v3.178h-1.999v1.59h5.402v-3.039l-21.961-13.383h-3.695v1.748h2.78v3.178h-5.942v-8.104h5.696v-5.53h11.724v7.945h-5.16v-3.178h1.999v-1.589h-5.402v3.038zm-2-13.383v-3.038h-5.402v1.589h1.999v3.178h-5.16v-7.945h11.725v5.53h5.695v8.104h-5.941v-3.178h2.78v-1.748h-3.696l-21.96 13.383v3.038h5.4v-1.59h-1.998v-3.177h5.16v7.945h-11.724v-5.53h-5.696v-8.105h5.942v3.179h-2.78v1.748h3.695z" fill="#383739"/><path d="M199.406 505.697v3.707h-6.26v-2.446h2v-2.321h-4.303v7.088h10.867v-5.53h5.696v-7.247h-5.085v2.32h2.78v2.606h-4.244l-22.27-13.571v-3.707h6.26v2.446h-1.999v2.321h4.303v-7.088h-10.867v5.53h-5.695v7.247h5.083v-2.321h-2.78v-2.605h4.244zm1.451-13.571h4.245v2.605h-2.78v2.321h5.084v-7.248h-5.695v-5.53h-10.868v7.089h4.303v-2.321h-1.999v-2.446h6.259v3.707l-22.27 13.57h-4.243v-2.605h2.78v-2.321h-5.084v7.248h5.695v5.53h10.867v-7.089h-4.303v2.322h1.999v2.445h-6.26v-3.707z" fill="#fff"/><path d="M238.042 499.884v11.762h-5.005v-4.154h-5.046v4.154h-5.005v-11.762h5.005v4.154h5.046v-4.154zm-17.91 15.615v11.762h-5.005v-4.154h-5.046v4.154h-5.005v-11.762h5.005v4.154h5.046V515.5zm17.91-19.386v-11.762h-5.005v4.154h-5.046v-4.154h-5.005v11.762h5.005v-4.154h5.046v4.154zm-98.089 3.771v11.762h5.005v-4.154h5.046v4.154h5.005v-11.762h-5.005v4.154h-5.046v-4.154zm0-3.771v-11.762h5.005v4.154h5.046v-4.154h5.005v11.762h-5.005v-4.154h-5.046v4.154zm80.179-15.614v-11.762h-5.005v4.154h-5.046v-4.154h-5.005V480.5h5.005v-4.154h5.046v4.154zm-62.268 35v11.762h5.005v-4.154h5.046v4.154h5.005v-11.762h-5.005v4.154h-5.046V515.5zm0-35v-11.762h5.005v4.154h5.046v-4.154h5.005V480.5h-5.005v-4.154h-5.046v4.154zm65.254-8.243v8.932h16.597zm-68.241 51.486v-8.932H138.28zm0-51.486v8.932H138.28zm68.241 51.486v-8.932h16.597z" fill="#383739"/><path d="M233.465 507.064v4.154h4.148v-10.905h-4.148v4.154h-5.903v-4.154h-4.148v10.905h4.148v-4.154zm-17.91 15.614v4.154h4.148v-10.905h-4.148v4.154h-5.903v-4.154h-4.148v10.905h4.148v-4.154zm17.91-33.744v-4.154h4.148v10.905h-4.148v-4.155h-5.903v4.155h-4.148V484.78h4.148v4.154zm-88.935 18.13v4.154h-4.148v-10.905h4.148v4.154h5.903v-4.154h4.148v10.905h-4.148v-4.154zm0-18.13v-4.154h-4.148v10.905h4.148v-4.155h5.903v4.155h4.148V484.78h-4.148v4.154zm71.025-15.614v-4.154h4.148v10.905h-4.148v-4.155h-5.903v4.155h-4.148v-10.905h4.148v4.154zm-53.115 49.358v4.154h-4.148v-10.905h4.148v4.154h5.903v-4.154h4.148v10.905h-4.148v-4.154zm0-49.358v-4.154h-4.148v10.905h4.148v-4.155h5.903v4.155h4.148v-10.905h-4.148v4.154z" fill="#d22730"/><path d="M223.57 472.986v7.786h14.461zm-83.58 42.268l14.46 7.786v-7.786h-14.46z" fill="#ffc72c"/><path d="M154.449 472.986l-14.46 7.786h14.46zm69.12 42.268v7.786l14.461-7.786z" fill="#fff"/><path d="M256.896 530.824c-.799 3.407-3.508 5.979-4.153 9.513-1.293-3.685-2.484-6.773-1.595-10.804.637-2.883 3.062-4.94 3.343-7.902 2.644 2.377 3.214 5.749 2.405 9.193zm.67 14.276c-2.242 3.075-5.36 5.434-8.803 7.007.678-2.694-.594-4.722-2.005-6.86-1.701-2.574-2.53-5.103-1.144-8.067.646 1.541 1.514 2.821 2.533 4.139 1.507 2.055 2.497 3.883 2.73 6.52 1.742-1.292 2.508-3.22 3.44-5.086 1.42-2.673 3.712-4.908 6.344-6.369-.7 2.998-1.238 6.169-3.094 8.716zm-12.578 9.166c.48 1.708.893 3.4.8 5.186 1.483-1.597 3.45-2.799 5.206-4.085 2.391-1.934 5.178-3.298 7.133-5.76-.292 3.624-1.843 6.578-4.787 8.783-3.113 2.33-6.867 3.583-9.933 6.03.459-3.297-.752-5.937-1.785-8.967-.86-2.895-.027-5.834 1.936-8.04-.03 2.445.742 4.545 1.43 6.853zm-6.986 11.133c-.645 2.5-2.436 4.534-3.66 6.764 3.3-1.023 6.21-2.812 9.192-4.495 3.552-1.934 7.409-3.165 10.624-5.719-1.6 5.924-5.566 9.359-11.368 11.11-3.967 1.198-7.31.6-12.124 2.546.552-3.259 1.524-6.776 3.065-9.714 1.196-2.125 2.522-4.221 3.26-6.562 1.07 1.923 1.577 3.879 1.011 6.07zm-12.138 9.065a15.21 15.21 0 01-4.495 4.875c4.683.299 8.452-2.669 13.017-2.798 2.82-.08 5.497.796 8.373.533-3.413 2.303-6.986 4.314-11.14 4.851-5.402.699-10.383-.66-16.342-.129 2.785-1.965 4.178-4.595 5.914-7.423 2.26-3.533 4.393-6.05 8.79-6.618-1.765 1.983-2.792 4.44-4.117 6.71zm-16.632 7.773c8.25 1.403 16.156 3.218 24.582 3.301-9.432 3.288-18.318 3.883-27.672.488-5.055-1.835-8.931-2.817-12.749-2.544-5.58.401-12.36 2.603-19.864 10.517l-2.95-2.36c10.756-9.583 24.828-11.753 38.653-9.403z" fill="#ffc72c"/></svg>
@@ -1,9 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="-60 -40 120 80">
2
- <g fill="#E70013">
3
- <rect x="-60" y="-40" width="120" height="80"/>
4
- <circle fill="#FFF" r="20"/>
5
- <circle r="15"/>
6
- <circle fill="#FFF" cx="4" r="12"/>
7
- <path transform="translate(4)scale(9)rotate(-90)" d="M0,-1 L0.58779,0.80902 L-0.95106,-0.30902 L0.95106,-0.30902 L-0.58779,0.80902z"/>
8
- </g>
9
- </svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 48"><g fill="#C10000"><path d="M0 0h96v48H0z"/><path fill="#fff" d="M0 0h40v24H0z"/><path d="M17 3h6v18h-6z"/><path d="M11 9h18v6H11z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path fill="#E30A17" d="M0 0h12v8H0z"/><circle cx="4.25" cy="4" r="2" fill="#fff"/><circle cx="4.75" cy="4" r="1.6" fill="#e30a17"/><path fill="#fff" d="M5.83334 4l1.80901 .58779-1.11804-1.53885v1.90212l1.11804-1.53885z"/></svg>
@@ -1,5 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 18">
2
- <rect fill="#CE1126" width="30" height="18"/>
3
- <polygon fill="#FFF" points="0,0 20.824734,18 30,18 9.175266,0"/>
4
- <polygon points="1.52921,0 22.353945,18 28.470789,18 7.646055,0"/>
5
- </svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><clipPath id="a"><path d="M0 0h650v350H0z"/></clipPath><clipPath id="b"><path d="M0 0v150h650v150h-50zm0 300v50h300V0h300z"/></clipPath><path fill="#012169" d="M0 0h1200v600H0z"/><path d="M0 0l600 300m0-300L0 300" stroke="#fff" stroke-width="60" clip-path="url(#a)"/><path d="M0 0l600 300m0-300L0 300" stroke="#c8102e" stroke-width="40" clip-path="url(#b)"/><path d="M0 150h650M300 0v350" stroke="#fff" stroke-width="100"/><path d="M0 150h650M300 0v350" stroke="#c8102e" stroke-width="60"/><path d="M0 300h600V0h600v600H0z" fill="#009cde"/><path d="M645.34 490.913l29.436 90.597-77.066-55.992h95.26l-77.067 55.993zM817.462 464l-29.436 90.597L758.589 464l77.066 55.992h-95.26zm0-121.984l-29.436 90.597-29.437-90.597 77.066 55.992-95.26.001zm126.005 91.152l-29.437 90.597-29.436-90.597 77.066 55.992-95.26.001zm0-265.413l-29.437 90.597-29.436-90.597 77.066 55.992H866.4zm52.975 172.21l29.436 90.597-77.066-55.992h95.26l-77.067 55.993zm52.923-208.404l-29.437 90.597-29.437-90.597 77.067 55.992-95.26.001zm53.471 139.913l29.437 90.597-77.067-55.992h95.26l-77.067 55.993zm0-234.069l29.437 90.597-77.067-55.992h95.26l-77.067 55.993z" fill="#fedd00"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><g fill-rule="evenodd"><path d="M0 0h900v600H0z" fill="#fe0000"/><path d="M0 0h450v300H0z" fill="#000095"/></g><path d="M225 37.5l-56.25 209.928L322.428 93.75 112.5 150l209.928 56.25L168.75 52.572 225 262.5l56.25-209.928L127.572 206.25 337.5 150 127.572 93.75 281.25 247.428 225 37.5" fill="#fff" paint-order="markers fill stroke"/><circle cy="150" cx="225" r="60" fill="#fff" stroke="#000095" stroke-width="7.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 48"><defs><clipPath id="a"><path d="M0 0h72v48H0z"/></clipPath></defs><path fill="#1eb53a" d="M0 48V0h72z"/><path fill="#00a3dd" d="M72 0v48H0z"/><g clip-path="url(#a)" fill="none"><path stroke="#fcd116" stroke-width="19" d="M0 48L72 0"/><path stroke="#000" stroke-width="13" d="M0 48L72 0"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><path fill="#0057B7" d="M0 0h3v2H0z"/><path fill="gold" d="M0 1h3v1H0z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><path d="M0 0h900v600H0z"/><path fill="#fcdc04" d="M0 100h900v100H0z"/><path fill="#d90000" d="M0 200h900v100H0z"/><path fill="#fcdc04" d="M0 400h900v100H0z"/><path fill="#d90000" d="M0 500h900v100H0z"/><circle cx="450" cy="300" r="93.5" fill="#fff"/><g stroke="#000"><path d="M433.52 228.39l-6.064-11.17c2.34-2.34 6.277-4.149 12.553-4.149 0 .426-.638 12.235-.638 12.235z" fill="#d90000"/><path d="M439.371 225.412l.851-12.34s12.554-.745 19.362 7.446c.107-.106-6.702 9.574-6.702 9.574z" fill="#fcdc04"/><path d="M453.095 229.986l6.17-9.574c4.15 4.362 5.85 7.447 6.49 12.128.106.106-9.788 2.446-9.788 2.34 0-.107-2.765-4.788-2.872-4.894z" fill="#d90000"/><path d="M436.605 388.073s11.596-13.298 34.15-10.425c-3.405-5.533-14.362-4.894-14.362-4.894s-3.404-25.851-.745-27.128c2.66-1.277 13.936.106 13.936.106 1.489 0 4.043-4.042 2.022-6.595-2.022-2.554-7.98-12.341-5.533-14.256 2.448-1.915 15.745 1.064 15.745 1.064l-37.553-48.086s-3.83-18.085 3.83-26.809c9.256-7.66 8.298-15.957 7.979-15.851-1.277-8.404-14.043-14.469-22.66-6.702-5.107 6.17-1.703 10.851-1.703 10.851s-13.404 3.617-13.936 5.957c-.532 2.341 15.107-.425 15.107-.425l-1.49 10.745s-30.426 27.66-7.127 51.596c.212-.106.744-1.064.744-1.064s8.192 10.107 16.809 12.34c8.085 8.299 7.34 7.022 7.34 7.022s1.596 13.086.107 15.639c-2.021-.639-22.66-1.383-25.745-.213-2.766.851-13.404.319-10.745 17.66 2.021-4.681 3.83-8.83 3.83-8.83s-.32 6.276 2.234 8.51c-.425-6.596 2.447-11.063 2.447-11.063s.532 7.234 2.127 8.297c1.596 1.064 1.596-11.702 10.427-10.638 8.829 1.064 15.212.745 15.212.745s2.979 25 2.021 27.34c-6.383-1.489-21.595.64-22.553 4.469 8.936-.532 13.086.531 13.086.531s-7.234 6.384-5 10.107z"/><path d="M440.191 251.66s-22.139 24.403-12.587 43.076c.508-2.604.286-4.24.606-4.134-.532-.32 2.745 2.247 2.496 1.747.07-1.35-.998-4.243-.998-4.243l2.995.749-1.748-3.245 4.244.499s-1.498-3.994-.998-3.994c.499 0 3.494.25 3.494.25-6.296-11.3-.356-20.683 2.496-30.705zm7.691-20.93s1.17 8.405-3.404 10.852c-.745.532-3.617 1.49-3.192 3.192.532 2.34 1.808 1.915 3.617 1.489 4.787-.851 10.32-11.064 2.979-15.532z" fill="#9ca69c" stroke="#9ca69c"/><circle cx="438" cy="238" r="1.8" fill="#fff" stroke="none"/><path d="M432.563 244.986c-1.17.958-7.34 7.341-1.277 9.681 6.277-1.702 4.574-2.872 5.958-4.255.035-2.872-3.121-3.617-4.681-5.426z" fill="#d90000"/><path d="M445.967 305.307c-.32 1.383-1.702 6.489.212 10.425 5.32-2.234 7.767-1.596 9.575-.426-4.36-3.51-6.063-5-9.787-10z" fill="#9ca69c" stroke="#9ca69c"/><path d="M455.116 329.455l.32 11.915s4.148.745 6.063 0-.107-8.298-6.383-11.915z" fill="#fff" stroke="#fff"/><path d="M485.223 330.945s-7.66-18.51-27.235-23.192c-19.575-4.681-17.022-25.532-15.426-26.809.852-1.809 1.49-4.574 7.128-1.914 5.639 2.66 31.596 15.744 35.32 16.382 3.723.639.532 35.959.213 35.533z" fill="#9ca69c"/><path d="M466.606 307.647c-.32.212 26.17 15.637 18.191 28.936 7.554-5 5.107-13.723 5.107-13.723s6.17 16.064-8.83 23.936c1.596 1.384 2.66 1.064 2.66 1.064l-2.554 2.553s-1.17 1.915 8.937-2.98c-2.767 2.235-2.979 3.83-2.979 3.83s.744 2.129 7.34-3.616c-5.32 5.745-6.49 8.723-6.49 8.617 14.362-1.277 45.64-47.979-9.893-61.81 2.98 3.086 2.553 2.66 2.553 2.66z" fill="#d90000"/><path d="M467.776 303.072c3.617 2.553 4.893 3.404 5.319 4.681-3.298-.744-6.277-.532-6.277-.532s-7.127-6.808-8.404-7.34c-.958 0-6.49-3.511-6.49-3.511-2.765-1.383-5.318-10.957 4.895-8.192 10.53 5 12.02 5.426 12.02 5.426 4.185 1.312 8.369 2.625 12.554 3.936l7.234 8.086s-12.872-6.384-14.468-6.49c3.51 2.872 5.532 6.808 5.532 6.808-4.078-1.17-7.624-2.234-11.915-2.872z" fill="#fff"/><path d="M417.669 245.944s12.34-2.979 13.83-2.553" stroke="#fff"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 7410 3900"><path fill="#b22234" d="M0 0h7410v3900H0z"/><path d="M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0" stroke="#fff" stroke-width="300"/><path fill="#3c3b6e" d="M0 0h2964v2100H0z"/><g fill="#fff"><g id="d"><g id="c"><g id="e"><g id="b"><path id="a" d="M247 90l70.534 217.082-184.66-134.164h228.253L176.466 307.082z"/><use xlink:href="#a" y="420"/><use xlink:href="#a" y="840"/><use xlink:href="#a" y="1260"/></g><use xlink:href="#a" y="1680"/></g><use xlink:href="#b" x="247" y="210"/></g><use xlink:href="#c" x="494"/></g><use xlink:href="#d" x="988"/><use xlink:href="#c" x="1976"/><use xlink:href="#e" x="2470"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 7410 3900"><path fill="#b22234" d="M0 0h7410v3900H0z"/><path d="M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0" stroke="#fff" stroke-width="300"/><path fill="#3c3b6e" d="M0 0h2964v2100H0z"/><g fill="#fff"><g id="d"><g id="c"><g id="e"><g id="b"><path id="a" d="M247 90l70.534 217.082-184.66-134.164h228.253L176.466 307.082z"/><use xlink:href="#a" y="420"/><use xlink:href="#a" y="840"/><use xlink:href="#a" y="1260"/></g><use xlink:href="#a" y="1680"/></g><use xlink:href="#b" x="247" y="210"/></g><use xlink:href="#c" x="494"/></g><use xlink:href="#d" x="988"/><use xlink:href="#c" x="1976"/><use xlink:href="#e" x="2470"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="-5 -5 945 630" xmlns="http://www.w3.org/2000/svg"><path d="M-5-5h945v630H-5z" fill="#fff"/><path d="M345 65h595v70H345zm0 140h595v70H345zM-5 345h945v70H-5zm0 140h945v70H-5z" fill="#0038a8"/><g transform="translate(234.285 -392.52) scale(3.77953)"><g stroke="#7b3f00" stroke-miterlimit="20"><g fill="#fcd116"><path d="M-19.106 157.888l3.066 4.578c-12.597 9.115-4.906 14.506-13.833 17.424 5.552-5.418-.734-6.254 3.944-17.547" stroke-linecap="square" stroke-width=".611"/><g stroke-width=".6"><path d="M-24.894 153.753l-1.07 5.405c-15.352-2.461-13.726 6.788-22.101 2.54 7.757.094 4.078-5.01 15.371-9.688" stroke-linecap="square" stroke-width=".611"/><path d="M-24.894 153.754l-2.419-.436.025.1c-6.453 1.582-9.957 4.257-12.701 6.29-1.373 1.017-2.558 1.881-3.842 2.35a5.763 5.763 0 0 1-2.666.32c6.662 2.367 6.221-5.512 20.534-3.218z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-27.361 153.121c-13.014 3.186-14.245 10.862-20.704 8.576" fill="none" stroke-width=".611"/></g><path d="M-17.009 148.833l-4.322-4.321-19.448 28.09 28.092-19.447-4.322-4.322-23.77 23.77" stroke-width=".611"/><g stroke-width=".6"><path d="M-26.064 146.737l-4.577 3.065c-9.116-12.596-14.507-4.906-17.424-13.833 5.418 5.552 6.305-.723 17.599 3.955" stroke-linecap="square" stroke-width=".611"/><path d="M-26.064 146.738l-1.402-2.019-.053.088c-5.682-3.445-10.051-4.03-13.43-4.534-1.689-.252-3.137-.478-4.377-1.055a5.763 5.763 0 0 1-2.112-1.658c3.038 6.384 8.297.5 16.796 12.244z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-27.361 144.545c-11.455-6.95-17.753-2.392-20.704-8.576" fill="none" stroke-width=".611"/><path d="M-17.009 148.833v-6.112l-33.615 6.112 33.615 6.112v-6.112h-33.615" stroke-width=".611"/><path d="M-17.009 148.833v6.112-6.112h-33.615l33.615 6.112" fill="#7b3f00" stroke="none"/><path d="M-21.929 140.948l-5.404-1.069c2.46-15.353-6.789-13.727-2.54-22.102-.095 7.757 5.272 4.699 9.95 15.992" stroke-linecap="square" stroke-width=".611"/><path d="M-21.93 140.949l.436-2.42-.1.026c-1.581-6.454-4.257-9.958-6.29-12.702-1.016-1.373-1.88-2.557-2.349-3.842a5.763 5.763 0 0 1-.32-2.665c-2.367 6.661 5.512 6.22 3.218 20.534z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-21.297 138.481c-3.185-13.014-10.862-14.244-8.576-20.704" fill="none" stroke-width=".611"/><path d="M-17.009 148.833l4.322-4.321-28.092-19.448 19.448 28.091 4.322-4.322-23.77-23.77" stroke-width=".611"/><path d="M-17.009 148.833l-4.322 4.322 4.322-4.322-23.77-23.77 19.448 28.092" fill="#7b3f00" stroke="none"/><path d="M-14.912 139.779l-3.066-4.578c12.597-9.116 4.906-14.506 13.833-17.424-5.552 5.418.702 6.312-3.976 17.605" stroke-linecap="square" stroke-width=".611"/><path d="M-14.913 139.778l2.018-1.402-.088-.053c3.445-5.681 4.031-10.05 4.534-13.429.252-1.69.478-3.138 1.056-4.378a5.763 5.763 0 0 1 1.657-2.111c-6.384 3.037-.5 8.296-12.244 16.795z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-12.72 138.481c6.949-11.455 2.391-17.753 8.575-20.704" fill="none" stroke-width=".611"/><path d="M-17.009 148.833h6.112l-6.112-33.615-6.112 33.615h6.112v-33.615" stroke-width=".611"/><path d="M-17.009 148.833h-6.112 6.112v-33.615l-6.112 33.615" fill="#7b3f00" stroke="none"/><path d="M-9.124 143.913l1.07-5.404c15.352 2.461 13.726-6.789 22.102-2.54-7.758-.094-4.302 5.036-15.595 9.714" stroke-linecap="square" stroke-width=".611"/><path d="M-9.124 143.912l2.419.436-.025-.1c6.453-1.581 9.957-4.256 12.701-6.29 1.373-1.016 2.558-1.88 3.842-2.349a5.763 5.763 0 0 1 2.666-.32c-6.662-2.367-6.22 5.512-20.534 3.218z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-6.657 144.545c13.014-3.185 14.245-10.862 20.705-8.576" fill="none" stroke-width=".611"/><path d="M-17.009 148.833l4.322 4.322L6.76 125.064l-28.092 19.448 4.322 4.321 23.77-23.77" stroke-width=".611"/><path d="M-17.009 148.833l-4.322-4.321 4.322 4.321 23.77-23.77-28.092 19.449" fill="#7b3f00" stroke="none"/><path d="M-7.954 150.93l4.577-3.065c9.116 12.596 14.507 4.906 17.425 13.832-5.419-5.552-6.436.661-17.73-4.017" stroke-linecap="square" stroke-width=".611"/><path d="M-7.954 150.93l1.402 2.018.053-.089c5.682 3.445 10.051 4.031 13.43 4.534 1.689.252 3.138.479 4.377 1.056a5.763 5.763 0 0 1 2.112 1.658c-3.037-6.384-8.297-.501-16.796-12.244z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-6.657 153.121c11.455 6.95 17.753 2.392 20.705 8.576" fill="none" stroke-width=".611"/><path d="M-17.009 148.833v6.112l33.615-6.112-33.615-6.112v6.112h33.615" stroke-width=".611"/><path d="M-17.009 148.833v-6.112 6.112h33.615l-33.615-6.112" fill="#7b3f00" stroke="none"/><path d="M-12.089 156.719l5.405 1.069c-2.462 15.353 6.788 13.726 2.54 22.102.094-7.757-5.014-4.165-9.691-15.458" stroke-linecap="square" stroke-width=".611"/><path d="M-12.088 156.718l-.436 2.419.1-.025c1.582 6.453 4.257 9.957 6.29 12.702 1.016 1.373 1.88 2.557 2.349 3.842a5.763 5.763 0 0 1 .321 2.665c2.367-6.662-5.513-6.22-3.219-20.534z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><path d="M-12.72 159.186C-9.536 172.2-1.86 173.43-4.146 179.89" fill="none" stroke-width=".611"/><path d="M-17.009 148.833l-4.322 4.322 28.092 19.448-19.448-28.091-4.322 4.321 23.77 23.77" stroke-width=".611"/><path d="M-17.009 148.833l4.322-4.321-4.322 4.321 23.77 23.77-19.448-28.091" fill="#7b3f00" stroke="none"/></g></g><path d="M-19.105 157.888l-2.018 1.403.088.053c-3.445 5.681-4.03 10.05-4.534 13.429-.252 1.69-.478 3.138-1.056 4.377a5.763 5.763 0 0 1-1.657 2.112c6.384-3.037.5-8.297 12.244-16.796z" fill="#7b3f00" stroke-linecap="square" stroke-width=".278"/><g stroke-width=".611"><path d="M-21.297 159.186c-6.95 11.454-2.392 17.752-8.576 20.704" fill="none"/><path d="M-17.009 148.833h-6.112l6.112 33.616 6.112-33.616h-6.112v33.616" fill="#fcd116"/></g></g><path d="M-17.009 148.833h6.112-6.112v33.616l6.112-33.616" fill="#7b3f00"/><path d="M-17.009 148.833l4.322 4.322-4.322-4.322-23.77 23.77 28.092-19.448" fill="#7b3f00"/><circle cx="-17.009" cy="148.833" fill="#fcd116" r="11.205" stroke="#7b3f00" stroke-miterlimit="20" stroke-width=".611"/><g fill="#7b3f00"><path d="M-8.758 144.351c-.713.815-1.12-.61-3.667-.61-2.547 0-2.954 1.527-3.362 1.221-.407-.305 2.14-2.139 2.955-2.24.814-.102 3.157.713 4.074 1.63m-2.954.916c.713.611.102 1.936-.611 1.936s-2.037-1.223-1.426-2.038"/><path d="M-15.074 146.185c.102-1.223 1.121-1.426 2.75-1.426 1.63 0 2.344 1.222 2.955 1.528-.713 0-1.324-1.019-2.954-1.019-1.63 0-1.63 0-2.75 1.019m.305.203c.408-.61.917.612 2.037.612 1.12 0 1.732-.306 2.445-.815.713-.51-1.019 1.222-2.139 1.222s-2.649-.611-2.343-1.019m-7.945-1.324c-.51.204-1.325 1.223 0 1.936-1.02-.713-.204-1.732 0-1.936z"/><path d="M-11.304 145.166c.203.204 1.018 1.223 0 1.936 1.324-.713.509-1.732 0-1.936zm-7.335 4.38c-.917.204-.611 1.528-1.426 1.63-.815.102-1.222 1.019-1.12.917.509-.407 1.63-.713 2.444-.713.815 0 1.019.51 1.732.51s.917-.51 1.732-.51 1.935.306 2.445.713c.101.102-.306-.815-1.12-.917-.816-.102-.51-1.426-1.427-1.63 0 .408.305.306.407.917 0 .51-.916.51-1.12 0 .204.815-.408.815-.917.815s-1.12 0-.917-.815c-.203.51-1.12.51-1.12 0 .102-.611.407-.51.407-.917zm-3.158 3.464c-.815.611-1.018.917-1.12 1.63.244-.428.364-.604.55-.855l-.142-.062c.059.007.112.016.17.024.122-.166.232-.31.542-.737z"/><path d="M-22.34 153.747l-.013.018c.128.03.263.043.404.044a10.998 10.998 0 0 0-.39-.062zm.391.062c.636.112 1.134.258 1.591.406.57-.042 1.357-.187 3.35-.187s2.778.145 3.348.187c.457-.148.956-.294 1.59-.406-1.122.004-2.618-.8-3.31-.8-.814 0-1.018.204-1.629.204s-.815-.203-1.63-.203c-.691 0-2.187.803-3.31.799zm9.879 0c.142 0 .278-.015.405-.044l-.013-.018c-.136.02-.267.04-.391.062z"/><path d="M-11.678 153.747c.057-.008.11-.017.17-.024-.051.021-.093.04-.143.062.186.251.306.427.55.855-.102-.713-.305-1.019-1.12-1.63.31.427.42.57.543.737z"/><path d="M-11.65 153.785a.037.037 0 0 0-.006-.007c-1.063.41-1.437.48-2.004.437-.966.313-1.762.629-3.349.629s-2.383-.316-3.349-.629c-.567.042-.941-.027-2.004-.437a.037.037 0 0 1-.005.007c3.2 1.377 2.85 1.873 5.358 1.873s2.158-.496 5.358-1.873zm-10.712-.007a.72.72 0 0 1 .01-.013 1.29 1.29 0 0 1-.157-.042c.058.023.093.034.147.055zm10.706 0c.054-.021.09-.032.148-.055-.05.018-.104.03-.157.042a.72.72 0 0 0 .01.013zm-13.604-9.427c.713.815 1.12-.61 3.667-.61s2.954 1.527 3.362 1.221-2.14-2.139-2.954-2.24-3.158.713-4.075 1.63m2.954.916c-.713.611-.102 1.936.611 1.936s2.038-1.223 1.426-2.038"/><path d="M-18.944 146.185c-.102-1.223-1.12-1.426-2.75-1.426s-2.344 1.222-2.955 1.528c.713 0 1.324-1.019 2.954-1.019s1.63 0 2.75 1.019m-.305.203c-.407-.61-.917.612-2.037.612s-1.732-.306-2.445-.815 1.019 1.222 2.14 1.222 2.648-.611 2.342-1.019m2.241 10.085c-.51 0-1.833.306 0 .306s.51-.306 0-.306"/></g></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 250"><path fill="#1eb53a" d="M0 0h500v250H0z"/><path fill="#0099b5" d="M0 0h500v125H0z"/><path fill="#ce1126" d="M0 80h500v90H0z"/><path fill="#fff" d="M0 85h500v80H0z"/><circle cx="70" cy="40" r="30" fill="#fff"/><circle cx="80" cy="40" r="30" fill="#0099b5"/><g fill="#fff" transform="translate(136 64)"><g id="e"><g id="d"><g id="c"><g id="b"><path id="a" d="M0-6v6h3" transform="rotate(18 0 -6)"/><use xlink:href="#a" transform="scale(-1 1)"/></g><use xlink:href="#b" transform="rotate(72)"/></g><use xlink:href="#b" transform="rotate(-72)"/><use xlink:href="#c" transform="rotate(144)"/></g><use xlink:href="#d" y="-24"/><use xlink:href="#d" y="-48"/></g><use xlink:href="#e" x="24"/><use xlink:href="#e" x="48"/><use xlink:href="#d" x="-48"/><use xlink:href="#d" x="-24"/><use xlink:href="#d" x="-24" y="-24"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2500 2500"><path fill="#fff" d="M0 0h2500v2500H0z"/><path fill="#ffe000" d="M0 0h1250v2500H0z"/><g stroke="#000" stroke-width="3.205" stroke-linejoin="round"><g fill="#ce9d09" stroke-linecap="round"><g id="a"><path fill="#fff" d="M1781.07 990.292l16.106 3.841 25.663 4.17 11.76 1.292-2.076 49.916s-2.808 33.178-7.688 48.961c-3.618 11.701-15.781 33.18-15.781 33.18l-7.688 11.736-45.32-39.25s7.725-10.948 10.52-16.996c3.508-7.589 7.689-23.874 7.689-23.874l4.45-25.897 2.428-32.776zm-56.991 151.477l41.273 36.013s-8.345 7.428-13.353 9.711c-9.824 4.48-20.767 7.517-31.562 7.284-7.728-.167-15.32-2.973-22.35-6.186-15.722-7.184-33.032-14.73-43.168-28.732-3.587-4.954-5.003-11.57-4.89-17.685.128-6.933 6.281-19.832 6.281-19.832s2.391 8.636 5.133 12.023c4.513 5.572 11.118 9.302 17.597 12.375 4.848 2.299 10.144 4.022 15.5 4.336 6.951.407 14.163-.674 20.637-3.237 3.339-1.323 8.902-6.07 8.902-6.07z"/><path fill="#fff" d="M1658.65 877.67s3.294 6.6 4.297 10.128c1.715 6.033 2.908 12.326 2.861 18.598-.047 6.287-1.468 12.539-3.147 18.598-2.516 9.08-6.32 17.783-10.3 26.323-2.525 5.416-6.055 10.324-8.584 15.737-4.08 8.729-6.994 17.956-10.587 26.896-2.999 7.46-6.864 14.61-9.156 22.318-3.044 10.238-4.562 20.891-6.009 31.474-1.244 9.103-2.228 18.28-2.289 27.468-.07 10.899.257 21.91 2.29 32.618 2.013 10.61 4.976 21.204 9.728 30.901 3.83 7.817 8.931 15.104 14.878 21.46 4.916 5.253 10.706 9.756 16.882 13.448 5.61 3.354 11.95 5.31 18.025 7.725 8.392 3.336 25.433 9.335 25.433 9.335s-23.527-11.592-31.727-21.352c-6.784-8.074-10.521-18.62-12.876-28.899-2.727-11.905-2.383-24.473-1.144-36.624 1.332-13.072 5.179-25.817 9.156-38.34 4.196-13.218 10.095-25.836 15.45-38.627 3.86-9.22 8.276-18.201 12.018-27.468 4.417-10.942 8.764-21.935 12.303-33.19 2.158-6.866 4.85-13.722 5.43-20.895.631-7.792-.383-15.742-2.17-23.353-2.503-10.663-5.598-21.65-11.836-30.652-3.754-5.419-8.898-10.153-14.77-13.151-5.732-2.927-12.543-5.401-18.857-4.154-2.11.417-5.299 3.678-5.299 3.678z"/><path fill="#fff" d="M1711.59 945.594s4.454-17.99 5.208-27.187c.646-7.867.225-15.822-.607-23.672-.924-8.734-1.468-17.793-4.855-25.897-3.514-8.406-9.025-16.13-15.579-22.457-6.46-6.237-14.294-11.306-22.66-14.568-8.801-3.431-18.491-4.278-27.92-4.855-8.088-.495-16.24.191-24.279 1.214-4.644.59-9.323 1.33-13.757 2.832-4.115 1.393-11.735 5.665-11.735 5.665l29.943 48.962s9.373-5.518 14.567-6.88c5.494-1.439 11.326-1.545 16.995-1.213 5.757.337 11.726.894 16.995 3.237 6.707 2.983 12.49 7.984 17.547 13.304 6.102 6.42 11.549 13.787 14.96 21.961 3.166 7.59 3.581 16.072 4.72 24.217.248 1.769.457 5.337.457 5.337z"/><path d="M1717.05 906.676s-5.334-16.56-10.37-23.474c-5.85-8.031-13.365-15.391-22.255-19.828-9.428-4.704-30.994-6.216-30.994-6.216l11.414 21.128-19.966-.487-10.427-17.435-19.232 8.706-9.568-15.645 20.431-9.473-9.414-15.185 20.423-1.943 8.892 14.7s15.874.048 23.588 1.668c5.238 1.1 10.385 2.91 15.12 5.405 4.532 2.388 8.698 5.521 12.447 9.012 4.508 4.2 8.732 8.865 11.874 14.164 3.054 5.15 6.542 16.727 6.542 16.727z"/><path d="M1581.65 845.092l31.9 46.592m-17.97-54.736l-15.032 8.789-14.307 10.872 30.902 47.21 13.734-10.586 14.12-8.183zm58.21 198.922l17.883-36.91 19.139 7.613 7.755-19.059-19.026-8.869 9.872-21.316-14.02-6.295-10.587 20.458-19.194-8.024-8.428 19.963 18.609 7.803-17.168 36.625zm143.13-11.04l18.209-.405v21.042l17.533.831-2.982 21.358-16.358-1.03s-2.698 12.575-5.121 18.496c-2.513 6.14-9.662 17.4-9.662 17.4l-19.423-4.856s7.026-11.049 9.711-16.995c2.405-5.326 5.665-16.59 5.665-16.59l-19.939-2.517 3.47-20.192 18.088 1.262z"/></g><use xlink:href="#a" transform="matrix(-1 0 0 1 3717.75 0)"/><path fill="#fff" d="M1756.66 735.602l-27.42 29.446 16.881 50.93 9.666 35.795-27.723 25.826 50.729 71.05-17.366 19.818c-1.817 2.329-2.455 5.662-2.144 8.6.286 2.693 1.582 5.464 3.577 7.296 4.56 4.187 11.328 5.133 17.31 6.724 21.066 5.602 42.928 8.102 64.665 9.728 4.668.35 14.042 0 14.042 0s9.358.35 14.043 0c21.737-1.626 43.6-4.126 64.664-9.728 5.983-1.59 12.751-2.537 17.31-6.724 1.996-1.832 3.292-4.603 3.578-7.296.311-2.938-.327-6.271-2.145-8.6l-16.301-35.876 51.819-55.52-19.776-17.835-.436-43.258 16.882-50.93-25.412-25.724-22.943-61.258s-4.801-17.08-8.87-24.893c-2.433-4.67-5.832-8.791-9.156-12.876-3.983-4.894-8.002-9.87-12.876-13.877-4.416-3.63-9.536-6.346-14.592-9.013-5.433-2.866-10.892-5.956-16.845-7.472-6.14-1.563-18.944-1.54-18.944-1.54s-12.787-.027-18.943 1.54c-5.953 1.515-11.412 4.606-16.845 7.472-5.056 2.667-10.176 5.382-14.592 9.013-4.875 4.007-8.893 8.983-12.876 13.877-3.324 4.085-6.723 8.205-9.156 12.876-4.07 7.812-8.87 24.893-8.87 24.893z"/><path d="M1963.27 933.128s-3.177-2.845-4.96-4a64.476 64.476 0 00-11.937-6.07c-5.607-2.147-11.553-3.288-17.4-4.653-6.697-1.563-13.414-3.14-20.232-4.046-7.973-1.06-16.033-1.538-24.076-1.619-8.607-.086-25.793 1.214-25.793 1.214s-17.17-1.3-25.794-1.214c-8.043.082-16.102.558-24.076 1.619-6.817.907-13.534 2.483-20.232 4.046-5.846 1.365-11.793 2.506-17.4 4.654a64.476 64.476 0 00-11.936 6.07c-1.783 1.154-4.96 3.999-4.96 3.999m218.71-42.693s-5.183-5.268-8.602-5.918c-2.21-.42-4.741.214-6.575 1.517-2.372 1.685-3.956 4.56-4.654 7.385-.624 2.528-.353 5.368.607 7.79.813 2.05 2.1 4.337 4.148 5.158 4.8 1.926 15.384-2.024 15.384-2.024zm5.156-3.592c5.801.17 7.914 3.108 9.454 6.475m-243.23-2.882l-.307 13.907s10.583 3.95 15.383 2.024c2.048-.821 3.335-3.108 4.148-5.159.96-2.42 1.232-5.261.607-7.79-.698-2.824-2.282-5.699-4.654-7.384-1.833-1.303-4.368-1.95-6.575-1.517-3.445.676-8.602 5.919-8.602 5.919zm-5.156-3.593c-5.801.17-7.914 3.108-9.454 6.475m198.167 1.346l-8.447-.946m-130.044.946l8.447-.946m75.992.814c-2.865-.422-7.6-4.21-7.6-4.21m-22.786 4.21c2.865-.422 7.6-4.21 7.6-4.21m140.936-19.346s-4.215 3.347-7.285 3.858l-1.211.644s-1.947 5.728-3.662 8.174c-1.719 2.451-6.465 6.25-6.465 6.25s-4.787-4.144-7.744-4.951c-1.94-.53-4.163-.544-6.025.215-1.976.804-3.548 2.535-4.737 4.306-1.403 2.093-2.706 4.583-2.588 7.1.141 3.014 3.877 8.184 3.877 8.184l-2.578 4.511-3.662 2.373c-6.314-1.913-12.63-3.935-18.945-7.539-1.732-1.888-3.358-4.302-4.522-9.033 0 0 4.544-2.693 5.596-4.951 1.182-2.538 1.668-6.006.215-8.399-1.616-2.66-5.276-4.042-8.389-4.091-2.28-.037-4.689 1.14-6.25 2.802-1.679 1.788-2.975 4.465-2.578 6.885.404 2.466 4.736 5.81 4.736 5.81s-1.8 4.559-3.838 5.43c-6.011 2.572-9.978 4.04-15.244 4.854-5.21.804-11.072 1.465-16.298-.02-3.376-.958-6.845-2.73-8.965-5.527-.631-.833-.86-3.008-.86-3.008s6.467-1.679 9.043-3.662c2.56-1.97 5.283-4.568 5.81-7.754.532-3.2-1.17-6.59-3.017-9.258-1.83-2.644-4.582-4.738-7.53-6.025-1.329-.58-4.306-.645-4.306-.645s-.63.571-.937.86c-1.244 1.598-2.954 2.862-4.766 3.808-.032.019-.076.051-.107.069-.044.024-.129.044-.176.068-.38.19-.75.41-1.133.567-.2.081-.51.093-.742.156-1.27.429-2.47.781-2.47.781s3.863 1.196 4.95 2.735c.672.95.963 2.109 1.084 3.31.149.713.235 1.434.206 2.129-.047 1.11-.323 2.233-.704 3.33-.348 1.278-.839 2.507-1.67 3.496-.45.537-1.003.985-1.591 1.387-.028.023-.05.056-.078.078-.03.023-.086.036-.118.059a12.406 12.406 0 01-3.378 1.494c-1.372.382-4.186.08-4.288.068.104 0 5.51-.01 7.666-1.562.067-.043.13-.092.196-.137 1.51-1.205 2.6-2.976 3.261-4.883.21-.766.415-1.543.489-2.314a16.43 16.43 0 00.01-3.145c-.33-1.584-1.061-3.123-2.217-4.15-2.417-2.148-9.324-2.409-9.414-2.412-.107.004-6.99.267-9.404 2.412-1.156 1.027-1.887 2.566-2.217 4.15a16.272 16.272 0 00.01 3.145c.073.77.279 1.548.488 2.314.662 1.907 1.752 3.678 3.262 4.883.065.045.128.094.195.137 2.156 1.553 7.562 1.562 7.666 1.562-.101.011-2.916.314-4.287-.068a12.406 12.406 0 01-3.379-1.494c-.031-.023-.087-.036-.117-.059-.03-.022-.05-.055-.078-.078-.588-.402-1.14-.85-1.592-1.387-.83-.989-1.321-2.218-1.67-3.496-.38-1.097-.656-2.22-.703-3.33-.029-.695.057-1.416.205-2.129.121-1.201.422-2.36 1.094-3.31 1.088-1.539 4.941-2.735 4.941-2.735s-1.2-.352-2.47-.781c-.23-.063-.535-.076-.733-.156-.389-.159-.768-.384-1.152-.576-.042-.022-.117-.037-.156-.06-.026-.014-.062-.043-.088-.058-1.822-.947-3.546-2.213-4.795-3.818-.309-.289-.938-.86-.938-.86s-2.967.064-4.297.645c-2.947 1.287-5.709 3.38-7.539 6.026-1.847 2.668-3.548 6.056-3.017 9.257.528 3.186 3.261 5.785 5.82 7.754 2.576 1.983 9.033 3.662 9.033 3.662s-.228 2.176-.86 3.008c-2.12 2.797-5.588 4.569-8.964 5.527-5.227 1.485-11.089.824-16.299.02-5.266-.813-9.233-2.281-15.244-4.854-2.038-.871-3.838-5.43-3.838-5.43s4.332-3.344 4.736-5.81c.397-2.42-.899-5.097-2.578-6.885-1.561-1.662-3.96-2.839-6.24-2.802-3.113.05-6.782 1.431-8.398 4.092-1.454 2.392-.968 5.86.214 8.398 1.053 2.258 5.596 4.951 5.596 4.951-1.163 4.731-2.79 7.146-4.521 9.033-6.315 3.604-12.631 5.626-18.946 7.54l-3.652-2.374-2.588-4.511s3.736-5.17 3.877-8.184c.118-2.517-1.184-5.007-2.588-7.1-1.188-1.771-2.76-3.502-4.736-4.306-1.862-.759-4.086-.744-6.026-.215-2.957.807-7.744 4.951-7.744 4.951s-4.746-3.798-6.465-6.25c-1.714-2.446-3.652-8.174-3.652-8.174l-1.21-.644c-3.071-.505-7.296-3.858-7.296-3.858l-4.443.938s-4.102 2.195-4.15 4.15c-.068 2.7 3.725 3.919 5.439 6.006a75.74 75.74 0 014.14 5.586c1.226 1.808 2.843 3.475 3.438 5.576.65 2.294-.974 4.972 0 7.149 1.228 2.743 3.773 5.415 6.719 6.015 2.615.533 7.588-2.578 7.588-2.578l-.147 19.883 10.303 9.307 9.727 20.312-3.858 5.147 1.143 10c7.48-9.585 20.501-13.792 32.187-17.149 15.732-4.52 44.57-4.841 58.008-4.717 4.48.042 7.256.137 7.256.137s44.295-1.442 65.254 4.58c11.685 3.358 24.706 7.564 32.187 17.149l1.143-10-3.858-5.147 9.727-20.312 10.303-9.307-.147-19.883s4.973 3.111 7.588 2.578c2.946-.6 5.491-3.272 6.719-6.015.974-2.177-.65-4.855 0-7.149.595-2.101 2.212-3.768 3.437-5.576a75.867 75.867 0 014.15-5.586c1.715-2.087 5.497-3.306 5.43-6.006-.049-1.955-4.15-4.15-4.15-4.15l-4.443-.938zm-148.33-2.607c1.049.982 3.103 2.847 4.795 3.818.08.042.163.077.244.117.505.265 1.202.502 1.885.733 2.913.792 7.935.267 8.047.254h.03c.111.012 5.133.536 8.047-.254.676-.229 1.37-.461 1.875-.723.094-.047.19-.088.283-.137 1.692-.976 3.72-2.83 4.766-3.808.522-.671.965-1.392 1.298-2.158 1.156-2.661 1.102-6.112-.205-8.702-1.537-3.046-5.175-4.496-8.086-6.279-2.506-1.535-7.912-3.725-7.998-3.76-.1.04-5.475 2.227-7.978 3.76-2.91 1.783-6.558 3.233-8.096 6.28-1.307 2.59-1.36 6.04-.205 8.7a10.03 10.03 0 001.299 2.159z"/><path d="M1980.77 829.789s-10.886-5.061-16.59-6.879c-10.413-3.319-21.236-5.216-31.967-7.283-12.467-2.403-25.26-3.052-37.622-5.944-3.892-.91-7.53-2.769-11.445-3.576-5.4-1.114-11.061-2.874-16.452-1.717-2.968.637-7.82 4.578-7.82 4.578s-4.867-3.94-7.82-4.578c-5.389-1.165-11.051.603-16.451 1.717-3.915.807-7.554 2.666-11.445 3.576-12.363 2.892-25.156 3.541-37.622 5.944-10.732 2.067-21.555 3.964-31.967 7.283-5.704 1.818-16.59 6.879-16.59 6.879m197.456-45.121s5.35-2.824 7.286-5.059c1.283-1.482 2.506-3.297 2.636-5.254.151-2.277-.62-4.853-2.226-6.474-1.561-1.577-4.061-2.219-6.28-2.227-1.855-.006-3.842.613-5.254 1.817-1.63 1.39-2.78 3.537-3.037 5.664-.218 1.814.51 3.698 1.368 5.312 1.3 2.447 5.507 6.22 5.507 6.22zm-151.123 0s4.208-3.774 5.508-6.22c.858-1.615 1.586-3.499 1.367-5.313-.256-2.127-1.407-4.274-3.037-5.664-1.412-1.204-3.398-1.823-5.254-1.817-2.218.008-4.708.65-6.27 2.227-1.605 1.621-2.377 4.197-2.226 6.474.13 1.957 1.344 3.772 2.627 5.254 1.935 2.235 7.285 5.059 7.285 5.059zm-41.074 18.008l-11.933 15.576s-.084 4.109.81 5.87c1.231 2.423 5.86 5.663 5.86 5.663l.85 21.387-11.31 19.6-.986.205 7.295 3.857c.342.056.68.112.986.088 4.378-.342 7.07-5.258 10.88-7.442 4.848-2.779 10.01-4.988 15.165-7.148 7.125-2.986 14.36-5.733 21.739-8.018 9.303-2.88 18.69-5.76 28.33-7.148a141.79 141.79 0 0122.1-1.445c2.462.033 4.92.127 7.372.293 6.57.444 19.37 3.404 19.473 3.427.086-.02 12.91-2.982 19.482-3.427 9.809-.664 19.742-.25 29.473 1.152 9.64 1.389 19.027 4.269 28.33 7.148 7.38 2.285 14.614 5.032 21.738 8.018 5.155 2.16 10.317 4.37 15.166 7.148 3.81 2.184 6.501 7.1 10.88 7.442.308.024.65-.03.995-.088l7.286-3.857-.987-.206-11.308-19.6.85-21.386s4.637-3.24 5.868-5.664c.895-1.76.801-5.87.801-5.87l-11.933-15.575s-6.016 6.007-9.913 7.285c-2.05.672-4.413.64-6.474 0-2.501-.777-4.435-2.811-6.475-4.453-4.609-3.71-9.225-7.541-12.949-12.139-2.133-2.633-5.264-8.701-5.264-8.701s-12.907 10.142-20.634 12.139c-7.577 1.958-15.96 1.605-23.467-.606-1.884-.555-5.03-3.066-5.03-3.066-8.826-5.622-17.651-8.698-26.425-7.852-8.774-.846-17.6 2.23-26.426 7.852 0 0-3.155 2.511-5.04 3.066-7.506 2.211-15.89 2.564-23.466.606-7.727-1.998-20.635-12.14-20.635-12.14s-3.13 6.069-5.263 8.702c-3.724 4.598-8.34 8.43-12.95 12.139-2.04 1.642-3.973 3.676-6.474 4.453-2.061.64-4.424.672-6.475 0-3.896-1.278-9.912-7.285-9.912-7.285z"/><path d="M1985.89 796.364s.448-5.703-.162-8.455c-.558-2.52-1.694-4.94-3.136-7.081-1.513-2.247-5.647-5.842-5.647-5.842m-1.434 27.69s3.394.123 4.853-.605c2.603-1.3 6.074-6.27 6.074-6.27s6.662 4.608 10.313 4.043c1.8-.278 3.294-1.885 4.248-3.437 1.01-1.646 1.651-3.782 1.22-5.664-.343-1.5-1.657-2.65-2.831-3.643-2.282-1.929-6.396-1.662-7.891-4.248-1.182-2.044-.457-4.81.195-7.08 1.36-4.736 4.751-8.648 7.49-12.744 1.74-2.601 5.294-4.383 5.665-7.49.2-1.68-2.022-4.659-2.022-4.659s-5.222-.118-7.686.616c-4.077 1.213-8.307 2.995-11.2 6.113-2.406 2.592-3.121 6.365-4.386 9.668-.96 2.51-2.421 7.685-2.421 7.685s-6.042-.013-8.702 1.211c-3.515 1.618-7.11 4.158-8.7 7.686-1.248 2.767-1.074 6.272 0 9.111 1.08 2.86 3.492 5.236 6.073 6.875 2.847 1.808 9.708 2.832 9.708 2.832zm-234.71-27.69s-4.135 3.595-5.648 5.842c-1.442 2.141-2.577 4.56-3.136 7.081-.61 2.752-.162 8.455-.162 8.455m-16.936-45.485s-2.222 2.98-2.021 4.659c.37 3.107 3.924 4.889 5.664 7.49 2.739 4.096 6.13 8.008 7.49 12.744.652 2.27 1.377 5.036.195 7.08-1.495 2.586-5.61 2.32-7.89 4.248-1.175.993-2.49 2.144-2.832 3.643-.431 1.882.21 4.018 1.22 5.664.954 1.553 2.448 3.159 4.248 3.437 3.651.565 10.313-4.043 10.313-4.043s3.471 4.97 6.074 6.27c1.46.728 4.854.605 4.854.605s6.87-1.024 9.716-2.832c2.582-1.64 4.983-4.014 6.065-6.875 1.073-2.838 1.247-6.344 0-9.111-1.59-3.528-5.186-6.068-8.701-7.686-2.66-1.224-8.702-1.21-8.702-1.21s-1.46-5.176-2.421-7.686c-1.265-3.303-1.98-7.076-4.385-9.668-2.894-3.118-7.124-4.9-11.201-6.113-2.464-.734-7.686-.616-7.686-.616zm135.626 14.318l8.325-2.438 8.324 2.438m-14.492 20.082s-6.481-5.91-7.689-9.914c-.527-1.748-.45-3.849.405-5.463 1.168-2.205 5.867-4.653 5.867-4.653s-7.085-3.443-8.902-6.677c-1.029-1.83-1.158-4.245-.607-6.271.874-3.216 3.3-5.97 5.868-8.093 3.185-2.633 11.226-5.26 11.226-5.26s8.026 2.62 11.226 5.26c2.57 2.12 4.993 4.877 5.867 8.093.551 2.026.422 4.44-.607 6.271-1.817 3.234-8.902 6.677-8.902 6.677s4.699 2.448 5.867 4.653c.855 1.614.932 3.715.405 5.463-1.207 4.004-7.688 9.914-7.688 9.914l-6.168.405zm22.672-26.888s13.436 5.727 17.989 11.107c1.27 1.5 2.352 3.5 2.225 5.462-.448 6.962-10.318 18.21-10.318 18.21l-19.928-8.283h-12.944l-19.928 8.282s-9.87-11.247-10.319-18.209c-.126-1.962.956-3.961 2.226-5.462 4.552-5.38 17.989-11.107 17.989-11.107"/><path d="M1844.36 669.248l8.056-6.2 6.507.14-6.656-.144s-3.591-2.447-4.578-4.292c-.958-1.79-1.415-4.02-1.002-6.008.553-2.655 2.086-5.459 4.428-6.825 2.237-1.305 7.755-.471 7.755-.471s5.503-.842 7.755.471c2.343 1.366 3.876 4.17 4.428 6.825.414 1.988-.043 4.218-1.001 6.008-.987 1.845-4.578 4.292-4.578 4.292l-6.656.143 6.506-.14 8.057 6.201m52.584 5.068l-2.68 4.655m32.633-20.004l-7.515.982m8.513 8.804l-11.517.604m-1.498-13.748c1.468.937 4.155 2.86 4.595 4.635.776 3.13-.675 7.07-3.14 9.149-2.388 2.014-9.251 1.501-9.251 1.501m-181.69 33.587s11.294-2.82 16.954-4.177c8.081-1.939 16.1-4.196 24.279-5.665 9.262-1.664 18.62-2.885 28.007-3.554 11.71-.836 35.215-.573 35.215-.573s23.488-.264 35.216.573c9.387.67 18.745 1.89 28.007 3.554 8.18 1.469 16.198 3.726 24.279 5.665 5.66 1.357 16.954 4.177 16.954 4.177m-171.55-30.165l2.68 4.655m-32.634-20.004l7.515.982m-8.513 8.804l11.517.604m-6.475 16.076s12.542-3.187 18.875-4.506c6.924-1.442 13.873-2.82 20.887-3.72 8.068-1.035 16.2-1.555 24.325-1.928 9.63-.443 28.917-.367 28.917-.367s19.27-.076 28.917.367c8.125.373 16.257.893 24.325 1.928 7.014.9 13.964 2.278 20.887 3.72 6.333 1.319 18.875 4.506 18.875 4.506m-170.239-14.539s-6.863.513-9.252-1.501c-2.465-2.079-3.915-6.02-3.139-9.149.611-2.464 5.55-5.213 5.55-5.213m63.138 74.002c-11.977.723-24.01 1.474-35.81 3.642-12.293 2.258-24.486 5.397-36.216 9.711-11.113 4.088-22.869 22.644-32.096 15.223-1.983-1.595.753-5.084 1.717-7.44 1.866-4.556 4.43-8.932 7.726-12.59 2.413-2.677 7.975-3.026 8.583-6.58.442-2.581-3.474-4.093-4.292-6.58-1.043-3.177-1.538-6.814-.572-10.015 1.24-4.109 6.526-6.18 7.726-10.3 1.043-3.583-2.548-7.833-.859-11.16 2.133-4.2 11.337-2.777 12.017-7.439.332-2.273-3.825-2.98-4.578-5.15-.532-1.535.31-3.24.287-4.864-.031-2.202.392-4.602-.573-6.581-.857-1.76-3.702-2.14-4.292-4.006-.558-1.766-.171-4.134 1.145-5.436 1.037-1.027 3.632.442 4.292-.859 1.332-2.626-2.539-5.314-3.72-8.011-1.406-3.213-3.207-6.314-4.006-9.729-.63-2.7-2.958-6.886-.572-8.297 2.733-1.616 5.477 3.239 8.012 5.15 3.345 2.523 7.11 4.817 9.442 8.298 1.683 2.511.743 6.509 2.948 8.577 2.647 2.481 7.758.491 10.5 2.868 2.356 2.042 4.441 5.55 3.72 8.584-.69 2.898-7.532 2.817-6.868 5.722.79 3.45 6.814 3.18 10.3 2.575 2.034-.352 3.463-2.247 5.151-3.433 1.311-.922 2.39-2.233 3.863-2.862 1.69-.721 5.436-.93 5.436-.93l-2.146-.5s-3.171-2.528-3.505-4.364c-.314-1.728.437-3.731 1.645-5.007 1.356-1.43 3.538-2.16 5.508-2.146 1.647.012 3.446.664 4.578 1.86 1.161 1.227 1.825 3.113 1.646 4.793-.157 1.467-1.128 2.88-2.29 3.79-1.257.988-4.577 1.431-4.577 1.431l2.289.644 6.151 8.44 26.539-1.453s3.273-3.34 2.63-5.16c-.689-1.95-2.503-2.667-5.665-2.528-8.581.376-10.34-6.829-10.015-12.038.27-4.334 5.484-7.275 9.51-8.903 3.876-1.567 10.787 3.593 12.543-.202 1.54-3.326-5.818-5.02-6.98-8.497-.503-1.505-.508-3.336.202-4.755 1.813-3.622 5.714-6.03 9.408-7.688 1.557-.7 5.056-.81 5.056-.81s3.482.105 5.055.81c3.696 1.655 7.595 4.066 9.408 7.688.71 1.419.705 3.25.202 4.755-1.162 3.476-8.52 5.17-6.98 8.497 1.757 3.795 8.667-1.365 12.544.202 4.025 1.628 9.24 4.569 9.51 8.903.324 5.21-1.435 12.414-10.016 12.038-3.162-.14-4.976.579-5.665 2.529-.643 1.82 2.63 5.159 2.63 5.159l26.54 1.454 6.15-8.44 2.29-.645s-3.32-.443-4.578-1.43c-1.162-.911-2.133-2.324-2.29-3.791-.178-1.68.485-3.566 1.646-4.793 1.132-1.196 2.93-1.848 4.578-1.86 1.97-.014 4.153.716 5.508 2.146 1.208 1.276 1.959 3.279 1.645 5.007-.333 1.836-3.505 4.364-3.505 4.364l-2.146.5s3.746.209 5.436.93c1.474.63 2.552 1.94 3.863 2.862 1.688 1.186 3.117 3.081 5.15 3.433 3.488.604 9.512.875 10.301-2.575.664-2.905-6.177-2.824-6.867-5.722-.722-3.034 1.363-6.542 3.72-8.584 2.74-2.377 7.852-.387 10.5-2.868 2.205-2.068 1.264-6.066 2.947-8.577 2.333-3.48 6.097-5.775 9.443-8.298 2.534-1.911 5.279-6.766 8.011-5.15 2.386 1.411.06 5.598-.572 8.297-.799 3.415-2.6 6.516-4.006 9.729-1.18 2.697-5.051 5.385-3.72 8.011.66 1.301 3.256-.168 4.292.859 1.316 1.302 1.703 3.67 1.145 5.436-.59 1.866-3.435 2.246-4.292 4.006-.964 1.98-.541 4.379-.572 6.58-.023 1.625.818 3.33.286 4.865-.753 2.17-4.91 2.877-4.578 5.15.68 4.662 9.884 3.239 12.017 7.44 1.69 3.326-1.901 7.576-.858 11.158 1.2 4.12 6.485 6.192 7.725 10.3.967 3.202.472 6.839-.572 10.015-.818 2.488-4.734 4-4.292 6.581.608 3.554 6.17 3.903 8.584 6.58 3.296 3.658 5.86 8.034 7.725 12.59.964 2.356 3.7 5.845 1.717 7.44-9.227 7.42-20.983-11.135-32.096-15.223-11.73-4.314-23.922-7.453-36.215-9.711-11.801-2.168-23.834-2.918-35.81-3.642-6.969-.42-20.938-.404-20.938-.404s-13.953-.018-20.938.404zm31.128-133.632l-10.184.117-10.183-.117m16.931-33.88c2.642-5.6-1.975-9.75-6.748-13.857-4.772 4.107-9.39 8.256-6.747 13.857m14.066 46.73c3.894.287 8.632 4.268 11.588 1.717 1.336-1.153.675-3.663 0-5.293-1.574-3.801-8.413-4.625-8.727-8.727-.27-3.538 5.191-5.212 6.295-8.584.549-1.677.68-3.666 0-5.293-2.751-6.578-14.493-6.952-16.527-13.68-.901-2.982 5.932-6.494 6.8-6.87 4.34-1.879 9.703 2.659 13.988.8 2.899-1.259 6.125-4.124 6.07-7.284-.06-3.438-3.726-6.317-6.88-7.688-6.108-2.657-16.22 5.904-19.978.404-3.459-5.061 8.643-11.08 7.03-16.995-.767-2.81-6.978-5.26-6.978-5.26s-6.202 2.438-6.977 5.26c-1.624 5.912 10.488 11.934 7.03 16.995-3.758 5.5-13.87-3.061-19.979-.404-3.153 1.371-6.818 4.25-6.878 7.688-.056 3.16 3.17 6.025 6.07 7.283 4.283 1.86 9.648-2.678 13.987-.799.867.376 7.7 3.888 6.8 6.87-2.034 6.729-13.776 7.102-16.527 13.68-.681 1.627-.55 3.616 0 5.293 1.104 3.372 6.565 5.046 6.294 8.584-.313 4.102-7.152 4.926-8.726 8.727-.676 1.63-1.336 4.14 0 5.293 2.956 2.55 7.693-1.43 11.588-1.717 2.433-.18 7.318 0 7.318 0s4.869-.18 7.319 0z"/><path fill="none" d="M1953.74 953.499s-7.154-3.02-10.804-4.34c-6.597-2.388-13.259-4.632-20.03-6.474-6.599-1.796-13.232-3.69-20.03-4.451-14.575-1.634-44.001-.203-44.001-.203s-29.409-1.433-44.002.203c-6.797.761-13.43 2.655-20.03 4.45-6.77 1.843-13.432 4.087-20.03 6.475-3.65 1.32-10.804 4.34-10.804 4.34m201.9-222.5s-11.953-4.756-18.026-6.867c-5.1-1.773-10.206-3.582-15.451-4.864-6.397-1.565-12.932-2.538-19.457-3.434a376.605 376.605 0 00-28.307-2.784c-8.584-.523-25.793-.607-25.793-.607s-17.192.083-25.793.607a376.49 376.49 0 00-28.307 2.784c-6.525.896-13.06 1.87-19.457 3.434-5.245 1.282-10.35 3.091-15.45 4.864-6.074 2.11-18.026 6.867-18.026 6.867m-14.157 120.41s17.56-5.918 26.405-8.671c9.129-2.84 18.174-6.063 27.516-8.093 11.184-2.43 22.61-3.63 33.99-4.856 11.058-1.191 33.279-2.427 33.279-2.427s22.203 1.234 33.28 2.427c11.378 1.226 22.805 2.426 33.989 4.856 9.342 2.03 18.387 5.252 27.516 8.093 8.846 2.753 26.405 8.671 26.405 8.671"/></g><g fill="#ccc"><g id="b"><path d="M1533.28 904.042l101.171 86.713s-5.133 11.214-7.279 16.99c-1.979 5.326-3.817 10.726-5.146 16.251-1.958 8.145-4.135 24.789-4.135 24.789L1499.95 940.75c1.673-24.69 15.567-33.488 33.331-36.708zm-14.29 54.155l-24.283 27.167 15.164 14.593-23.462 22.89-15.165-15.165-25.514 27.202-.237 33.743 58.084 45.494 20.029-14.879-1.145-32.332 15.45 8.584 15.452-9.443.858 29.185-12.59-9.156-13.734 18.026-1.43 32.046 43.777 38.913 53.05-47.079-4.009-14.112-2.305-12.678-1.247-25.129 1.98-27.44z"/><path d="M1494.71 985.364l-.621 29.993 15.643-15.261z"/><path fill="none" d="M1571.935 1140.425l-1.82 34.262m-18.61-139.675l.644 31.785m-14.81-17.34l.83 25.884m-14.426-36.34l.542 28.924m-21.435 15.225l.312 30.648m24.737-9.675l44.063 36.897 45.056-39.54M1446 1034.605l57.579 49.193 18.884-16.881-14.879-12.59 16.596-15.737 12.875 11.16 14.593-14.88 18.884 18.313-17.15 13.447 16.005 14.593-15.164 14.02"/><path d="M1901.35 1229.35l48.602 44.58 10.763 31.428-62.642-6.673-35.663-35.277-37.97-35.175-164.039-142.138s3.479-13.101 5.635-19.522c3.124-9.3 6.867-18.384 10.565-27.472.928-2.28 2.915-6.785 2.915-6.785l183.014 162.24z"/><path d="M1942.67 1236.04c27.095 37.868 72.691 73.638 86.537 90.842 13.845 17.203 22.764 33.54 2.583 55.538-20.182 21.998-43.064 9.515-61.136-2.583-18.07-12.099-49.602-51.303-94.716-81.37z"/><path d="M1926.7 1299.75l-35.17-15.874m40.929-38.287c2.423 7.965.574 16.774 3.624 24.416 3.015 7.555 14.022 19.973 14.022 19.973s-6.998.978-10.262 2.245c-4.73 1.838-11.956 2.71-13.172 7.638-1.063 4.309 4.062 8.026 7.09 11.27 2.905 3.112 6.645 5.372 10.316 7.526 6.137 3.6 12.391 7.654 19.393 8.917 8.765 1.58 25.13-10.756 26.647-1.98.631 3.65-7.39 1.313-10.713 2.946-7.758 3.813-11.65 12.118-4.82 17.894 4.384 3.71 11.274 2.347 16.998 2.821 5.49.455 11.758-2.745 16.523.016 5.61 3.25 12.668 11.106 9.692 16.867-3.063 5.928-14.484 5.77-19.927 1.91-4.025-2.854-2.947-9.474-3.542-14.371-.177-1.458 0-2.937 0-4.406"/><circle cx="2154.665" cy="1480.147" r="129.687"/><path fill="#fff" d="M2106.13 1485.65c-22.355 0-40.478 18.123-40.478 40.478 0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478l14.026-.609c0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478-18.122-40.478-40.478-40.478l.61-7.937c22.355 0 40.477-18.123 40.477-40.478s-18.122-40.479-40.478-40.479c-22.355 0-40.478 18.123-40.478 40.479l-14.026-1.218c0-22.356-18.123-40.478-40.478-40.478-22.356 0-40.478 18.122-40.478 40.478 0 22.355 18.122 40.478 40.478 40.478z"/><circle cx="2154.667" cy="1446.052" r="14.613"/><circle cx="2189.367" cy="1480.148" r="14.613"/><circle cx="2155.277" cy="1511.2" r="14.613"/><circle cx="2119.347" cy="1480.148" r="14.613"/><path fill="#fff" d="M2152.23 1558.42c-5.338 10.957-12.62 15.941-21.919 21.919 13.247 5.754 29.4 4.697 43.838 0-9.299-4.65-16.041-11.996-21.919-21.919zm-76.579-80.232c-10.956-5.338-15.94-12.62-21.919-21.919-5.753 13.248-4.696 29.4 0 43.838 4.65-9.299 11.996-16.041 21.92-21.919zm159.246 3.653c10.957-5.337 15.941-12.62 21.92-21.919 5.753 13.248 4.696 29.4 0 43.838-4.65-9.298-11.996-16.041-21.92-21.919zm-78.405-80.84c-5.338-10.957-12.62-15.941-21.919-21.92 13.248-5.753 29.4-4.696 43.838 0-9.299 4.65-16.041 11.997-21.919 21.92z"/></g><g fill="#ce9d09"><g id="c"><path d="M1533.48 903.819s.703-5.061 0-7.44c-1.144-3.868-3.574-7.467-6.58-10.157-2.544-2.275-5.808-3.923-9.157-4.578-3.615-.706-7.464-.115-11.016.859-2.42.663-6.753 3.322-6.753 3.322l-14.85 6.12-5.51 17.667s-3.174 5.58-3.931 8.656c-.81 3.293-1.41 6.871-.573 10.158.983 3.86 3.232 7.611 6.295 10.157 2.833 2.355 6.627 3.73 10.3 4.006 2.827.213 8.298-1.86 8.298-1.86 1.58-18.611 9.856-32.813 33.477-36.91z"/><path d="M1500.27 885.645l-38.753-17.02-3.147 3.005 21.118 38.201s5.925-8.738 9.354-12.736c3.51-4.093 11.428-11.45 11.428-11.45z"/><circle cy="865.263" cx="1457.292" r="15.951"/><path d="M1566.19 932.256c3.39 27.952 7.322 55.904 16.025 83.856l31.069 28.46c-6.625-29.232-18.443-58.464-18.369-87.695z"/><path d="M1613.05 972.415l-85.487-6.369 27.2 24.916 78.068 3.38 1.147-3.99zm105.31 94.505c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.56-12.306.618-14.41-4.133 5.347-34.7 30.21-45.552 35.753-47.747 14.95-2.825 12.178 8.85 16.514 14.709zm27.52 25.9c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.559-12.306.618-14.41-4.134 5.347-34.7 30.21-45.55 35.753-47.746 14.95-2.825 12.179 8.85 16.514 14.709zm312.78 261.87c-7.337-.202-15.078 1.504-15.078 1.504.303 8.02-2.946 16.583-11.797 26.23-7.64 8.327-15.666 11.704-23.672 12.041l-.01.01s-2.84 17.652 2.588 23.252c6.356 6.558 27.12 3.877 27.12 3.877l1.767-1.132a129.688 129.688 0 0131.914-39.795l.332-1.26s3.038-16.523-2.149-21.5c-2.35-2.27-6.613-3.072-11.015 0z"/><circle cy="1375.424" cx="2254.517" r="17.657"/><circle cy="1580.001" cx="2260.607" r="17.657"/><circle cy="1591.57" cx="2062.117" r="17.657"/></g></g></g><g fill="#ce9d09" transform="matrix(-1 0 0 1 3718.256 0)"><use xlink:href="#b"/><use xlink:href="#c" fill="#ccc"/></g><g fill="#fa0204"><path id="d" d="M1869.19 1175.78c0 5.38-4.5 7.458-13.243 7.458s-12.786-2.534-12.786-7.915c0-5.38 4.043-6.697 12.786-6.697s13.243 1.774 13.243 7.154z"/><use xlink:href="#d" x="6.391" y="14.309"/><path d="M1877.34 1208.69c-1.772 5.08-6.705 5.56-14.96 2.681-8.255-2.88-11.238-6.605-9.466-11.685 1.772-5.08 6.023-4.992 14.278-2.112 8.255 2.879 11.92 6.036 10.148 11.116z"/><path id="e" d="M1877.51 1222.51c-1.065 5.274-5.887 6.42-14.457 4.69s-12.031-5.016-10.966-10.29c1.065-5.274 5.289-5.765 13.858-4.034 8.57 1.73 12.63 4.36 11.565 9.634z"/><use xlink:href="#e" x="3.96" y="16.142"/><path d="M1921.73 1216.2c-2.59-.691-2.303-5.303-1.583-7.886 1.107-3.968 8.354-9.11 8.354-9.11s1.767 5.563.95 8.185c-1.162 3.729-3.948 9.818-7.721 8.811z"/><path d="M1912.29 1224.42c-2.822-.622-3.182-5.523-2.444-8.316 1.142-4.324 9.645-9.325 9.645-9.325s1.477 6.041.52 8.83c-1.267 3.694-3.907 9.651-7.721 8.811zm-10.77 15.59c-4.292-1.138-3.805-8.762-2.66-13.052.947-3.543 3.716-9.12 7.278-8.249 4.167 1.018 4.115 8.321 3.103 12.49-.92 3.795-3.947 9.812-7.721 8.811z"/><path d="M1888.73 1252.19c-4.214-.926-6.007-7.638-5.164-11.87.885-4.442 5.36-10.41 9.782-9.431 4.463.988 6.005 8.353 4.93 12.795-1.004 4.143-5.385 9.421-9.548 8.506zm-2.22 7.39c-1.077 5.087-7.504 6.86-11.461 5.57-4.154-1.356-9.579-7.187-8.442-12.525 1.147-5.385 8.179-6.813 12.324-5.225 3.866 1.48 8.643 7.155 7.579 12.18zm-85.04-49.29s5.138 2.531 7.349 4.792c2.32 2.373 5.11 3.322 3.709 6.923-1.415 3.634-5.843 2.388-8.127-.156-2.13-2.372-2.931-11.559-2.931-11.559zm25.37 8.77c5.212 1.047 5.108 7.12 2.443 10.847-2.797 3.91-10.883 8.992-16.349 7.887-5.515-1.116-4.844-7.758-1.795-11.658 2.843-3.638 10.553-8.11 15.701-7.076z"/><path id="f" d="M1844.26 1230.55c4.853 2.169 3.415 8.07 0 11.118-3.59 3.199-12.597 6.375-17.685 4.093-5.134-2.302-3.016-8.633.816-11.767 3.575-2.922 12.08-5.586 16.874-3.444z"/><use xlink:href="#f" x="13.998" y="10.661"/><path d="M1862.97 1250.68c4.787.754 6.069 7.415 4.585 11.696-1.56 4.494-7.474 10.67-12.496 9.87-5.068-.806-5.982-8.132-4.2-12.634 1.66-4.199 7.383-9.678 12.112-8.932z"/><path d="M1875.1 1265.33c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.845 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347zm-86.08-39.89c4.244-.376 7.182 5.965 7.127 10.585-.06 4.85-3.317 12.403-7.771 12.79-4.495.39-7.309-6.7-7.065-11.611.227-4.58 3.518-11.393 7.71-11.765z"/><path d="M1802.91 1237.65c4.157.932 5.027 7.867 3.57 12.251-1.532 4.602-6.933 10.806-11.294 9.82-4.4-.995-4.924-8.606-3.198-13.21 1.609-4.293 6.817-9.782 10.923-8.861z"/><path d="M1815.79 1246.24c4.921 1.158 5.952 9.77 4.226 15.215-1.814 5.716-8.208 13.42-13.37 12.196-5.21-1.236-5.83-10.689-3.787-16.406 1.905-5.332 8.07-12.15 12.932-11.005z"/><path d="M1826.22 1256.8c5.014-.644 9.005 7.057 9.301 12.761.31 5.988-2.97 15.448-8.234 16.115-5.312.673-9.213-7.96-9.309-14.03-.089-5.661 3.29-14.21 8.243-14.847z"/><path id="g" d="M1838.59 1265.66c4.556-.534 8.182 5.85 8.451 10.578.282 4.964-2.699 12.805-7.482 13.358-4.826.558-8.371-6.598-8.458-11.63-.08-4.693 2.989-11.779 7.49-12.307z"/><use xlink:href="#g" x="12.788" y="10.35"/><path id="h" d="M1929.28 1250.88c-3.243 2.846-9.712.313-12.621-2.874-3.054-3.345-5.21-10.486-1.801-13.468 3.44-3.01 10.287.112 13.228 3.61 2.742 3.264 4.398 9.92 1.194 12.732z"/><use xlink:href="#h" x="-6.999" y="12.792"/><use xlink:href="#h" x="-19.479" y="23.452"/><path d="M1905.19 1281.18c-1.138 4.162-7.933 5.613-12.116 4.557-4.392-1.11-10.126-5.88-8.924-10.247 1.213-4.407 8.646-5.575 13.028-4.276 4.086 1.212 9.137 5.855 8.012 9.966z"/><path d="M1887.18 1278.19c3.641 2.539 2.786 10.55.377 14.889-2.53 4.554-9.042 9.485-12.86 6.813-3.853-2.696-2.512-11.334.198-15.819 2.528-4.182 8.689-8.39 12.286-5.883z"/><path d="M1869.62 1287.55c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.844 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347z"/><path id="i" d="M1831.34 1312.91c-3.392 3.235-.755 11.272 2.773 15.282 3.706 4.209 11.795 8.104 15.349 4.703 3.586-3.433.292-12.024-3.594-16.132-3.624-3.83-11.179-7.048-14.53-3.853z"/><use xlink:href="#i" x="-7.319" y="13.781"/><path id="j" d="M1820.83 1339.55c-4.348 1.749-4.876 10.19-3.083 15.222 1.883 5.282 7.954 11.896 12.516 10.053 4.602-1.861 4.724-11.061 2.635-16.315-1.948-4.9-7.774-10.687-12.069-8.96z"/><use xlink:href="#j" x="-10.548" y="14.852"/><path id="k" d="M1802.66 1371.04c-4.57 1.037-6.43 9.289-5.458 14.54 1.022 5.515 5.967 13.008 10.763 11.91 4.84-1.107 6.419-10.171 5.19-15.69-1.147-5.147-5.981-11.785-10.496-10.76z"/><use xlink:href="#k" x="-10.121" y="15.932"/><path id="l" d="M1784.06 1403.3c-4.684.171-8.042 7.935-8.06 13.276-.02 5.608 3.451 13.888 8.367 13.7 4.961-.19 8.194-8.805 8.01-14.456-.172-5.27-3.692-12.69-8.318-12.52z"/><use xlink:href="#l" x="-10.33" y="19.16"/><use xlink:href="#l" x="-22.39" y="37.02"/><use xlink:href="#l" x="-34.87" y="52.31"/><use xlink:href="#l" x="-47.79" y="66.51"/><use xlink:href="#l" x="-61.99" y="78.14"/><use xlink:href="#l" x="-75.56" y="90.62"/><path d="M1692.79 1500.17l-5.262 20.595s2.935 7.335 6 7.026c5.48-.552 6.964-9.047 8.01-14.455.947-8.424-8.748-13.166-8.748-13.166zm324.42 13.08c1.61 6.124 15.26 11.314 15.26 11.314l-6.651-27.758c-5.717.154-9.495 12.436-8.609 16.444z"/><path d="M2016.01 1490.95c-4.359-1.722-10.549 4.043-12.709 8.928-2.266 5.13-2.409 14.107 2.17 15.906 4.62 1.815 11.038-4.779 13.136-10.03 1.956-4.896 1.708-13.104-2.597-14.805z"/><path id="m" d="M2000.82 1478.67c-4.68-.243-8.711 7.193-9.202 12.512-.514 5.584 2.21 14.139 7.124 14.385 4.958.249 8.94-8.046 9.256-13.691.295-5.265-2.556-12.966-7.179-13.207z"/><use xlink:href="#m" x="-13.4" y="-13.7"/><use xlink:href="#m" x="-25.88" y="-29.23"/><use xlink:href="#m" x="-38.66" y="-42.32"/><use xlink:href="#m" x="-49.01" y="-60.28"/><use xlink:href="#m" x="-60.28" y="-76.41"/><use xlink:href="#m" x="-70.63" y="-93.46"/><use xlink:href="#m" x="-79.76" y="-113.25"/><use xlink:href="#m" x="-89.81" y="-131.21"/><use xlink:href="#m" x="-98.03" y="-152.52"/><path d="M1883.85 1304.56s-1.647 26.676 8.037 28.389c6.039 1.068 10.779-14.91 10.779-14.91z"/><path id="n" d="M1862.02 1610.75c-2.878 3.699.914 11.26 4.995 14.706 4.285 3.617 12.86 6.278 15.874 2.39 3.041-3.924-1.483-11.936-5.931-15.426-4.15-3.254-12.096-5.324-14.939-1.67z"/><use xlink:href="#n" x="18.3" y="-2.15"/><use xlink:href="#n" x="36.81" y="-5.81"/><path id="o" d="M1916.18 1603.8c-2.29 4.09 2.594 10.995 7.147 13.79 4.78 2.932 13.656 4.275 16.052-.021 2.418-4.336-3.258-11.578-8.18-14.36-4.59-2.595-12.758-3.448-15.02.591z"/><use xlink:href="#o" x="20.02" y="-3.22"/><path id="p" d="M1953.48 1595.43c-1.903 4.283 3.598 10.709 8.389 13.071 5.03 2.479 13.993 2.997 15.982-1.503 2.007-4.54-4.313-11.228-9.47-13.544-4.811-2.159-13.023-2.254-14.902 1.976z"/><use xlink:href="#p" x="18.94" y="-5.59"/><path id="q" d="M1991.26 1583.89c-1.646 4.388 4.225 10.477 9.147 12.553 5.167 2.177 14.145 2.164 15.865-2.445 1.735-4.651-4.968-10.953-10.255-12.96-4.93-1.872-13.132-1.482-14.758 2.852z"/><use xlink:href="#q" x="19.16" y="-6.24"/><use xlink:href="#q" x="37.67" y="-13.99"/><use xlink:href="#q" x="57.48" y="-22.17"/><use xlink:href="#q" x="77.5" y="-28.63"/><use xlink:href="#q" x="79.87" y="-44.34"/><path d="M2066.71 1534.88s13.55 1.992 14.79-2.875c1.645-6.462-15.422-12.745-15.422-12.745z"/><path id="r" d="M1701.62 1575.59c-3.986 2.465-3.066 10.873-.44 15.525 2.756 4.883 9.866 10.365 14.046 7.77 4.218-2.619 2.768-11.705-.186-16.526-2.756-4.495-9.483-9.204-13.421-6.77z"/><use xlink:href="#r" x="18.94" y="7.75"/><use xlink:href="#r" x="37.03" y="10.55"/><use xlink:href="#r" x="56.83" y="15.5"/><use xlink:href="#r" x="74.7" y="18.08"/><use xlink:href="#r" x="92.35" y="21.74"/><use xlink:href="#r" x="110.43" y="26.69"/><use xlink:href="#r" x="128.3" y="29.92"/><use xlink:href="#r" x="146.6" y="32.72"/><path d="M1648.16 1517.51c-4.167-2.145-10.898 2.977-13.531 7.625-2.764 4.879-3.796 13.797.582 16.041 4.418 2.265 11.457-3.66 14.065-8.677 2.433-4.678 3-12.87-1.116-14.99z"/><path d="M1642.01 1534.4c-4.415-1.572-10.405 4.4-12.396 9.357-2.09 5.204-1.926 14.18 2.711 15.822 4.68 1.657 10.868-5.153 12.786-10.472 1.788-4.96 1.26-13.155-3.102-14.708z"/><path d="M1647.74 1549.94c-4.54-1.165-9.963 5.326-11.496 10.443-1.61 5.372-.632 14.297 4.135 15.51 4.811 1.226 10.356-6.117 11.783-11.588 1.33-5.102.061-13.215-4.423-14.366z"/><path d="M1662.37 1556.31c-4.499-1.313-10.132 4.998-11.832 10.062-1.784 5.316-1.099 14.268 3.626 15.637 4.769 1.382 10.55-5.775 12.156-11.197 1.497-5.056.493-13.206-3.95-14.503z"/><path id="s" d="M1671.91 1558.81c-4.547 1.134-6.232 9.423-5.148 14.653 1.138 5.491 6.242 12.878 11.013 11.68 4.815-1.21 6.202-10.306 4.856-15.798-1.256-5.121-6.23-11.655-10.722-10.535z"/><use xlink:href="#s" x="16.79" y="6.24"/><use xlink:href="#i" x="8.611" y="-11.189"/><use xlink:href="#i" x="4.66" y="6.47"/><use xlink:href="#i" x="4.911" y="26.679"/><use xlink:href="#i" x="4.66" y="47.87"/><use xlink:href="#i" x="5.57" y="68.57"/><use xlink:href="#i" x="2.22" y="87.75"/><use xlink:href="#i" x="4.66" y="109.06"/><use xlink:href="#i" x="2.22" y="126.41"/><use xlink:href="#i" x="4.66" y="143.46"/><use xlink:href="#i" x="4.66" y="163.86"/><use xlink:href="#i" x="3.44" y="183.95"/><use xlink:href="#i" x="3.74" y="203.13"/><use xlink:href="#i" x="4.35" y="223.52"/><use xlink:href="#i" x="4.35" y="243.31"/><use xlink:href="#i" x="3.74" y="263.1"/><use xlink:href="#i" x="2.52" y="283.19"/><use xlink:href="#i" x="2.52" y="305.11"/><use xlink:href="#i" x="1.92" y="327.94"/><use xlink:href="#i" x="1.92" y="349.25"/><use xlink:href="#i" x="1.92" y="369.04"/><use xlink:href="#i" x="1.31" y="391.27"/><path id="t" d="M1882.24 1303.18c2.442 3.707-1.32 10.832-5.164 13.97-4.036 3.293-11.911 5.463-14.468 1.566-2.58-3.931 1.863-11.458 6.042-14.62 3.896-2.95 11.178-4.577 13.59-.916z"/><use xlink:href="#t" x="2.74" y="16.13"/><use xlink:href="#t" x="2.43" y="34.1"/><use xlink:href="#t" x="2.13" y="52.36"/><use xlink:href="#t" x="1.82" y="69.11"/><use xlink:href="#t" x="2.74" y="87.07"/><use xlink:href="#t" x="1.52" y="104.42"/><path d="M1883.25 1426.06c2.696 3.834-1.456 11.203-5.7 14.448-4.454 3.406-13.147 5.65-15.97 1.62-2.848-4.066 2.057-11.85 6.67-15.12 4.3-3.05 12.338-4.735 15.001-.948z"/><path id="u" d="M1882.09 1443.58c3.392 3.235.755 11.272-2.773 15.282-3.706 4.209-11.795 8.104-15.349 4.702-3.586-3.432-.292-12.024 3.594-16.13 3.624-3.83 11.179-7.049 14.529-3.854z"/><use xlink:href="#u" x=".61" y="20.4"/><use xlink:href="#u" x=".92" y="40.49"/><use xlink:href="#u" x=".31" y="62.11"/><use xlink:href="#u" x=".92" y="82.2"/><use xlink:href="#u" x=".31" y="102.6"/><use xlink:href="#u" x=".61" y="122.99"/><use xlink:href="#u" x=".61" y="143.69"/><use xlink:href="#u" x="-.3" y="164.4"/><use xlink:href="#u" x=".92" y="183.27"/><use xlink:href="#u" x=".92" y="203.06"/><use xlink:href="#u" x=".31" y="224.37"/><use xlink:href="#u" x=".31" y="245.37"/></g><path fill="#fa0204" d="M1849.64 1848.26c19.902 5.524 31.76 5.236 48.22.43l-17.437-27.984"/><path fill="#ce9d09" d="M1888.31 1776.16l-31.708-8.141s.366-35.184 20.389-32.116c16.62 2.547 11.985 40.341 11.319 40.257z"/><circle fill="#ce9d09" cx="1872.886" cy="1722.971" r="12.916"/><path fill="#fa0204" d="M1885.37 1791.86c7.048 17.864 11.37 33.241 4.736 53.386m7.597 3.412c-10.226-8.255-36.582-5.832-47.981-.347-4.453 0-16.446-83.24 25.722-81.183 38.72 1.89 24.949 81.915 22.259 81.53z"/><path fill="#fa0204" d="M1815.2 1866.34c19.292 12.239 37.25 11.14 54.247.43l-40.255-41.976"/><circle fill="#ce9d09" cx="1843.396" cy="1738.255" r="12.916"/><path fill="#ce9d09" d="M1859.33 1780.02l-32.72-.646s-4.245-26.612 16.145-27.769c16.924-.96 17.251 28.363 16.575 28.415z"/><path fill="#fa0204" d="M1843.61 1860.74c-6.261-13.91-6.91-31.026-5.166-49.51m-9.472 50.371c-7.682-13.183-9.107-30.015-3.014-51.233m43.404 56.636c-4.926-6.191-40.227-8.83-54.096-.392-5.02 0-18.54-93.848 29-91.529 43.656 2.13 28.129 92.354 25.096 91.92z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 192 128" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h192v128H0z" fill="#fcd022"/><path d="M144 0h48v128h-48z" fill="#007c2e"/><path d="M0 0h48v128H0z" fill="#002674"/><path d="M83.911 92.44L96 115.196l12.089-22.756L96 69.685zM68.267 64l12.089 22.755L92.444 64 80.356 41.244zm31.289 0l12.088 22.756L123.734 64l-12.09-22.756z" fill="#007c2e"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 180 120"><defs><g id="d" transform="translate(0 -36)"><g id="c"><g id="b"><path d="M0-5v5h3z" fill="#fff" transform="rotate(18 0 -5)" id="a"/><use xlink:href="#a" transform="scale(-1 1)"/></g><use xlink:href="#b" transform="rotate(72)"/></g><use xlink:href="#b" transform="rotate(-72)"/><use xlink:href="#c" transform="rotate(144)"/></g></defs><path d="M0 0h180v120H0z" fill="#cf142b"/><path d="M0 0h180v80H0z" fill="#00247d"/><path d="M0 0h180v40H0z" fill="#fc0"/><g transform="translate(90 84)"><g id="f"><g id="e"><use xlink:href="#d" transform="rotate(10)"/><use xlink:href="#d" transform="rotate(30)"/></g><use xlink:href="#e" transform="rotate(40)"/></g><use xlink:href="#f" transform="rotate(-80)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1200 600"><defs><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="103.083" y1="111.276" x2="92.551" y2="107.764" gradientTransform="matrix(.99614 0 0 2.25255 703.842 -75.047)"><stop stop-color="red" offset="0"/><stop stop-color="#ff0" offset="1"/></linearGradient><clipPath id="a"><path d="M0 0v150h700v150H600zm600 0H300v350H0v-50z"/></clipPath><clipPath id="d"><path d="M0 0h1200v600H0z"/></clipPath></defs><path fill="#012169" d="M0 0h1200v600H0z"/><path d="M0 0l600 300m0-300L0 300" stroke="#fff" stroke-width="60" clip-path="url(#d)"/><path d="M0 0l600 300m0-300L0 300" stroke="#c8102e" stroke-width="40" clip-path="url(#a)"/><path d="M300 0v350M0 150h700" stroke="#fff" stroke-width="100"/><path d="M300 0v350M0 150h700" stroke="#c8102e" stroke-width="60"/><path d="M0 300h600V0h600v600H0z" fill="#012169"/><path fill="#fff" d="M776.26 144.068l250.401-.93-.465 222.993s8.827 33.913-104.992 85.48c40.882-4.181 85.48-47.85 85.48-47.85s18.119-23.228 26.946-10.22c8.826 13.007 17.188 19.511 23.692 24.621 6.504 5.11 11.614 19.048 1.859 29.268s-25.087 11.614-29.268-.93c-6.504 3.253-46.457 51.568-128.22 53.89-83.157-1.393-128.685-54.354-128.685-54.354s-11.15 17.654-26.945 3.717c-15.33-18.118-3.716-29.732-3.716-29.732s13.007-7.433 16.724-12.544c6.04-6.968 7.898-16.26 18.118-16.26 12.079.93 16.724 10.685 16.724 10.685s41.811 44.134 86.874 49.709c-101.736-48.783-105.453-78.98-104.988-86.413l.465-221.133z"/><path fill="#006129" stroke="#000" stroke-width="1.887" d="M782.299 150.107l238.787-1.394v214.63c.465 27.874-46.457 56.213-119.858 92.449-75.724-39.024-119.394-62.716-119.858-92.913l.93-212.771z"/><g id="c" fill="#ffc72c" stroke="#000" stroke-width=".944"><path fill="none" stroke="#ffc72c" stroke-width="1.887" d="M814.794 181.829l14.095-20.701 14.164 20.744"/><path d="M831.719 174.09a2.8 2.8 0 11-5.598.002 2.8 2.8 0 015.598-.002z"/><path d="M817.444 197.119l21.852.062s.342-2.836-2.283-4.56c11.446-1.573 8.472-11.669 18.058-12.241 1.86.286-5.008 4.292-5.008 4.292s-5.779 4.078-3.147 6.152c2.09 1.646 3.004-1.001 3.29-3.004.286-2.003 9.3-3.29 8.012-9.014-2.146-4.72-14.736 3.148-14.736 3.148l-8.982-.05c-.56-1.008-3.035-5.05-5.592-5.07-3.033.111-5.17 5.12-5.17 5.12h-20.315s-.696 5.212 9.605 6.214c2.319 3.029 4.117 3.875 6.133 4.659-1.344 1.12-1.723 2.475-1.717 4.292zm1.573-4.435l18.2-.062m-26.536-10.669s1.456 8.513 8.176 10.529"/><path fill="url(#b)" d="M809.561 181.841c.672-3.248 1.904-3.808 3.248-7.952.224-4.033-3.248-3.585-2.24-6.16 1.792-2.8.896-5.49-2.464-7.617.672 3.696-4.368 7.168-4.368 10.192 0 3.025 2.576 2.353 2.24 6.945.224 2.688-.672 2.016-.896 4.592h4.48z"/><path d="M831.495 161.657a2.575 2.575 0 11-5.15.002 2.575 2.575 0 015.15-.002z"/></g><use xlink:href="#c" x="-.772" y="41.304"/><use xlink:href="#c" x="-1.089" y="82.013"/><use xlink:href="#c" x="25.627" y="126.099"/><use xlink:href="#c" x="-4.574" y="162.163"/><use xlink:href="#c" x="-3.782" y="204.773"/><use xlink:href="#c" x="146.28" y=".672"/><use xlink:href="#c" x="144.936" y="41.218"/><use xlink:href="#c" x="143.144" y="82.661"/><use xlink:href="#c" x="145.16" y="123.431"/><use xlink:href="#c" x="144.712" y="164.201"/><use xlink:href="#c" x="144.936" y="205.195"/><g fill="#ffc6b5" stroke="#000" stroke-width=".944"><path fill="#ffc72c" d="M915.843 406.315s5.702 13.147 12.197 5.069c6.494-8.079 4.118-11.563 4.118-11.563l-14.573-7.92-4.276 9.028 2.534 5.386z"/><path d="M928.357 404.572s.95.159 1.742-1.267-1.742-2.06-2.85-3.643l-1.268 2.534 2.376 2.376zm-32.948-3.485l-12.83 6.97s-6.337 1.267-6.812 0c-.475-1.268.159-2.376 3.485-2.535 3.327-.158 12.355-8.395 12.355-8.395l3.802 3.96zm.159-227.938s.317 3.01.475 4.594c.159 1.584-2.534 4.91-2.693 4.752s-1.425.158-1.267 1.108c.159.95 2.06 1.268 2.06 1.268s-.793 3.326 0 3.484c.791.159-2.06 4.277 0 5.386 2.059 1.109 5.543 2.534 7.127 2.218 1.584-.317 0 6.177 0 6.177l-4.435 9.504 24.394-2.534-5.069-8.079s-2.376-1.584-1.742-6.177c.633-4.594-.317-25.344-.317-25.344l-17.424-2.376-1.109 6.019zm-4.436 36.115s-7.92 3.643-7.603 13.464c-2.06 9.504-3.168 19.008-3.168 19.008s-9.346 10.613-12.197 14.415c-2.851 3.801-7.128 11.563-8.712 13.622-1.584 2.06-7.762 8.87-7.603 11.405.158 2.534-1.426 13.78 4.752 15.048 1.584.633 6.653-12.99 6.653-12.99s.316-5.86-1.426-6.969c-1.742-1.108 3.802-4.91 3.802-4.91s10.612-7.762 12.988-9.663c2.376-1.9 8.87-9.187 8.87-9.187l3.644-43.243z"/><path fill="#fff" d="M900.161 201.82s2.06 5.544 6.653 4.594c4.594-.95 9.98-5.228 9.98-5.228s4.276-.158 4.91.476c.633.633 11.563 11.246 11.246 14.572-.317 3.327-5.069 2.376-6.811 4.594-1.743 2.218-4.594 7.762-3.802 11.88.792 4.119 3.168 9.504 2.851 11.563-.316 2.06-2.059 2.693-2.059 3.802s1.426 3.01 1.426 5.069c0 2.06-1.901 5.069-1.584 7.128.317 2.06.475 8.078.475 8.078l-.475 27.879s1.584.95 1.742 2.534c.159 1.584 10.771 47.679 10.771 47.679s-.475 1.425-1.584 1.267c-1.108-.159 4.277 7.128 4.436 9.187.158 2.06 5.544 18.216 5.385 20.434-.158 2.217-.95 7.128-1.425 7.286-.476.158 3.484 10.138 2.85 11.722-.633 1.584-7.127 1.425-7.127 1.425l-1.743-.316s.159 2.059-1.108 2.217-10.613-.475-10.613-.475-2.693 4.118-4.277 3.96c-1.584-.158-3.643-3.01-4.119-2.534-.475.475 1.426 3.167.95 3.96-.474.792-8.553 2.534-10.137-1.268-1.584-3.801.95-2.85.476-3.643-.476-.792-4.119-2.851-5.228-2.217-1.109.633 2.852 1.584 2.693 3.168-.158 1.584-3.485 3.96-4.752 3.96s-4.277-5.861-8.712-5.228c-4.435.634-7.286 1.743-7.286 1.743s-5.228 2.217-7.445 1.742c-2.218-.475-3.168-2.218-3.168-3.168 0-.95 1.584-5.069 1.425-6.336s-1.425-2.534-1.425-4.435c0-1.9 3.643-8.395 3.643-8.395l-.158-29.146s-3.327 0-3.485-2.06 5.069-46.094 5.86-48.945c.793-2.851 2.852-12.989 2.852-12.989s-2.376 1.109-2.535 0c-.158-1.109 7.128-26.294 7.128-26.294s1.268-12.514 1.268-15.84c0-3.327-.634-7.92-.634-7.92s-6.503-2.753-6.653-6.97c-.595-6.709 6.178-10.454 6.97-12.672l3.168-8.87s3.485-6.02 9.187-6.97z"/><path fill="#ffc72c" d="M897.785 402.988s-15.365 8.079-17.582 8.712c-2.218.634-3.644-2.693-1.426-3.326 2.218-.634 5.702-.95 5.702-.95s-5.227-4.12-5.068-4.278c.158-.158 7.128-2.692 7.286-2.692s2.218 4.118 3.643 3.801c1.426-.317 5.544-3.484 5.544-3.484s2.218 2.534 1.901 2.217z"/><path d="M919.432 407.423c1.453 1.874 2.02 5.123 5.347 3.222 3.327-1.9-1.704-5.428-1.704-5.428l-3.643 2.206z"/><path d="M925.505 407.106s1.584 1.267 3.01-.158-2.852-4.436-2.852-4.436l-2.059 2.376 1.901 2.218zm6.812-190.146c.158 0 5.227 15.682 5.86 19.642.634 3.96 2.694 19.8 1.902 22.017-.792 2.218-8.87 12.83-9.821 15.523-.95 2.693-6.653 12.99-6.653 12.99s-1.426 10.137-2.06 10.612c-.633.476 1.636 2.964 1.426 3.802-.314.943-4.593 5.386-6.494 4.91-1.9-.475-4.91-2.693-5.069-4.752s.158-8.87 1.584-10.612c1.426-1.743 8.87-19.325 9.346-20.434.475-1.109 6.81-14.89 6.97-17.266.158-2.376-1.972-7.87-4.212-9.886-4.985-14.673-3.026-23.522 7.221-26.546z"/><path fill="#9c5100" d="M895.092 172.199s3.485.475 5.386-.634c1.9-1.108 4.118-1.584 5.702.634 1.584 2.218 2.693 2.06 2.693 2.06s-2.376 5.86 0 6.494c2.376.633 3.485.633 3.643 1.425.159.792-2.06 2.535-1.426 3.327.634.792 1.743 1.742 1.901 2.376.159.633-1.425 3.326-.95 3.96.475.633 1.9 3.168 2.851 3.168.95 0 .317 3.96 3.168 3.01s2.693-3.486 2.693-3.486 3.01-.475 3.802-3.168c.791-2.692 2.692-3.326 2.692-3.326s3.802-2.06-1.267-5.227c0-22.176-14.573-19.8-14.573-19.8s-1.742-3.96-4.593-3.485-3.01 3.802-5.07 3.485c-2.058-.317-2.533-1.743-2.692-1.584-.158.158-1.9 3.326-1.9 4.118 0 .792-5.545-1.109-5.07 3.01.476 4.118 3.168 3.96 3.01 3.643z"/><g fill="none"><path d="M920.753 207.997s-14.098 9.029-13.78 12.197m16.948-10.613s-3.168 3.485-3.326 3.485m7.603.317s-6.97 5.702-5.86 9.346m-27.087-15.524s-2.06 4.277-1.584 5.702c.475 1.426 3.96 6.812 4.435 10.138.475 3.326 0 5.703 0 5.703m-6.494-13.623s.634 5.069 1.584 6.02c.95.95 3.485 5.226 3.802 6.969m-6.653 8.078s4.118 2.06 7.92-5.86m6.177-5.544c-.158 0-3.01 7.762 2.06 10.613 5.068 2.851 8.87 2.534 11.087 1.742 2.218-.792 4.594-2.217 4.594-2.217m-19.958-.634s.317 10.455 15.682 20.75m-15.049-10.93s-.158 9.187 5.86 13.306m-9.028-24.077s-4.594 13.622-8.237 15.048m6.812-5.069s-.158 9.82-1.426 13.306m-1.267 2.376s3.168 3.96 6.653 3.643c3.485-.316 4.91-4.435 7.286-3.801 2.376.633 4.594 2.534 10.138 2.059m-7.92 4.118s0 8.078 1.426 8.87.792 8.237.792 8.237M892.4 261.22s-.158 7.603-1.109 10.296c-.95 2.693-2.851 7.287-2.534 11.247m-6.02 4.434c.792-.317 3.485-2.693 3.485-2.693m1.426 1.743s-6.811 29.146-4.91 46.57m6.494-45.144s-3.485 21.86-1.9 25.978m.157-26.612c.158 0 13.306.95 13.306.95m1.901-1.742s3.643 1.9 8.712 1.584m-10.296 9.029s-.634 37.383-1.584 45.62m21.067-37.067s4.118 32.789 6.494 35.798m-14.414-31.679s2.534 28.987 3.96 31.522m-39.917 10.137s4.91-1.584 9.345-6.336c5.07 6.811 12.831.317 12.831.317s12.038 8.237 17.424-.95c8.237 5.385 12.355-.793 12.355-.793s3.01 4.594 5.228 4.119m-13.148 3.168s6.178 28.987 15.365 37.224m-47.203-40.234s.792 24.235 2.218 41.342m-3.327-13.938s-.792 15.84-1.743 16.949m-7.603 1.583s1.742 6.811 10.454.475 8.87 2.376 9.188 3.327c.316.95 1.742 7.761 5.068 2.059m6.971-9.345s-1.426 14.097 11.088 3.801c12.514-10.295 14.573-.158 14.89 3.01m-25.82-230.156s-1.109 6.97 6.336 6.336c-.95 3.802 1.9 5.069 1.9 5.069m5.545 4.277c.159 0 3.326 2.06-.158 4.594m-10.613.95s1.584 1.9 3.326 1.426c1.743-.475 4.594 1.742 4.594 1.742s2.376.792 2.693.317m-20.276 2.534s5.386 2.06 8.87-6.494m-18.849-2.535l3.168.158m-38.312 99.737l.248 6.942m-6.758-7.457s4.45 7.443 4.079 11.41"/><path stroke-linejoin="round" d="M894.142 188.197h2.851l-2.534 1.109m17.206 110.656s3.328-.35 3.223 5.206c2.125-6.902 6.446-7.066 6.446-7.066"/><path stroke-width="1.699" stroke-linejoin="round" d="M898.102 179.327c.475 0 2.217-.634 2.534-.158.317.475-1.9.792-2.534.158z"/></g></g><g fill="none" stroke="#000" stroke-width="1.887"><path fill="#ffc72c" d="M900.299 458.579c66.898-1.858 110.102-50.173 109.638-50.638-.465-.464 8.827-13.472 16.26-11.614 7.433 1.858 18.118 23.693 31.126 28.338 6.504 10.22-1.859 19.512-4.646 21.37-2.787 1.859-15.33 6.97-17.189-.464-1.858-7.433-5.575-6.04-5.575-6.04s-59.464 58.071-128.22 55.749c-71.078.464-129.614-55.748-129.614-55.748l-5.11 5.574s-5.575 6.04-8.362 5.575c-2.787-.464-14.866-8.362-15.795-16.26-.93-7.897 7.433-13.007 7.433-13.007s20.44-15.796 22.764-24.158c4.645-4.646 13.472 3.252 13.472 3.252s53.89 61.787 113.819 58.07z"/><path d="M748.855 422.646s5.528-1.474 7.555.83c2.027 2.302 15.938 15.938 15.938 15.938"/><path d="M761.477 429.095l-5.528 4.146s13.912 2.763 10.78 11.885m285.611-22.941s-2.764-1.474-7.094 1.75c-4.33 3.225-15.294 15.479-15.294 15.479"/><path d="M1039.9 428.727l5.989 4.607s-12.53.829-9.766 12.714"/></g><path d="M819.664 437.396c-.362 1.052-1.321-.029-2.117.183-2.094.079-3.834 1.445-5.628 2.377l-18.407 10.731c-.62-.203-.473-.704-.322-1.206 1.636-7.663 3.335-15.313 4.925-22.986.264-1.342.69-3.01-.606-3.986-.551-.376.301-1.14.655-.446l9.41 6.71c-.302.885-.837.265-1.372-.094-1.303-1.253-2.873-.095-2.835 1.488-1.119 5.052-2.21 10.11-3.318 15.165 4.165-2.476 8.378-4.874 12.506-7.412 1.474-.656 2.56-2.631 1.029-3.855-.582-.343-1.544-1.28-.585-1.422l6.665 4.753zm6.611 31.986c-.168.572-.466.698-.922.286l-11.074-6.056c.167-.572.466-.698.922-.286 1 .68 2.634.938 3.363-.255 1.466-2.35 2.701-4.839 4.06-7.253 1.845-3.42 3.769-6.8 5.559-10.248.856-1.222-.1-2.728-1.298-3.251-.405-.217-1.001-.378-.49-.864.247-.304.772.345 1.13.423l10.617 5.806c-.168.572-.467.698-.923.286-1-.68-2.642-.94-3.38.245-1.465 2.351-2.7 4.84-4.058 7.254-1.847 3.42-3.77 6.8-5.56 10.248-.855 1.23.097 2.747 1.314 3.26l.74.405zm42.609-9.994l-3.007 8.443c-1.232-.13-.413-1.708-.796-2.54-.44-3.8-3.243-7.347-7.06-8.16-2.92-.795-6 .708-7.715 3.082-2.59 3.537-4.165 7.853-4.387 12.235-.148 2.49.995 5.046 3.17 6.357 1.723 1.136 3.817 1.593 5.863 1.536.722-2.13 1.586-4.215 2.187-6.381.247-1.41-1.21-2.26-2.375-2.583-.181-.41.27-.912.745-.472l11.037 3.932c-.132 1.358-1.667-.109-2.517.433-1.36.522-1.476 2.157-1.991 3.34l-1.345 3.775c-4.946.35-10.044-.696-14.348-3.186-4.185-2.637-7.015-7.728-6.192-12.722.638-4.274 3.301-8.277 7.242-10.165 3.62-1.924 8.037-1.916 11.796-.392 2.055.693 3.83 1.964 5.42 3.41.964 1.3 2.829 1.303 3.62-.175l.653.233m17.952 28.813c-.022.449-.072.86-.61.61l-12.638-1.915c.023-.449.073-.86.61-.61 1.096.224 2.564.206 3.093-.976.535-1.688.642-3.476.95-5.215.723-4.856 1.495-9.706 2.186-14.567.268-1.048-.09-2.233-1.175-2.64-.614-.29-1.299-.334-1.96-.444.023-.45.073-.86.61-.61l12.638 1.915c-.022.449-.072.86-.61.609-1.101-.227-2.563-.197-3.111.974-.535 1.688-.642 3.476-.95 5.215-.723 4.856-1.495 9.706-2.186 14.567-.266 1.045.094 2.254 1.185 2.648.62.282 1.305.33 1.968.44zm34.118-8.287l-.5 8.962-22.546 1.15c-.138-.548.01-.84.606-.725 1.133.029 2.593-.452 2.737-1.752.1-2.227-.15-4.455-.224-6.681-.243-4.442-.419-8.887-.71-13.325.125-1.322-1.066-2.301-2.32-2.261-.398-.202-1.475.415-1.367-.31-.182-.589.635-.276.98-.388l12.541-.64c.138.549-.009.84-.606.725-1.158-.006-2.665.276-2.985 1.584-.183 1.926.086 3.864.137 5.795.254 4.625.434 9.256.74 13.877-.094 1.21.877 2.28 2.13 2.047 1.83-.091 3.7-.013 5.487-.473 2.507-.667 3.874-3.15 4.56-5.47.45-.627.078-2.191 1.071-2.101l.269-.014m17.577-21.695c-.598.01-.334.773-.486 1.173-.998 7.476-1.944 14.96-2.976 22.432-.251 1.655-.664 3.588-2.297 4.425-.603.214-.072 1.162.48.635l7.529-2.259c-.095-1.268-1.54-.116-2.35-.339-1.727-.002-1.984-2.1-1.744-3.41l.313-2.657 8.625-2.594c1.1 1.386 2.314 2.69 3.31 4.153.747 1.41-1.07 2.055-2.125 2.327-.493.052-.063 1.085.387.605l11.334-3.397c-.034-1.283-1.677-.08-2.369-.937-2.121-1.594-3.644-3.812-5.4-5.775l-12.231-14.382zm-.063 8.969l6.125 7.312-7.343 2.188 1.218-9.5zm38.632-25.809l3.259 6.06c-1.014.872-1.541-1.149-2.46-1.457-1.507-1.268-3.779-1.508-5.457-.432-.687.357-1.365.73-2.048 1.095 3.277 6.068 6.509 12.16 9.815 18.212.511 1.552 2.418 1.843 3.648.968.476-.345.906-.54 1.06.188-1.664.965-3.482 1.882-5.205 2.828l-6.509 3.5c-.51-.53-.169-.803.407-1.006 1.542-.573 2.135-2.445 1.102-3.763-3.206-6.025-6.46-12.026-9.685-18.042-1.796.995-4.09 1.892-4.543 4.132-.51 1.41.24 3.135.24 4.334-.553.574-.698-.209-.954-.623l-2.785-5.18L977.1 441.38zm15.251-9.042l6.233 8.263c1.445-.919 2.652-2.56 2.218-4.353.167-1.4-1.836-2.988-1.148-3.97.453-.281.72.767 1.095 1.044l7.118 9.436c-.928 1.057-1.6-1.098-2.583-1.331-1.387-.986-3.333-1.477-4.82-.397-1.11.354-1.058.977-.303 1.662 1.67 2.156 3.22 4.41 5.003 6.475 1.091 1.059 2.448-.048 3.372-.784 2.388-1.626 4.485-4.165 4.362-7.21.156-1.33-.679-2.814-.67-3.935.535-.713.685.393.992.755l3.366 6.08-17.544 13.233c-.761-.54-.012-.857.468-1.23 1.638-1.012 1.117-3.078-.088-4.213-3.748-4.936-7.43-9.924-11.226-14.823-.972-1.318-2.765-.624-3.745.295-.407.577-1.044-.579-.273-.664l16.543-12.479 4.528 6.003c-1.049 1.064-1.978-1.307-3.175-1.431-2.173-1.131-4.757-.22-6.553 1.21-1.074.764-2.114 1.575-3.17 2.364"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="1488.189 992.126 1275 850"><path fill="#FFF" d="M1488.189 992.126h1275v850h-1275z"/><path fill="#369443" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1885.935 1567.623s-1.033-6.99 12.242-12.116c13.275-5.126 14.307-24.232 11.652-36.97 0 0-6.932 12.116-15.339 16.155 0 0-13.717 7.146-14.345 20.795 0 0-.109 4.99-1.142 8.873-.565 2.126-6.637-17.087 4.867-31.377 11.872-14.748 15.192-26.717 5.752-50.017 0 0-.885 14.135-10.177 22.213-9.292 8.077-10.474 8.699-10.325 27.96 0 0 .148 6.679-3.392 8.854 0 0-7.227-10.563-9.145-17.553-1.917-6.99-2.802-9.941 5.457-18.019 0 0 26.461-17.1 7.375-54.522 0 0-.59 12.893-9.735 20.504-9.145 7.611-8.407 12.737-8.85 25.941-.443 13.203-1.328 12.271-2.36 14.135 0 0-16.814-30.911-3.835-47.377s20.207-19.883 5.9-50.483c0 0 .635 15.689-10.818 23.456-11.453 7.767-8.798 25.941-8.798 25.941s.737 6.835-1.622 11.805c0 0-16.202-31.601-.737-48.62 13.127-14.446 14.012-24.543 6.932-45.047 0 0-.885 9.476-8.112 14.601-7.227 5.126-12.979 10.252-11.652 29.979 0 0 .59 13.825-1.18 17.708 0 0-6.785-12.582-8.702-20.815-1.917-8.233-2.655-13.048 2.36-21.281 5.015-8.233 24.927-31.844 1.18-65.861 0 0-.737 11.029-6.785 20.97-6.047 9.941-3.245 21.747-1.917 30.756s-3.097 17.708-3.097 17.708-10.325-18.951-8.112-40.697c2.212-21.747-6.637-39.61-26.697-52.503 0 0-14.602 33.863 5.31 51.105 0 0 16.962 16.776 21.239 37.125 0 0-12.832-1.243-24.484-23.921-11.652-22.679-35.841-19.106-37.464-19.261 0 0 3.983 35.105 41.151 45.047 0 0 23.747 4.039 28.172 21.436 0 0 3.982 11.961 5.605 18.329 0 0-7.522-2.951-14.455-13.203-6.932-10.252-6.047-11.495-29.499-13.825 0 0-9.44-1.088-14.455-7.767 0 0 9.882 37.125 35.251 36.814 0 0 23.157-2.485 36.136 27.96 0 0-2.507-1.553-5.9-3.884-3.392-2.33-11.947-6.679-28.909-4.66s-21.682-.777-25.959-2.175c0 0 17.109 31.377 41.299 22.057 24.189-9.32 35.872 24.665 36.136 25.319 0 0-3.245-2.486-7.522-6.68-4.277-4.194-13.157-9.366-29.942-4.039 0 0-12.094 4.66-24.337.932 0 0 11.8 22.834 39.381 18.951 27.581-3.884 34.514 20.349 34.514 20.349s-3.687-2.175-6.195-4.194c-2.507-2.019-11.8-7.301-31.711-1.398-19.912 5.903-27.139-.932-27.139-.932s11.062 20.193 32.301 22.523c0 0 11.8-.155 16.814-2.019 5.015-1.864 18.289-4.815 27.434 8.388 0 0-2.507.466-6.342-1.243 0 0-14.159-5.126-24.927 3.883 0 0-9.587 9.786-23.157 7.922 0 0 17.552 17.087 45.428 2.641 0 0 9.44-6.835 16.372-1.553 6.934 5.285 23.011-5.123 23.011-5.123z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2041.1 1146.669s-3.238-28.908 19.863-31.688c24.091-2.9 35.989 2.175 35.989 2.175l10.816 21.229-3.737 14.291-14.946 6.835s2.557-21.954-17.568-22.411c-5.099-.116-8.096 1.906-16.161.626-8.111-1.288-12.449 7.625-14.256 8.943z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2203.639 1218.226c-3.442 4.453-17.208 6.006-17.208 6.006s14.159 10.873 20.256 26.407c6.097 15.533-164.113.103-164.113.103s7.375-5.281 12.39-15.223c0 0-7.522 2.796-15.044-4.66 0 0 5.605 1.864 12.979-9.32 0 0 10.915-13.98 18.584-17.708 0 0-3.54 2.175-12.094-2.485 0 0 14.75-1.864 20.059-27.028 0 0 .885-5.592 6.49-13.669 5.605-8.078 4.425 1.553 14.75-10.874 0 0 4.72-8.802.59-14.187s-8.555-3.417-17.208-8.595c-8.653-5.178-12.488-8.078-9.538-16.051 2.95-7.974 10.62-6.731 11.701-6.731 1.082 0 1.672-6.938 11.112-11.702s34.514-2.693 38.25-.621c3.737 2.071 18.879 6.524 27.729 28.892 8.85 22.368-2.36 30.756 21.731 64.515 0 0-9.636 2.071-15.831.207 0 0 12.487 22.161 34.415 32.724z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2098.328 1123.835c-19.617-.932-12.094-19.624-12.094-19.624"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2132.399 1126.398s-3.466-1.631-6.398-5.514c-4.115-5.449-13.292-8.077-18.233-2.951 0 0-5.015 5.592-9.44 5.903 0 0 5.015 1.553 8.481 4.738 3.466 3.184 7.08 5.514 12.242 4.815 5.162-.699 5.974-3.417 8.407-5.048 2.434-1.633 4.941-1.943 4.941-1.943z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2259.981 1405.765s18.29 14.912 33.629 0c0 0 6.195 7.456 18.584 5.281 12.39-2.175 14.455-8.699 15.635-12.427 0 0 10.718 6.253 19.764 1.314 9.047-4.939 9.047-12.394 9.047-12.394s15.733 3.101 23.796-7.562c8.063-10.663 3.147-21.226-1.18-22.469 0 0 17.01 4.456 21.633-10.148 3.933-12.427-4.917-18.847-4.917-18.847s35.841-.172 50.542-11.391c0 0 12.193-7.663 4.917-15.74 0 0 32.252-5.178 40.315-18.019 0 0 3.54-3.521 2.36-9.734 0 0-.197-3.521-3.737-3.728 0 0 36.78-5.681 47.395-17.812 0 0 5.113-5.592 2.557-13.048 0 0-.541-1.968-1.426-3.288 0 0 33.481-7.068 50-21.98 0 0 9.536-8.496 4.62-19.887 0 0 55.951-15.322 42.972-39.968 0 0 26.156-8.492 17.896-32.102 0 0 21.633-10.977 12.193-28.374-9.034-16.65-36.775 2.899-69.624 11.988 0 0-88.884 27.985-132.656 35.432l-124.372 185.167-72.568 27.96-7.375 51.776z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2259.097 1269.382s11.657-8.751 32.449 1.553c0 0 7 4.82 12.507-.461 4.601-4.413 5.032-12.549-1.297-17.247-15.487-11.495-21.24-45.979 2.36-60.269 0 0 34.219-20.297 159.696-52.229 0 0 10.513-2.915 16.118-1.517 6.172 1.539 10.423 6.835 11.295 11.366 0 0 5.615 15.956-13.262 25.086 0 0-8.522 3.9-17.306 6.421 0 0 9.648-2.086 13.766 7.456 3.933 9.113-1.77 18.433-19.469 24.439 0 0-4.787 1.863-11.603 3.521 0 0 15.143 4.349 7.866 16.569 0 0-6.49 12.841-29.401 15.119 0 0 17.109 1.864 5.015 18.122 0 0-5.31 8.906-22.026 12.22 0 0 12.685.414 6.293 11.805-6.391 11.391-21.432 17.812-36.232 18.847 0 0-8.016.414-13.621-.829 0 0 14.061 7.042 5.801 18.847 0 0-6.096 8.388-21.337 7.974 0 0 3.956 13.183-7.227 18.174-8.702 3.883-15.929-2.33-15.929-2.33s2.95 14.135-9.735 19.106c0 0-6.342 3.262-15.782 0 0 0-7.227 16.155-32.891 4.815-25.666-11.338-6.048-106.558-6.048-106.558z"/><path fill="none" stroke="#010002" stroke-width="3" d="M2654.383 1121.815s-40.315 23.342-165.869 46.684"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M1934.384 1534.589s-14.946 25.682-33.039 26.096c0 0-31.122-3.788-39.922 4.349-6.136 5.675-12.39 10.356-14.946 24.854s4.916 17.605 6.686 18.226c0 0 1.377 10.356 11.603 7.663 0 0 .59 10.77 18.683 5.592s25.566-3.521 29.106-21.54c3.54-18.019 6.808-17.724 10.03-19.883 4.327-2.9 12.455-5.64 18.486-9.113 5.418-3.12 26.156-13.67 33.235-14.498 7.08-.828 5.506-24.646 5.506-24.646h-18.289l-8.85-13.048-18.289 15.948z"/><path fill="none" stroke="#010002" stroke-width="3" d="M2636.487 1153.918s-109.115 35.594-159.93 39.968m116.958 0s-64.011 20.094-138.971 32.774m84.35 9.093s-72.322 17.372-106.849 20.255"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2490.368 1269.9s-61.173 12.758-76.672 14.292"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2421.511 1362.939l3.063 97.066h0l-17.139-9.943h0l-28.534 123.179-11.773-8.458 27.776-118.011h0l-19.368.356h0z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2451.43 1301.381s-44.642 6.783-62.409 6.42m6.951 20.712s-18.05-.848-26.724-2.288m10.007 31.284s-15.34-4.142-24.386-9.941m1.771 39.972s-11.8-4.556-17.503-16.983m-11.308 28.063s-9.145-8.181-9.735-17.294"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2532.37 1406.102l-40.565 87.218h0l-10.701-17.253h0l-85.643 101.197-9.273-10.381 85.318-99.916h0l-17.259-9.262h0z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2293.61 1405.765s3.424-2.953 1.082-15.792"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2495.369 1342.078l-20.896 94.594h0l-14.112-14.276h0l-76.651 147.389-11.812-6.895 77.167-147.088h0l-18.795-4.935h0z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2298.035 1371.126s1.77-3.676 1.18-9.475"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M1991.986 1405.766s-18.289 14.912-33.629 0c0 0-6.195 7.456-18.584 5.281s-14.455-8.699-15.635-12.427c0 0-10.718 6.253-19.764 1.314-9.047-4.939-9.047-12.395-9.047-12.395s-15.733 3.101-23.796-7.562c-8.063-10.663-3.147-21.226 1.18-22.469 0 0-17.01 4.456-21.633-10.148-3.933-12.427 4.917-18.847 4.917-18.847s-35.841-.172-50.542-11.391c0 0-12.193-7.663-4.916-15.74 0 0-32.252-5.178-40.315-18.019 0 0-3.54-3.521-2.36-9.734 0 0 .197-3.521 3.736-3.728 0 0-36.78-5.681-47.395-17.812 0 0-5.113-5.592-2.557-13.048 0 0 .541-1.968 1.426-3.288 0 0-33.481-7.068-50.001-21.98 0 0-9.536-8.496-4.62-19.887 0 0-55.952-15.322-42.972-39.968 0 0-26.156-8.492-17.896-32.102 0 0-21.633-10.977-12.193-28.374 9.034-16.65 36.776 2.899 69.624 11.988 0 0 88.884 27.985 132.656 35.432l124.372 185.167 72.568 27.96 7.376 51.777z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2362.54 1187.263s-20.649 8.285-27.532 19.676c-6.883 11.391-2.35 22.462 0 28.814 1.181 3.192 15.733 31.248-1.377 51.545"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M1992.871 1269.383s-11.657-8.751-32.449 1.553c0 0-7 4.82-12.506-.461-4.601-4.413-5.033-12.549 1.297-17.247 15.487-11.495 21.239-45.979-2.36-60.269 0 0-34.219-20.297-159.696-52.229 0 0-10.513-2.915-16.118-1.517-6.172 1.539-10.423 6.835-11.295 11.366 0 0-5.615 15.956 13.262 25.086 0 0 8.522 3.9 17.306 6.421 0 0-9.648-2.086-13.766 7.456-3.933 9.113 1.77 18.433 19.469 24.439 0 0 4.787 1.863 11.603 3.521 0 0-15.143 4.349-7.866 16.569 0 0 6.49 12.841 29.401 15.119 0 0-17.109 1.864-5.015 18.122 0 0 5.31 8.906 22.026 12.22 0 0-12.685.414-6.293 11.805 6.391 11.391 21.432 17.812 36.233 18.847 0 0 8.016.414 13.621-.828 0 0-14.061 7.042-5.801 18.847 0 0 6.096 8.388 21.338 7.974 0 0-3.956 13.184 7.227 18.174 8.702 3.883 15.929-2.33 15.929-2.33s-2.95 14.135 9.735 19.106c0 0 6.342 3.262 15.782 0 0 0 7.227 16.155 32.891 4.815 25.662-11.34 6.045-106.559 6.045-106.559z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2362.245 1309.355s-.098-.104-7.375-2.382m50.935-27.442s-12.308 2.478-24.386 2.589m41.397-32.931s-14.455 1.45-28.024 1.243m49.558-32.931s-20.846 4.142-32.056 4.349m49.362-39.765s-25.709 7.338-44.839 9.941m-42.478 15.119s18.486 17.19-3.737 33.138c0 0 9.243 14.498-9.243 29.617"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M1994.394 1416.2s-3.766 20.218-33.627 45.666c0 0-23.04 20.324-22.45 43.727.601 23.832-4.13 26.51-13.176 34.588 0 0 18.683 1.45 27.729-10.977 0 0-.393 20.711-3.147 22.575 0 0 5.859.374 14.356-8.906 0 0 5.113-5.385 9.833-7.456 0 0-5.506 14.291-1.18 27.546 0 0 1.377-5.178 8.653-7.456 0 0 13.176-2.693 18.29-21.747 0 0 3.343-12.634 23.992-23.818 0 0 23.402-8.827 22.813-20.361s-52.086-73.381-52.086-73.381z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2366.276 1277.046s2.753 27.646-31.072 27.648c0 0 6.49 24.647-26.156 23.819 0 0-3.737 19.675-27.336 15.74"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2317.618 1534.589s14.946 25.682 33.039 26.096c0 0 31.122-3.788 39.922 4.349 6.136 5.675 12.39 10.356 14.946 24.854 2.557 14.498-4.917 17.604-6.687 18.226 0 0-1.377 10.356-11.603 7.663 0 0-.59 10.77-18.683 5.592s-25.566-3.521-29.106-21.54c-3.54-18.019-6.808-17.724-10.03-19.883-4.327-2.9-12.455-5.64-18.486-9.113-5.418-3.12-26.156-13.669-33.235-14.498-7.08-.828-5.507-24.646-5.507-24.646h18.289l8.85-13.048 18.291 15.948z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2257.608 1416.2s3.766 20.218 33.627 45.666c0 0 23.04 20.324 22.45 43.727-.601 23.832 4.13 26.51 13.176 34.588 0 0-18.683 1.45-27.729-10.977 0 0 .393 20.711 3.147 22.575 0 0-5.86.374-14.356-8.906 0 0-5.113-5.385-9.833-7.456 0 0 5.506 14.291 1.18 27.546 0 0-1.377-5.178-8.653-7.456 0 0-13.176-2.692-18.29-21.747 0 0-3.343-12.634-23.992-23.818 0 0-23.403-8.827-22.813-20.361.59-11.534 52.086-73.381 52.086-73.381z"/><path fill="none" stroke="#010002" stroke-width="3" d="M2333.695 1560.685s5.352 1.191 16.962 0"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2383.303 1575.183s16.323-2.485 15.536 32.931m-25.369-24.854s14.75-1.864 13.766 32.517"/><path fill="none" stroke="#010002" stroke-width="3" d="M2231.088 1500.416s7.08 1.45 11.997 7.042c4.916 5.592 14.356 4.556 14.356 4.556s-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m16.889-9.807s7.08 1.45 11.996 7.042 14.356 4.556 14.356 4.556-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m-7.128 56.562s6.182 1.266 10.474 6.149c4.293 4.882 12.535 3.978 12.535 3.978s-4.465-3.617-6.01-12.658c-1.545-9.042-6.525-11.754-6.525-11.754"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2149.136 1676.875s5.361 23.657 23.993 21.747c0 0 13.176-1.243 12.193-23.197 0 0 19.469 10.356 22.616-15.326 0 0 17.699 4.142 17.503-19.883 0 0 16.52 2.9 14.553-18.433 0 0 17.896 4.763 17.896-15.326 0 0 41.888-6.947-45.428-86.573l-77.877 46.393 14.551 110.598z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2140.483 1570.709s12.979 11.516 22.222-5.675c0 0 12.586-.621 14.553-10.148 0 0 10.227-1.036 12.193-10.77 0 0 13.963-1.45 13.57-13.255 0 0 25.385-1.96.008-30.7-25.377-28.741-68.446 47.684-68.446 47.684l5.9 22.864z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2185.322 1675.425s-1.967-41.63-38.047-101.278m60.663 85.952s5.605-24.025-45.232-95.064c0 0 5.9-16.983-12.193-27.857m74.927 103.038s1.573-25.993-48.181-85.33c0 0 4.395-15.326-13.634-27.546m76.368 94.443s-1.868-26.303-50.542-77.667c0 0 2.435-15.74-15.007-25.475m83.445 87.816s-3.54-30.031-54.868-75.596c0 0 1.77-11.805-15.34-23.818"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2102.865 1676.875s-5.361 23.657-23.992 21.747c0 0-13.176-1.243-12.193-23.197 0 0-19.469 10.356-22.616-15.326 0 0-17.699 4.142-17.503-19.883 0 0-16.52 2.9-14.553-18.433 0 0-17.896 4.764-17.896-15.326 0 0-41.888-6.947 45.428-86.573l77.877 46.393-14.552 110.598z"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2111.519 1570.709s-12.979 11.516-22.223-5.674c0 0-12.586-.621-14.552-10.148 0 0-10.227-1.036-12.193-10.77 0 0-13.963-1.45-13.57-13.255 0 0-25.385-1.96-.008-30.7 25.377-28.741 68.446 47.683 68.446 47.683l-5.9 22.864z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2066.68 1675.425s1.966-41.63 38.047-101.278m-60.663 85.952s-5.605-24.025 45.232-95.064c0 0-5.9-16.983 12.193-27.856"/><path fill="#F4C53D" stroke="#010002" stroke-width="3" d="M2126.001 1563.585c12.582 0 26.839 78.599 23.139 125.953-1.344 17.198-10.557 31.245-23.139 31.245s-21.795-14.047-23.139-31.245c-3.7-47.354 10.557-125.953 23.139-125.953"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2026.561 1640.216s-1.573-25.993 48.182-85.33c0 0-4.395-15.326 13.634-27.546m-76.369 94.443s1.868-26.303 50.542-77.667c0 0-2.435-15.74 15.007-25.475"/><ellipse fill="#F4C53D" stroke="#010002" stroke-width="3" cx="2126.001" cy="1562.963" rx="17.41" ry="25.785"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1994.112 1606.457s3.54-30.031 54.868-75.596c0 0-1.77-11.805 15.34-23.818"/><path fill="#FFF" stroke="#010002" stroke-width="3" d="M2126.001 1557.331s147.66-65.433 148.029-216.805h-296.058c.369 151.372 148.029 216.805 148.029 216.805z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2046.293 1340.525h22.774m-68.321 0h22.774m68.321 0h22.773"/><path fill="#A60032" stroke="#010002" stroke-width="3" d="M2000.746 1340.525v96.719s11.31 22.432 22.774 36.5v-133.219h-22.774 0zm45.547 0v159.435s14.242 13.965 22.774 20.697v-180.132h-22.774zm45.548 0v197.076s16.248 10.494 22.774 13.937v-211.013h-22.774z"/><path fill="none" stroke="#010002" stroke-width="3" d="M2000.746 1340.525h22.774m22.773 0h22.774m22.774 0h22.773"/><path fill="#A60032" stroke="#010002" stroke-width="3" d="M2251.256 1340.525v96.719s-11.31 22.432-22.773 36.5v-133.219h22.773zm-45.548 0v159.435s-14.242 13.965-22.774 20.697v-180.132h22.774zm-45.547 0v197.076s-16.248 10.494-22.774 13.937v-211.013h22.774z"/><path fill="none" d="M2281.978 1703.708l-13.717 16.776m-17.005-18.639l37.801 34.948"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2364.725 1614.728l-5.742 23.475h0l15.719 15.659h0l-22.216 93.839-19.76-26.542-29.279 13.665 22.216-93.839h0l20.597-5.743h0l5.348-23.433s6.23-2.44 13.117 2.919z"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2369.988 1599.248l-11.315 21.11h0l11.335 19.41h0l-44.521 84.586-12.564-31.023-31.64 5.219 44.521-84.586h0l21.306.067h0l10.924-21.177c.001 0 7.948-.017 11.954 6.394z"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2371.898 1605.387l-30.096 38.235h0l6.898 21.598h0l-61.447 71.871-5.615-33.205-31.943-2.411 61.447-71.871h0l20.746 5.113h0l31.924-40.59c-.001.001 8.561 4.253 8.086 11.26z"/><path fill="none" stroke="#010002" stroke-width="3" d="M1597.585 1121.816s40.315 23.342 165.869 46.684m-147.973-14.582s109.115 35.594 159.93 39.968m-116.958 0s64.011 20.094 138.971 32.774m-84.351 9.093s72.322 17.371 106.849 20.255"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1761.599 1269.901s61.173 12.758 76.672 14.292m-37.733 17.189s44.642 6.783 62.409 6.42m-6.951 20.711s18.05-.848 26.724-2.288m-10.008 31.284s15.34-4.142 24.386-9.941m-1.77 39.972s11.8-4.556 17.503-16.983m11.308 28.064s9.145-8.181 9.735-17.294m24.484 24.439s-3.424-2.953-1.082-15.792m-3.343-18.848s-1.77-3.676-1.18-9.475m-63.325-174.388s20.649 8.284 27.532 19.675c6.883 11.391 2.35 22.462 0 28.814-1.181 3.192-15.733 31.248 1.377 51.545m-28.614 22.058s.098-.104 7.375-2.382m-50.935-27.442s12.308 2.478 24.386 2.589m-41.397-32.931s14.455 1.45 28.024 1.243"/><path fill="#369443" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1882.877 1610.513s-.442-12.581 15.486-13.513l46.901 65.237s-1.77 4.194-23.008 3.728c0 0-2.249-.015-3.429 2.47-1.812 3.815-35.95-57.922-35.95-57.922z"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1807.618 1217.501s20.846 4.142 32.056 4.349m-49.362-39.765s25.709 7.338 44.839 9.941m42.478 15.12s-18.486 17.19 3.736 33.138c0 0-9.243 14.498 9.243 29.617m-4.916 7.146s-2.753 27.646 31.072 27.648c0 0-6.49 24.647 26.156 23.819 0 0 3.736 19.676 27.336 15.74"/><path fill="none" stroke="#010002" stroke-width="3" d="M1918.258 1560.685s-5.352 1.191-16.962 0"/><path fill="none" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1868.651 1575.183s-16.323-2.485-15.536 32.931m25.369-24.854s-14.75-1.864-13.766 32.516"/><path fill="none" stroke="#010002" stroke-width="3" d="M2020.914 1500.415s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m-16.89-9.806s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m7.128 56.561s-6.182 1.266-10.474 6.148c-4.293 4.883-12.535 3.978-12.535 3.978s4.465-3.617 6.01-12.659c1.545-9.042 6.525-11.754 6.525-11.754"/><path fill="#162667" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M2274.03 1230.549s-72.456 37.901-148.029-3.107c-75.573 41.008-148.029 3.107-148.029 3.107v109.976h296.058v-109.976h0z"/><path fill="#0081C6" stroke="#010002" stroke-width="3" stroke-miterlimit="10" d="M1609.306 1515.748c7.175-2.929 12.342-5.756 12.32-13.412-.005-1.825-1.019-5.863-3.055-12.114l-48.177-147.24c-2.853-8.747-5.01-13.947-6.01-15.863-2.166-4.147-6.417-5.835-12.143-8.22h61.232c-6.652 3.143-12.716 5.639-12.659 12.691.022 2.693.779 6.49 2.341 11.393l36.907 115.541 36.871-115.541c1.562-4.903 2.369-8.7 2.343-11.393-.071-7.248-6.386-9.86-12.591-12.691h59.343c-5.426 2.174-9.848 3.878-12.12 8.22-1.002 1.916-3.157 7.116-6.009 15.863l-48.177 147.24c-2.038 6.25-2.775 10.357-3.056 12.258 0 0-2.217 9.312 12.32 13.267l-59.68.001h0zm1026.68-15.143v-166.709c0-2.884-.476-5.095-1.425-6.634-.951-1.537-5.09-5.969-10.995-8.364h55.175c-5.906 1.955-10.046 6.706-10.995 8.292-.951 1.586-1.425 3.821-1.425 6.706v166.709c0 2.981.491 5.264 1.476 6.85.983 1.586 5.039 5.458 10.944 8.292h-55.175c5.906-2.687 10.044-6.825 10.995-8.364.949-1.536 1.425-3.797 1.425-6.778z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-15 -10 30 20"><path fill="#DA251d" d="M-20-15h40v30h-40z"/><g id="b" transform="translate(0 -6)"><path id="a" fill="#FF0" transform="rotate(18)" d="M0 0v6h4"/><use xlink:href="#a" transform="scale(-1 1)"/></g><g id="c" transform="rotate(72)"><use xlink:href="#b"/><use xlink:href="#b" transform="rotate(72)"/></g><use xlink:href="#c" transform="scale(-1 1)"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 950 570"><path fill="#d21034" d="M0 0h950v285H0z"/><path fill="#009543" d="M0 285h950v285H0z"/><path d="M0 0l552.813 285L0 570z"/><path d="M0 234h950v102H0z"/><path d="M0 40.502L474.251 285 0 529.496z" fill="#fdce12"/><path fill="#fdce12" d="M0 270h950v30H0z"/><path d="M0 74.255L408.782 285 0 495.745z"/><path d="M115.481 339.524V372c28.253 0 83.7-21.65 83.7-91.356 0-69.706-59.144-82.644-76.835-82.644C104.656 198 50 210.674 50 267.706c0 57.032 53.6 62.313 64.161 62.313s50.167-9.506 45.679-52.28c0 12.146-13.73 37.758-42.511 37.758-28.78 0-46.734-21.388-46.734-42.51 0-21.124 17.426-49.376 47.79-49.376s52.543 26.931 52.543 54.128c0 27.196-21.386 61.785-55.447 61.785z" fill="#fdce12"/><g id="a" fill="#fdce12"><path d="M90.728 297.245l1.683 1.089s13.367-30.496 49.309-52.18c-4.555 2.475-28.615 14.456-50.992 51.091z" stroke="#fdce12"/><path d="M94.193 291.997s-4.158-8.515-.495-12.277c3.664-3.763 1.981 10 1.981 10l1.584-2.277s-2.476-10.397.297-12.575c2.772-2.178 1.386 10 1.386 10l1.683-2.178s-1.782-10.099.891-11.981c2.674-1.881.991 9.506.991 9.506l1.98-2.278s-1.485-9.604 1.782-11.881c3.268-2.278.396 9.109.396 9.109l2.178-2.376s-.99-8.813 1.783-10.793c2.772-1.98.396 8.317.396 8.317l1.98-2.079s-.594-8.218 2.079-10.099c2.674-1.882.198 7.822.198 7.822l2.08-1.981s-.495-8.218 2.871-9.802c3.366-1.584-.594 7.723-.594 7.723l2.277-1.98s.693-9.604 3.565-10.496c2.871-.891-1.287 8.516-1.287 8.516l2.079-1.684s1.089-8.218 4.257-9.208c3.169-.99-1.98 7.525-1.98 7.525l2.079-1.584s2.278-8.218 5.248-9.109c2.971-.891-3.069 7.723-3.069 7.723l1.98-1.386s3.267-7.427 5.941-7.922c2.673-.495-2.971 6.139-2.971 6.139l2.476-1.485s4.257-7.723 5.743-5.347c1.485 2.377-5.941 5.842-5.941 5.842l-2.476 1.386s9.011-4.257 10.1-2.079c1.089 2.178-12.377 3.565-12.377 3.565l-2.178 1.485s9.01-2.476 7.921-.198c-1.089 2.277-10 1.782-10 1.782l-2.08 1.485s9.01-2.178 7.822-.099c-1.188 2.079-10 1.881-10 1.881l-2.178 1.783s8.812-2.278 7.525.396c-1.288 2.673-11.288 2.574-11.288 2.574l-2.475 2.277s9.307-3.168 8.515-.693c-.792 2.476-11.387 3.763-11.387 3.763l-2.376 2.376s10-3.366 7.03-.297c-2.97 3.07-10.198 3.862-10.198 3.862l-2.872 3.465s9.902-5.941 8.515-2.574c-1.386 3.366-11.089 5.644-11.089 5.644l-1.98 2.376s8.911-5.149 8.02-2.277c-.891 2.871-10.397 5.94-10.397 5.94l-1.584 2.179s10.495-6.238 9.604-3.07c-.891 3.169-10.891 5.446-10.891 5.446l-1.287 1.98s9.703-5.544 9.802-2.871c.099 2.673-11.387 5.347-11.387 5.347l-.198-2.278z"/></g><use xlink:href="#a" transform="matrix(-1 0 0 1 238.5 0)"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 100"><path fill="#ED2939" d="M0 0h150v100H0z"/><path fill="#FFF" d="M0 0h40v40H0z"/><path fill="#002395" d="M0 0h20v40H0z"/><path fill="none" stroke="#FFF" d="M0 40h60V0"/><path fill="#FFF" d="M105 46L93 34h24zm-4 4L89 38v24zm4 4L93 66h24zm4-4l12-12v24z"/></svg>