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,1470 @@
|
|
|
1
|
+
<svg viewBox="0 0 1000 600" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h1000v600H0z" fill="#d21034" />
|
|
3
|
+
<path d="M0 0h1000v300H0z" fill="#00209f" />
|
|
4
|
+
<path d="M405.172 222.414h189.656v155.172H405.172z" fill="#fff" stroke="none" stroke-width=".183" />
|
|
5
|
+
<path
|
|
6
|
+
d="M499.613 332.116v.085c-4.078.43-47.874 5.227-59.775 14.11-12.48 9.316-34.666 19.076-34.666 19.076v11.978h189.656v-11.978s-22.186-9.76-34.666-19.075c-11.9-8.884-55.696-13.68-59.774-14.111v-.085l-.388.042-.387-.042z"
|
|
7
|
+
fill="#016a16"
|
|
8
|
+
/>
|
|
9
|
+
<g fill="red" stroke="#000">
|
|
10
|
+
<path
|
|
11
|
+
d="M455.739 112.399c-.607-1.578-5.583-1.457-9.467-.243-3.884 1.213-6.068.85-14.443.97-8.374.122-13.108 2.064-13.836 2.307-.728.242-13.35 6.432-18.205 8.01-4.855 1.578-9.467 0-9.467 0s5.583 5.462 13.472 1.092c0 0-6.554 3.641-10.802 4.127 0 0 6.34 1.329 11.697-.986.48-.207.952-.444 1.411-.713 3.354-1.667 6.343-2.96 9.042-3.963 15.357-5.712 21.33-2.075 31.86-4.776"
|
|
12
|
+
fill="#fff"
|
|
13
|
+
stroke-width=".3"
|
|
14
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M455.711 112.166c-.72 1.395-4.85.613-7.504 1.477.64.562 2.462 1.55 7.587 2.53.85-3.19-.083-4.007-.083-4.007z"
|
|
18
|
+
fill="#fff"
|
|
19
|
+
stroke-width=".312"
|
|
20
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M414.554 122.707c-4.932 1.667-7.314 3.202-10.013 4.206m9.406-5.13c-4.28 1.52-6.738 2.98-9.363 3.992m8.756-4.915c-3.628 1.374-6.161 2.757-8.714 3.776m8.108-4.7c-2.977 1.228-5.585 2.535-8.065 3.562m7.458-4.485a292.844 292.844 0 01-7.415 3.347"
|
|
24
|
+
fill="none"
|
|
25
|
+
stroke-width=".3"
|
|
26
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M420.336 120.264s6.907-2.086 12.251-1.434m-11.47.13s6.485-1.825 12.187-1.336m-11.404.033s6.06-1.564 12.12-1.238m-11.338-.066s5.637-1.303 12.056-1.14m-11.274-.163s5.213-1.043 11.99-1.043"
|
|
30
|
+
fill="none"
|
|
31
|
+
stroke-width=".265"
|
|
32
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M441.841 113.877s3.117-.76 6.25-1.213c2.67-.386 5.353-.55 6.132.17M441.255 114.985s3.64-.407 6.577-1.138M440.668 116.093s4.165-.054 6.905-1.063M440.082 117.2s4.689.3 7.232-.987M439.491 118.203s5.22.582 7.568-.815"
|
|
36
|
+
fill="none"
|
|
37
|
+
stroke-width=".3"
|
|
38
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)"
|
|
39
|
+
/>
|
|
40
|
+
</g>
|
|
41
|
+
<g stroke="#000">
|
|
42
|
+
<path
|
|
43
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
44
|
+
fill="#f1b517"
|
|
45
|
+
stroke-width="1.228"
|
|
46
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) scale(0.26458333)"
|
|
47
|
+
/>
|
|
48
|
+
<path
|
|
49
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23zm57.778 86.565c-1.658.6-4.125 1.578-5.723 2.6l7.031 13.277c1.165-.865 3.418-2.33 5.697-2.615a.782.782 0 00.424-.184z"
|
|
50
|
+
fill="#fff"
|
|
51
|
+
stroke-width=".567"
|
|
52
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) scale(0.26458333)"
|
|
53
|
+
/>
|
|
54
|
+
<path
|
|
55
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
56
|
+
fill="none"
|
|
57
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) scale(0.26458333)"
|
|
58
|
+
/>
|
|
59
|
+
<path
|
|
60
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
61
|
+
fill="none"
|
|
62
|
+
stroke-width="1.228"
|
|
63
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) scale(0.26458333)"
|
|
64
|
+
/>
|
|
65
|
+
<g>
|
|
66
|
+
<path
|
|
67
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
68
|
+
fill="#f1b517"
|
|
69
|
+
stroke-width="1.228"
|
|
70
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
71
|
+
/>
|
|
72
|
+
<path
|
|
73
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23z"
|
|
74
|
+
fill="#fff"
|
|
75
|
+
stroke-width=".567"
|
|
76
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
77
|
+
/>
|
|
78
|
+
<path
|
|
79
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
80
|
+
fill="none"
|
|
81
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
82
|
+
/>
|
|
83
|
+
<path
|
|
84
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
85
|
+
fill="none"
|
|
86
|
+
stroke-width="1.228"
|
|
87
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
88
|
+
/>
|
|
89
|
+
<path
|
|
90
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686-.661-2.52z"
|
|
91
|
+
fill="#fff"
|
|
92
|
+
stroke-width=".15"
|
|
93
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329)"
|
|
94
|
+
/>
|
|
95
|
+
<path
|
|
96
|
+
d="M480.036 28.85l-.41.182.542 1.265.628-.395z"
|
|
97
|
+
fill="none"
|
|
98
|
+
stroke-width=".265"
|
|
99
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329)"
|
|
100
|
+
/>
|
|
101
|
+
<path
|
|
102
|
+
d="M1824.676 136.95c-1.97.54-3.731 1.78-5.082 2.95l5.412 13.272c1.624-1.002 3.76-1.909 5.69-2.627z"
|
|
103
|
+
fill="#fff"
|
|
104
|
+
stroke-width=".567"
|
|
105
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) scale(0.26458333)"
|
|
106
|
+
/>
|
|
107
|
+
<path
|
|
108
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686 10.87 26.659.538-4.28-10.474-23.658.642-.404-.76-1.052-.44.196-.011-.025s-.847-.192-.987.119z"
|
|
109
|
+
fill="none"
|
|
110
|
+
stroke-width=".325"
|
|
111
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329)"
|
|
112
|
+
/>
|
|
113
|
+
</g>
|
|
114
|
+
<g>
|
|
115
|
+
<path
|
|
116
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
117
|
+
fill="#f1b517"
|
|
118
|
+
stroke-width="1.228"
|
|
119
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
120
|
+
/>
|
|
121
|
+
<path
|
|
122
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23z"
|
|
123
|
+
fill="#fff"
|
|
124
|
+
stroke-width=".567"
|
|
125
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
126
|
+
/>
|
|
127
|
+
<path
|
|
128
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
129
|
+
fill="none"
|
|
130
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
131
|
+
/>
|
|
132
|
+
<path
|
|
133
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
134
|
+
fill="none"
|
|
135
|
+
stroke-width="1.228"
|
|
136
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
137
|
+
/>
|
|
138
|
+
<path
|
|
139
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686-.661-2.52z"
|
|
140
|
+
fill="#fff"
|
|
141
|
+
stroke-width=".15"
|
|
142
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
d="M480.036 28.85l-.41.182.542 1.265.628-.395z"
|
|
146
|
+
fill="none"
|
|
147
|
+
stroke-width=".265"
|
|
148
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
149
|
+
/>
|
|
150
|
+
<path
|
|
151
|
+
d="M1824.676 136.95c-1.97.54-3.731 1.78-5.082 2.95l5.412 13.272c1.624-1.002 3.76-1.909 5.69-2.627z"
|
|
152
|
+
fill="#fff"
|
|
153
|
+
stroke-width=".567"
|
|
154
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745) scale(0.26458333)"
|
|
155
|
+
/>
|
|
156
|
+
<path
|
|
157
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686 10.87 26.659.538-4.28-10.474-23.658.642-.404-.76-1.052-.44.196-.011-.025s-.847-.192-.987.119z"
|
|
158
|
+
fill="none"
|
|
159
|
+
stroke-width=".325"
|
|
160
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.952308,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
161
|
+
/>
|
|
162
|
+
</g>
|
|
163
|
+
</g>
|
|
164
|
+
<g transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.5897,-11.271433)">
|
|
165
|
+
<path d="M522.648 69.814l-1.592 15.753-20.026-1.335z" fill="#d20014" />
|
|
166
|
+
<path d="M561.11 52.433s-1.457 25.124-9.104 37.747l-31.193-4.613.85-15.293 39.446-26.823z" fill="#0a328c" />
|
|
167
|
+
<path
|
|
168
|
+
d="M531.908 13.848c-1.863.819-3.542.164-3.542.164s-.819 1.064 1.392 1.187c0 0 .88.082.287 1.065"
|
|
169
|
+
fill="#0a328c"
|
|
170
|
+
stroke="#000"
|
|
171
|
+
stroke-width=".265"
|
|
172
|
+
/>
|
|
173
|
+
<path
|
|
174
|
+
d="M534.529 11.944s-3.337-2.723-5.446-2.56c-2.109.164-2.211.124-2.396.492-.184.369-.552 2.068.39 3.317.941 1.249 1.33.942 1.494.675.164-.266 1.494-1.044 4.013-.47"
|
|
175
|
+
fill="#d20014"
|
|
176
|
+
stroke="#000"
|
|
177
|
+
stroke-width=".3"
|
|
178
|
+
/>
|
|
179
|
+
<path
|
|
180
|
+
d="M529.284 9.378c-.068 0-.135.001-.201.006-2.109.164-2.211.123-2.396.492-.127.254-.34 1.138-.154 2.072.314-.302.963-.588 2.304-.516 2.662.143 4.218 1.229 4.218 1.229l.263.188 1.21-.905s-3.131-2.555-5.244-2.566z"
|
|
181
|
+
fill="#0a328c"
|
|
182
|
+
stroke="#000"
|
|
183
|
+
stroke-width=".15001685999999997"
|
|
184
|
+
/>
|
|
185
|
+
<path
|
|
186
|
+
d="M495.602 74.464l23.87-21.751c5.328 2.339 4.918 6.59 1.228 11.935l.111 5.355-19.52 13.608-5.355-1.338-.223-4.908zM496.33 60.457l14.628-18.85 3.7 8.211-1.156 7.748-17.461 16.421z"
|
|
187
|
+
fill="#d20014"
|
|
188
|
+
/>
|
|
189
|
+
<path
|
|
190
|
+
d="M511.016 41.954s2.949 6.765 2.486 15.496l17.81-16.594 8.499-7.69-.174.115-1.098-5.319-.52-3.007-1.388.347v-1.734l-.232-1.504-1.214-2.37-.983-2.544-.231-2.14.462-2.544-.636.29z"
|
|
191
|
+
fill="#0a328c"
|
|
192
|
+
/>
|
|
193
|
+
<path
|
|
194
|
+
d="M563.748 43.227s1.735 1.734 1.966 5.666c.231 3.932.174 6.65.174 6.65s-2.834 1.676-5.493.982c0 0 .462-1.156.52-2.775.058-1.62-.058-10.003-.058-10.003z"
|
|
195
|
+
fill="#0a328c"
|
|
196
|
+
stroke="#000"
|
|
197
|
+
stroke-width=".265"
|
|
198
|
+
/>
|
|
199
|
+
<path
|
|
200
|
+
d="M562.13 43.747l-1.272.084c.003.16.114 8.315.057 9.919-.058 1.619-.52 2.775-.52 2.775.973.254 1.968.189 2.84.006.02-.315.338-5.12.282-7.638-.058-2.602-1.387-5.146-1.387-5.146z"
|
|
201
|
+
fill="#d20014"
|
|
202
|
+
stroke="#000"
|
|
203
|
+
stroke-width=".15001685999999997"
|
|
204
|
+
/>
|
|
205
|
+
<path
|
|
206
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-1.65-.851-8.304-4.045-8.304-4.045l-.692 1.384 9.155 4.258s1.33.586.958 1.597c-.372 1.011-.585 1.17-.585 1.17z"
|
|
207
|
+
fill="#f1b517"
|
|
208
|
+
/>
|
|
209
|
+
<path
|
|
210
|
+
d="M583.884 109.486s.266-3.725-.053-5.641c0 0-.213 1.17-1.97 1.916 0 0 1.065-.799-1.703-7.825 0 0 7.558 2.396 7.612 7.505 0 0-1.704-2.022-2.076-2.022 0 0 .532 1.437.372 6.813"
|
|
211
|
+
fill="none"
|
|
212
|
+
stroke="#000"
|
|
213
|
+
stroke-width=".3"
|
|
214
|
+
/>
|
|
215
|
+
<path
|
|
216
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-1.65-.851-8.304-4.045-8.304-4.045l-.692 1.384 9.155 4.258s1.33.586.958 1.597c-.372 1.011-.585 1.17-.585 1.17"
|
|
217
|
+
fill="none"
|
|
218
|
+
stroke="#000"
|
|
219
|
+
stroke-width=".15"
|
|
220
|
+
/>
|
|
221
|
+
<path
|
|
222
|
+
color="#000"
|
|
223
|
+
d="M570.684 104.47c-.21 0-.63.048-.977.321a.984.984 0 00-.367.61c-.045.265.01.576.183.937.36.75 1.077 1.025 1.664 1.103a3.606 3.606 0 001.084-.023l-.087-.441s-.434.085-.938.017c-.504-.067-1.037-.27-1.316-.851-.146-.305-.172-.52-.147-.668a.498.498 0 01.201-.328c.212-.167.59-.225.7-.225.184 0 .344-.03.644.121.3.15.73.497 1.303 1.277l.363-.267c-.598-.816-1.073-1.217-1.465-1.412-.391-.196-.71-.17-.845-.17z"
|
|
224
|
+
fill="#f1b517"
|
|
225
|
+
font-family="sans-serif"
|
|
226
|
+
font-weight="400"
|
|
227
|
+
overflow="visible"
|
|
228
|
+
stroke="#000"
|
|
229
|
+
stroke-width=".15"
|
|
230
|
+
/>
|
|
231
|
+
<path
|
|
232
|
+
d="M571.376 109.274s.213-3.513 2.449-4.738c0 0 .532.054.585.48.053.425-2.076 4.151-2.076 4.151z"
|
|
233
|
+
fill="#f1b517"
|
|
234
|
+
stroke="#000"
|
|
235
|
+
stroke-width=".15"
|
|
236
|
+
/>
|
|
237
|
+
<path
|
|
238
|
+
d="M571.629 108.879s.177-2.927 2.04-3.947c0 0 .443.044.488.4.044.354-1.73 3.458-1.73 3.458z"
|
|
239
|
+
fill="#f1b517"
|
|
240
|
+
stroke="#000"
|
|
241
|
+
stroke-width=".125"
|
|
242
|
+
/>
|
|
243
|
+
<circle cx="551.147" cy="100.305" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
244
|
+
<path
|
|
245
|
+
d="M581.874 75.422s4.03.232 3.983 2.223c-.046 1.992-.648 3.937.695 4.308 1.343.37 4.122.37 4.817 1.111.694.741.694 1.575.694 1.575s-3.473-1.25-5.002-.37c-1.528.88-3.128-.51-3.38-.973-.557-1.02-.232-3.01-1.298-3.381-1.065-.37-4.446-.417-4.446-.417z"
|
|
246
|
+
fill="#d20014"
|
|
247
|
+
/>
|
|
248
|
+
<path d="M552.633 48.008c.63-10.867-1.26-23.623-1.26-23.623l-.158-1.89-32.6 31.183s2.209 3.313 1.882 16.534l2.528-1.73z" fill="#0a328c" />
|
|
249
|
+
<path d="M552.633 48.008c.63-10.867-1.26-23.623-1.26-23.623l-.158-1.89" fill="none" stroke="#000" stroke-width=".265" />
|
|
250
|
+
<g fill="#f1b517" stroke="#000">
|
|
251
|
+
<path
|
|
252
|
+
d="M543.911-1.2l-4.364 10.177s-1.269-1.29-2.296.048l-1.024 1.333m7.668-11.57l-8.424 7.187s1.607.83.635 2.207l-.968 1.374 1.089.802"
|
|
253
|
+
stroke-width=".3"
|
|
254
|
+
/>
|
|
255
|
+
<path d="M532.89 7.305l5.994 4.385-1.573 2.15-5.994-4.384z" stroke-width=".3" />
|
|
256
|
+
<path d="M533.023 7.966l5.19 3.797-1.035 1.417-5.19-3.797z" stroke-width=".15" />
|
|
257
|
+
</g>
|
|
258
|
+
<g fill="#f1b517" stroke="#000">
|
|
259
|
+
<path
|
|
260
|
+
d="M563.286 11.409l-5.922 9.356s-1.049-1.474-2.275-.316l-1.222 1.153m9.405-10.208l-9.457 5.761s1.456 1.074.278 2.28l-1.175 1.203.949.964"
|
|
261
|
+
stroke-width=".3"
|
|
262
|
+
/>
|
|
263
|
+
<path d="M551.056 18.06l5.224 5.279-1.895 1.874-5.223-5.28z" stroke-width=".3" />
|
|
264
|
+
<path d="M551.083 18.733l4.523 4.572-1.248 1.234-4.523-4.571z" stroke-width=".15" />
|
|
265
|
+
</g>
|
|
266
|
+
<g fill="#f1b517" stroke="#000">
|
|
267
|
+
<path
|
|
268
|
+
d="M575.896 32.689l-7.438 8.203s-.78-1.632-2.187-.701l-1.402.927m11.015-8.446l-10.304 4.055s1.25 1.308-.117 2.294l-1.363.984.769 1.113"
|
|
269
|
+
stroke-width=".3"
|
|
270
|
+
/>
|
|
271
|
+
<path d="M562.707 37.145l4.242 6.097-2.188 1.522-4.242-6.097z" stroke-width=".3" />
|
|
272
|
+
<path d="M562.618 37.814l3.673 5.279-1.441 1.002-3.673-5.279z" stroke-width=".15" />
|
|
273
|
+
</g>
|
|
274
|
+
<path
|
|
275
|
+
color="#000"
|
|
276
|
+
d="M534.065 11.472l-37.87 48.098.59.463 37.87-48.098zM550.418 23.229L495.662 74.02l.51.551 54.756-50.795zM559.232 43.568L500.94 83.467l.424.619 58.293-39.898z"
|
|
277
|
+
fill="#f1b517"
|
|
278
|
+
font-family="sans-serif"
|
|
279
|
+
font-weight="400"
|
|
280
|
+
overflow="visible"
|
|
281
|
+
stroke="#000"
|
|
282
|
+
stroke-width=".3"
|
|
283
|
+
/>
|
|
284
|
+
<path
|
|
285
|
+
d="M552.99 23.897s-5.495-1.05-6.833-.238 2.342.86 3.059.62l-1.386 1.387s-3.154-.765-3.68-3.728c-.525-2.963 1.577-2.963 2.055-2.915.478.048 3.25.478 6.786 4.874z"
|
|
286
|
+
fill="#0a328c"
|
|
287
|
+
stroke="#000"
|
|
288
|
+
stroke-width=".265"
|
|
289
|
+
/>
|
|
290
|
+
<path
|
|
291
|
+
d="M545.101 20.784c-.604.18-1.059.604-.903 1.393 0 0 .239.908.478 1.386a.304.304 0 01.073-.084c.181.283.387.533.606.753a6.4 6.4 0 01.539-.177c-.068-.104-.003-.235.263-.396.149-.09.35-.156.587-.205.998-.383 2.491.014 2.806-.034l1.673.095s-4.98-3.07-6.122-2.73z"
|
|
292
|
+
fill="#d20014"
|
|
293
|
+
stroke="#000"
|
|
294
|
+
stroke-width=".15"
|
|
295
|
+
/>
|
|
296
|
+
<path d="M550.793 23.324s-6.125-1.831-6.125-.063" fill="none" stroke="#000" stroke-width=".15" />
|
|
297
|
+
<path
|
|
298
|
+
d="M552.99 23.897s-5.495-1.05-6.833-.238 2.342.86 3.059.62l-1.386 1.387s-3.154-.765-3.68-3.728c-.525-2.963 1.577-2.963 2.055-2.915.478.048 3.25.478 6.786 4.874z"
|
|
299
|
+
fill="none"
|
|
300
|
+
stroke="#000"
|
|
301
|
+
stroke-width=".3"
|
|
302
|
+
/>
|
|
303
|
+
<path
|
|
304
|
+
d="M552.275 23.853c-.143.69-.301 1.596-.22 2.002 1.79 4.572 4.223 4.671 3.27 10.226l1.884-.053c.204-2.577-.203-5.018-.678-6.103-.237-.543-.763-1.187-1.339-1.815-.577-.627-1.204-1.237-1.645-1.712-.882-.95-.271-2.17-.271-2.17z"
|
|
305
|
+
fill="#0a328c"
|
|
306
|
+
stroke="#000"
|
|
307
|
+
stroke-width=".15"
|
|
308
|
+
/>
|
|
309
|
+
<path
|
|
310
|
+
d="M551.106 23.414s-.332.874-.332 2.1c0 .613.083 1.313.332 2.037.249.723.46 1.44.633 2.233.347 1.588.542 3.487.587 6.38l2.998-.083c.954-5.555-1.48-5.654-3.269-10.226-.081-.406.077-1.312.22-2.002z"
|
|
311
|
+
fill="#d20014"
|
|
312
|
+
stroke="#000"
|
|
313
|
+
stroke-width=".265"
|
|
314
|
+
/>
|
|
315
|
+
<path
|
|
316
|
+
d="M553.276 24.228s-.61 1.22.271 2.17c.441.475 1.068 1.085 1.645 1.712.576.628 1.102 1.272 1.34 1.815.474 1.085.88 3.526.677 6.103m0 0l-4.882.136c-.046-2.894-.242-4.793-.588-6.38a19.598 19.598 0 00-.633-2.233 6.261 6.261 0 01-.332-2.037c0-1.226.332-2.1.332-2.1l2.17.814"
|
|
317
|
+
fill="none"
|
|
318
|
+
stroke="#000"
|
|
319
|
+
stroke-width=".3"
|
|
320
|
+
/>
|
|
321
|
+
<path d="M553.886 36.096s.679-3.052-.881-5.764c-1.57-2.774-2.04-6.994-1.221-6.715" fill="none" stroke="#000" stroke-width=".15" />
|
|
322
|
+
<path
|
|
323
|
+
d="M548.427 80.397l-4.218 7.38-16.665 1.24-1.575.212s-2.434 5.738-5.137 6.503c-2.703.764-20.78 6.402-20.78 6.402l-.557-4.133 11.715-3.78s3.437-1.264 4.46-2.604c1.021-1.34 9.543-9.5 9.543-9.5z"
|
|
324
|
+
fill="#f1b517"
|
|
325
|
+
stroke="#000"
|
|
326
|
+
stroke-width=".157"
|
|
327
|
+
/>
|
|
328
|
+
<g stroke="#000" stroke-width=".3">
|
|
329
|
+
<path
|
|
330
|
+
color="#000"
|
|
331
|
+
d="M540.959 61.578l-24.223 40.371.514.309 24.223-40.371z"
|
|
332
|
+
fill="#f1b517"
|
|
333
|
+
font-family="sans-serif"
|
|
334
|
+
font-weight="400"
|
|
335
|
+
overflow="visible"
|
|
336
|
+
/>
|
|
337
|
+
<path
|
|
338
|
+
d="M540.471 63.209s.684.647 1.533-.389c.85-1.036 3.332-5.311 3.807-6.088.475-.778 1.087-1.425.28-1.944-.805-.518-1.935.13-2.864 2.073-.928 1.943-3.98 5.311-2.756 6.348z"
|
|
339
|
+
fill="#fff"
|
|
340
|
+
/>
|
|
341
|
+
</g>
|
|
342
|
+
<path
|
|
343
|
+
d="M561.907 68.754c.905-.122 2.45 1.647 2.863 4.722.413 3.075.016 5.666-.889 5.787-.33.043-.7-.257-1.058-.858l-48.357 6.505-1.018-9.136 47.977-5.7c.156-1.177.028-1.257.482-1.32z"
|
|
344
|
+
fill="#f1b517"
|
|
345
|
+
stroke="#000"
|
|
346
|
+
stroke-width=".15736518"
|
|
347
|
+
/>
|
|
348
|
+
<path
|
|
349
|
+
d="M262.965 61.762s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.206.664-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.056s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.056s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081"
|
|
350
|
+
fill="#f4cf0e"
|
|
351
|
+
stroke="#000"
|
|
352
|
+
stroke-linecap="round"
|
|
353
|
+
stroke-width=".15"
|
|
354
|
+
transform="matrix(-1.0396243,0.13985207,0.13985207,1.0396243,780.1168,-25.809613) matrix(1.000553,0,0,0.70120787,-0.08578216,18.848186)"
|
|
355
|
+
/>
|
|
356
|
+
<path
|
|
357
|
+
d="M563.078 73.084l-48.972 6.587M563.226 74.184l-48.972 6.588M563.374 75.284l-48.972 6.588M563.448 75.834l-48.972 6.588M563.522 76.384l-48.972 6.588M563.596 76.935l-48.972 6.587M563.67 77.485l-48.972 6.588M563.744 78.035l-48.972 6.588"
|
|
358
|
+
fill="none"
|
|
359
|
+
stroke="#000"
|
|
360
|
+
stroke-width=".27798235000000004"
|
|
361
|
+
/>
|
|
362
|
+
<path
|
|
363
|
+
d="M554.628 70.105a1.544 5.091-4.009 011.895 4.982 1.544 5.091-4.009 01-1.19 5.175 1.544 5.091-4.009 01-.484-.216 1.544 5.091-4.009 00.68-4.825 1.544 5.091-4.009 00-1.409-4.766 1.544 5.091-4.009 01.508-.35zM520.381 74.712a1.544 5.091-4.009 011.894 4.982 1.544 5.091-4.009 01-1.189 5.175 1.544 5.091-4.009 01-.485-.216 1.544 5.091-4.009 00.682-4.825 1.544 5.091-4.009 00-1.41-4.766 1.544 5.091-4.009 01.508-.35z"
|
|
364
|
+
fill="#f1b517"
|
|
365
|
+
stroke="#000"
|
|
366
|
+
stroke-linecap="round"
|
|
367
|
+
stroke-width=".1573485"
|
|
368
|
+
/>
|
|
369
|
+
<path
|
|
370
|
+
d="M513.207 78.799l-2.731-.184s-1.677.576-1.78 1.292c-.105.715-.163 1.776-.025 2.058.139.282 3.323.856 4.44-.147z"
|
|
371
|
+
fill="#f1b517"
|
|
372
|
+
stroke="#000"
|
|
373
|
+
stroke-width=".1573485"
|
|
374
|
+
/>
|
|
375
|
+
<path d="M508.696 79.906c1.092.268 3.02.16 4.476.02l-.06 1.892c-1.118 1.002-4.302.429-4.44.147-.139-.282-.08-1.343.023-2.058v-.001z" />
|
|
376
|
+
<path
|
|
377
|
+
d="M513.714 75.526a1.073 4.923-3.743 01.333.2 1.07 5.213-3.989 00-.177 4.388 1.07 5.213-3.989 00.947 4.653 1.073 4.923-3.743 01-.45.584 1.073 4.923-3.743 01-1.395-4.818 1.073 4.923-3.743 01.742-5.007z"
|
|
378
|
+
fill="#f1b517"
|
|
379
|
+
stroke="#000"
|
|
380
|
+
stroke-linecap="round"
|
|
381
|
+
stroke-width=".15736518"
|
|
382
|
+
/>
|
|
383
|
+
<g transform="matrix(-1,0,0,1,984.9863,0.74097931)">
|
|
384
|
+
<path
|
|
385
|
+
d="M443.728 74.86v.033c.553.125.965.615.965 1.207v8.27l-5.847-5.848a1.235 1.235 0 01-.172-1.535l-.024-.023-2.533 2.533.01.01a1.233 1.233 0 011.646.088l5.945 5.944h-8.465c-.592 0-1.082-.41-1.207-.963h-.033v3.582h.014c.069-.62.586-1.102 1.226-1.102h8.408l-5.985 5.985a1.236 1.236 0 01-1.536.172l-.023.024 2.533 2.533.01-.01a1.233 1.233 0 01.088-1.646l5.945-5.945v8.464c0 .592-.412 1.082-.965 1.208v.033h3.583v-.014a1.233 1.233 0 01-1.102-1.227V88.03l6.083 6.084c.453.452.478 1.158.088 1.646l.01.01 2.534-2.533-.024-.024a1.235 1.235 0 01-1.536-.172l-5.985-5.985h8.407c.64 0 1.157.481 1.226 1.102h.014v-3.582h-.033a1.235 1.235 0 01-1.207.963h-8.464l5.945-5.944a1.233 1.233 0 011.646-.088l.01-.01-2.534-2.533-.023.023c.303.48.247 1.117-.171 1.535l-5.986 5.986V76.1c0-.64.481-1.157 1.102-1.226v-.014z"
|
|
386
|
+
fill="#f1b517"
|
|
387
|
+
stroke="#000"
|
|
388
|
+
stroke-linecap="round"
|
|
389
|
+
stroke-width=".15001685999999997"
|
|
390
|
+
/>
|
|
391
|
+
<circle cx="445.451" cy="86.476" fill="#f1b517" r="2.282" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
392
|
+
<path
|
|
393
|
+
d="M445.45 71.277a15.09 15.09 0 00-15.089 15.09 15.09 15.09 0 0015.09 15.09 15.09 15.09 0 0015.09-15.09 15.09 15.09 0 00-15.09-15.09zm0 3.84a11.25 11.25 0 0111.25 11.25 11.25 11.25 0 01-11.25 11.25 11.25 11.25 0 01-11.25-11.25 11.25 11.25 0 0111.25-11.25z"
|
|
394
|
+
fill="#f1b517"
|
|
395
|
+
stroke="#000"
|
|
396
|
+
stroke-linecap="round"
|
|
397
|
+
stroke-width=".15001685999999997"
|
|
398
|
+
/>
|
|
399
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
400
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
401
|
+
<g transform="rotate(45,445.45132,86.297958)">
|
|
402
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
403
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
404
|
+
</g>
|
|
405
|
+
<g transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,699.4111,-289.70556)">
|
|
406
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
407
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
408
|
+
</g>
|
|
409
|
+
<g transform="matrix(0,1,1,0,359.15336,-359.15336)">
|
|
410
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
411
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
412
|
+
</g>
|
|
413
|
+
<g transform="matrix(0.37566452,0.92675572,0.92675572,-0.37566452,198.13393,-294.10752)">
|
|
414
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
415
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
416
|
+
</g>
|
|
417
|
+
<g transform="rotate(113.39109,445.45132,86.297957)">
|
|
418
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
419
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
420
|
+
</g>
|
|
421
|
+
<g transform="rotate(23.077806,445.45132,86.297956)">
|
|
422
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
423
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
424
|
+
</g>
|
|
425
|
+
<g transform="matrix(-0.9199734,0.39198079,0.39198079,0.9199734,821.42755,-167.70223)">
|
|
426
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
427
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
428
|
+
</g>
|
|
429
|
+
</g>
|
|
430
|
+
<circle cx="556.963" cy="100.305" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
431
|
+
<path
|
|
432
|
+
d="M498.222 68.61s5.88 2.533 6.386-1.826c0 0 3.548 4.46-1.317 7.3 0 0 2.23-3.549-5.069-3.954 0 0-1.014.101-.912-.71.101-.81.912-.81.912-.81z"
|
|
433
|
+
fill="#fff"
|
|
434
|
+
stroke="#000"
|
|
435
|
+
stroke-width=".15"
|
|
436
|
+
/>
|
|
437
|
+
<path d="M497.303 69.56c.833.074 2.733.284 5.684.874 1.31.262 2.226.1 2.87-.239.008 1.29-.572 2.725-2.567 3.888 0 0 2.23-3.548-5.068-3.953 0 0-.892.089-.919-.57z" />
|
|
438
|
+
<path
|
|
439
|
+
color="#000"
|
|
440
|
+
d="M500.814 68.572l.494.074-2.027 13.584-.495-.074z"
|
|
441
|
+
fill="#fff"
|
|
442
|
+
font-family="sans-serif"
|
|
443
|
+
font-weight="400"
|
|
444
|
+
overflow="visible"
|
|
445
|
+
stroke="#000"
|
|
446
|
+
stroke-width=".15"
|
|
447
|
+
/>
|
|
448
|
+
<path
|
|
449
|
+
color="#000"
|
|
450
|
+
d="M500.615 68.543l.89.133-.408 2.736-.89-.133z"
|
|
451
|
+
fill="#fff"
|
|
452
|
+
font-family="sans-serif"
|
|
453
|
+
font-weight="400"
|
|
454
|
+
overflow="visible"
|
|
455
|
+
stroke="#000"
|
|
456
|
+
stroke-width=".15"
|
|
457
|
+
/>
|
|
458
|
+
<g stroke="#000" stroke-width=".15" transform="matrix(-1,0,0,1,984.5452,0)">
|
|
459
|
+
<ellipse cx="472.443" cy="104.751" fill="#fff" rx="3.569" ry="1.681" />
|
|
460
|
+
<g fill="#f1b517">
|
|
461
|
+
<path
|
|
462
|
+
d="M472.761 84.818c-.33-.016-.648.039-.736.236-.175.396.352.483.352.483v2.24c0 .703-.571 11.287-.835 13.35a7.687 7.687 0 01-.467 1.851s-2.52.302-2.387 1.444c.131 1.141 1.493 1.896 3.777 1.844 2.815-.064 3.601-.659 3.733-1.361.132-.703-.659-1.361-1.845-1.581l-.614-3.514s.131.527 1.756.176c1.625-.351 1.581-2.81 1.581-2.81s.044-7.38-.044-8.74c-.087-1.362-.834-2.02-1.888-2.416-.835-.132-1.406.044-1.493.527-.088.483-.308.615-.44.44-.131-.176 0-1.494 0-1.494s.615-.307.352-.483c-.132-.088-.472-.175-.802-.192zm2.12 2.52l.57.307.176 1.581v7.993l-.088.527-.747.615-.834-.176-.44-.527-.307-7.158-.087-2.284 1.054-.702z"
|
|
463
|
+
stroke-width=".15001685999999997"
|
|
464
|
+
/>
|
|
465
|
+
<path
|
|
466
|
+
d="M474.573 104.158s-.966-2.46-1.186-8.915c-.22-6.456-.307-6.983 0-7.29.307-.308 1.186-.835 1.713-.527.527.307.395.395.483 1.493.088 1.098.088 8.212.088 8.212s-.264 1.186-.923 1.142c-.658-.044-1.141-.307-1.23-.79"
|
|
467
|
+
fill="none"
|
|
468
|
+
/>
|
|
469
|
+
</g>
|
|
470
|
+
<path d="M470.357 104.29s.922-1.098 1.185-3.162c.264-2.064.835-12.648.835-13.351v-2.24" fill="none" />
|
|
471
|
+
</g>
|
|
472
|
+
<g fill="#fff" stroke="#000">
|
|
473
|
+
<path
|
|
474
|
+
d="M524.804 96.618s-3.224.095-4.267 2.087c-1.043 1.991-.474 3.888.759 4.647 1.232.758 3.888 1.327 5.12.569 1.233-.76 2.087-3.225.664-3.51-1.422-.284-3.793-.758-3.508-1.706.284-.949 1.517-.949 1.517-.949z"
|
|
475
|
+
stroke-width=".265"
|
|
476
|
+
/>
|
|
477
|
+
<path d="M491.59 178.412h.597v2.147h-.597z" stroke-width=".15" transform="matrix(0.98736087,-0.1584882,0.21855532,0.97582456,0,0)" />
|
|
478
|
+
</g>
|
|
479
|
+
<path
|
|
480
|
+
color="#000"
|
|
481
|
+
d="M570.121 86.252l-13.617 7.086.072.138.958.173 12.934-6.733z"
|
|
482
|
+
fill="#fff"
|
|
483
|
+
font-family="sans-serif"
|
|
484
|
+
font-weight="400"
|
|
485
|
+
overflow="visible"
|
|
486
|
+
stroke="#000"
|
|
487
|
+
stroke-width=".3"
|
|
488
|
+
/>
|
|
489
|
+
<path
|
|
490
|
+
color="#000"
|
|
491
|
+
d="M570.523 86.586l-7.673 13.586 1.245-.68 7.083-12.539z"
|
|
492
|
+
fill="#fff"
|
|
493
|
+
font-family="sans-serif"
|
|
494
|
+
font-weight="400"
|
|
495
|
+
overflow="visible"
|
|
496
|
+
stroke="#000"
|
|
497
|
+
stroke-width=".3"
|
|
498
|
+
/>
|
|
499
|
+
<path
|
|
500
|
+
color="#000"
|
|
501
|
+
d="M583.64 73.375a.375.375 0 00-.004 0 .375.375 0 00-.258.114l-12.924 12.83a.375.375 0 10.53.53l12.704-12.611v-.86a.375.375 0 00-.049-.003z"
|
|
502
|
+
font-family="sans-serif"
|
|
503
|
+
font-weight="400"
|
|
504
|
+
overflow="visible"
|
|
505
|
+
/>
|
|
506
|
+
<path
|
|
507
|
+
color="#000"
|
|
508
|
+
d="M572.558 84.398a.375.375 0 00-.257.114L559.47 97.249l1.123-.057 12.235-12.147a.375.375 0 00-.27-.647z"
|
|
509
|
+
fill="#fff"
|
|
510
|
+
font-family="sans-serif"
|
|
511
|
+
font-weight="400"
|
|
512
|
+
overflow="visible"
|
|
513
|
+
stroke="#000"
|
|
514
|
+
stroke-linecap="round"
|
|
515
|
+
stroke-width=".3"
|
|
516
|
+
/>
|
|
517
|
+
<circle cx="523.951" cy="109.883" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
518
|
+
<circle cx="529.652" cy="105.094" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
519
|
+
<circle cx="538.432" cy="105.664" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
520
|
+
<circle cx="545.104" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
521
|
+
<circle cx="550.919" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
522
|
+
<circle cx="556.735" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
523
|
+
<circle cx="562.55" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
524
|
+
<circle cx="548.069" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
525
|
+
<circle cx="553.884" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
526
|
+
<circle cx="559.699" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
527
|
+
<path
|
|
528
|
+
d="M535.734 13.089s-.187 1.876 1.408 3.002 3.471 2.346 4.222 5.536c.75 3.19.187 2.815.187 2.815l-4.972.844s.563-2.252-.657-4.034c-1.22-1.783-3.002-6.943-1.314-9.007z"
|
|
529
|
+
fill="#d20014"
|
|
530
|
+
stroke="#000"
|
|
531
|
+
stroke-width=".3"
|
|
532
|
+
/>
|
|
533
|
+
<path
|
|
534
|
+
d="M535.576 12.97c-.296.726-.815 2.451.346 3.684 1.501 1.595 2.908 2.346 3.471 4.504.337 1.292.561 2.622.697 3.531l1.461-.248s.563.376-.187-2.814-2.627-4.41-4.222-5.535c-1.595-1.126-1.408-3.003-1.408-3.003z"
|
|
535
|
+
fill="#0a328c"
|
|
536
|
+
stroke="#000"
|
|
537
|
+
stroke-width=".15001685999999997"
|
|
538
|
+
/>
|
|
539
|
+
<path
|
|
540
|
+
d="M534.984 12.15s-.939 2.159.094 4.317c1.032 2.158 2.064 3.19 2.627 4.597.563 1.407 0 2.72.656 3.753"
|
|
541
|
+
fill="none"
|
|
542
|
+
stroke="#000"
|
|
543
|
+
stroke-width=".15"
|
|
544
|
+
/>
|
|
545
|
+
<path
|
|
546
|
+
color="#000"
|
|
547
|
+
d="M573.904 106.957a.2.2 0 10.063.395s3.398-.534 5.924 2.04a.2.2 0 10.285-.279c-2.671-2.722-6.272-2.156-6.272-2.156z"
|
|
548
|
+
fill="#fff"
|
|
549
|
+
font-family="sans-serif"
|
|
550
|
+
font-weight="400"
|
|
551
|
+
overflow="visible"
|
|
552
|
+
stroke="#000"
|
|
553
|
+
stroke-linecap="round"
|
|
554
|
+
stroke-width=".15"
|
|
555
|
+
/>
|
|
556
|
+
<path
|
|
557
|
+
color="#000"
|
|
558
|
+
d="M579.832 110.797s-.007.534.43 1.047c.436.512 1.302 1.005 2.963 1.056l.011-.4c-1.587-.049-2.319-.504-2.67-.916-.35-.412-.334-.777-.334-.777z"
|
|
559
|
+
fill="#fff"
|
|
560
|
+
font-family="sans-serif"
|
|
561
|
+
font-weight="400"
|
|
562
|
+
overflow="visible"
|
|
563
|
+
stroke="#000"
|
|
564
|
+
stroke-width=".15"
|
|
565
|
+
/>
|
|
566
|
+
<path
|
|
567
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-.883-.455-5.162-2.53-5.162-2.53l-.408 1.462 5.73 2.665s1.33.586.957 1.597c-.372 1.011-.585 1.17-.585 1.17z"
|
|
568
|
+
fill="#f1b517"
|
|
569
|
+
/>
|
|
570
|
+
<path
|
|
571
|
+
color="#000"
|
|
572
|
+
d="M574.839 106.91c.068.127.136.26.206.404.095.004.195.01.3.018a13.166 13.166 0 00-.202-.412 8.294 8.294 0 00-.304-.01zm1.013.08c.047.132.093.268.14.418.095.016.194.037.292.057a12.51 12.51 0 00-.138-.43 8.167 8.167 0 00-.294-.046zm1.092.226c.024.137.047.28.068.434.091.028.183.059.276.092-.02-.155-.04-.3-.063-.438-.095-.03-.188-.062-.28-.088zm1.092.398c-.003.14-.007.284-.015.437.086.041.172.085.258.132a12.7 12.7 0 00.02-.437c-.088-.045-.176-.092-.264-.132zm1.006.56c-.028.136-.058.276-.092.42.077.054.155.111.232.17.036-.147.065-.286.095-.425a7.103 7.103 0 00-.235-.164zM580.476 111.465l-.19.404c.06.067.127.133.201.198l.178-.38c-.034-.035-.07-.07-.098-.103a1.608 1.608 0 01-.09-.119zm.544.498l-.05.434c.077.042.163.081.252.12l.048-.417a2.541 2.541 0 01-.25-.137zm.633.29l.08.44a5 5 0 00.28.067l-.077-.427a4.032 4.032 0 01-.283-.08zm.566.144l.186.43c.1.014.199.029.306.039l-.185-.425c-.105-.013-.212-.027-.307-.044z"
|
|
573
|
+
font-family="sans-serif"
|
|
574
|
+
font-weight="400"
|
|
575
|
+
overflow="visible"
|
|
576
|
+
/>
|
|
577
|
+
<path
|
|
578
|
+
d="M560.742 38.89s-3.007-1.445-3.7-.231c-.695 1.214-.984 3.642 0 5.088 0 0 4.278.52 6.475-.231l.29-.174z"
|
|
579
|
+
fill="#0a328c"
|
|
580
|
+
stroke="#000"
|
|
581
|
+
stroke-width=".3"
|
|
582
|
+
/>
|
|
583
|
+
<path
|
|
584
|
+
d="M557.76 40.215c-.477-.01-.934.138-1.295.307-.147 1.11-.02 2.348.576 3.225 0 0 3.788.46 6.066-.112-1.096-.344-2.984-2.154-4.273-3.068a1.896 1.896 0 00-1.074-.352z"
|
|
585
|
+
fill="#d20014"
|
|
586
|
+
stroke="#000"
|
|
587
|
+
stroke-width=".15001685999999997"
|
|
588
|
+
/>
|
|
589
|
+
<path d="M556.463 42.648s1.445-.983 3.758.058c2.313 1.04 2.313.867 2.313.867" fill="none" stroke="#000" stroke-width=".15" />
|
|
590
|
+
<path
|
|
591
|
+
d="M560.742 38.89s-3.007-1.445-3.7-.231c-.695 1.214-.984 3.642 0 5.088 0 0 4.278.52 6.475-.231l.29-.174z"
|
|
592
|
+
fill="none"
|
|
593
|
+
stroke="#000"
|
|
594
|
+
stroke-width=".3"
|
|
595
|
+
/>
|
|
596
|
+
<path d="M561.609 43.805s.462 1.966.578 6.07c.116 4.106-.752 6.881-1.098 6.824" fill="none" stroke="#000" stroke-width=".15" />
|
|
597
|
+
<path
|
|
598
|
+
d="M563.748 43.227s1.735 1.734 1.966 5.666c.231 3.932.174 6.65.174 6.65s-2.834 1.676-5.493.982c0 0 .462-1.156.52-2.775.058-1.62-.058-10.003-.058-10.003"
|
|
599
|
+
fill="none"
|
|
600
|
+
stroke="#000"
|
|
601
|
+
stroke-width=".265"
|
|
602
|
+
/>
|
|
603
|
+
<path d="M537.903 24.955s1.387 5.725 1.56 8.384" fill="none" stroke="#000" stroke-width=".3" />
|
|
604
|
+
<path d="M527.158 13.193s1.413-1.925 5.59-.246" fill="none" stroke="#000" stroke-width=".15" />
|
|
605
|
+
</g>
|
|
606
|
+
<path
|
|
607
|
+
d="M499.143-5.188l.824-27.052 3.845-2.06 1.099 29.112z"
|
|
608
|
+
fill="#016a16"
|
|
609
|
+
stroke="#000"
|
|
610
|
+
stroke-width=".287"
|
|
611
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
612
|
+
/>
|
|
613
|
+
<path
|
|
614
|
+
d="M500.72-56.993s-.372 0-.99-.62c-.62-.618-.99-.618-.496-1.485.495-.866 1.114-1.98 3.219-1.857 2.104.124 3.714.248 4.456 2.476.743 2.228.99 8.17.372 10.646-3.219-.124-8.047-2.723-8.79-4.456-.742-1.733 2.229-4.704 2.229-4.704z"
|
|
615
|
+
fill="#0a328c"
|
|
616
|
+
stroke="#000"
|
|
617
|
+
stroke-width=".325"
|
|
618
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
619
|
+
/>
|
|
620
|
+
<g stroke="#000">
|
|
621
|
+
<path
|
|
622
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
623
|
+
fill="#f1b517"
|
|
624
|
+
stroke-width="1.228"
|
|
625
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) scale(0.26458333)"
|
|
626
|
+
/>
|
|
627
|
+
<path
|
|
628
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23zm57.778 86.565c-1.658.6-4.125 1.578-5.723 2.6l7.031 13.277c1.165-.865 3.418-2.33 5.697-2.615a.782.782 0 00.424-.184z"
|
|
629
|
+
fill="#fff"
|
|
630
|
+
stroke-width=".567"
|
|
631
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) scale(0.26458333)"
|
|
632
|
+
/>
|
|
633
|
+
<path
|
|
634
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
635
|
+
fill="none"
|
|
636
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) scale(0.26458333)"
|
|
637
|
+
/>
|
|
638
|
+
<path
|
|
639
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
640
|
+
fill="none"
|
|
641
|
+
stroke-width="1.228"
|
|
642
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) scale(0.26458333)"
|
|
643
|
+
/>
|
|
644
|
+
<g>
|
|
645
|
+
<path
|
|
646
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
647
|
+
fill="#f1b517"
|
|
648
|
+
stroke-width="1.228"
|
|
649
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
650
|
+
/>
|
|
651
|
+
<path
|
|
652
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23z"
|
|
653
|
+
fill="#fff"
|
|
654
|
+
stroke-width=".567"
|
|
655
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
656
|
+
/>
|
|
657
|
+
<path
|
|
658
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
659
|
+
fill="none"
|
|
660
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
661
|
+
/>
|
|
662
|
+
<path
|
|
663
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
664
|
+
fill="none"
|
|
665
|
+
stroke-width="1.228"
|
|
666
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
667
|
+
/>
|
|
668
|
+
<path
|
|
669
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686-.661-2.52z"
|
|
670
|
+
fill="#fff"
|
|
671
|
+
stroke-width=".15"
|
|
672
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329)"
|
|
673
|
+
/>
|
|
674
|
+
<path
|
|
675
|
+
d="M480.036 28.85l-.41.182.542 1.265.628-.395z"
|
|
676
|
+
fill="none"
|
|
677
|
+
stroke-width=".265"
|
|
678
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329)"
|
|
679
|
+
/>
|
|
680
|
+
<path
|
|
681
|
+
d="M1824.676 136.95c-1.97.54-3.731 1.78-5.082 2.95l5.412 13.272c1.624-1.002 3.76-1.909 5.69-2.627z"
|
|
682
|
+
fill="#fff"
|
|
683
|
+
stroke-width=".567"
|
|
684
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) scale(0.26458333)"
|
|
685
|
+
/>
|
|
686
|
+
<path
|
|
687
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686 10.87 26.659.538-4.28-10.474-23.658.642-.404-.76-1.052-.44.196-.011-.025s-.847-.192-.987.119z"
|
|
688
|
+
fill="none"
|
|
689
|
+
stroke-width=".325"
|
|
690
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329)"
|
|
691
|
+
/>
|
|
692
|
+
</g>
|
|
693
|
+
<g>
|
|
694
|
+
<path
|
|
695
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
696
|
+
fill="#f1b517"
|
|
697
|
+
stroke-width="1.228"
|
|
698
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
699
|
+
/>
|
|
700
|
+
<path
|
|
701
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26-3.436-9.23z"
|
|
702
|
+
fill="#fff"
|
|
703
|
+
stroke-width=".567"
|
|
704
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
705
|
+
/>
|
|
706
|
+
<path
|
|
707
|
+
d="M1800.525 128.34l-1.47.84 2.513 4.55 2.215-1.722z"
|
|
708
|
+
fill="none"
|
|
709
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
710
|
+
/>
|
|
711
|
+
<path
|
|
712
|
+
d="M1763.447 81.89l28.522 60.303 6.52-3.26 50.929 96.159.408-16.297-48.308-85.025 2.265-1.762-3.258-3.668-1.58.902-.05-.088s-3.26-.406-3.667.817z"
|
|
713
|
+
fill="none"
|
|
714
|
+
stroke-width="1.228"
|
|
715
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745) rotate(5.7228108,529.2951,67.882023) scale(0.26458333)"
|
|
716
|
+
/>
|
|
717
|
+
<path
|
|
718
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686-.661-2.52z"
|
|
719
|
+
fill="#fff"
|
|
720
|
+
stroke-width=".15"
|
|
721
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
722
|
+
/>
|
|
723
|
+
<path
|
|
724
|
+
d="M480.036 28.85l-.41.182.542 1.265.628-.395z"
|
|
725
|
+
fill="none"
|
|
726
|
+
stroke-width=".265"
|
|
727
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
728
|
+
/>
|
|
729
|
+
<path
|
|
730
|
+
d="M1824.676 136.95c-1.97.54-3.731 1.78-5.082 2.95l5.412 13.272c1.624-1.002 3.76-1.909 5.69-2.627z"
|
|
731
|
+
fill="#fff"
|
|
732
|
+
stroke-width=".567"
|
|
733
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745) scale(0.26458333)"
|
|
734
|
+
/>
|
|
735
|
+
<path
|
|
736
|
+
d="M471.5 15.643l5.917 16.628 1.803-.686 10.87 26.659.538-4.28-10.474-23.658.642-.404-.76-1.052-.44.196-.011-.025s-.847-.192-.987.119z"
|
|
737
|
+
fill="none"
|
|
738
|
+
stroke-width=".325"
|
|
739
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1036.2249,-11.930329) rotate(4.1525049,502.68583,103.38745)"
|
|
740
|
+
/>
|
|
741
|
+
</g>
|
|
742
|
+
</g>
|
|
743
|
+
<path
|
|
744
|
+
d="M505.052-56.08s-2.6.496-2.475 1.734"
|
|
745
|
+
fill="none"
|
|
746
|
+
stroke="#000"
|
|
747
|
+
stroke-linecap="round"
|
|
748
|
+
stroke-width=".287"
|
|
749
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
750
|
+
/>
|
|
751
|
+
<path
|
|
752
|
+
d="M503.815-58.85s-2.971.743-3.962 3.342M502.453-58.479s-1.733 1.486-2.476.99"
|
|
753
|
+
fill="none"
|
|
754
|
+
stroke="#000"
|
|
755
|
+
stroke-width=".287"
|
|
756
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
757
|
+
/>
|
|
758
|
+
<path
|
|
759
|
+
d="M499.532-54.898c-.114.004-.174.01-.174.01l-.344.097c-.495.846-.831 1.78-.522 2.502.053.123.128.251.22.383l.274-.136s5.695-.495 8.17 3.838l.149.259c.235-1.02.335-2.566.323-4.197-3.944-2.715-7.309-2.783-8.096-2.756z"
|
|
760
|
+
fill="#d20014"
|
|
761
|
+
stroke="#000"
|
|
762
|
+
stroke-width=".287"
|
|
763
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
764
|
+
/>
|
|
765
|
+
<path
|
|
766
|
+
d="M506.167-54.718s-1.362.62-1.362 1.238"
|
|
767
|
+
fill="none"
|
|
768
|
+
stroke="#000"
|
|
769
|
+
stroke-linecap="round"
|
|
770
|
+
stroke-width=".287"
|
|
771
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
772
|
+
/>
|
|
773
|
+
<path
|
|
774
|
+
d="M495.559 5.491s1.67 54.99.304 75.65m-.304-75.65c-1.984-.304-5.308 0-5.308 0s-1.67 54.99-.304 75.65c0 0 3.628-.456 5.916 0"
|
|
775
|
+
fill="#f1b517"
|
|
776
|
+
stroke="#000"
|
|
777
|
+
stroke-width=".3"
|
|
778
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.1027993,0,0,1.0843392,-41.468682,-11.269812)"
|
|
779
|
+
/>
|
|
780
|
+
<path
|
|
781
|
+
color="#000"
|
|
782
|
+
d="M499.835 271.807a65.098 65.098 0 00-2.254.049l-.005.222a66.84 66.84 0 014.804-.008l-.006-.222a66.163 66.163 0 00-2.539-.04zm-.025 1.619a68.616 68.616 0 00-2.273.044l-.005.224a71.53 71.53 0 014.892-.002l-.006-.223a70.694 70.694 0 00-2.608-.043zm-.025 1.62a78.726 78.726 0 00-2.292.04l-.006.222a77.035 77.035 0 014.982.004l-.006-.222a76.237 76.237 0 00-2.678-.044zm-.026 1.62a86 86 0 00-2.31.036l-.006.222a83.593 83.593 0 015.07.01l-.006-.223a82.797 82.797 0 00-2.748-.045zm-.948 1.625c-.515.005-.972.015-1.402.026l-.005.223a91.302 91.302 0 015.148.015l-.005-.223a91.814 91.814 0 00-3.736-.04zm-.023 1.618c-.52.004-.984.012-1.417.022-.003.071-.004.15-.006.223 1.36-.03 3.175-.042 5.225.02l-.005-.223a100.963 100.963 0 00-3.797-.042zm-.022 1.619c-.527.003-.997.01-1.433.018l-.006.223c1.37-.026 3.216-.034 5.302.026l-.006-.223a113.6 113.6 0 00-3.857-.044zm-.024 1.619c-.532.002-1.008.008-1.448.014l-.005.221c1.381-.02 3.256-.026 5.378.032l-.006-.222c-1.443-.039-2.78-.05-3.92-.045zm-.022 1.617c-.539 0-1.022.005-1.464.01-.003.083-.003.14-.005.224 1.392-.017 3.294-.018 5.454.036-.003-.083-.004-.14-.005-.224-1.47-.037-2.826-.048-3.98-.046zm-.022 1.62c-.543 0-1.031.002-1.476.006-.003.072-.003.149-.005.222 1.402-.012 3.33-.01 5.521.04l-.004-.222a177.502 177.502 0 00-4.036-.046zm-.024 1.617c-.547 0-1.039 0-1.485.002l-.005.223c1.41-.007 3.364 0 5.587.046l-.004-.223a221.775 221.775 0 00-4.093-.048zm-.022 1.62c-.625-.004-1.005 0-1.496 0l-.004.222c1.428-.002 3.301.003 5.652.047l-.005-.222a295.02 295.02 0 00-4.147-.048zm-1.525 1.614c-.002.073-.002.148-.003.222 1.433.003 3.329.013 5.708.05l-.004-.22a407.873 407.873 0 00-5.7-.052zm-.027 1.613c-.003.075-.003.148-.005.223 1.419.008 2.983.018 5.765.055l-.004-.222c-2.778-.037-4.34-.048-5.757-.056zm-.029 1.612l-.003.222 5.82.061-.004-.222-5.813-.061zm-.024 1.61c0 .075-.002.15-.003.224 1.42.022 3.026.044 5.868.066 0-.074-.003-.15-.004-.224-2.839-.021-4.443-.043-5.86-.065zm-.022 1.616c0 .074-.003.147-.004.222 1.453.027 3.426.058 5.913.069 0-.075-.002-.15-.003-.224-2.485-.01-4.455-.04-5.907-.067zm-.023 1.612c0 .075-.003.148-.003.223 1.456.033 3.446.068 5.958.07 0-.074-.003-.146-.003-.221-2.51-.003-4.498-.038-5.952-.072zm-.02 1.618l-.002.222c1.454.038 3.564.075 5.995.07l-.002-.223c-2.43.005-4.539-.03-5.991-.07zm-.016 1.613l-.002.223c1.457.045 3.578.084 6.027.07l-.002-.222c-2.448.014-4.568-.026-6.023-.07zm-.016 1.614c0 .075-.003.148-.003.222 1.46.051 3.593.094 6.06.071l-.002-.222c-2.466.023-4.598-.02-6.055-.07zm-.015 1.615v.222c1.465.057 3.597.108 6.087.076v-.224a118.69 118.69 0 01-6.085-.074zm-.008 1.613v.223c1.466.063 3.601.118 6.103.076v-.223c-2.502.042-4.639-.013-6.101-.076zm-.008 1.615v.223a91.3 91.3 0 006.12.076c0-.074 0-.148-.002-.222a90.99 90.99 0 01-6.118-.077zm-.008 1.614l-.002.223c1.468.076 3.61.138 6.136.076v-.223c-2.527.063-4.67 0-6.134-.076zm0 1.615v.223c1.467.081 3.604.148 6.132.075v-.222c-2.531.073-4.67.006-6.133-.076zm.002 1.616v.222c1.466.087 3.598.157 6.13.074v-.223a67.152 67.152 0 01-6.13-.073zm.003 1.614v.222a61.8 61.8 0 006.126.073v-.222a61.61 61.61 0 01-6.126-.073zm.01 1.617l.001.222c1.46.098 3.58.173 6.103.07l.002-.223a57.02 57.02 0 01-6.106-.07zm.014 1.616c0 .074 0 .149.002.223 1.456.103 3.56.18 6.074.067 0-.073 0-.148.002-.222-2.52.114-4.626.036-6.077-.068zm.013 1.617l.003.223c1.452.108 3.542.187 6.045.064l.002-.222c-2.51.123-4.603.043-6.05-.065zm.022 1.618c0 .074.002.148.004.222 1.445.112 3.516.192 5.999.061l.003-.222a46.244 46.244 0 01-6.006-.061zm.028 1.617l.005.224c1.437.116 3.483.196 5.94.057.003-.076.004-.148.005-.223-2.468.14-4.518.059-5.95-.058zm.035 1.62c.003.074.004.15.006.223a41.35 41.35 0 005.868.052c.003-.072.004-.149.005-.222a40.974 40.974 0 01-5.878-.053zm.045 1.621l.006.222a39.15 39.15 0 005.777.047l.006-.222c-2.393.154-4.38.075-5.79-.047zm.053 1.622l.01.223c1.398.122 3.338.195 5.665.04l.008-.222a36.862 36.862 0 01-5.683-.041zm.065 1.623l.011.224c1.378.122 3.27.191 5.531.034l.011-.224c-2.279.16-4.178.089-5.553-.034zm.08 1.626c.004.078.01.147.013.224 1.353.12 3.188.182 5.367.026l.014-.225c-2.2.16-4.044.096-5.394-.025z"
|
|
783
|
+
font-family="sans-serif"
|
|
784
|
+
font-weight="400"
|
|
785
|
+
overflow="visible"
|
|
786
|
+
/>
|
|
787
|
+
<path
|
|
788
|
+
d="M493.097 79.065c.371.043.784.083 1.236.117m-1.231-2.03c.376.04.796.079 1.257.111m-1.253-2.025c.382.039.809.075 1.278.106m-1.273-2.02c.386.037.82.072 1.298.102m-1.294-2.015c.392.035.834.068 1.32.096m-1.315-2.01c.397.034.846.064 1.34.091m-1.336-2.004c.403.031.859.06 1.361.085m-1.356-1.998c.408.029.87.056 1.382.08m-1.378-1.993c.413.026.884.052 1.403.074m-1.398-1.988c.418.025.895.048 1.424.069m-1.42-1.982c.424.023.908.044 1.445.063m-1.44-1.977c.429.021.92.04 1.465.059m-1.46-1.972c.434.019.932.036 1.486.053m-1.482-1.966c.44.016.945.032 1.507.047m-1.503-1.96c.445.014.958.028 1.528.041m-1.523-1.955c.45.013.97.025 1.549.036m-1.545-1.95c.456.011.983.021 1.57.032m-1.565-1.945c.46.009.995.017 1.59.026m-1.63-1.94c.466.008 1.008.014 1.612.021m-1.654-1.933l1.633.015m-1.675-1.928c.477.002 1.033.005 1.654.01m-1.695-1.924c.482.001 1.045.002 1.674.005m-1.716-1.918c.487-.001 1.057-.002 1.695 0m-1.737-1.913c.493-.003 1.07-.007 1.716-.006m-1.758-1.907c.498-.005 1.083-.01 1.737-.012m-1.778-1.901c.503-.008 1.094-.015 1.757-.018m-1.8-1.896c.51-.009 1.108-.018 1.78-.022m-1.821-1.89c.514-.012 1.12-.023 1.8-.029m-1.842-1.885c.52-.013 1.132-.026 1.82-.033m-1.862-1.88c.525-.015 1.145-.03 1.842-.039m-1.883-1.874c.53-.018 1.157-.034 1.862-.044m-1.904-1.87c.535-.019 1.17-.037 1.883-.049m-1.925-1.864c.54-.02 1.182-.041 1.904-.054m-1.946-1.859a86.342 86.342 0 011.925-.06m-1.966-1.853c.55-.025 1.207-.05 1.945-.066m-1.987-1.847c.556-.027 1.22-.054 1.966-.071m-2.008-1.843c.562-.029 1.232-.057 1.988-.076m-2.03-1.837a72.092 72.092 0 012.009-.081"
|
|
789
|
+
fill="none"
|
|
790
|
+
stroke="#000"
|
|
791
|
+
stroke-width=".6"
|
|
792
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.1027993,0,0,1.0843392,-41.468682,-11.269812) translate(1.1855043,-0.79937208)"
|
|
793
|
+
/>
|
|
794
|
+
<path
|
|
795
|
+
d="M493.736 79.065c.37.043.784.083 1.236.117m-1.274-2.036c.376.04.796.079 1.257.111m-1.296-2.03c.382.038.809.075 1.278.106m-1.316-2.026c.387.037.821.072 1.299.101m-1.337-2.02c.392.035.833.068 1.32.096m-1.359-2.015c.398.033.846.063 1.34.09m-1.378-2.01c.403.031.858.06 1.361.085m-1.4-2.004c.409.03.872.056 1.383.08m-1.42-1.999c.413.027.883.052 1.402.074m-1.44-1.993c.418.025.895.048 1.423.069m-1.462-1.988c.423.023.908.044 1.444.063m-1.483-1.982c.43.02.921.04 1.466.058m-1.504-1.978c.434.02.933.037 1.487.053m-1.525-1.972c.44.017.945.033 1.507.048m-1.546-1.967c.445.015.958.029 1.529.042m-1.567-1.961c.45.013.97.025 1.55.036m-1.557-1.955l1.57.031m-1.537-1.95c.46.009.995.017 1.59.026m-1.558-1.945c.466.007 1.008.013 1.612.02m-1.58-1.939l1.633.015m-1.6-1.934c.476.003 1.032.005 1.653.01m-1.622-1.929c.483 0 1.046.001 1.675.004m-1.642-1.923c.487-.001 1.057-.002 1.695 0m-1.663-1.919c.493-.003 1.07-.006 1.716-.006m-1.684-1.913c.498-.005 1.083-.01 1.737-.011m-1.705-1.908c.504-.007 1.095-.014 1.758-.017m-1.726-1.901c.509-.01 1.108-.019 1.78-.023m-1.747-1.896c.514-.012 1.12-.022 1.8-.028m-1.768-1.891c.519-.013 1.132-.026 1.82-.033m-1.788-1.886c.525-.015 1.145-.03 1.841-.039m-1.809-1.88c.53-.017 1.157-.034 1.862-.044m-1.83-1.875c.536-.02 1.17-.038 1.884-.05m-1.851-1.869c.54-.021 1.182-.042 1.904-.055m-1.872-1.864a86.342 86.342 0 011.925-.06m-1.893-1.859c.551-.025 1.207-.05 1.946-.065m-1.914-1.854c.557-.027 1.22-.053 1.967-.07m-1.935-1.849c.562-.029 1.232-.057 1.988-.076M493.83 8.06a72.093 72.093 0 012.008-.081"
|
|
796
|
+
fill="none"
|
|
797
|
+
stroke="#000"
|
|
798
|
+
stroke-width=".6"
|
|
799
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.1027993,0,0,1.0843392,-41.468682,-11.269812) translate(-3.4983431,-0.692921)"
|
|
800
|
+
/>
|
|
801
|
+
<g transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.322351,-11.271433)">
|
|
802
|
+
<path d="M521.42 70.274l-.364 15.293-20.026-1.335z" fill="#d20014" />
|
|
803
|
+
<path d="M561.11 52.433s-1.457 25.124-9.104 37.747l-31.193-4.613.85-15.293 39.446-26.823z" fill="#0a328c" />
|
|
804
|
+
<path
|
|
805
|
+
d="M531.908 13.848c-1.863.819-3.542.164-3.542.164s-.819 1.064 1.392 1.187c0 0 .88.082.287 1.065"
|
|
806
|
+
fill="#0a328c"
|
|
807
|
+
stroke="#000"
|
|
808
|
+
stroke-width=".265"
|
|
809
|
+
/>
|
|
810
|
+
<path
|
|
811
|
+
d="M534.529 11.944s-3.337-2.723-5.446-2.56c-2.109.164-2.211.124-2.396.492-.184.369-.552 2.068.39 3.317.941 1.249 1.33.942 1.494.675.164-.266 1.494-1.044 4.013-.47"
|
|
812
|
+
fill="#d20014"
|
|
813
|
+
stroke="#000"
|
|
814
|
+
stroke-width=".3"
|
|
815
|
+
/>
|
|
816
|
+
<path
|
|
817
|
+
d="M529.284 9.378c-.068 0-.135.001-.201.006-2.109.164-2.211.123-2.396.492-.127.254-.34 1.138-.154 2.072.314-.302.963-.588 2.304-.516 2.662.143 4.218 1.229 4.218 1.229l.263.188 1.21-.905s-3.131-2.555-5.244-2.566z"
|
|
818
|
+
fill="#0a328c"
|
|
819
|
+
stroke="#000"
|
|
820
|
+
stroke-width=".15001685999999997"
|
|
821
|
+
/>
|
|
822
|
+
<path
|
|
823
|
+
d="M495.602 74.464l23.87-21.751 3.531 8.177-2.192 9.113-19.52 13.608-5.355-1.338-.223-4.908zM496.33 60.457l14.628-18.85 3.7 8.211-1.156 7.748-17.461 16.421z"
|
|
824
|
+
fill="#d20014"
|
|
825
|
+
/>
|
|
826
|
+
<path
|
|
827
|
+
d="M511.016 41.954s2.949 6.765 2.486 15.496l17.81-16.594 8.499-7.69-.174.115-1.098-5.319-.52-3.007-1.388.347v-1.734l-.232-1.504-1.214-2.37-.983-2.544-.231-2.14.462-2.544-.636.29z"
|
|
828
|
+
fill="#0a328c"
|
|
829
|
+
/>
|
|
830
|
+
<path
|
|
831
|
+
d="M563.748 43.227s1.735 1.734 1.966 5.666c.231 3.932.174 6.65.174 6.65s-2.834 1.676-5.493.982c0 0 .462-1.156.52-2.775.058-1.62-.058-10.003-.058-10.003z"
|
|
832
|
+
fill="#0a328c"
|
|
833
|
+
stroke="#000"
|
|
834
|
+
stroke-width=".265"
|
|
835
|
+
/>
|
|
836
|
+
<path
|
|
837
|
+
d="M562.13 43.747l-1.272.084c.003.16.114 8.315.057 9.919-.058 1.619-.52 2.775-.52 2.775.973.254 1.968.189 2.84.006.02-.315.338-5.12.282-7.638-.058-2.602-1.387-5.146-1.387-5.146z"
|
|
838
|
+
fill="#d20014"
|
|
839
|
+
stroke="#000"
|
|
840
|
+
stroke-width=".15001685999999997"
|
|
841
|
+
/>
|
|
842
|
+
<path
|
|
843
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-1.65-.851-8.304-4.045-8.304-4.045l-.692 1.384 9.155 4.258s1.33.586.958 1.597c-.372 1.011-.585 1.17-.585 1.17z"
|
|
844
|
+
fill="#f1b517"
|
|
845
|
+
/>
|
|
846
|
+
<path
|
|
847
|
+
d="M583.884 109.486s.266-3.725-.053-5.641c0 0-.213 1.17-1.97 1.916 0 0 1.065-.799-1.703-7.825 0 0 7.558 2.396 7.612 7.505 0 0-1.704-2.022-2.076-2.022 0 0 .532 1.437.372 6.813"
|
|
848
|
+
fill="none"
|
|
849
|
+
stroke="#000"
|
|
850
|
+
stroke-width=".3"
|
|
851
|
+
/>
|
|
852
|
+
<path
|
|
853
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-1.65-.851-8.304-4.045-8.304-4.045l-.692 1.384 9.155 4.258s1.33.586.958 1.597c-.372 1.011-.585 1.17-.585 1.17"
|
|
854
|
+
fill="none"
|
|
855
|
+
stroke="#000"
|
|
856
|
+
stroke-width=".15"
|
|
857
|
+
/>
|
|
858
|
+
<path
|
|
859
|
+
color="#000"
|
|
860
|
+
d="M570.684 104.47c-.21 0-.63.048-.977.321a.984.984 0 00-.367.61c-.045.265.01.576.183.937.36.75 1.077 1.025 1.664 1.103a3.606 3.606 0 001.084-.023l-.087-.441s-.434.085-.938.017c-.504-.067-1.037-.27-1.316-.851-.146-.305-.172-.52-.147-.668a.498.498 0 01.201-.328c.212-.167.59-.225.7-.225.184 0 .344-.03.644.121.3.15.73.497 1.303 1.277l.363-.267c-.598-.816-1.073-1.217-1.465-1.412-.391-.196-.71-.17-.845-.17z"
|
|
861
|
+
fill="#f1b517"
|
|
862
|
+
font-family="sans-serif"
|
|
863
|
+
font-weight="400"
|
|
864
|
+
overflow="visible"
|
|
865
|
+
stroke="#000"
|
|
866
|
+
stroke-width=".15"
|
|
867
|
+
/>
|
|
868
|
+
<path
|
|
869
|
+
d="M571.376 109.274s.213-3.513 2.449-4.738c0 0 .532.054.585.48.053.425-2.076 4.151-2.076 4.151z"
|
|
870
|
+
fill="#f1b517"
|
|
871
|
+
stroke="#000"
|
|
872
|
+
stroke-width=".15"
|
|
873
|
+
/>
|
|
874
|
+
<path
|
|
875
|
+
d="M571.629 108.879s.177-2.927 2.04-3.947c0 0 .443.044.488.4.044.354-1.73 3.458-1.73 3.458z"
|
|
876
|
+
fill="#f1b517"
|
|
877
|
+
stroke="#000"
|
|
878
|
+
stroke-width=".125"
|
|
879
|
+
/>
|
|
880
|
+
<circle cx="551.147" cy="100.305" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
881
|
+
<path
|
|
882
|
+
d="M581.874 75.422s4.03.232 3.983 2.223c-.046 1.992-.648 3.937.695 4.308 1.343.37 4.122.37 4.817 1.111.694.741.694 1.575.694 1.575s-3.473-1.25-5.002-.37c-1.528.88-3.128-.51-3.38-.973-.557-1.02-.232-3.01-1.298-3.381-1.065-.37-4.446-.417-4.446-.417z"
|
|
883
|
+
fill="#d20014"
|
|
884
|
+
/>
|
|
885
|
+
<path d="M552.633 48.008c.63-10.867-1.26-23.623-1.26-23.623l-.158-1.89-32.6 31.183s2.362-2.52 1.575 10.394l2.835 4.41z" fill="#0a328c" />
|
|
886
|
+
<path d="M552.633 48.008c.63-10.867-1.26-23.623-1.26-23.623l-.158-1.89" fill="none" stroke="#000" stroke-width=".265" />
|
|
887
|
+
<g fill="#f1b517" stroke="#000">
|
|
888
|
+
<path
|
|
889
|
+
d="M543.911-1.2l-4.364 10.177s-1.269-1.29-2.296.048l-1.024 1.333m7.668-11.57l-8.424 7.187s1.607.83.635 2.207l-.968 1.374 1.089.802"
|
|
890
|
+
stroke-width=".3"
|
|
891
|
+
/>
|
|
892
|
+
<path d="M532.89 7.305l5.994 4.385-1.573 2.15-5.994-4.384z" stroke-width=".3" />
|
|
893
|
+
<path d="M533.023 7.966l5.19 3.797-1.035 1.417-5.19-3.797z" stroke-width=".15" />
|
|
894
|
+
</g>
|
|
895
|
+
<g fill="#f1b517" stroke="#000">
|
|
896
|
+
<path
|
|
897
|
+
d="M563.286 11.409l-5.922 9.356s-1.049-1.474-2.275-.316l-1.222 1.153m9.405-10.208l-9.457 5.761s1.456 1.074.278 2.28l-1.175 1.203.949.964"
|
|
898
|
+
stroke-width=".3"
|
|
899
|
+
/>
|
|
900
|
+
<path d="M551.056 18.06l5.224 5.279-1.895 1.874-5.223-5.28z" stroke-width=".3" />
|
|
901
|
+
<path d="M551.083 18.733l4.523 4.572-1.248 1.234-4.523-4.571z" stroke-width=".15" />
|
|
902
|
+
</g>
|
|
903
|
+
<g fill="#f1b517" stroke="#000">
|
|
904
|
+
<path
|
|
905
|
+
d="M575.896 32.689l-7.438 8.203s-.78-1.632-2.187-.701l-1.402.927m11.015-8.446l-10.304 4.055s1.25 1.308-.117 2.294l-1.363.984.769 1.113"
|
|
906
|
+
stroke-width=".3"
|
|
907
|
+
/>
|
|
908
|
+
<path d="M562.707 37.145l4.242 6.097-2.188 1.522-4.242-6.097z" stroke-width=".3" />
|
|
909
|
+
<path d="M562.618 37.814l3.673 5.279-1.441 1.002-3.673-5.279z" stroke-width=".15" />
|
|
910
|
+
</g>
|
|
911
|
+
<path
|
|
912
|
+
color="#000"
|
|
913
|
+
d="M534.065 11.472l-37.87 48.098.59.463 37.87-48.098zM550.418 23.229L495.662 74.02l.51.551 54.756-50.795zM559.232 43.568L500.94 83.467l.424.619 58.293-39.898z"
|
|
914
|
+
fill="#f1b517"
|
|
915
|
+
font-family="sans-serif"
|
|
916
|
+
font-weight="400"
|
|
917
|
+
overflow="visible"
|
|
918
|
+
stroke="#000"
|
|
919
|
+
stroke-width=".3"
|
|
920
|
+
/>
|
|
921
|
+
<path
|
|
922
|
+
d="M552.99 23.897s-5.495-1.05-6.833-.238 2.342.86 3.059.62l-1.386 1.387s-3.154-.765-3.68-3.728c-.525-2.963 1.577-2.963 2.055-2.915.478.048 3.25.478 6.786 4.874z"
|
|
923
|
+
fill="#0a328c"
|
|
924
|
+
stroke="#000"
|
|
925
|
+
stroke-width=".265"
|
|
926
|
+
/>
|
|
927
|
+
<path
|
|
928
|
+
d="M545.101 20.784c-.604.18-1.059.604-.903 1.393 0 0 .239.908.478 1.386a.304.304 0 01.073-.084c.181.283.387.533.606.753a6.4 6.4 0 01.539-.177c-.068-.104-.003-.235.263-.396.149-.09.35-.156.587-.205.998-.383 2.491.014 2.806-.034l1.673.095s-4.98-3.07-6.122-2.73z"
|
|
929
|
+
fill="#d20014"
|
|
930
|
+
stroke="#000"
|
|
931
|
+
stroke-width=".15"
|
|
932
|
+
/>
|
|
933
|
+
<path d="M550.793 23.324s-6.125-1.831-6.125-.063" fill="none" stroke="#000" stroke-width=".15" />
|
|
934
|
+
<path
|
|
935
|
+
d="M552.99 23.897s-5.495-1.05-6.833-.238 2.342.86 3.059.62l-1.386 1.387s-3.154-.765-3.68-3.728c-.525-2.963 1.577-2.963 2.055-2.915.478.048 3.25.478 6.786 4.874z"
|
|
936
|
+
fill="none"
|
|
937
|
+
stroke="#000"
|
|
938
|
+
stroke-width=".3"
|
|
939
|
+
/>
|
|
940
|
+
<path
|
|
941
|
+
d="M552.275 23.853c-.143.69-.301 1.596-.22 2.002 1.79 4.572 4.223 4.671 3.27 10.226l1.884-.053c.204-2.577-.203-5.018-.678-6.103-.237-.543-.763-1.187-1.339-1.815-.577-.627-1.204-1.237-1.645-1.712-.882-.95-.271-2.17-.271-2.17z"
|
|
942
|
+
fill="#0a328c"
|
|
943
|
+
stroke="#000"
|
|
944
|
+
stroke-width=".15"
|
|
945
|
+
/>
|
|
946
|
+
<path
|
|
947
|
+
d="M551.106 23.414s-.332.874-.332 2.1c0 .613.083 1.313.332 2.037.249.723.46 1.44.633 2.233.347 1.588.542 3.487.587 6.38l2.998-.083c.954-5.555-1.48-5.654-3.269-10.226-.081-.406.077-1.312.22-2.002z"
|
|
948
|
+
fill="#d20014"
|
|
949
|
+
stroke="#000"
|
|
950
|
+
stroke-width=".265"
|
|
951
|
+
/>
|
|
952
|
+
<path
|
|
953
|
+
d="M553.276 24.228s-.61 1.22.271 2.17c.441.475 1.068 1.085 1.645 1.712.576.628 1.102 1.272 1.34 1.815.474 1.085.88 3.526.677 6.103m0 0l-4.882.136c-.046-2.894-.242-4.793-.588-6.38a19.598 19.598 0 00-.633-2.233 6.261 6.261 0 01-.332-2.037c0-1.226.332-2.1.332-2.1l2.17.814"
|
|
954
|
+
fill="none"
|
|
955
|
+
stroke="#000"
|
|
956
|
+
stroke-width=".3"
|
|
957
|
+
/>
|
|
958
|
+
<path d="M553.886 36.096s.679-3.052-.881-5.764c-1.57-2.774-2.04-6.994-1.221-6.715" fill="none" stroke="#000" stroke-width=".15" />
|
|
959
|
+
<path
|
|
960
|
+
d="M548.427 80.397l-4.218 7.38-16.665 1.24-1.575.212s-2.434 5.738-5.137 6.503c-2.703.764-20.78 6.402-20.78 6.402l-.557-4.133 11.715-3.78s3.437-1.264 4.46-2.604c1.021-1.34 9.543-9.5 9.543-9.5z"
|
|
961
|
+
fill="#f1b517"
|
|
962
|
+
stroke="#000"
|
|
963
|
+
stroke-width=".157"
|
|
964
|
+
/>
|
|
965
|
+
<g stroke="#000" stroke-width=".3">
|
|
966
|
+
<path
|
|
967
|
+
color="#000"
|
|
968
|
+
d="M540.959 61.578l-24.223 40.371.514.309 24.223-40.371z"
|
|
969
|
+
fill="#f1b517"
|
|
970
|
+
font-family="sans-serif"
|
|
971
|
+
font-weight="400"
|
|
972
|
+
overflow="visible"
|
|
973
|
+
/>
|
|
974
|
+
<path
|
|
975
|
+
d="M540.471 63.209s.684.647 1.533-.389c.85-1.036 3.332-5.311 3.807-6.088.475-.778 1.087-1.425.28-1.944-.805-.518-1.935.13-2.864 2.073-.928 1.943-3.98 5.311-2.756 6.348z"
|
|
976
|
+
fill="#fff"
|
|
977
|
+
/>
|
|
978
|
+
</g>
|
|
979
|
+
<path
|
|
980
|
+
d="M561.907 68.754c.905-.122 2.45 1.647 2.863 4.722.413 3.075.016 5.666-.889 5.787-.33.043-.7-.257-1.058-.858l-48.357 6.505-1.018-9.136 47.977-5.7c.156-1.177.028-1.257.482-1.32z"
|
|
981
|
+
fill="#f1b517"
|
|
982
|
+
stroke="#000"
|
|
983
|
+
stroke-width=".15736518"
|
|
984
|
+
/>
|
|
985
|
+
<path
|
|
986
|
+
d="M262.965 61.762s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.206.664-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.056s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.056s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081m-.727-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.207.664-.277 1.081m-.727-1.057s-.206.665-.277 1.082m-.726-1.057s-.207.664-.277 1.08m-.727-1.056s-.206.664-.277 1.081m-.726-1.057s-.206.664-.277 1.081m-.726-1.057s-.207.665-.277 1.082m-.727-1.057s-.206.664-.277 1.08m-.726-1.056s-.207.664-.277 1.081"
|
|
987
|
+
fill="#f4cf0e"
|
|
988
|
+
stroke="#000"
|
|
989
|
+
stroke-linecap="round"
|
|
990
|
+
stroke-width=".15"
|
|
991
|
+
transform="matrix(-1.0396243,0.13985207,0.13985207,1.0396243,780.1168,-25.809613) matrix(1.000553,0,0,0.70120787,-0.08578216,18.848186)"
|
|
992
|
+
/>
|
|
993
|
+
<path
|
|
994
|
+
d="M563.078 73.084l-48.972 6.587M563.226 74.184l-48.972 6.588M563.374 75.284l-48.972 6.588M563.448 75.834l-48.972 6.588M563.522 76.384l-48.972 6.588M563.596 76.935l-48.972 6.587M563.67 77.485l-48.972 6.588M563.744 78.035l-48.972 6.588"
|
|
995
|
+
fill="none"
|
|
996
|
+
stroke="#000"
|
|
997
|
+
stroke-width=".27798235000000004"
|
|
998
|
+
/>
|
|
999
|
+
<path
|
|
1000
|
+
d="M554.628 70.105a1.544 5.091-4.009 011.895 4.982 1.544 5.091-4.009 01-1.19 5.175 1.544 5.091-4.009 01-.484-.216 1.544 5.091-4.009 00.68-4.825 1.544 5.091-4.009 00-1.409-4.766 1.544 5.091-4.009 01.508-.35zM520.381 74.712a1.544 5.091-4.009 011.894 4.982 1.544 5.091-4.009 01-1.189 5.175 1.544 5.091-4.009 01-.485-.216 1.544 5.091-4.009 00.682-4.825 1.544 5.091-4.009 00-1.41-4.766 1.544 5.091-4.009 01.508-.35z"
|
|
1001
|
+
fill="#f1b517"
|
|
1002
|
+
stroke="#000"
|
|
1003
|
+
stroke-linecap="round"
|
|
1004
|
+
stroke-width=".1573485"
|
|
1005
|
+
/>
|
|
1006
|
+
<path
|
|
1007
|
+
d="M513.207 78.799l-2.731-.184s-1.677.576-1.78 1.292c-.105.715-.163 1.776-.025 2.058.139.282 3.323.856 4.44-.147z"
|
|
1008
|
+
fill="#f1b517"
|
|
1009
|
+
stroke="#000"
|
|
1010
|
+
stroke-width=".1573485"
|
|
1011
|
+
/>
|
|
1012
|
+
<path d="M508.696 79.906c1.092.268 3.02.16 4.476.02l-.06 1.892c-1.118 1.002-4.302.429-4.44.147-.139-.282-.08-1.343.023-2.058v-.001z" />
|
|
1013
|
+
<path
|
|
1014
|
+
d="M513.714 75.526a1.073 4.923-3.743 01.333.2 1.07 5.213-3.989 00-.177 4.388 1.07 5.213-3.989 00.947 4.653 1.073 4.923-3.743 01-.45.584 1.073 4.923-3.743 01-1.395-4.818 1.073 4.923-3.743 01.742-5.007z"
|
|
1015
|
+
fill="#f1b517"
|
|
1016
|
+
stroke="#000"
|
|
1017
|
+
stroke-linecap="round"
|
|
1018
|
+
stroke-width=".15736518"
|
|
1019
|
+
/>
|
|
1020
|
+
<g transform="matrix(-1,0,0,1,984.9863,0.74097931)">
|
|
1021
|
+
<path
|
|
1022
|
+
d="M443.728 74.86v.033c.553.125.965.615.965 1.207v8.27l-5.847-5.848a1.235 1.235 0 01-.172-1.535l-.024-.023-2.533 2.533.01.01a1.233 1.233 0 011.646.088l5.945 5.944h-8.465c-.592 0-1.082-.41-1.207-.963h-.033v3.582h.014c.069-.62.586-1.102 1.226-1.102h8.408l-5.985 5.985a1.236 1.236 0 01-1.536.172l-.023.024 2.533 2.533.01-.01a1.233 1.233 0 01.088-1.646l5.945-5.945v8.464c0 .592-.412 1.082-.965 1.208v.033h3.583v-.014a1.233 1.233 0 01-1.102-1.227V88.03l6.083 6.084c.453.452.478 1.158.088 1.646l.01.01 2.534-2.533-.024-.024a1.235 1.235 0 01-1.536-.172l-5.985-5.985h8.407c.64 0 1.157.481 1.226 1.102h.014v-3.582h-.033a1.235 1.235 0 01-1.207.963h-8.464l5.945-5.944a1.233 1.233 0 011.646-.088l.01-.01-2.534-2.533-.023.023c.303.48.247 1.117-.171 1.535l-5.986 5.986V76.1c0-.64.481-1.157 1.102-1.226v-.014z"
|
|
1023
|
+
fill="#f1b517"
|
|
1024
|
+
stroke="#000"
|
|
1025
|
+
stroke-linecap="round"
|
|
1026
|
+
stroke-width=".15001685999999997"
|
|
1027
|
+
/>
|
|
1028
|
+
<circle cx="445.451" cy="86.476" fill="#f1b517" r="2.282" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1029
|
+
<path
|
|
1030
|
+
d="M445.45 71.277a15.09 15.09 0 00-15.089 15.09 15.09 15.09 0 0015.09 15.09 15.09 15.09 0 0015.09-15.09 15.09 15.09 0 00-15.09-15.09zm0 3.84a11.25 11.25 0 0111.25 11.25 11.25 11.25 0 01-11.25 11.25 11.25 11.25 0 01-11.25-11.25 11.25 11.25 0 0111.25-11.25z"
|
|
1031
|
+
fill="#f1b517"
|
|
1032
|
+
stroke="#000"
|
|
1033
|
+
stroke-linecap="round"
|
|
1034
|
+
stroke-width=".15001685999999997"
|
|
1035
|
+
/>
|
|
1036
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1037
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1038
|
+
<g transform="rotate(45,445.45132,86.297958)">
|
|
1039
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1040
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1041
|
+
</g>
|
|
1042
|
+
<g transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,699.4111,-289.70556)">
|
|
1043
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1044
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1045
|
+
</g>
|
|
1046
|
+
<g transform="matrix(0,1,1,0,359.15336,-359.15336)">
|
|
1047
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1048
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1049
|
+
</g>
|
|
1050
|
+
<g transform="matrix(0.37566452,0.92675572,0.92675572,-0.37566452,198.13393,-294.10752)">
|
|
1051
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1052
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1053
|
+
</g>
|
|
1054
|
+
<g transform="rotate(113.39109,445.45132,86.297957)">
|
|
1055
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1056
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1057
|
+
</g>
|
|
1058
|
+
<g transform="rotate(23.077806,445.45132,86.297956)">
|
|
1059
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1060
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1061
|
+
</g>
|
|
1062
|
+
<g transform="matrix(-0.9199734,0.39198079,0.39198079,0.9199734,821.42755,-167.70223)">
|
|
1063
|
+
<circle cx="445.451" cy="73.138" r=".482" />
|
|
1064
|
+
<circle cx="445.451" cy="99.458" r=".482" />
|
|
1065
|
+
</g>
|
|
1066
|
+
</g>
|
|
1067
|
+
<circle cx="556.963" cy="100.305" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1068
|
+
<path
|
|
1069
|
+
d="M498.222 68.61s5.88 2.533 6.386-1.826c0 0 3.548 4.46-1.317 7.3 0 0 2.23-3.549-5.069-3.954 0 0-1.014.101-.912-.71.101-.81.912-.81.912-.81z"
|
|
1070
|
+
fill="#fff"
|
|
1071
|
+
stroke="#000"
|
|
1072
|
+
stroke-width=".15"
|
|
1073
|
+
/>
|
|
1074
|
+
<path d="M497.303 69.56c.833.074 2.733.284 5.684.874 1.31.262 2.226.1 2.87-.239.008 1.29-.572 2.725-2.567 3.888 0 0 2.23-3.548-5.068-3.953 0 0-.892.089-.919-.57z" />
|
|
1075
|
+
<path
|
|
1076
|
+
color="#000"
|
|
1077
|
+
d="M500.814 68.572l.494.074-2.027 13.584-.495-.074z"
|
|
1078
|
+
fill="#fff"
|
|
1079
|
+
font-family="sans-serif"
|
|
1080
|
+
font-weight="400"
|
|
1081
|
+
overflow="visible"
|
|
1082
|
+
stroke="#000"
|
|
1083
|
+
stroke-width=".15"
|
|
1084
|
+
/>
|
|
1085
|
+
<path
|
|
1086
|
+
color="#000"
|
|
1087
|
+
d="M500.615 68.543l.89.133-.408 2.736-.89-.133z"
|
|
1088
|
+
fill="#fff"
|
|
1089
|
+
font-family="sans-serif"
|
|
1090
|
+
font-weight="400"
|
|
1091
|
+
overflow="visible"
|
|
1092
|
+
stroke="#000"
|
|
1093
|
+
stroke-width=".15"
|
|
1094
|
+
/>
|
|
1095
|
+
<g stroke="#000" stroke-width=".15" transform="matrix(-1,0,0,1,984.5452,0)">
|
|
1096
|
+
<ellipse cx="472.443" cy="104.751" fill="#fff" rx="3.569" ry="1.681" />
|
|
1097
|
+
<g fill="#f1b517">
|
|
1098
|
+
<path
|
|
1099
|
+
d="M472.761 84.818c-.33-.016-.648.039-.736.236-.175.396.352.483.352.483v2.24c0 .703-.571 11.287-.835 13.35a7.687 7.687 0 01-.467 1.851s-2.52.302-2.387 1.444c.131 1.141 1.493 1.896 3.777 1.844 2.815-.064 3.601-.659 3.733-1.361.132-.703-.659-1.361-1.845-1.581l-.614-3.514s.131.527 1.756.176c1.625-.351 1.581-2.81 1.581-2.81s.044-7.38-.044-8.74c-.087-1.362-.834-2.02-1.888-2.416-.835-.132-1.406.044-1.493.527-.088.483-.308.615-.44.44-.131-.176 0-1.494 0-1.494s.615-.307.352-.483c-.132-.088-.472-.175-.802-.192zm2.12 2.52l.57.307.176 1.581v7.993l-.088.527-.747.615-.834-.176-.44-.527-.307-7.158-.087-2.284 1.054-.702z"
|
|
1100
|
+
stroke-width=".15001685999999997"
|
|
1101
|
+
/>
|
|
1102
|
+
<path
|
|
1103
|
+
d="M474.573 104.158s-.966-2.46-1.186-8.915c-.22-6.456-.307-6.983 0-7.29.307-.308 1.186-.835 1.713-.527.527.307.395.395.483 1.493.088 1.098.088 8.212.088 8.212s-.264 1.186-.923 1.142c-.658-.044-1.141-.307-1.23-.79"
|
|
1104
|
+
fill="none"
|
|
1105
|
+
/>
|
|
1106
|
+
</g>
|
|
1107
|
+
<path d="M470.357 104.29s.922-1.098 1.185-3.162c.264-2.064.835-12.648.835-13.351v-2.24" fill="none" />
|
|
1108
|
+
</g>
|
|
1109
|
+
<g fill="#fff" stroke="#000">
|
|
1110
|
+
<path
|
|
1111
|
+
d="M524.804 96.618s-3.224.095-4.267 2.087c-1.043 1.991-.474 3.888.759 4.647 1.232.758 3.888 1.327 5.12.569 1.233-.76 2.087-3.225.664-3.51-1.422-.284-3.793-.758-3.508-1.706.284-.949 1.517-.949 1.517-.949z"
|
|
1112
|
+
stroke-width=".265"
|
|
1113
|
+
/>
|
|
1114
|
+
<path d="M491.59 178.412h.597v2.147h-.597z" stroke-width=".15" transform="matrix(0.98736087,-0.1584882,0.21855532,0.97582456,0,0)" />
|
|
1115
|
+
</g>
|
|
1116
|
+
<path
|
|
1117
|
+
color="#000"
|
|
1118
|
+
d="M570.121 86.252l-13.617 7.086.072.138.958.173 12.934-6.733z"
|
|
1119
|
+
fill="#fff"
|
|
1120
|
+
font-family="sans-serif"
|
|
1121
|
+
font-weight="400"
|
|
1122
|
+
overflow="visible"
|
|
1123
|
+
stroke="#000"
|
|
1124
|
+
stroke-width=".3"
|
|
1125
|
+
/>
|
|
1126
|
+
<path
|
|
1127
|
+
color="#000"
|
|
1128
|
+
d="M570.523 86.586l-7.673 13.586 1.245-.68 7.083-12.539z"
|
|
1129
|
+
fill="#fff"
|
|
1130
|
+
font-family="sans-serif"
|
|
1131
|
+
font-weight="400"
|
|
1132
|
+
overflow="visible"
|
|
1133
|
+
stroke="#000"
|
|
1134
|
+
stroke-width=".3"
|
|
1135
|
+
/>
|
|
1136
|
+
<path
|
|
1137
|
+
color="#000"
|
|
1138
|
+
d="M583.64 73.375a.375.375 0 00-.004 0 .375.375 0 00-.258.114l-12.924 12.83a.375.375 0 10.53.53l12.704-12.611v-.86a.375.375 0 00-.049-.003z"
|
|
1139
|
+
font-family="sans-serif"
|
|
1140
|
+
font-weight="400"
|
|
1141
|
+
overflow="visible"
|
|
1142
|
+
/>
|
|
1143
|
+
<path
|
|
1144
|
+
color="#000"
|
|
1145
|
+
d="M572.558 84.398a.375.375 0 00-.257.114L559.47 97.249l1.123-.057 12.235-12.147a.375.375 0 00-.27-.647z"
|
|
1146
|
+
fill="#fff"
|
|
1147
|
+
font-family="sans-serif"
|
|
1148
|
+
font-weight="400"
|
|
1149
|
+
overflow="visible"
|
|
1150
|
+
stroke="#000"
|
|
1151
|
+
stroke-linecap="round"
|
|
1152
|
+
stroke-width=".3"
|
|
1153
|
+
/>
|
|
1154
|
+
<circle cx="523.951" cy="109.883" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1155
|
+
<circle cx="529.652" cy="105.094" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1156
|
+
<circle cx="538.432" cy="105.664" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1157
|
+
<circle cx="545.104" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1158
|
+
<circle cx="550.919" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1159
|
+
<circle cx="556.735" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1160
|
+
<circle cx="562.55" cy="109.313" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1161
|
+
<circle cx="548.069" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1162
|
+
<circle cx="553.884" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1163
|
+
<circle cx="559.699" cy="104.866" fill="#f1b517" r="2.391" stroke="#000" stroke-linecap="round" stroke-width=".15" />
|
|
1164
|
+
<path
|
|
1165
|
+
d="M535.734 13.089s-.187 1.876 1.408 3.002 3.471 2.346 4.222 5.536c.75 3.19.187 2.815.187 2.815l-4.972.844s.563-2.252-.657-4.034c-1.22-1.783-3.002-6.943-1.314-9.007z"
|
|
1166
|
+
fill="#d20014"
|
|
1167
|
+
stroke="#000"
|
|
1168
|
+
stroke-width=".3"
|
|
1169
|
+
/>
|
|
1170
|
+
<path
|
|
1171
|
+
d="M535.576 12.97c-.296.726-.815 2.451.346 3.684 1.501 1.595 2.908 2.346 3.471 4.504.337 1.292.561 2.622.697 3.531l1.461-.248s.563.376-.187-2.814-2.627-4.41-4.222-5.535c-1.595-1.126-1.408-3.003-1.408-3.003z"
|
|
1172
|
+
fill="#0a328c"
|
|
1173
|
+
stroke="#000"
|
|
1174
|
+
stroke-width=".15001685999999997"
|
|
1175
|
+
/>
|
|
1176
|
+
<path
|
|
1177
|
+
d="M534.984 12.15s-.939 2.159.094 4.317c1.032 2.158 2.064 3.19 2.627 4.597.563 1.407 0 2.72.656 3.753"
|
|
1178
|
+
fill="none"
|
|
1179
|
+
stroke="#000"
|
|
1180
|
+
stroke-width=".15"
|
|
1181
|
+
/>
|
|
1182
|
+
<path
|
|
1183
|
+
color="#000"
|
|
1184
|
+
d="M573.904 106.957a.2.2 0 10.063.395s3.398-.534 5.924 2.04a.2.2 0 10.285-.279c-2.671-2.722-6.272-2.156-6.272-2.156z"
|
|
1185
|
+
fill="#fff"
|
|
1186
|
+
font-family="sans-serif"
|
|
1187
|
+
font-weight="400"
|
|
1188
|
+
overflow="visible"
|
|
1189
|
+
stroke="#000"
|
|
1190
|
+
stroke-linecap="round"
|
|
1191
|
+
stroke-width=".15"
|
|
1192
|
+
/>
|
|
1193
|
+
<path
|
|
1194
|
+
color="#000"
|
|
1195
|
+
d="M579.832 110.797s-.007.534.43 1.047c.436.512 1.302 1.005 2.963 1.056l.011-.4c-1.587-.049-2.319-.504-2.67-.916-.35-.412-.334-.777-.334-.777z"
|
|
1196
|
+
fill="#fff"
|
|
1197
|
+
font-family="sans-serif"
|
|
1198
|
+
font-weight="400"
|
|
1199
|
+
overflow="visible"
|
|
1200
|
+
stroke="#000"
|
|
1201
|
+
stroke-width=".15"
|
|
1202
|
+
/>
|
|
1203
|
+
<path
|
|
1204
|
+
d="M584.63 114.809c.532-1.384 1.969-1.703 1.969-1.703s.106-.107-.32-1.118c-.425-1.011-.213-1.756-.213-1.756.16-5.376-.372-6.813-.372-6.813.372 0 2.076 2.022 2.076 2.022-.054-5.11-7.612-7.505-7.612-7.505 2.768 7.026 1.704 7.825 1.704 7.825 1.756-.746 1.969-1.916 1.969-1.916.32 1.916.053 5.641.053 5.641s.107 1.757-1.543.905c-.883-.455-5.162-2.53-5.162-2.53l-.408 1.462 5.73 2.665s1.33.586.957 1.597c-.372 1.011-.585 1.17-.585 1.17z"
|
|
1205
|
+
fill="#f1b517"
|
|
1206
|
+
/>
|
|
1207
|
+
<path
|
|
1208
|
+
color="#000"
|
|
1209
|
+
d="M574.839 106.91c.068.127.136.26.206.404.095.004.195.01.3.018a13.166 13.166 0 00-.202-.412 8.294 8.294 0 00-.304-.01zm1.013.08c.047.132.093.268.14.418.095.016.194.037.292.057a12.51 12.51 0 00-.138-.43 8.167 8.167 0 00-.294-.046zm1.092.226c.024.137.047.28.068.434.091.028.183.059.276.092-.02-.155-.04-.3-.063-.438-.095-.03-.188-.062-.28-.088zm1.092.398c-.003.14-.007.284-.015.437.086.041.172.085.258.132a12.7 12.7 0 00.02-.437c-.088-.045-.176-.092-.264-.132zm1.006.56c-.028.136-.058.276-.092.42.077.054.155.111.232.17.036-.147.065-.286.095-.425a7.103 7.103 0 00-.235-.164zM580.476 111.465l-.19.404c.06.067.127.133.201.198l.178-.38c-.034-.035-.07-.07-.098-.103a1.608 1.608 0 01-.09-.119zm.544.498l-.05.434c.077.042.163.081.252.12l.048-.417a2.541 2.541 0 01-.25-.137zm.633.29l.08.44a5 5 0 00.28.067l-.077-.427a4.032 4.032 0 01-.283-.08zm.566.144l.186.43c.1.014.199.029.306.039l-.185-.425c-.105-.013-.212-.027-.307-.044z"
|
|
1210
|
+
font-family="sans-serif"
|
|
1211
|
+
font-weight="400"
|
|
1212
|
+
overflow="visible"
|
|
1213
|
+
/>
|
|
1214
|
+
<path
|
|
1215
|
+
d="M560.742 38.89s-3.007-1.445-3.7-.231c-.695 1.214-.984 3.642 0 5.088 0 0 4.278.52 6.475-.231l.29-.174z"
|
|
1216
|
+
fill="#0a328c"
|
|
1217
|
+
stroke="#000"
|
|
1218
|
+
stroke-width=".3"
|
|
1219
|
+
/>
|
|
1220
|
+
<path
|
|
1221
|
+
d="M557.76 40.215c-.477-.01-.934.138-1.295.307-.147 1.11-.02 2.348.576 3.225 0 0 3.788.46 6.066-.112-1.096-.344-2.984-2.154-4.273-3.068a1.896 1.896 0 00-1.074-.352z"
|
|
1222
|
+
fill="#d20014"
|
|
1223
|
+
stroke="#000"
|
|
1224
|
+
stroke-width=".15001685999999997"
|
|
1225
|
+
/>
|
|
1226
|
+
<path d="M556.463 42.648s1.445-.983 3.758.058c2.313 1.04 2.313.867 2.313.867" fill="none" stroke="#000" stroke-width=".15" />
|
|
1227
|
+
<path
|
|
1228
|
+
d="M560.742 38.89s-3.007-1.445-3.7-.231c-.695 1.214-.984 3.642 0 5.088 0 0 4.278.52 6.475-.231l.29-.174z"
|
|
1229
|
+
fill="none"
|
|
1230
|
+
stroke="#000"
|
|
1231
|
+
stroke-width=".3"
|
|
1232
|
+
/>
|
|
1233
|
+
<path d="M561.609 43.805s.462 1.966.578 6.07c.116 4.106-.752 6.881-1.098 6.824" fill="none" stroke="#000" stroke-width=".15" />
|
|
1234
|
+
<path
|
|
1235
|
+
d="M563.748 43.227s1.735 1.734 1.966 5.666c.231 3.932.174 6.65.174 6.65s-2.834 1.676-5.493.982c0 0 .462-1.156.52-2.775.058-1.62-.058-10.003-.058-10.003"
|
|
1236
|
+
fill="none"
|
|
1237
|
+
stroke="#000"
|
|
1238
|
+
stroke-width=".265"
|
|
1239
|
+
/>
|
|
1240
|
+
<path d="M537.903 24.955s1.387 5.725 1.56 8.384" fill="none" stroke="#000" stroke-width=".3" />
|
|
1241
|
+
<g stroke="#000" stroke-width=".15">
|
|
1242
|
+
<path
|
|
1243
|
+
d="M522.28 69.162s1.577-1.702 1.677-2.428c.1-.726.075-1.928-.902-1.953-.976-.025-5.607-.801-7.009.325-1.402 1.127-1.652 1.703-1.377 2.278.276.576 1.427 1.503 2.378 1.452.952-.05 1.878.376 2.253.15.376-.225 2.003-2.152 2.429-.425l.05.576z"
|
|
1244
|
+
fill="#d20014"
|
|
1245
|
+
stroke-width=".12433949999999999"
|
|
1246
|
+
/>
|
|
1247
|
+
<path
|
|
1248
|
+
d="M517.807 75.635s.95-4.536 2.532-6.54c0 0 2.004-.527 2.742 0 .738.528-.105-.632.738.422.844 1.055.844 5.063.844 5.063l1.055.95c-2.742 1.265-7.91.105-7.91.105z"
|
|
1249
|
+
fill="#f1b617"
|
|
1250
|
+
stroke-width=".12433949999999999"
|
|
1251
|
+
/>
|
|
1252
|
+
<path
|
|
1253
|
+
d="M525.505 75.404c-2.531 1.371-7.7.317-7.7.317s-.843 2.004 0 1.687c.845-.316.423.739 1.266 0 .844-.738.844-.949.844-.949s4.852 0 5.801-.316z"
|
|
1254
|
+
stroke-width=".12433949999999999"
|
|
1255
|
+
/>
|
|
1256
|
+
<path
|
|
1257
|
+
d="M520.877 69.75s.342.09.771.132m-.793.437s.336.085.769.12m-.791.448s.329.08.766.11m-.789.458s.323.075.764.1m-.786.468s.317.07.762.09m-.784.478s.31.066.759.079m-.78.49s.302.06.755.067m-.778.5s.297.056.753.058m-.775.51s.29.051.75.047m-.772.521s.284.046.748.037m-.77.532s.277.04.745.025M522.447 69.988c.324-.05.617-.171.787-.415m-.831.962c.363-.059.715-.193.963-.462m-1.007 1.008c.402-.066.813-.214 1.139-.509m-1.183 1.056c.442-.074.91-.236 1.314-.556m-1.358 1.103a3.564 3.564 0 001.49-.604m-1.534 1.15c.52-.09 1.106-.279 1.665-.65m-1.71 1.197a5.15 5.15 0 001.842-.698m-1.885 1.245a6.015 6.015 0 002.017-.745m-2.061 1.292a6.921 6.921 0 002.192-.793m-2.236 1.34a7.866 7.866 0 002.368-.84m-2.412 1.387a8.845 8.845 0 002.544-.888"
|
|
1258
|
+
fill="none"
|
|
1259
|
+
stroke-width=".12433949999999999"
|
|
1260
|
+
/>
|
|
1261
|
+
<path
|
|
1262
|
+
d="M520.552 67.36l-1.677 1.602m.596-1.638l-1.107 1.583m.025-1.618l-.536 1.562m-.545-1.597l.035 1.542m-1.117-1.577l.606 1.522m-1.687-1.557l1.176 1.502M515.77 67.31l.727 1.426"
|
|
1263
|
+
fill="#d20014"
|
|
1264
|
+
stroke-width=".12433949999999999"
|
|
1265
|
+
/>
|
|
1266
|
+
</g>
|
|
1267
|
+
<path d="M527.158 13.193s1.413-1.925 5.59-.246" fill="none" stroke="#000" stroke-width=".15" />
|
|
1268
|
+
</g>
|
|
1269
|
+
<path
|
|
1270
|
+
d="M453.628 111.746c-.598 2.241-1.793 7.92-1.793 7.92 11.97 5.557 45.723 5.812 48.864 5.824v.004l.303-.002.295.002v-.004c3.15-.012 37.924-.26 49.91-5.824 0 0-1.196-5.679-1.794-7.92 0 0-1.494 5.08-48.415 5.977-46.922-.896-47.37-5.977-47.37-5.977z"
|
|
1271
|
+
fill="#fff"
|
|
1272
|
+
stroke="#000"
|
|
1273
|
+
stroke-width=".325"
|
|
1274
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
1275
|
+
/>
|
|
1276
|
+
<g stroke="#000">
|
|
1277
|
+
<path
|
|
1278
|
+
d="M455.739 112.399c-.607-1.578-5.583-1.457-9.467-.243-3.884 1.213-6.068.85-14.443.97-8.374.122-13.108 2.064-13.836 2.307-.728.242-13.35 6.432-18.205 8.01-4.855 1.578-9.467 0-9.467 0s5.583 5.462 13.472 1.092c0 0-6.554 3.641-10.802 4.127 0 0 6.34 1.329 11.697-.986.48-.207.952-.444 1.411-.713 3.354-1.667 6.343-2.96 9.042-3.963 15.357-5.712 21.33-2.075 31.86-4.776"
|
|
1279
|
+
fill="#fff"
|
|
1280
|
+
stroke-width=".3"
|
|
1281
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1035.1984,-11.271433)"
|
|
1282
|
+
/>
|
|
1283
|
+
<path
|
|
1284
|
+
d="M414.554 122.707c-4.932 1.667-7.314 3.202-10.013 4.206m9.406-5.13c-4.28 1.52-6.738 2.98-9.363 3.992m8.756-4.915c-3.628 1.374-6.161 2.757-8.714 3.776m8.108-4.7c-2.977 1.228-5.585 2.535-8.065 3.562m7.458-4.485a292.844 292.844 0 01-7.415 3.347"
|
|
1285
|
+
fill="none"
|
|
1286
|
+
stroke-width=".3"
|
|
1287
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1035.1984,-11.271433)"
|
|
1288
|
+
/>
|
|
1289
|
+
<path
|
|
1290
|
+
d="M420.336 120.264s6.907-2.086 12.251-1.434m-11.47.13s6.485-1.825 12.187-1.336m-11.404.033s6.06-1.564 12.12-1.238m-11.338-.066s5.637-1.303 12.056-1.14m-11.274-.163s5.213-1.043 11.99-1.043"
|
|
1291
|
+
fill="none"
|
|
1292
|
+
stroke-width=".265"
|
|
1293
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1035.1984,-11.271433)"
|
|
1294
|
+
/>
|
|
1295
|
+
<path
|
|
1296
|
+
d="M441.841 113.877s3.117-.76 6.25-1.213c2.67-.386 5.353-.55 6.132.17M441.255 114.985s3.64-.407 6.577-1.138M440.668 116.093s4.165-.054 6.905-1.063M440.082 117.2s4.689.3 7.232-.987M439.491 118.203s5.22.582 7.568-.815"
|
|
1297
|
+
fill="none"
|
|
1298
|
+
stroke-width=".3"
|
|
1299
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1035.1984,-11.271433)"
|
|
1300
|
+
/>
|
|
1301
|
+
<path
|
|
1302
|
+
d="M455.711 112.166c-.72 1.395-4.85.613-7.504 1.477.64.562 2.462 1.55 7.587 2.53.85-3.19-.083-4.007-.083-4.007z"
|
|
1303
|
+
fill="#fff"
|
|
1304
|
+
stroke-width=".312"
|
|
1305
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(-1.0843767,0,0,1.0843767,1035.1984,-11.271433)"
|
|
1306
|
+
/>
|
|
1307
|
+
</g>
|
|
1308
|
+
<g stroke="#000" stroke-width=".15">
|
|
1309
|
+
<path
|
|
1310
|
+
d="M459.209 168.022H476.9v16.52h-17.691z"
|
|
1311
|
+
fill="#f1b517"
|
|
1312
|
+
stroke-linecap="round"
|
|
1313
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1314
|
+
/>
|
|
1315
|
+
<path
|
|
1316
|
+
d="M467.953 183.887c1.16 0 2.283-.058 3.321-.165m-3.32-.72c1.16 0 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165m-3.32-.72c1.16 0 2.282-.059 3.32-.165m-3.32-.72c1.16-.001 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165m-3.32-.72c1.16-.001 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165m-3.32-.72c1.16 0 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165m-3.32-.72c1.16 0 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165m-3.32-.72c1.16 0 2.282-.059 3.32-.165m-3.32-.72c1.16-.001 2.282-.059 3.32-.166m-3.32-.72c1.16 0 2.282-.058 3.32-.165"
|
|
1317
|
+
fill="#d20014"
|
|
1318
|
+
stroke-linecap="round"
|
|
1319
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1320
|
+
/>
|
|
1321
|
+
<path
|
|
1322
|
+
d="M476.783 182.346c-.676.383-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982m2.727-1.876c-.676.383-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982m2.727-1.876c-.676.383-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.718-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982m2.727-1.877c-.676.384-1.609.719-2.727.982"
|
|
1323
|
+
fill="#fff"
|
|
1324
|
+
stroke-linecap="round"
|
|
1325
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1326
|
+
/>
|
|
1327
|
+
<path
|
|
1328
|
+
d="M463.885 171.24c-1.666-.228-3.091-.589-4.126-1.04m4.126 1.93c-1.666-.226-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.039m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.039m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.228-3.091-.589-4.126-1.04m4.126 1.93c-1.666-.226-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.039m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.228-3.091-.589-4.126-1.04m4.126 1.93c-1.666-.226-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.227-3.091-.589-4.126-1.039m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.039m4.126 1.93c-1.666-.227-3.091-.588-4.126-1.038m4.126 1.93c-1.666-.228-3.091-.589-4.126-1.04"
|
|
1329
|
+
fill="none"
|
|
1330
|
+
opacity=".98"
|
|
1331
|
+
stroke-linecap="round"
|
|
1332
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1333
|
+
/>
|
|
1334
|
+
<path
|
|
1335
|
+
d="M467.953 163.108a9.07 2.363 0 00-9.07 2.364 9.07 2.363 0 00.144.399v2.262a9.07 2.363 0 00-.144.4 9.07 2.363 0 00.144.416v.432h.463a9.07 2.363 0 008.463 1.515 9.07 2.363 0 008.455-1.515h.56v-.595a9.07 2.363 0 00.055-.253 9.07 2.363 0 00-.055-.223v-2.615a9.07 2.363 0 00.055-.223 9.07 2.363 0 00-9.07-2.364zm0 1.599a9.07 2.363 0 01.565.007 9.07 2.363 0 01.46.009 9.07 2.363 0 01.402.016 9.07 2.363 0 01.493.022 9.07 2.363 0 01.415.028 9.07 2.363 0 01.445.033 9.07 2.363 0 01.453.043 9.07 2.363 0 01.386.04 9.07 2.363 0 01.457.058 9.07 2.363 0 01.352.047 9.07 2.363 0 01.454.072 9.07 2.363 0 01.31.053 9.07 2.363 0 01.382.076 9.07 2.363 0 01.247.048h-.014a9.07 2.363 0 012.718 1.01 9.07 2.363 0 01-8.525 1.565 9.07 2.363 0 01-8.525-1.562 9.07 2.363 0 016.766-1.52 9.07 2.363 0 01.896-.034 9.07 2.363 0 01.863-.012z"
|
|
1336
|
+
fill="#d20014"
|
|
1337
|
+
stroke-linecap="round"
|
|
1338
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1339
|
+
/>
|
|
1340
|
+
<path
|
|
1341
|
+
d="M467.953 164.707a9.07 2.363 0 00-8.525 1.565 9.07 2.363 0 008.525 1.563 9.07 2.363 0 008.525-1.566 9.07 2.363 0 00-8.525-1.562z"
|
|
1342
|
+
fill="#fff"
|
|
1343
|
+
stroke-linecap="round"
|
|
1344
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1345
|
+
/>
|
|
1346
|
+
<path
|
|
1347
|
+
d="M467.755 163.111a9.07 2.363 0 00-.727.01v1.6a9.07 2.363 0 01.727-.013zm4.97.353v1.6a9.07 2.363 0 01.728.132v-1.601a9.07 2.363 0 00-.728-.131zm-10.061.09a9.07 2.363 0 00-.727.152v1.598a9.07 2.363 0 01.727-.151zM473.695 167.297a9.07 2.363 0 01-.849.16v3.06a9.07 2.363 0 00.849-.159zm-8.364.433v3.064a9.07 2.363 0 00.848.056v-3.064a9.07 2.363 0 01-.848-.056z"
|
|
1348
|
+
fill="#fff"
|
|
1349
|
+
stroke-linecap="round"
|
|
1350
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1351
|
+
/>
|
|
1352
|
+
<path
|
|
1353
|
+
d="M476.968 182.933a9.718 2.362 0 01-1.343.571 9.07 2.363 0 01-7.671 1.11 9.07 2.363 0 01-7.653-1.1 9.718 2.362 0 01-1.274-.528v1.928a9.07 2.363 0 00-.144.4 9.07 2.363 0 00.144.415v.433h.463a9.07 2.363 0 008.463 1.514 9.07 2.363 0 008.455-1.514h.56v-.596a9.07 2.363 0 00.055-.253 9.07 2.363 0 00-.055-.223z"
|
|
1354
|
+
fill="#d20014"
|
|
1355
|
+
stroke-linecap="round"
|
|
1356
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1357
|
+
/>
|
|
1358
|
+
<path
|
|
1359
|
+
color="#000"
|
|
1360
|
+
d="M459.21 169.6v2.648l3.246 11.877a9.07 2.363 0 00.761.136z"
|
|
1361
|
+
fill="#d20014"
|
|
1362
|
+
font-family="sans-serif"
|
|
1363
|
+
font-weight="400"
|
|
1364
|
+
overflow="visible"
|
|
1365
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1366
|
+
/>
|
|
1367
|
+
<path
|
|
1368
|
+
color="#000"
|
|
1369
|
+
d="M465.362 170.796l-2.866 13.337a9.07 2.363 0 00.689.123l2.884-13.412a9.07 2.363 0 01-.707-.048zM473.44 170.409a9.07 2.363 0 01-.756.135l-3.51 14.045a9.07 2.363 0 00.728-.032z"
|
|
1370
|
+
fill="#d20014"
|
|
1371
|
+
font-family="sans-serif"
|
|
1372
|
+
font-weight="400"
|
|
1373
|
+
overflow="visible"
|
|
1374
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1375
|
+
/>
|
|
1376
|
+
<path
|
|
1377
|
+
color="#000"
|
|
1378
|
+
d="M465.353 170.795l3.583 13.804a9.07 2.363 0 00.716-.03l-3.562-13.724a9.07 2.363 0 01-.737-.05z"
|
|
1379
|
+
fill="#d20014"
|
|
1380
|
+
font-family="sans-serif"
|
|
1381
|
+
font-weight="400"
|
|
1382
|
+
overflow="visible"
|
|
1383
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1384
|
+
/>
|
|
1385
|
+
<path
|
|
1386
|
+
d="M473.637 170.37a9.07 2.363 0 01-.69.132l3.512 12.423.44-.126v-.883z"
|
|
1387
|
+
fill="#d20014"
|
|
1388
|
+
stroke-linecap="round"
|
|
1389
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1390
|
+
/>
|
|
1391
|
+
<path
|
|
1392
|
+
d="M476.958 182.938a9.718 2.362 0 01-.792.375v2.99a9.07 2.363 0 00.242-.141h.55zm-14.59 1.17v3.063a9.07 2.363 0 00.793.144v-3.063a9.07 2.363 0 01-.792-.145zm7.368.458a9.07 2.363 0 01-.793.033v3.061a9.07 2.363 0 00.793-.03z"
|
|
1393
|
+
fill="#fff"
|
|
1394
|
+
stroke-linecap="round"
|
|
1395
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-5.4425655,-101.18788)"
|
|
1396
|
+
/>
|
|
1397
|
+
</g>
|
|
1398
|
+
<path
|
|
1399
|
+
d="M494.003 4.616h1.562m-1.6-.893h1.562m-1.602-.893h1.563m-1.601-.893h1.562m-1.601-.892h1.562M493.81.152h1.562m-1.6-.893h1.562m-1.602-.893h1.563m-1.601-.893h1.562m-1.601-.892h1.562m-1.601-.893h1.562m-1.6-.893h1.561m-1.6-.893h1.562m-1.602-.892h1.563m-1.601-.893h1.562m-1.601-.893h1.562m-1.601-.893h1.562m-1.6-.893h1.562m-1.602-.892h1.563m-1.601-.893h1.562m-1.601-.893h1.562m-1.601-.893h1.562m-1.6-.892h1.561m-1.6-.893h1.562"
|
|
1400
|
+
fill="none"
|
|
1401
|
+
stroke="#000"
|
|
1402
|
+
stroke-width=".3"
|
|
1403
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-32.483702,-11.271433)"
|
|
1404
|
+
/>
|
|
1405
|
+
<g fill="#016a16" stroke="#000">
|
|
1406
|
+
<path
|
|
1407
|
+
d="M852.876-341.34c-14.784-1.954-19.457-.51-20.137-.255-.68.255-10.196 2.89-13.934 9.177-3.739 6.287-.85 8.666-.85 8.666-.68-1.444 1.784-6.797 1.784-6.797-1.19 2.209.34 5.947.34 5.947-.51-1.104.595-4.418.595-4.418l.85 2.634c0-1.53.764-5.183.764-5.183.085 4.758 1.02 5.608 1.02 5.608-.85-1.19.595-8.497.595-8.497-.85 4.334.51 5.268.51 5.268 0-5.098 2.463-7.732 2.463-7.732-2.634 2.974-.764 7.307-.764 7.307.255-5.013 4.078-9.006 4.078-9.006-3.569 3.824-1.444 6.372-1.444 6.372.085-3.228 5.607-7.901 5.607-7.901-2.379 2.294-2.294 5.098-2.294 5.098.935-1.785 4.503-5.268 4.503-5.268-.85 1.19-1.614 4.333-1.614 4.333l1.105-.68 3.058-3.738-1.869 2.889 1.87-.85 2.123-1.954-.934 1.274 1.53-.425 1.529-1.784-.935 1.275h2.209l.935-.935-.425 1.02 1.614.085.51-.935-.085.935h.765l.68-1.36-.256 1.36s1.785 0 2.125.424c.34.425-10.876 3.484-10.876 3.484s2.464 0 2.634.68c.17.68-5.608 1.614-5.608 1.614l2.804 1.19-5.608.764 4.079.51-7.052 1.7h6.457l-6.797 1.359 4.333.595-5.693.85 5.438.509-5.862 2.464 3.143-.51c-6.202 5.948-3.993 10.196-3.993 10.196.425-1.87 3.229-6.203 3.229-6.203-.68 5.523.85 7.477.85 7.477.17-1.529 2.123-9.346 2.123-9.346.34 1.785.51 6.882.51 6.882 1.445-1.19.85-7.137.85-7.137l2.294 2.21c-1.105-1.87-.85-6.203-.85-6.203.68.765 1.53 3.738 1.53 3.738.085-.68.764-5.692.764-5.692 0 1.784 1.36 5.268 1.36 5.268l.51-5.948c.084 1.445 1.699 4.333 1.699 4.333v-6.457l1.104 2.889.17-4.503.51 5.268.935-1.105-.765-.085.34-.17.934-5.183 1.445 2.38.51-1.53-.34-2.464c.51.17 1.274 1.7 1.274 1.7v-3.145l1.36.595 2.039-2.974-1.275 2.38 1.955-1.19-2.295 1.784 1.445.595-3.229.34v.85l2.889.254c-4.078.68-4.163 1.87-4.163 1.87l3.908-.17c-3.059-.085-5.268 2.124-5.268 2.124l4.673-.17c-4.333.34-6.117 2.039-6.117 2.039l5.438.34c-2.72-.255-5.693 2.719-5.693 2.719l3.569.085c-3.314.34-4.079 2.209-4.079 2.209l2.889.085c-2.974 1.699-3.144 4.588-3.144 4.588l3.314-2.634c-3.484 3.059-2.294 5.608-2.294 5.608l2.124-2.464c-2.974 2.888-2.294 4.928-2.294 4.928l2.21-2.38c-1.105 7.223.424 7.393.424 7.393l.51-7.307c1.869.934 3.058 5.182 3.058 5.182l-1.614-6.712c1.784 1.275 2.294 3.909 2.294 3.909.68-3.06-2.124-7.053-2.124-7.053l3.484 4.419-2.634-6.713 3.058 4.589c.085-4.334-2.379-7.053-2.379-7.053l3.739 3.23c-.17-1.36-2.124-4.929-2.124-4.929.764.595 2.209 2.38 2.209 2.38-.51-2.125-2.634-4.589-2.634-4.589 1.02.255 2.719 2.38 2.719 2.38 0-1.19-1.19-5.609-1.19-5.609l1.275 2.72-.51-4.419 1.104 1.7-.254-3.06.764.17.51-3.653-.255 3.739-.85-.34.255 2.973 2.634-2.888-1.53 5.183 2.635-2.464-2.124 4.503 3.058-3.569-2.294 5.863 2.464-2.124-2.294 4.248c1.275 0 3.824-2.804 3.824-2.804-1.275.765-3.144 5.438-3.144 5.438 1.614 0 2.719-2.889 2.719-2.889l-2.634 4.843c1.614-.51 3.399-3.569 3.399-3.569.34 1.7-2.804 7.222-2.804 7.222 1.02 0 2.634-1.359 2.634-1.359s.255-1.105-.85.935c-1.105 2.039-3.653 4.503-3.653 4.503 2.209.085 4.333-2.89 4.333-2.89.34 1.36-2.634 6.713-2.634 6.713 2.124-.17 3.908-6.117 3.908-6.117.68.764 1.105 7.647 1.275 6.797.17-.85.085-9.346.085-9.346.424.595 2.161 4.484 2.161 4.484.127-1.9-1.9-9.244-1.9-9.244l2.407 4.432-2.913-8.485 3.546 4.306-4.432-8.611 2.28 3.419c-.76-5.825-4.56-5.825-4.56-5.825 4.56-.634 4.94 5.065 4.94 5.065 1.012-.253.886-3.166.886-3.166l.253 1.393.76 4.812.506-4.179v5.192c0 .507 1.52-3.039 1.52-3.039.38.633.38 4.939.38 4.939l1.266-3.42c.76 2.027.254 5.446.254 5.446 1.266 0 1.646-3.04 1.646-3.04l1.52 4.433-.127-3.292c-.127-3.293-4.56-9.751-5.699-10.385-1.14-.633-5.572-2.026-5.572-2.026l-4.179-3.925 4.18 3.925c.506-.633-.507-3.799-.507-3.799l3.292 4.306c.76-1.52-.76-4.053-.76-4.053 1.013 1.14 3.926 5.32 3.926 5.32.38-1.52-.76-4.94-.76-4.94.887.887 4.053 6.079 4.053 6.079-.127-.507-1.9-5.699-1.9-5.699 2.153 1.9 4.306 7.978 4.306 7.978.633-2.026-.887-7.345-.887-7.345l3.673 8.738c.38-1.773-.254-5.318-.254-5.318 1.14 1.013 3.04 5.572 3.04 5.572-.254-2.66-1.013-5.952-1.013-5.952l3.292 6.078-.633-4.052 2.026 4.432-1.013-3.926 2.786 3.926-2.28-4.179 3.293 3.293s-4.812-5.952-5.825-6.839c-1.013-.886-10.004-4.179-12.03-5.192-2.027-1.013-10.891-.506-10.891-.506l2.66-.127-.507-1.14.506 1.013h1.773l-1.013-1.013.76 1.14h3.039l-2.026-1.773c1.013.507 2.026 1.646 2.026 1.646l1.52.127-1.013-2.153 1.52 2.406 2.532.507c-.38-1.14-1.9-2.913-1.9-2.913 1.013 1.013 2.28 3.04 2.28 3.04l2.153.76c0-1.14-1.773-3.673-1.773-3.673 1.52 1.266 2.786 3.926 2.786 3.926.126-1.013-.76-4.053-.76-4.053 1.013.633 2.66 4.56 2.66 4.56.126-1.14-.127-4.56-.38-4.433.76.886 2.405 5.445 2.405 5.445v-4.432c.507 0 1.9 4.812 1.9 4.812.76-1.773-.127-5.445-.127-5.445.633 1.266 2.026 5.319 2.026 5.319l.254-1.773.38 3.292.38-2.786 1.14 3.04c-.127-1.773-1.52-6.586-1.52-6.586 1.013 1.013 3.672 6.965 3.672 6.965v-2.152l.76 3.419c1.14-3.42-1.266-7.219-1.266-7.219 1.772 2.533 2.406 5.826 2.406 5.826l.76-1.773c.76 1.266.76 4.559.76 4.559 1.012-3.546-1.014-6.712-1.014-6.712 2.153 1.646 3.42 8.358 3.42 8.358l.38-5.192c.632 1.266 1.834 5.211 1.834 5.211.29-2.197-.636-5.897-1.85-7.516-1.214-1.62-2.197-3.296-9.83-4.915-7.632-1.619-26.077-.231-26.077-.231l2.95-.636c1.907-1.504 6.302-.231 6.302-.231l1.098.057s-.173-1.272-.231-1.734c-.058-.463 2.082 1.503 2.082 1.503l.751.058v-2.197l3.123 2.37 1.156.174-2.024-2.718c1.157 1.099 4.626 2.486 4.626 2.486-.231-.982-2.833-3.064-2.833-3.064.867 0 4.452 3.238 4.452 3.238l-2.14-2.486 5.146 2.428c-.346-.636-2.081-2.428-2.081-2.428 2.024 1.85 6.187 2.948 6.187 2.948l-4.915-3.931 6.129 4.799c-.983-3.007-3.99-5.667-3.99-5.667 1.504.232 7.228 5.898 7.228 5.898 0-2.255-2.14-4.915-2.14-4.915 1.504.52 5.32 5.725 5.32 5.725.173-1.388-2.024-5.03-2.024-5.03 1.157.577 4.279 5.087 4.279 5.087.694-2.602-2.255-4.914-2.255-4.914l5.92 3.251c-3.087-4.63-9.317-6.173-10.06-6.458-.743-.286-6.23-.286-10.974-.115-4.744.172-10.803 2.915-11.088 2.972-.286.058-5.145 1.544-5.145 1.544l-1.314-.515 1.657.4 2.287-.628-2.287-1.43 2.973 1.144 1.543-.572-2.23-1.314 2.401 1.086 3.544-1.315-4.058-1.543 6.401.057-4.858-1.715 7.888 1.315c-.686-.857-2.915-1.6-2.915-1.6 1.6 0 5.258.857 5.258.857-.686-.8-3.83-2.23-3.83-2.23 1.715.344 6.288 1.715 6.288 1.715l-3.372-2.343c.457.171 3.257 1.257 3.257 1.257-.571-1.028-2.4-1.886-2.4-1.886.743 0 6.23 2.687 6.23 2.687-1.2-1.944-3.83-4.687-3.83-4.687l3.373 2.115-1.944-2.23 5.03 2.344c-1.715-2.4-5.544-3.772-6.687-3.944-1.143-.171-9.202.743-15.547 5.259-6.344 4.515-7.087 8.687-7.087 8.687s-6.502-14.09-17.888-14.94c0 0 1.785 1.7 5.268 2.464 0 0-3.823.85-4.758 2.209 0 0 4.248-.34 6.967.425 0 0-4.503.934-5.183 2.124 0 0 4.843-.51 7.392-.085 0 0-4.333.595-4.503 1.614 0 0 6.712 0 6.967 1.275 0 0-4.588-.17-5.777.595 0 0 6.032.85 7.222 1.699l-3.739.595s4.843 1.02 5.438 2.379c0 0-10.706-4.673-19.457-5.608-8.751-.935-11.385 1.36-12.915 2.634-1.529 1.274-5.013 4.588-4.418 7.307 0 0 1.87-3.654 6.373-6.542l-4.079 4.927 4.588-3.738s-2.803 3.823-2.803 5.098c0 0 4.333-7.052 6.202-8.327 0 0-3.144 3.994-3.059 5.523 0 0 6.033-5.947 6.627-5.862 0 0-4.588 4.163-4.503 6.882 0 0 5.268-5.608 6.882-6.118 0 0-3.993 2.294-3.228 4.248l4.333-3.993-2.634 4.248 1.275-.424s1.869-3.569 4.503-3.484l-3.484 3.314 1.784-.17s2.04-2.55 4.504-3.399c0 0-3.569 2.889-3.739 3.399l1.105.085s2.124-2.21 3.738-2.634l-1.53 2.464h.765l2.04-1.954-1.445 1.869 1.87.17 1.359-1.19-1.105 1.36h1.36l.85-.68-.086.85 2.21.085.594-1.19-.085 1.02z"
|
|
1408
|
+
stroke-width=".3"
|
|
1409
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-425.76596,333.57046)"
|
|
1410
|
+
/>
|
|
1411
|
+
<path
|
|
1412
|
+
d="M3187.5-1289.781l-5.78 6.742-.642.178v.787s-22.479 8.348-39.178 22.799c-16.698 14.45-26.973 30.507-28.9 38.215-1.927 7.706-2.248 29.222-2.248 29.222s3.21-17.984 5.137-20.553c0 0 0 11.24 1.605 13.809 0 0 1.286-19.588 1.928-22.478.642-2.89.641 16.056 4.174 17.662 0 0-.964-20.232 1.605-26.655 0 0-.962 10.919.965 13.809 0 0 2.89-25.37 9.633-32.113 0 0-8.029 13.167-2.89 31.793l1.548-7.1-2.19.355 2.327-.976 2.168-9.942 3.218 7.676 1.3-.545.81-6.681-8.217-.772 9.842-1.469.107-3.33-4.812-.66 4.863-.972.133-4.164h-3.711l3.74-.9.113-3.597.418 3.467 5.274-1.271.73-3.48.723 3.13.428-.103.886-5.461-1.072-.135 1.117-.152.809-4.987.63 4.791 2.493-.342 1.373-7.017 1.605 6.422s4.176-13.809 7.387-15.414l.254 8.404c.5-.095.958-.179 1.498-.285l6.918-11.973-.127 3.908c.644-.177 1.418-.393 2.72-.755l2.866-6.684 1.926 5.137 3.213-3.854 1.52 2.705c12.168-3.501 27.52-8.15 26.738-9.127-1.285-1.605-8.028-1.605-8.028-1.605l.963-5.139-2.568 5.139h-2.89l.321-3.533-1.927 3.533-6.102-.322 1.606-3.854-3.532 3.533h-8.35zm-12.03 20.31l-.173 5.38 2.228-5.2a38.658 38.658 0 00-2.054-.18zm-21.29 16.307l.595 4.53.758-.182.799-4.078zm-9.489 8.02l.471 3.906 3.525-.705.67-3.201zm.727 6.015l.338 2.807 1.81-.27.455-2.18zm-2.93 5.389l1.018 4.33.135-4.223zm3.621.34l.287 2.384.485-2.312zm-5.117 8.675l-.228.037.173.416z"
|
|
1413
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0843767,0,0,1.0843767,-425.76596,333.57046) scale(0.26458333)"
|
|
1414
|
+
/>
|
|
1415
|
+
</g>
|
|
1416
|
+
<path
|
|
1417
|
+
d="M502.997-51.5l-.808 11.126c.89 1.498 1.355 2.5 1.355 2.5s.152-.846.875-2.196l-.354-10.991a8.854 8.854 0 00-1.068-.439zm1.517 14.371l-.405.087.412.114z"
|
|
1418
|
+
fill="#f1b517"
|
|
1419
|
+
stroke="#000"
|
|
1420
|
+
stroke-width=".325"
|
|
1421
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617)"
|
|
1422
|
+
/>
|
|
1423
|
+
<g>
|
|
1424
|
+
<path
|
|
1425
|
+
d="M602.721 231.398s3.528-2.435 5.544-.102l-.672 1.725-3.444.304z"
|
|
1426
|
+
fill="#fff"
|
|
1427
|
+
stroke="#000"
|
|
1428
|
+
stroke-width=".29"
|
|
1429
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0876582,0,0,0.90056981,-187.59245,-144.7289)"
|
|
1430
|
+
/>
|
|
1431
|
+
<path
|
|
1432
|
+
color="#000"
|
|
1433
|
+
d="M605.246 226.102l-.07 6.605.699.008.07-6.607z"
|
|
1434
|
+
fill="green"
|
|
1435
|
+
font-family="sans-serif"
|
|
1436
|
+
font-weight="400"
|
|
1437
|
+
overflow="visible"
|
|
1438
|
+
stroke="#000"
|
|
1439
|
+
stroke-width=".164"
|
|
1440
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0876582,0,0,0.90056981,-187.59245,-144.7289)"
|
|
1441
|
+
/>
|
|
1442
|
+
<path
|
|
1443
|
+
d="M602.826 233.563s.71.356.568 1.634c-.142 1.279-.426 5.896 2.273 5.896 2.7 0 2.344-4.475 2.344-5.185s.213-2.06.213-2.06v-2.558s-2.699 2.415-5.398-.07z"
|
|
1444
|
+
fill="green"
|
|
1445
|
+
stroke="#000"
|
|
1446
|
+
stroke-width=".265"
|
|
1447
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0876582,0,0,0.90056981,-187.59245,-144.7289)"
|
|
1448
|
+
/>
|
|
1449
|
+
<path
|
|
1450
|
+
color="#000"
|
|
1451
|
+
d="M474.893 325.38s-.187 1.114-.186 2.23c0 .558.042 1.117.192 1.559.076.22.176.415.335.567a.846.846 0 00.12.093 2 2 0 00.534-.07l-.01-.195c-.104.004-.163-.018-.246-.098a1.051 1.051 0 01-.23-.41c-.126-.371-.176-.907-.176-1.446 0-1.079.183-2.173.183-2.173z"
|
|
1452
|
+
fill="#fff"
|
|
1453
|
+
font-family="sans-serif"
|
|
1454
|
+
font-weight="400"
|
|
1455
|
+
overflow="visible"
|
|
1456
|
+
/>
|
|
1457
|
+
<path
|
|
1458
|
+
d="M2298.688 881.55c-9.234 3.645-15.933 2.451-20.292.429v.78s1.274.639 1.891 2.616c8.552 5.014 15.24.947 18.492-1.955z"
|
|
1459
|
+
fill="#fff"
|
|
1460
|
+
stroke="#000"
|
|
1461
|
+
stroke-width=".567"
|
|
1462
|
+
transform="matrix(0.79645564,0,0,0.77530405,100.0721,273.79617) matrix(1.0876582,0,0,0.90056981,-187.59245,-144.7289) scale(0.26458333)"
|
|
1463
|
+
/>
|
|
1464
|
+
</g>
|
|
1465
|
+
<g font-family="Helvetica" font-size="6.728" font-weight="400" letter-spacing="0" stroke-width=".421" word-spacing="0">
|
|
1466
|
+
<path
|
|
1467
|
+
d="M467.714 363.843l-.552-.104-.789 3.987 2.63.493.095-.477-2.079-.39zM469.89 365.693l.418.067.238-1.423-.417-.067zM473.926 364.811l-.356 2.542q-.046.326-.168.522-.126.206-.307.307-.359.192-.768.132-.183-.024-.36-.106-.176-.08-.316-.223-.131-.143-.194-.375-.068-.226-.022-.552l.355-2.531-.557-.074-.376 2.685q-.088.582.239 1.052.324.483 1.146.604.854.102 1.323-.287.466-.379.554-1.011l.367-2.61zM477.647 368.51l-.011-.002-1.725-3.47-.663-.068-.433 4.038.542.055.35-3.263h.01l1.762 3.478.63.064.432-4.038-.545-.055zM480.003 365.422l-.563-.048-.36 4.045.563.048zM484.014 367.752q-.058.722-.471 1.153-.416.436-1.099.394-.684-.053-1.027-.542-.354-.484-.301-1.206.054-.732.475-1.157.41-.432 1.095-.39.681.053 1.03.537.346.478.298 1.211zm.577.04q.025-.338-.038-.717-.078-.379-.286-.712-.209-.344-.581-.574-.388-.224-.965-.27-.286-.02-.533.013-.247.036-.45.122-.405.176-.667.488-.252.3-.378.666-.132.364-.157.703-.024.328.054.702.072.373.277.717.214.341.59.572.372.236.952.282.294.02.542-.026.247-.033.453-.12.403-.178.658-.487.256-.311.388-.67.117-.36.141-.688zM487.913 369.213h-.012l-1.906-3.38-.665-.035-.22 4.055.545.027.177-3.276h.01l1.944 3.385.631.033.22-4.055-.548-.028zM491.601 368.295l2.045.065.016-.486-2.044-.065.041-1.242 2.322.073.017-.485-2.887-.091-.135 4.058.564.017zM496.402 369.08l.388 1.189.615.011-1.428-4.087-.639-.012-1.649 4.03.579.01.46-1.173zm-1.491-.515l.705-1.774h.011l.58 1.798zM498.634 366.225l-.565-.004-.033 4.06.565.004zM499.032 366.72l1.41-.018.048 3.573.564-.006-.048-3.574 1.413-.018-.007-.486-3.387.043zM505.078 366.123l-.561.017.13 4.058 2.676-.081-.015-.486-2.116.064zM510.157 368.817l.464 1.164.615-.026-1.69-3.993-.637.027-1.386 4.123.578-.024.384-1.2zm-1.521-.422l.589-1.814h.011l.695 1.76zM513.873 367.96l2.041-.128-.032-.485-2.041.127-.082-1.24 2.319-.145-.032-.485-2.882.18.267 4.052.563-.036zM520.007 367.329q.056.722-.284 1.21-.343.492-1.024.553-.684.05-1.1-.382-.426-.426-.488-1.147-.062-.732.286-1.215.337-.487 1.021-.548.682-.05 1.103.377.417.42.486 1.152zm.576-.047q-.029-.338-.15-.702-.137-.364-.396-.661-.26-.31-.665-.481-.418-.163-.995-.122-.286.023-.525.092-.238.072-.425.187-.373.235-.582.582-.202.335-.27.715-.072.38-.043.718.027.328.163.685.13.358.388.667.265.306.672.478.406.178.986.137.294-.024.532-.107.239-.07.428-.187.37-.235.574-.579.204-.346.277-.72.06-.374.031-.702zM521.857 367.443l1.356-.144q.249-.026.41.02.154.045.24.145.087.093.124.22.031.127.046.256.015.137.075.465.03.152.064.296.033.143.073.242l.688-.073-.01-.09q-.13-.06-.181-.14-.049-.08-.073-.242l-.115-.727q-.035-.207-.087-.344-.06-.132-.14-.196-.077-.078-.163-.113-.092-.032-.192-.055.095-.066.19-.162.09-.084.166-.2.075-.123.108-.284.028-.162.004-.381-.082-.628-.517-.82-.434-.183-.967-.12l-1.918.203.452 4.036.56-.06zm-.206-1.837l1.396-.148q.231-.03.49.048.124.05.215.177.092.132.118.368.025.22-.03.362-.055.15-.169.235-.113.087-.26.124-.146.05-.306.066l-1.3.138zM528.622 365.502q-.134-.52-.612-.847-.476-.332-1.278-.232-.905.137-1.325.773-.428.642-.294 1.59.179 1.143.822 1.564.618.422 1.35.315.127-.018.38-.092.252-.077.523-.262.273-.192.466-.556.194-.359.205-.927l-.542.075q-.017.352-.12.589-.106.238-.265.38-.158.136-.322.21-.167.07-.31.09-.754.1-1.137-.339-.377-.422-.477-1.147-.111-.794.226-1.253.315-.449.89-.529.16-.022.338-.024.176.009.358.075.18.068.336.216.156.146.248.406zM532.736 367.15l-2.469.458-.262-1.334 2.244-.418-.094-.477-2.244.417-.24-1.22 2.43-.453-.093-.477-2.985.555.783 3.988 3.024-.562z"
|
|
1468
|
+
/>
|
|
1469
|
+
</g>
|
|
1470
|
+
</svg>
|