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.
- package/.editorconfig +13 -0
- package/.eslintrc.json +90 -0
- package/README.md +25 -24
- package/angular.json +190 -0
- package/bun.lock +1998 -0
- package/package.json +48 -19
- package/projects/iss/.eslintrc.json +37 -0
- package/projects/iss/README.md +24 -0
- package/projects/iss/ng-package.json +10 -0
- package/projects/iss/package.json +17 -0
- package/projects/iss/src/components/controls/base/control.base.ts +77 -0
- package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
- package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
- package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
- package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
- package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
- package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
- package/projects/iss/src/components/controls/input/input.control.ts +95 -0
- package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
- package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
- package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
- package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
- package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
- package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
- package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
- package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
- package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
- package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
- package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
- package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
- package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
- package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
- package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
- package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
- package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
- package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
- package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
- package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
- package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
- package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
- package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
- package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
- package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
- package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
- package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
- package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
- package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
- package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
- package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
- package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
- package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
- package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
- package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
- package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
- package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
- package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
- package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
- package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
- package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
- package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
- package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
- package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
- package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
- package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
- package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
- package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
- package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
- package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
- package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
- package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
- package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
- package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
- package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
- package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
- package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
- package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
- package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
- package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
- package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
- package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
- package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
- package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
- package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
- package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
- package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
- package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
- package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
- package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
- package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
- package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
- package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/select/select.control.ts +261 -0
- package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
- package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
- package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
- package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
- package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
- package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
- package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
- package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
- package/projects/iss/src/components/outlet/outlet.ts +152 -0
- package/projects/iss/src/components/shared/hints.component.ts +38 -0
- package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
- package/projects/iss/src/events/event-handler.service.ts +47 -0
- package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
- package/projects/iss/src/events/load/load-event.service.ts +26 -0
- package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
- package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
- package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
- package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
- package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
- package/projects/iss/src/events/show/show-event.service.ts +11 -0
- package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
- package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
- package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
- package/projects/iss/src/public-api.ts +102 -0
- package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
- package/projects/iss/src/shared/classes/field-action.ts +28 -0
- package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
- package/projects/iss/src/shared/classes/field-config.ts +113 -0
- package/projects/iss/src/shared/classes/field-option.ts +9 -0
- package/projects/iss/src/shared/classes/field-validation.ts +15 -0
- package/projects/iss/src/shared/classes/form-field.ts +94 -0
- package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
- package/projects/iss/src/shared/constants/date.const.ts +18 -0
- package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
- package/projects/iss/src/shared/constants/provider.const.ts +7 -0
- package/projects/iss/src/shared/constants/regex.const.ts +1 -0
- package/projects/iss/src/shared/constants/validation.const.ts +115 -0
- package/projects/iss/src/shared/indexes/components.index.ts +27 -0
- package/projects/iss/src/shared/indexes/services.index.ts +11 -0
- package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
- package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
- package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
- package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
- package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
- package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
- package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
- package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
- package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
- package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
- package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
- package/projects/iss/src/shared/services/loader.service.ts +51 -0
- package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
- package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
- package/projects/iss/src/shared/tokens/field.token.ts +4 -0
- package/projects/iss/src/shared/tokens/host.token.ts +3 -0
- package/projects/iss/src/shared/tokens/language.token.ts +3 -0
- package/projects/iss/src/shared/tokens/url.token.ts +3 -0
- package/projects/iss/src/shared/types/iso2.type.ts +244 -0
- package/projects/iss/src/shared/types/validation.type.ts +3 -0
- package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
- package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
- package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
- package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
- package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
- package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
- package/projects/iss/src/validators/core.validator.ts +39 -0
- package/projects/iss/src/validators/file.validator.ts +100 -0
- package/projects/iss/src/validators/time.validator.ts +31 -0
- package/projects/iss/tsconfig.lib.json +13 -0
- package/projects/iss/tsconfig.lib.prod.json +9 -0
- package/projects/iss/tsconfig.spec.json +13 -0
- package/projects/iss/upgrade.scss +68 -0
- package/projects/playground/.eslintrc.json +37 -0
- package/projects/playground/public/favicon.ico +0 -0
- package/projects/playground/public/flags/ad.svg +282 -0
- package/projects/playground/public/flags/ae.svg +6 -0
- package/projects/playground/public/flags/af.svg +9 -0
- package/projects/playground/public/flags/ag.svg +15 -0
- package/projects/playground/public/flags/ai.svg +35 -0
- package/projects/playground/public/flags/al.svg +7 -0
- package/projects/playground/public/flags/am.svg +5 -0
- package/projects/playground/public/flags/ao.svg +19 -0
- package/projects/playground/public/flags/aq.svg +45 -0
- package/projects/playground/public/flags/ar.svg +66 -0
- package/projects/playground/public/flags/as.svg +225 -0
- package/projects/playground/public/flags/at.svg +4 -0
- package/projects/playground/public/flags/au.svg +32 -0
- package/projects/playground/public/flags/aw.svg +11 -0
- package/projects/playground/public/flags/ax.svg +11 -0
- package/projects/playground/public/flags/az.svg +11 -0
- package/projects/playground/public/flags/ba.svg +18 -0
- package/projects/playground/public/flags/bb.svg +11 -0
- package/projects/playground/public/flags/bd.svg +4 -0
- package/projects/playground/public/flags/be.svg +5 -0
- package/projects/playground/public/flags/bf.svg +14 -0
- package/projects/playground/public/flags/bg.svg +5 -0
- package/projects/playground/public/flags/bh.svg +4 -0
- package/projects/playground/public/flags/bi.svg +26 -0
- package/projects/playground/public/flags/bj.svg +5 -0
- package/projects/playground/public/flags/bl.svg +5 -0
- package/projects/playground/public/flags/bm.svg +374 -0
- package/projects/playground/public/flags/bn.svg +70 -0
- package/projects/playground/public/flags/bo.svg +3625 -0
- package/projects/playground/public/flags/bq.svg +5 -0
- package/projects/playground/public/flags/br.svg +92 -0
- package/projects/playground/public/flags/bs.svg +5 -0
- package/projects/playground/public/flags/bt.svg +487 -0
- package/projects/playground/public/flags/bv.svg +11 -0
- package/projects/playground/public/flags/bw.svg +5 -0
- package/projects/playground/public/flags/by.svg +15 -0
- package/projects/playground/public/flags/bz.svg +629 -0
- package/projects/playground/public/flags/ca.svg +7 -0
- package/projects/playground/public/flags/cc.svg +33 -0
- package/projects/playground/public/flags/cd.svg +5 -0
- package/projects/playground/public/flags/cf.svg +7 -0
- package/projects/playground/public/flags/cg.svg +5 -0
- package/projects/playground/public/flags/ch.svg +4 -0
- package/projects/playground/public/flags/ci.svg +5 -0
- package/projects/playground/public/flags/ck.svg +29 -0
- package/projects/playground/public/flags/cl.svg +14 -0
- package/projects/playground/public/flags/cm.svg +15 -0
- package/projects/playground/public/flags/cn.svg +11 -0
- package/projects/playground/public/flags/co.svg +5 -0
- package/projects/playground/public/flags/cr.svg +1332 -0
- package/projects/playground/public/flags/cu.svg +6 -0
- package/projects/playground/public/flags/cv.svg +24 -0
- package/projects/playground/public/flags/cw.svg +16 -0
- package/projects/playground/public/flags/cx.svg +24 -0
- package/projects/playground/public/flags/cy.svg +13 -0
- package/projects/playground/public/flags/cz.svg +5 -0
- package/projects/playground/public/flags/de.svg +5 -0
- package/projects/playground/public/flags/dj.svg +6 -0
- package/projects/playground/public/flags/dk.svg +5 -0
- package/projects/playground/public/flags/dm.svg +198 -0
- package/projects/playground/public/flags/do.svg +238 -0
- package/projects/playground/public/flags/dz.svg +5 -0
- package/projects/playground/public/flags/ec.svg +1292 -0
- package/projects/playground/public/flags/ee.svg +5 -0
- package/projects/playground/public/flags/eg.svg +125 -0
- package/projects/playground/public/flags/eh.svg +12 -0
- package/projects/playground/public/flags/er.svg +9 -0
- package/projects/playground/public/flags/es.svg +445 -0
- package/projects/playground/public/flags/et.svg +16 -0
- package/projects/playground/public/flags/eu.svg +28 -0
- package/projects/playground/public/flags/fi.svg +5 -0
- package/projects/playground/public/flags/fj.svg +203 -0
- package/projects/playground/public/flags/fk.svg +922 -0
- package/projects/playground/public/flags/flags.png +0 -0
- package/projects/playground/public/flags/flags@2x.png +0 -0
- package/projects/playground/public/flags/fm.svg +16 -0
- package/projects/playground/public/flags/fo.svg +11 -0
- package/projects/playground/public/flags/fonts.css +271 -0
- package/projects/playground/public/flags/fr.svg +5 -0
- package/projects/playground/public/flags/ga.svg +5 -0
- package/projects/playground/public/flags/gb-eng.svg +7 -0
- package/projects/playground/public/flags/gb-nir.svg +15 -0
- package/projects/playground/public/flags/gb-sct.svg +11 -0
- package/projects/playground/public/flags/gb-wls.svg +16 -0
- package/projects/playground/public/flags/gb.svg +15 -0
- package/projects/playground/public/flags/gd.svg +11 -0
- package/projects/playground/public/flags/ge.svg +17 -0
- package/projects/playground/public/flags/gf.svg +5 -0
- package/projects/playground/public/flags/gg.svg +8 -0
- package/projects/playground/public/flags/gh.svg +6 -0
- package/projects/playground/public/flags/gi.svg +69 -0
- package/projects/playground/public/flags/gl.svg +4 -0
- package/projects/playground/public/flags/gm.svg +7 -0
- package/projects/playground/public/flags/gn.svg +5 -0
- package/projects/playground/public/flags/gp.svg +5 -0
- package/projects/playground/public/flags/gq.svg +88 -0
- package/projects/playground/public/flags/gr.svg +4 -0
- package/projects/playground/public/flags/gs.svg +693 -0
- package/projects/playground/public/flags/gt.svg +317 -0
- package/projects/playground/public/flags/gu.svg +58 -0
- package/projects/playground/public/flags/gw.svg +13 -0
- package/projects/playground/public/flags/gy.svg +7 -0
- package/projects/playground/public/flags/hk.svg +17 -0
- package/projects/playground/public/flags/hm.svg +32 -0
- package/projects/playground/public/flags/hn.svg +10 -0
- package/projects/playground/public/flags/hr.svg +282 -0
- package/projects/playground/public/flags/ht.svg +1470 -0
- package/projects/playground/public/flags/hu.svg +5 -0
- package/projects/playground/public/flags/id.svg +4 -0
- package/projects/playground/public/flags/ie.svg +5 -0
- package/projects/playground/public/flags/il.svg +5 -0
- package/projects/playground/public/flags/im.svg +33 -0
- package/projects/playground/public/flags/in.svg +25 -0
- package/projects/playground/public/flags/io.svg +895 -0
- package/projects/playground/public/flags/iq.svg +12 -0
- package/projects/playground/public/flags/ir.svg +31 -0
- package/projects/playground/public/flags/is.svg +5 -0
- package/projects/playground/public/flags/it.svg +5 -0
- package/projects/playground/public/flags/je.svg +40 -0
- package/projects/playground/public/flags/jm.svg +9 -0
- package/projects/playground/public/flags/jo.svg +10 -0
- package/projects/playground/public/flags/jp.svg +4 -0
- package/projects/playground/public/flags/ke.svg +28 -0
- package/projects/playground/public/flags/kg.svg +7 -0
- package/projects/playground/public/flags/kh.svg +133 -0
- package/projects/playground/public/flags/ki.svg +54 -0
- package/projects/playground/public/flags/km.svg +13 -0
- package/projects/playground/public/flags/kn.svg +24 -0
- package/projects/playground/public/flags/kp.svg +16 -0
- package/projects/playground/public/flags/kr.svg +16 -0
- package/projects/playground/public/flags/kw.svg +6 -0
- package/projects/playground/public/flags/ky.svg +153 -0
- package/projects/playground/public/flags/kz.svg +49 -0
- package/projects/playground/public/flags/la.svg +5 -0
- package/projects/playground/public/flags/lb.svg +8 -0
- package/projects/playground/public/flags/lc.svg +6 -0
- package/projects/playground/public/flags/li.svg +79 -0
- package/projects/playground/public/flags/lk.svg +50 -0
- package/projects/playground/public/flags/lr.svg +15 -0
- package/projects/playground/public/flags/ls.svg +32 -0
- package/projects/playground/public/flags/lt.svg +5 -0
- package/projects/playground/public/flags/lu.svg +5 -0
- package/projects/playground/public/flags/lv.svg +4 -0
- package/projects/playground/public/flags/ly.svg +8 -0
- package/projects/playground/public/flags/ma.svg +4 -0
- package/projects/playground/public/flags/mc.svg +4 -0
- package/projects/playground/public/flags/md.svg +102 -0
- package/projects/playground/public/flags/me.svg +240 -0
- package/projects/playground/public/flags/mf.svg +5 -0
- package/projects/playground/public/flags/mg.svg +5 -0
- package/projects/playground/public/flags/mh.svg +18 -0
- package/projects/playground/public/flags/mk.svg +6 -0
- package/projects/playground/public/flags/ml.svg +5 -0
- package/projects/playground/public/flags/mm.svg +12 -0
- package/projects/playground/public/flags/mn.svg +12 -0
- package/projects/playground/public/flags/mo.svg +13 -0
- package/projects/playground/public/flags/mp.svg +2919 -0
- package/projects/playground/public/flags/mq.svg +5 -0
- package/projects/playground/public/flags/mr.svg +5 -0
- package/projects/playground/public/flags/ms.svg +59 -0
- package/projects/playground/public/flags/mt.svg +52 -0
- package/projects/playground/public/flags/mu.svg +6 -0
- package/projects/playground/public/flags/mv.svg +8 -0
- package/projects/playground/public/flags/mw.svg +24 -0
- package/projects/playground/public/flags/mx.svg +1129 -0
- package/projects/playground/public/flags/my.svg +12 -0
- package/projects/playground/public/flags/mz.svg +50 -0
- package/projects/playground/public/flags/na.svg +17 -0
- package/projects/playground/public/flags/nc.svg +5 -0
- package/projects/playground/public/flags/ne.svg +6 -0
- package/projects/playground/public/flags/nf.svg +8 -0
- package/projects/playground/public/flags/ng.svg +4 -0
- package/projects/playground/public/flags/ni.svg +281 -0
- package/projects/playground/public/flags/nl.svg +5 -0
- package/projects/playground/public/flags/no.svg +11 -0
- package/projects/playground/public/flags/np.svg +33 -0
- package/projects/playground/public/flags/nr.svg +8 -0
- package/projects/playground/public/flags/nu.svg +23 -0
- package/projects/playground/public/flags/nz.svg +37 -0
- package/projects/playground/public/flags/om.svg +307 -0
- package/projects/playground/public/flags/pa.svg +15 -0
- package/projects/playground/public/flags/pe.svg +767 -0
- package/projects/playground/public/flags/pf.svg +38 -0
- package/projects/playground/public/flags/pg.svg +16 -0
- package/projects/playground/public/flags/ph.svg +28 -0
- package/projects/playground/public/flags/pk.svg +7 -0
- package/projects/playground/public/flags/pl.svg +4 -0
- package/projects/playground/public/flags/pm.svg +5 -0
- package/projects/playground/public/flags/pn.svg +131 -0
- package/projects/playground/public/flags/pr.svg +6 -0
- package/projects/playground/public/flags/ps.svg +6 -0
- package/projects/playground/public/flags/pt.svg +79 -0
- package/projects/playground/public/flags/pw.svg +4 -0
- package/projects/playground/public/flags/py.svg +192 -0
- package/projects/playground/public/flags/qa.svg +7 -0
- package/projects/playground/public/flags/re.svg +5 -0
- package/projects/playground/public/flags/ro.svg +5 -0
- package/projects/playground/public/flags/rs.svg +1143 -0
- package/projects/playground/public/flags/ru.svg +5 -0
- package/projects/playground/public/flags/rw.svg +17 -0
- package/projects/playground/public/flags/sa.svg +23 -0
- package/projects/playground/public/flags/sb.svg +30 -0
- package/projects/playground/public/flags/sc.svg +7 -0
- package/projects/playground/public/flags/sd.svg +6 -0
- package/projects/playground/public/flags/se.svg +5 -0
- package/projects/playground/public/flags/sg.svg +15 -0
- package/projects/playground/public/flags/sh.svg +15 -0
- package/projects/playground/public/flags/si.svg +30 -0
- package/projects/playground/public/flags/sj.svg +11 -0
- package/projects/playground/public/flags/sk.svg +21 -0
- package/projects/playground/public/flags/sl.svg +5 -0
- package/projects/playground/public/flags/sm.svg +847 -0
- package/projects/playground/public/flags/sn.svg +15 -0
- package/projects/playground/public/flags/so.svg +13 -0
- package/projects/playground/public/flags/sr.svg +6 -0
- package/projects/playground/public/flags/ss.svg +8 -0
- package/projects/playground/public/flags/st.svg +16 -0
- package/projects/playground/public/flags/stc-icons.css +1 -0
- package/projects/playground/public/flags/sv.svg +3368 -0
- package/projects/playground/public/flags/sx.svg +172 -0
- package/projects/playground/public/flags/sy.svg +6 -0
- package/projects/playground/public/flags/sz.svg +54 -0
- package/projects/playground/public/flags/tc.svg +88 -0
- package/projects/playground/public/flags/td.svg +5 -0
- package/projects/playground/public/flags/tf.svg +18 -0
- package/projects/playground/public/flags/tg.svg +15 -0
- package/projects/playground/public/flags/th.svg +5 -0
- package/projects/playground/public/flags/tj.svg +32 -0
- package/projects/playground/public/flags/tk.svg +25 -0
- package/projects/playground/public/flags/tl.svg +6 -0
- package/projects/playground/public/flags/tm.svg +349 -0
- package/projects/playground/public/flags/tn.svg +9 -0
- package/projects/playground/public/flags/to.svg +8 -0
- package/projects/playground/public/flags/tr.svg +6 -0
- package/projects/playground/public/flags/tt.svg +5 -0
- package/projects/playground/public/flags/tv.svg +18 -0
- package/projects/playground/public/flags/tw.svg +12 -0
- package/projects/playground/public/flags/tz.svg +13 -0
- package/projects/playground/public/flags/ua.svg +4 -0
- package/projects/playground/public/flags/ug.svg +46 -0
- package/projects/playground/public/flags/um.svg +25 -0
- package/projects/playground/public/flags/us.svg +25 -0
- package/projects/playground/public/flags/uy.svg +138 -0
- package/projects/playground/public/flags/uz.svg +30 -0
- package/projects/playground/public/flags/va.svg +277 -0
- package/projects/playground/public/flags/vc.svg +9 -0
- package/projects/playground/public/flags/ve.svg +28 -0
- package/projects/playground/public/flags/vg.svg +96 -0
- package/projects/playground/public/flags/vi.svg +311 -0
- package/projects/playground/public/flags/vn.svg +12 -0
- package/projects/playground/public/flags/vu.svg +20 -0
- package/projects/playground/public/flags/wf.svg +7 -0
- package/projects/playground/public/flags/ws.svg +14 -0
- package/projects/playground/public/flags/xk.svg +11 -0
- package/projects/playground/public/flags/ye.svg +5 -0
- package/projects/playground/public/flags/yt.svg +5 -0
- package/projects/playground/public/flags/za.svg +17 -0
- package/projects/playground/public/flags/zm.svg +20 -0
- package/projects/playground/public/flags/zw.svg +130 -0
- package/projects/playground/src/app/app.component.ts +119 -0
- package/projects/playground/src/app/app.config.ts +51 -0
- package/projects/playground/src/app/app.routes.ts +41 -0
- package/projects/playground/src/app/login.service.ts +21 -0
- package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
- package/projects/playground/src/components/attachment.component.ts +35 -0
- package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
- package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
- package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
- package/projects/playground/src/components/date-picker-container.component.ts +22 -0
- package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
- package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/datetime-container.component.ts +25 -0
- package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
- package/projects/playground/src/components/input-container.component.ts +35 -0
- package/projects/playground/src/components/input-wrapper.component.ts +41 -0
- package/projects/playground/src/components/mobile-container.component.ts +23 -0
- package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
- package/projects/playground/src/components/note-wrapper.component.ts +37 -0
- package/projects/playground/src/components/outlet-container.component.ts +144 -0
- package/projects/playground/src/components/plate-container.component.ts +22 -0
- package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
- package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
- package/projects/playground/src/components/select-container.component.ts +31 -0
- package/projects/playground/src/components/select-wrapper.component.ts +48 -0
- package/projects/playground/src/components/ships-container.component.ts +23 -0
- package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
- package/projects/playground/src/components/textarea-container.component.ts +23 -0
- package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
- package/projects/playground/src/components/time-picker-container.component.ts +23 -0
- package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
- package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
- package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
- package/projects/playground/src/eServices/create-request.component.ts +28 -0
- package/projects/playground/src/eServices/e-service.component.ts +112 -0
- package/projects/playground/src/eServices/view-request.component.ts +13 -0
- package/projects/playground/src/index.html +13 -0
- package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
- package/projects/playground/src/main.ts +8 -0
- package/projects/playground/src/services/ss.service.ts +62 -0
- package/projects/playground/src/styles.scss +33 -0
- package/projects/playground/src/validators/customValidator.validator.ts +10 -0
- package/projects/playground/tsconfig.app.json +15 -0
- package/tsconfig.json +31 -0
- package/components/autocomplete/autocomplete.component.d.ts +0 -6
- package/components/base-ctrl.d.ts +0 -33
- package/components/checkbox/checkbox.component.d.ts +0 -16
- package/components/chips/chips.component.d.ts +0 -6
- package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
- package/components/date-picker/date-adapter.d.ts +0 -37
- package/components/date-picker/date-picker.component.d.ts +0 -15
- package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
- package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
- package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
- package/components/file-picker/file-picker.component.d.ts +0 -17
- package/components/hints/hints.component.d.ts +0 -9
- package/components/input/input.component.d.ts +0 -8
- package/components/mobile/COUNTRIES.d.ts +0 -2
- package/components/mobile/mobile.component.d.ts +0 -26
- package/components/mobile/phone.service.d.ts +0 -17
- package/components/note/note.component.d.ts +0 -6
- package/components/plate-number/plate-number.component.d.ts +0 -16
- package/components/radio/radio.component.d.ts +0 -11
- package/components/select/select.component.d.ts +0 -20
- package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
- package/components/textarea/textarea.component.d.ts +0 -6
- package/components/time-picker/time-picker.component.d.ts +0 -19
- package/components/toggle-button/toggle-button.component.d.ts +0 -16
- package/directives/droppable.directive.d.ts +0 -10
- package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
- package/esm2022/components/base-ctrl.mjs +0 -93
- package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
- package/esm2022/components/chips/chips.component.mjs +0 -17
- package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
- package/esm2022/components/date-picker/date-adapter.mjs +0 -183
- package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
- package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
- package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
- package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
- package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
- package/esm2022/components/hints/hints.component.mjs +0 -66
- package/esm2022/components/input/input.component.mjs +0 -32
- package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
- package/esm2022/components/mobile/mobile.component.mjs +0 -141
- package/esm2022/components/mobile/phone.service.mjs +0 -99
- package/esm2022/components/note/note.component.mjs +0 -17
- package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
- package/esm2022/components/radio/radio.component.mjs +0 -40
- package/esm2022/components/select/select.component.mjs +0 -123
- package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2022/components/textarea/textarea.component.mjs +0 -17
- package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
- package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
- package/esm2022/directives/droppable.directive.mjs +0 -39
- package/esm2022/interfaces/country.interface.mjs +0 -2
- package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
- package/esm2022/interfaces/hint.interface.mjs +0 -2
- package/esm2022/interfaces/iso2.interface.mjs +0 -2
- package/esm2022/interfaces/mobile.interface.mjs +0 -2
- package/esm2022/interfaces/option.interface.mjs +0 -2
- package/esm2022/interfaces/time.interface.mjs +0 -2
- package/esm2022/iss-ctrl.mjs +0 -5
- package/esm2022/pipes/select-status.pipe.mjs +0 -18
- package/esm2022/public-api.mjs +0 -20
- package/fesm2022/iss-ctrl.mjs +0 -3658
- package/fesm2022/iss-ctrl.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/interfaces/country.interface.d.ts +0 -10
- package/interfaces/date-range-emission-object.d.ts +0 -5
- package/interfaces/hint.interface.d.ts +0 -5
- package/interfaces/iso2.interface.d.ts +0 -1
- package/interfaces/mobile.interface.d.ts +0 -11
- package/interfaces/option.interface.d.ts +0 -4
- package/interfaces/time.interface.d.ts +0 -5
- package/pipes/select-status.pipe.d.ts +0 -8
- package/public-api.d.ts +0 -19
- package/src/components/mobile/flags/ad.svg +0 -154
- package/src/components/mobile/flags/ae.svg +0 -1
- package/src/components/mobile/flags/af.svg +0 -1
- package/src/components/mobile/flags/ag.svg +0 -1
- package/src/components/mobile/flags/ai.svg +0 -1
- package/src/components/mobile/flags/al.svg +0 -1
- package/src/components/mobile/flags/am.svg +0 -1
- package/src/components/mobile/flags/ao.svg +0 -1
- package/src/components/mobile/flags/aq.svg +0 -1
- package/src/components/mobile/flags/ar.svg +0 -1
- package/src/components/mobile/flags/as.svg +0 -1
- package/src/components/mobile/flags/at.svg +0 -1
- package/src/components/mobile/flags/au.svg +0 -1
- package/src/components/mobile/flags/aw.svg +0 -1
- package/src/components/mobile/flags/ax.svg +0 -1
- package/src/components/mobile/flags/az.svg +0 -1
- package/src/components/mobile/flags/ba.svg +0 -1
- package/src/components/mobile/flags/bb.svg +0 -7
- package/src/components/mobile/flags/bd.svg +0 -1
- package/src/components/mobile/flags/be.svg +0 -1
- package/src/components/mobile/flags/bf.svg +0 -1
- package/src/components/mobile/flags/bg.svg +0 -1
- package/src/components/mobile/flags/bh.svg +0 -1
- package/src/components/mobile/flags/bi.svg +0 -26
- package/src/components/mobile/flags/bj.svg +0 -1
- package/src/components/mobile/flags/bl.svg +0 -1
- package/src/components/mobile/flags/bm.svg +0 -1
- package/src/components/mobile/flags/bn.svg +0 -58
- package/src/components/mobile/flags/bo.svg +0 -1
- package/src/components/mobile/flags/bq.svg +0 -1
- package/src/components/mobile/flags/br.svg +0 -1
- package/src/components/mobile/flags/bs.svg +0 -1
- package/src/components/mobile/flags/bt.svg +0 -466
- package/src/components/mobile/flags/bv.svg +0 -1
- package/src/components/mobile/flags/bw.svg +0 -1
- package/src/components/mobile/flags/by.svg +0 -1
- package/src/components/mobile/flags/bz.svg +0 -1
- package/src/components/mobile/flags/ca.svg +0 -1
- package/src/components/mobile/flags/cc.svg +0 -19
- package/src/components/mobile/flags/cd.svg +0 -1
- package/src/components/mobile/flags/cf.svg +0 -1
- package/src/components/mobile/flags/cg.svg +0 -5
- package/src/components/mobile/flags/ch.svg +0 -1
- package/src/components/mobile/flags/ci.svg +0 -1
- package/src/components/mobile/flags/ck.svg +0 -1
- package/src/components/mobile/flags/cl.svg +0 -14
- package/src/components/mobile/flags/cm.svg +0 -15
- package/src/components/mobile/flags/cn.svg +0 -1
- package/src/components/mobile/flags/co.svg +0 -5
- package/src/components/mobile/flags/cr.svg +0 -1
- package/src/components/mobile/flags/cu.svg +0 -6
- package/src/components/mobile/flags/cv.svg +0 -24
- package/src/components/mobile/flags/cw.svg +0 -16
- package/src/components/mobile/flags/cx.svg +0 -15
- package/src/components/mobile/flags/cy.svg +0 -1
- package/src/components/mobile/flags/cz.svg +0 -5
- package/src/components/mobile/flags/de.svg +0 -1
- package/src/components/mobile/flags/dj.svg +0 -1
- package/src/components/mobile/flags/dk.svg +0 -5
- package/src/components/mobile/flags/dm.svg +0 -1
- package/src/components/mobile/flags/do.svg +0 -1
- package/src/components/mobile/flags/dz.svg +0 -5
- package/src/components/mobile/flags/ec.svg +0 -519
- package/src/components/mobile/flags/ee.svg +0 -1
- package/src/components/mobile/flags/eg.svg +0 -78
- package/src/components/mobile/flags/eh.svg +0 -9
- package/src/components/mobile/flags/er.svg +0 -6
- package/src/components/mobile/flags/es.svg +0 -1
- package/src/components/mobile/flags/et.svg +0 -1
- package/src/components/mobile/flags/eu.svg +0 -1
- package/src/components/mobile/flags/fi.svg +0 -5
- package/src/components/mobile/flags/fj.svg +0 -1
- package/src/components/mobile/flags/fk.svg +0 -1
- package/src/components/mobile/flags/fm.svg +0 -16
- package/src/components/mobile/flags/fo.svg +0 -11
- package/src/components/mobile/flags/fr.svg +0 -1
- package/src/components/mobile/flags/ga.svg +0 -5
- package/src/components/mobile/flags/gb-eng.svg +0 -7
- package/src/components/mobile/flags/gb-nir.svg +0 -1
- package/src/components/mobile/flags/gb-sct.svg +0 -1
- package/src/components/mobile/flags/gb-wls.svg +0 -9
- package/src/components/mobile/flags/gb.svg +0 -1
- package/src/components/mobile/flags/gd.svg +0 -1
- package/src/components/mobile/flags/ge.svg +0 -1
- package/src/components/mobile/flags/gf.svg +0 -1
- package/src/components/mobile/flags/gg.svg +0 -8
- package/src/components/mobile/flags/gh.svg +0 -6
- package/src/components/mobile/flags/gi.svg +0 -54
- package/src/components/mobile/flags/gl.svg +0 -4
- package/src/components/mobile/flags/gm.svg +0 -7
- package/src/components/mobile/flags/gn.svg +0 -5
- package/src/components/mobile/flags/gp.svg +0 -1
- package/src/components/mobile/flags/gq.svg +0 -75
- package/src/components/mobile/flags/gr.svg +0 -1
- package/src/components/mobile/flags/gs.svg +0 -1
- package/src/components/mobile/flags/gt.svg +0 -214
- package/src/components/mobile/flags/gu.svg +0 -1
- package/src/components/mobile/flags/gw.svg +0 -13
- package/src/components/mobile/flags/gy.svg +0 -7
- package/src/components/mobile/flags/hk.svg +0 -1
- package/src/components/mobile/flags/hm.svg +0 -1
- package/src/components/mobile/flags/hn.svg +0 -1
- package/src/components/mobile/flags/hr.svg +0 -1
- package/src/components/mobile/flags/ht.svg +0 -1
- package/src/components/mobile/flags/hu.svg +0 -1
- package/src/components/mobile/flags/id.svg +0 -1
- package/src/components/mobile/flags/ie.svg +0 -1
- package/src/components/mobile/flags/il.svg +0 -1
- package/src/components/mobile/flags/im.svg +0 -1
- package/src/components/mobile/flags/in.svg +0 -1
- package/src/components/mobile/flags/io.svg +0 -1
- package/src/components/mobile/flags/iq.svg +0 -1
- package/src/components/mobile/flags/ir.svg +0 -31
- package/src/components/mobile/flags/is.svg +0 -1
- package/src/components/mobile/flags/it.svg +0 -1
- package/src/components/mobile/flags/je.svg +0 -1
- package/src/components/mobile/flags/jm.svg +0 -1
- package/src/components/mobile/flags/jo.svg +0 -7
- package/src/components/mobile/flags/jp.svg +0 -4
- package/src/components/mobile/flags/ke.svg +0 -23
- package/src/components/mobile/flags/kg.svg +0 -1
- package/src/components/mobile/flags/kh.svg +0 -116
- package/src/components/mobile/flags/ki.svg +0 -1
- package/src/components/mobile/flags/km.svg +0 -13
- package/src/components/mobile/flags/kn.svg +0 -1
- package/src/components/mobile/flags/kp.svg +0 -16
- package/src/components/mobile/flags/kr.svg +0 -1
- package/src/components/mobile/flags/kw.svg +0 -6
- package/src/components/mobile/flags/ky.svg +0 -1
- package/src/components/mobile/flags/kz.svg +0 -37
- package/src/components/mobile/flags/la.svg +0 -1
- package/src/components/mobile/flags/lb.svg +0 -5
- package/src/components/mobile/flags/lc.svg +0 -6
- package/src/components/mobile/flags/li.svg +0 -56
- package/src/components/mobile/flags/lk.svg +0 -1
- package/src/components/mobile/flags/lr.svg +0 -15
- package/src/components/mobile/flags/ls.svg +0 -23
- package/src/components/mobile/flags/lt.svg +0 -1
- package/src/components/mobile/flags/lu.svg +0 -1
- package/src/components/mobile/flags/lv.svg +0 -1
- package/src/components/mobile/flags/ly.svg +0 -8
- package/src/components/mobile/flags/ma.svg +0 -1
- package/src/components/mobile/flags/mc.svg +0 -1
- package/src/components/mobile/flags/md.svg +0 -1
- package/src/components/mobile/flags/me.svg +0 -93
- package/src/components/mobile/flags/mf.svg +0 -1
- package/src/components/mobile/flags/mg.svg +0 -1
- package/src/components/mobile/flags/mh.svg +0 -1
- package/src/components/mobile/flags/mk.svg +0 -1
- package/src/components/mobile/flags/ml.svg +0 -5
- package/src/components/mobile/flags/mm.svg +0 -12
- package/src/components/mobile/flags/mn.svg +0 -1
- package/src/components/mobile/flags/mo.svg +0 -10
- package/src/components/mobile/flags/mp.svg +0 -1
- package/src/components/mobile/flags/mq.svg +0 -1
- package/src/components/mobile/flags/mr.svg +0 -1
- package/src/components/mobile/flags/ms.svg +0 -1
- package/src/components/mobile/flags/mt.svg +0 -1
- package/src/components/mobile/flags/mu.svg +0 -1
- package/src/components/mobile/flags/mv.svg +0 -1
- package/src/components/mobile/flags/mw.svg +0 -24
- package/src/components/mobile/flags/mx.svg +0 -1
- package/src/components/mobile/flags/my.svg +0 -1
- package/src/components/mobile/flags/mz.svg +0 -13
- package/src/components/mobile/flags/na.svg +0 -1
- package/src/components/mobile/flags/nc.svg +0 -1
- package/src/components/mobile/flags/ne.svg +0 -6
- package/src/components/mobile/flags/nf.svg +0 -5
- package/src/components/mobile/flags/ng.svg +0 -4
- package/src/components/mobile/flags/ni.svg +0 -161
- package/src/components/mobile/flags/nl.svg +0 -1
- package/src/components/mobile/flags/no.svg +0 -1
- package/src/components/mobile/flags/np.svg +0 -33
- package/src/components/mobile/flags/nr.svg +0 -1
- package/src/components/mobile/flags/nu.svg +0 -1
- package/src/components/mobile/flags/nz.svg +0 -1
- package/src/components/mobile/flags/om.svg +0 -1
- package/src/components/mobile/flags/pa.svg +0 -1
- package/src/components/mobile/flags/pe.svg +0 -320
- package/src/components/mobile/flags/pf.svg +0 -1
- package/src/components/mobile/flags/pg.svg +0 -13
- package/src/components/mobile/flags/ph.svg +0 -1
- package/src/components/mobile/flags/pk.svg +0 -1
- package/src/components/mobile/flags/pl.svg +0 -1
- package/src/components/mobile/flags/pm.svg +0 -1
- package/src/components/mobile/flags/pn.svg +0 -1
- package/src/components/mobile/flags/pr.svg +0 -1
- package/src/components/mobile/flags/ps.svg +0 -1
- package/src/components/mobile/flags/pt.svg +0 -1
- package/src/components/mobile/flags/pw.svg +0 -1
- package/src/components/mobile/flags/py.svg +0 -1
- package/src/components/mobile/flags/qa.svg +0 -1
- package/src/components/mobile/flags/re.svg +0 -1
- package/src/components/mobile/flags/ro.svg +0 -1
- package/src/components/mobile/flags/rs.svg +0 -1
- package/src/components/mobile/flags/ru.svg +0 -1
- package/src/components/mobile/flags/rw.svg +0 -13
- package/src/components/mobile/flags/sa.svg +0 -1
- package/src/components/mobile/flags/sb.svg +0 -1
- package/src/components/mobile/flags/sc.svg +0 -7
- package/src/components/mobile/flags/sd.svg +0 -6
- package/src/components/mobile/flags/se.svg +0 -5
- package/src/components/mobile/flags/sg.svg +0 -11
- package/src/components/mobile/flags/sh.svg +0 -1
- package/src/components/mobile/flags/si.svg +0 -1
- package/src/components/mobile/flags/sj.svg +0 -1
- package/src/components/mobile/flags/sk.svg +0 -1
- package/src/components/mobile/flags/sl.svg +0 -1
- package/src/components/mobile/flags/sm.svg +0 -1
- package/src/components/mobile/flags/sn.svg +0 -1
- package/src/components/mobile/flags/so.svg +0 -1
- package/src/components/mobile/flags/sr.svg +0 -1
- package/src/components/mobile/flags/ss.svg +0 -1
- package/src/components/mobile/flags/st.svg +0 -1
- package/src/components/mobile/flags/sv.svg +0 -1
- package/src/components/mobile/flags/sx.svg +0 -1
- package/src/components/mobile/flags/sy.svg +0 -1
- package/src/components/mobile/flags/sz.svg +0 -1
- package/src/components/mobile/flags/tc.svg +0 -1
- package/src/components/mobile/flags/td.svg +0 -1
- package/src/components/mobile/flags/tf.svg +0 -1
- package/src/components/mobile/flags/tg.svg +0 -1
- package/src/components/mobile/flags/th.svg +0 -1
- package/src/components/mobile/flags/tj.svg +0 -1
- package/src/components/mobile/flags/tk.svg +0 -1
- package/src/components/mobile/flags/tl.svg +0 -1
- package/src/components/mobile/flags/tm.svg +0 -1
- package/src/components/mobile/flags/tn.svg +0 -9
- package/src/components/mobile/flags/to.svg +0 -1
- package/src/components/mobile/flags/tr.svg +0 -1
- package/src/components/mobile/flags/tt.svg +0 -5
- package/src/components/mobile/flags/tv.svg +0 -1
- package/src/components/mobile/flags/tw.svg +0 -1
- package/src/components/mobile/flags/tz.svg +0 -1
- package/src/components/mobile/flags/ua.svg +0 -1
- package/src/components/mobile/flags/ug.svg +0 -1
- package/src/components/mobile/flags/um.svg +0 -1
- package/src/components/mobile/flags/us.svg +0 -1
- package/src/components/mobile/flags/uy.svg +0 -1
- package/src/components/mobile/flags/uz.svg +0 -1
- package/src/components/mobile/flags/va.svg +0 -1
- package/src/components/mobile/flags/vc.svg +0 -1
- package/src/components/mobile/flags/ve.svg +0 -1
- package/src/components/mobile/flags/vg.svg +0 -1
- package/src/components/mobile/flags/vi.svg +0 -1
- package/src/components/mobile/flags/vn.svg +0 -1
- package/src/components/mobile/flags/vu.svg +0 -1
- package/src/components/mobile/flags/wf.svg +0 -1
- package/src/components/mobile/flags/ws.svg +0 -1
- package/src/components/mobile/flags/xk.svg +0 -1
- package/src/components/mobile/flags/ye.svg +0 -1
- package/src/components/mobile/flags/yt.svg +0 -1
- package/src/components/mobile/flags/za.svg +0 -1
- package/src/components/mobile/flags/zm.svg +0 -1
- package/src/components/mobile/flags/zw.svg +0 -1
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
<svg viewBox="0 0 675 450" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0l298.571 225.241H675V0z" fill="#dc171d"/>
|
|
3
|
+
<path d="M0 0l299.005 225.746L0 450z" fill="#fff" stroke="#fff"/>
|
|
4
|
+
<path d="M0 450l298.571-224.759H675V450z" fill="#012a87"/>
|
|
5
|
+
<path
|
|
6
|
+
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"
|
|
7
|
+
fill="#ff0"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
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"
|
|
11
|
+
fill="#f9d90f"
|
|
12
|
+
stroke="#000"
|
|
13
|
+
stroke-width=".271"
|
|
14
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
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"
|
|
18
|
+
fill="#dc171d"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
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"
|
|
22
|
+
fill="#62afe1"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
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"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
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"
|
|
30
|
+
fill="none"
|
|
31
|
+
stroke="#000"
|
|
32
|
+
stroke-width="1.164"
|
|
33
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
34
|
+
/>
|
|
35
|
+
<path d="M158.083 257.576l.006 5.592-88.005-.098-.036-5.568 88.043.075" fill="#fff"/>
|
|
36
|
+
<path
|
|
37
|
+
d="M384.376 929.761l.006 5.551-87.347-.097-.036-5.527 87.384.074h-.006z"
|
|
38
|
+
fill="none"
|
|
39
|
+
stroke="#000"
|
|
40
|
+
stroke-width="1.164"
|
|
41
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
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"
|
|
45
|
+
fill="#fff"
|
|
46
|
+
/>
|
|
47
|
+
<path
|
|
48
|
+
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"
|
|
49
|
+
fill="none"
|
|
50
|
+
stroke="#000"
|
|
51
|
+
stroke-width="1.164"
|
|
52
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
53
|
+
/>
|
|
54
|
+
<path d="M129.208 227.08l.117 30.421-30.561-.05-.111-30.395 30.55.024" fill="#fff"/>
|
|
55
|
+
<path
|
|
56
|
+
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"
|
|
57
|
+
fill="none"
|
|
58
|
+
stroke="#000"
|
|
59
|
+
stroke-width="1.164"
|
|
60
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
61
|
+
/>
|
|
62
|
+
<path
|
|
63
|
+
d="M331.994 863.799l.03 7.609 16.144.012-.03-7.609-16.144-.012"
|
|
64
|
+
fill="none"
|
|
65
|
+
stroke="#000"
|
|
66
|
+
stroke-width="1.164"
|
|
67
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
68
|
+
/>
|
|
69
|
+
<path
|
|
70
|
+
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"
|
|
71
|
+
fill="none"
|
|
72
|
+
stroke="#000"
|
|
73
|
+
stroke-width="1.164"
|
|
74
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
75
|
+
/>
|
|
76
|
+
<path
|
|
77
|
+
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"
|
|
78
|
+
fill="#fff"
|
|
79
|
+
/>
|
|
80
|
+
<path
|
|
81
|
+
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"
|
|
82
|
+
fill="none"
|
|
83
|
+
stroke="#000"
|
|
84
|
+
stroke-width="1.164"
|
|
85
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
86
|
+
/>
|
|
87
|
+
<path
|
|
88
|
+
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"
|
|
89
|
+
fill="#f9d90f"
|
|
90
|
+
/>
|
|
91
|
+
<path
|
|
92
|
+
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"
|
|
93
|
+
fill="none"
|
|
94
|
+
stroke="#000"
|
|
95
|
+
stroke-width=".271"
|
|
96
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
97
|
+
/>
|
|
98
|
+
<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"/>
|
|
99
|
+
<path
|
|
100
|
+
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"
|
|
101
|
+
fill="none"
|
|
102
|
+
stroke="#000"
|
|
103
|
+
stroke-width=".271"
|
|
104
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
105
|
+
/>
|
|
106
|
+
<path d="M38.522 245.624l-12.07 2.103 7.636-10.86 4.434 8.757" fill="#7e7e7e"/>
|
|
107
|
+
<path
|
|
108
|
+
d="M265.709 917.896l-11.98 2.088 7.579-10.781 4.401 8.693"
|
|
109
|
+
fill="#f9b60f"
|
|
110
|
+
stroke="#000"
|
|
111
|
+
stroke-width=".271"
|
|
112
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
113
|
+
/>
|
|
114
|
+
<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"/>
|
|
115
|
+
<path
|
|
116
|
+
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"
|
|
117
|
+
fill="none"
|
|
118
|
+
stroke="#000"
|
|
119
|
+
stroke-width=".271"
|
|
120
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
121
|
+
/>
|
|
122
|
+
<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"/>
|
|
123
|
+
<path
|
|
124
|
+
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"
|
|
125
|
+
fill="#f9d90f"
|
|
126
|
+
stroke="#000"
|
|
127
|
+
stroke-width=".271"
|
|
128
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
129
|
+
/>
|
|
130
|
+
<path d="M188.842 245.715l12.1 2.171-7.74-10.865-4.36 8.694" fill="#7e7e7e"/>
|
|
131
|
+
<path
|
|
132
|
+
d="M414.904 917.987l12.01 2.155-7.682-10.786-4.328 8.631"
|
|
133
|
+
fill="#f9b60f"
|
|
134
|
+
stroke="#000"
|
|
135
|
+
stroke-width=".271"
|
|
136
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
137
|
+
/>
|
|
138
|
+
<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"/>
|
|
139
|
+
<path
|
|
140
|
+
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"
|
|
141
|
+
fill="none"
|
|
142
|
+
stroke="#000"
|
|
143
|
+
stroke-width=".271"
|
|
144
|
+
transform="matrix(1.00754 0 0 1.00735 -229.19 -679.021)"
|
|
145
|
+
/>
|
|
146
|
+
<path
|
|
147
|
+
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"
|
|
148
|
+
fill="#012a87"
|
|
149
|
+
/>
|
|
150
|
+
<path
|
|
151
|
+
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"
|
|
152
|
+
fill="#bc715f"
|
|
153
|
+
/>
|
|
154
|
+
<path
|
|
155
|
+
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"
|
|
156
|
+
fill="#008830"
|
|
157
|
+
/>
|
|
158
|
+
<path
|
|
159
|
+
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"
|
|
160
|
+
fill="#f9d90f"
|
|
161
|
+
/>
|
|
162
|
+
<path
|
|
163
|
+
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"
|
|
164
|
+
fill="#fff"
|
|
165
|
+
/>
|
|
166
|
+
<path
|
|
167
|
+
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"
|
|
168
|
+
fill="#f9d90f"
|
|
169
|
+
/>
|
|
170
|
+
<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"/>
|
|
171
|
+
<path d="M80.689 190.526c-.135.179-.326.123-.528.172l-.19-.913c.404.036.931.165.717.741" fill="#fff"/>
|
|
172
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h900v600H0z"/>
|
|
3
|
+
<path d="M0 0h900v400H0z" fill="#fff"/>
|
|
4
|
+
<path d="M0 0h900v200H0z" fill="#ce1126"/>
|
|
5
|
+
<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"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<svg viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h900v600H0z" fill="#3e5eb9"/>
|
|
3
|
+
<path d="M0 112.5h900v375H0z" fill="#ffd900"/>
|
|
4
|
+
<path d="M0 150h900v300H0z" fill="#b10c0c"/>
|
|
5
|
+
<g fill="#ffd900" stroke="#000" stroke-width="1.008" transform="scale(1.5)">
|
|
6
|
+
<g id="a">
|
|
7
|
+
<path d="M492.85 154.28l-24.285 8.571 24.285 8.571 24.285-8.571z" fill="#fff"/>
|
|
8
|
+
<rect height="5.714" rx="3.106" ry="2.857" width="357.13" x="122.85" y="160"/>
|
|
9
|
+
<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"/>
|
|
10
|
+
</g>
|
|
11
|
+
<use height="100%" width="100%" x="-23.27" xlink:href="#a" y="17.15"/>
|
|
12
|
+
<rect height="8.571" rx="4.224" ry="4.286" stroke-width="1.08" width="485.7" x="59.812" y="195.72"/>
|
|
13
|
+
</g>
|
|
14
|
+
<path
|
|
15
|
+
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"
|
|
16
|
+
fill="#fff"
|
|
17
|
+
stroke="#000"
|
|
18
|
+
stroke-width="1.512"
|
|
19
|
+
/>
|
|
20
|
+
<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"/>
|
|
21
|
+
<g stroke="#fff" transform="scale(1.5)">
|
|
22
|
+
<g id="d" stroke-width="6.927">
|
|
23
|
+
<g id="c">
|
|
24
|
+
<path d="M213.933 192.377V169.52m13.85 0v22.857m13.86-22.857v22.857" id="b"/>
|
|
25
|
+
<use height="100%" width="100%" xlink:href="#b" y="38.1"/>
|
|
26
|
+
</g>
|
|
27
|
+
<use height="100%" width="100%" x="41.56" xlink:href="#c"/>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
<use height="100%" stroke="#000" transform="scale(1.5)" width="100%" x="104.76" xlink:href="#d"/>
|
|
31
|
+
<g fill="#a70000">
|
|
32
|
+
<path
|
|
33
|
+
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"
|
|
34
|
+
fill="#3d5da7"
|
|
35
|
+
stroke="#000"
|
|
36
|
+
stroke-width="1.282"
|
|
37
|
+
/>
|
|
38
|
+
<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"/>
|
|
39
|
+
<path
|
|
40
|
+
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"
|
|
41
|
+
fill="#3d5da7"
|
|
42
|
+
stroke="#000"
|
|
43
|
+
stroke-width="1.6"
|
|
44
|
+
/>
|
|
45
|
+
<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"/>
|
|
46
|
+
<path
|
|
47
|
+
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"
|
|
48
|
+
fill="#3d5da7"
|
|
49
|
+
stroke="#000"
|
|
50
|
+
stroke-width="1.239"
|
|
51
|
+
/>
|
|
52
|
+
<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"/>
|
|
53
|
+
</g>
|
|
54
|
+
</svg>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<svg viewBox="0 0 9600 4800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="g">
|
|
4
|
+
<path d="M0 0h9600v4800H0z"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<clipPath id="a">
|
|
7
|
+
<path d="M0 0v15h65v15h-5zm60 0H30v35H0v-5z"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<path d="M840-1000v720C840 200 600 717 0 997-600 717-840 200-840-280v-720z" id="b"/>
|
|
10
|
+
</defs>
|
|
11
|
+
<g fill="#012169">
|
|
12
|
+
<path d="M0 0h4800A2683.282 2683.282 0 010 2400z"/>
|
|
13
|
+
<g fill="none">
|
|
14
|
+
<path clip-path="url(#g)" d="M0 0l4800 2400M0 2400L4800 0" stroke="#fff" stroke-width="480"/>
|
|
15
|
+
<path clip-path="url(#a)" d="M0 0l60 30M0 30L60 0" stroke="#ce1126" stroke-width="4" transform="scale(80)"/>
|
|
16
|
+
<path clip-path="url(#g)" d="M2400-400v3200M-400 1200h5600" stroke="#fff" stroke-width="800"/>
|
|
17
|
+
<path d="M2400 0v2800M0 1200h5200" stroke="#ce1126" stroke-width="480"/>
|
|
18
|
+
</g>
|
|
19
|
+
<path d="M0 2400h4800V0h4800v4800H0"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g fill="none" stroke="#000" transform="translate(7200 2400)">
|
|
22
|
+
<use fill="#fcd116" stroke-width="64" xlink:href="#b"/>
|
|
23
|
+
<use stroke="#fff" stroke-width="56" xlink:href="#b"/>
|
|
24
|
+
<g stroke-linecap="round" stroke-linejoin="round" stroke-width="2.2">
|
|
25
|
+
<path
|
|
26
|
+
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"
|
|
27
|
+
fill="#fcad56"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
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"
|
|
31
|
+
fill="#ffa1a1"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
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"
|
|
35
|
+
fill="#f1b2dc"
|
|
36
|
+
/>
|
|
37
|
+
<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"/>
|
|
38
|
+
<g fill="#9e540a" transform="translate(400 -400)">
|
|
39
|
+
<g id="d">
|
|
40
|
+
<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"/>
|
|
41
|
+
<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"/>
|
|
42
|
+
<g stroke="none">
|
|
43
|
+
<use stroke="#fcd116" stroke-width="12" xlink:href="#c"/>
|
|
44
|
+
<path
|
|
45
|
+
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"
|
|
46
|
+
id="c"
|
|
47
|
+
/>
|
|
48
|
+
</g>
|
|
49
|
+
<path d="M-19 187s-28 50-49 86-38 44-54 33c-15-11-2-40 10-54s79-79 79-79z"/>
|
|
50
|
+
<path d="M-12 191s-11 57-20 98c-8 41-22 55-39 50-18-4-15-37-8-54s49-103 49-103z"/>
|
|
51
|
+
<path d="M0 193v100c0 42-10 59-29 58-18-1-22-33-18-52 3-18 28-111 28-111z"/>
|
|
52
|
+
</g>
|
|
53
|
+
<use transform="scale(-1 1)" xlink:href="#d"/>
|
|
54
|
+
<g id="e">
|
|
55
|
+
<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"/>
|
|
56
|
+
<path
|
|
57
|
+
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"
|
|
58
|
+
fill="none"
|
|
59
|
+
/>
|
|
60
|
+
</g>
|
|
61
|
+
<use transform="scale(-1 1)" xlink:href="#e"/>
|
|
62
|
+
</g>
|
|
63
|
+
<g id="f">
|
|
64
|
+
<path
|
|
65
|
+
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"
|
|
66
|
+
fill="#009e49"
|
|
67
|
+
/>
|
|
68
|
+
<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"/>
|
|
69
|
+
</g>
|
|
70
|
+
<use transform="scale(-1 1)" xlink:href="#f"/>
|
|
71
|
+
<path d="M0 712V12" stroke="#009e49"/>
|
|
72
|
+
<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"/>
|
|
73
|
+
<path
|
|
74
|
+
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"
|
|
75
|
+
fill="#fcd116"
|
|
76
|
+
/>
|
|
77
|
+
<path d="M-139 35c0-210 29-283 139-283s139 73 139 283z" fill="#ce1126"/>
|
|
78
|
+
<path
|
|
79
|
+
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"
|
|
80
|
+
fill="#000"
|
|
81
|
+
/>
|
|
82
|
+
<path
|
|
83
|
+
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"
|
|
84
|
+
fill="#ce1126"
|
|
85
|
+
/>
|
|
86
|
+
</g>
|
|
87
|
+
</g>
|
|
88
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 600 400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<path d="M0-1L.588.809-.952-.309H.952L-.588.809z" fill="#fff" id="a" transform="scale(21)"/>
|
|
4
|
+
</defs>
|
|
5
|
+
<path d="M0 0h600v400H0z" fill="#002395"/>
|
|
6
|
+
<path d="M0 0h244v164H0z" fill="#fff"/>
|
|
7
|
+
<path d="M0 0h80v160H0z" fill="#002395"/>
|
|
8
|
+
<path d="M160 0h80v160h-80z" fill="#ED2939"/>
|
|
9
|
+
<path
|
|
10
|
+
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"
|
|
11
|
+
fill="#fff"
|
|
12
|
+
/>
|
|
13
|
+
<use x="416" xlink:href="#a" y="362"/>
|
|
14
|
+
<use x="371" xlink:href="#a" y="328"/>
|
|
15
|
+
<use x="461" xlink:href="#a" y="328"/>
|
|
16
|
+
<use x="333" xlink:href="#a" y="227"/>
|
|
17
|
+
<use x="499" xlink:href="#a" y="227"/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 809 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h809v500H0z" fill="#006a4e"/>
|
|
3
|
+
<path d="M0 100h809v100H0zm0 200h809v100H0z" fill="#ffce00"/>
|
|
4
|
+
<path d="M0 0h300v300H0z" fill="#d21034"/>
|
|
5
|
+
<g fill="#fff" transform="translate(150 150)">
|
|
6
|
+
<g id="b">
|
|
7
|
+
<path d="M0-95V0h50" id="a" transform="rotate(18 0 -95)"/>
|
|
8
|
+
<use transform="scale(-1 1)" xlink:href="#a"/>
|
|
9
|
+
</g>
|
|
10
|
+
<use transform="rotate(72)" xlink:href="#b"/>
|
|
11
|
+
<use transform="rotate(144)" xlink:href="#b"/>
|
|
12
|
+
<use transform="rotate(216)" xlink:href="#b"/>
|
|
13
|
+
<use transform="rotate(288)" xlink:href="#b"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg viewBox="0 0 1400 700" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h1400v700H0z" fill="#060"/>
|
|
3
|
+
<path d="M0 0h1400v500H0z" fill="#fff"/>
|
|
4
|
+
<path d="M0 0h1400v200H0z" fill="#c00"/>
|
|
5
|
+
<g fill="#f8c300">
|
|
6
|
+
<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"/>
|
|
7
|
+
<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"/>
|
|
8
|
+
<path
|
|
9
|
+
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"
|
|
10
|
+
id="a"
|
|
11
|
+
/>
|
|
12
|
+
<use transform="matrix(-1 0 0 1 1400 0)" xlink:href="#a"/>
|
|
13
|
+
<path
|
|
14
|
+
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"
|
|
15
|
+
id="b"
|
|
16
|
+
/>
|
|
17
|
+
<use transform="rotate(9.37 700 804)" xlink:href="#b"/>
|
|
18
|
+
<use transform="rotate(18.74 700 804)" xlink:href="#b"/>
|
|
19
|
+
<path d="M603 478a340 340 0 01194 0" fill="none" stroke="#f8c300" stroke-width="16"/>
|
|
20
|
+
<g transform="translate(700 380)">
|
|
21
|
+
<g transform="translate(0 -140)">
|
|
22
|
+
<path d="M0-513674l301930 929245-790463-574305h977066l-790463 574305z" id="c" transform="scale(.00005)"/>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="d">
|
|
25
|
+
<use transform="translate(-70 -121.244)" xlink:href="#c"/>
|
|
26
|
+
<use transform="translate(-121.244 -70)" xlink:href="#c"/>
|
|
27
|
+
<use transform="translate(-140)" xlink:href="#c"/>
|
|
28
|
+
</g>
|
|
29
|
+
<use transform="scale(-1 1)" xlink:href="#d"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg viewBox="0 0 1800 900" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<g id="b">
|
|
4
|
+
<g id="a">
|
|
5
|
+
<path d="M1 0H0v.5z" transform="translate(0 -.325)"/>
|
|
6
|
+
<path d="M1 0H0v-.5z" transform="rotate(-36 .5 -.162)"/>
|
|
7
|
+
</g>
|
|
8
|
+
<use transform="rotate(72)" xlink:href="#a"/>
|
|
9
|
+
<use transform="rotate(144)" xlink:href="#a"/>
|
|
10
|
+
<use transform="rotate(216)" xlink:href="#a"/>
|
|
11
|
+
<use transform="rotate(288)" xlink:href="#a"/>
|
|
12
|
+
</g>
|
|
13
|
+
</defs>
|
|
14
|
+
<path d="M0 0h1800v900H0z" fill="#012169"/>
|
|
15
|
+
<path
|
|
16
|
+
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"
|
|
17
|
+
fill="#ffd100"
|
|
18
|
+
/>
|
|
19
|
+
<g fill="#fff">
|
|
20
|
+
<use transform="matrix(45 0 0 45 342.957 112.581)" xlink:href="#b"/>
|
|
21
|
+
<use transform="matrix(37.5 0 0 37.5 521.205 267.53)" xlink:href="#b"/>
|
|
22
|
+
<use transform="matrix(45 0 0 45 135 321.808)" xlink:href="#b"/>
|
|
23
|
+
<use transform="matrix(52.5 0 0 52.5 342.957 652.581)" xlink:href="#b"/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 1200 600" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1200 600V0H0v600z" fill="#dc241f"/>
|
|
3
|
+
<path d="M0 0v600l600-300z" fill="#ffc726"/>
|
|
4
|
+
<path d="M0 0v600l400-300z"/>
|
|
5
|
+
<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"/>
|
|
6
|
+
</svg>
|