| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
- <svg
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns:ns1="http://sozi.baierouge.fr"
- id="svg2"
- sodipodi:docname="vejceš.svg"
- viewBox="0 0 353.12 272.58"
- version="1.1"
- inkscape:version="0.48.3.1 r9886"
- inkscape:label="Pozadí"
- >
- <defs
- id="defs3"
- >
- <linearGradient
- id="linearGradient3754"
- >
- <stop
- id="stop3756"
- style="stop-color:#fff1e8"
- offset="0"
- />
- <stop
- id="stop6228"
- style="stop-color:#ffbb8e"
- offset=".5"
- />
- <stop
- id="stop3758"
- style="stop-color:#793100"
- offset="1"
- />
- </linearGradient
- >
- <filter
- id="filter3827"
- height="1.7083"
- width="1.1931"
- color-interpolation-filters="sRGB"
- y="-.35413"
- x="-.096541"
- inkscape:collect="always"
- >
- <feGaussianBlur
- id="feGaussianBlur3829"
- stdDeviation="34.84401"
- inkscape:collect="always"
- />
- </filter
- >
- <filter
- id="filter5769-0"
- height="1.9026"
- width="1.4103"
- color-interpolation-filters="sRGB"
- y="-.45132"
- x="-.20514"
- inkscape:collect="always"
- >
- <feGaussianBlur
- id="feGaussianBlur5771-9"
- stdDeviation="21.491357"
- inkscape:collect="always"
- />
- </filter
- >
- <filter
- id="filter6164-4"
- height="1.3449"
- width="1.1767"
- color-interpolation-filters="sRGB"
- y="-.17246"
- x="-.088362"
- inkscape:collect="always"
- >
- <feGaussianBlur
- id="feGaussianBlur6166-8"
- stdDeviation="37.981259"
- inkscape:collect="always"
- />
- </filter
- >
- <linearGradient
- id="linearGradient4603-2"
- >
- <stop
- id="stop4605-4"
- style="stop-color:#005500"
- offset="0"
- />
- <stop
- id="stop4607-5"
- style="stop-color:#001700"
- offset="1"
- />
- </linearGradient
- >
- <linearGradient
- id="linearGradient13520"
- y2="525.27"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-948.6"
- y1="525.27"
- x1="-1034.4"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13522"
- y2="553.7"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-920.35"
- y1="553.7"
- x1="-942.17"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13524"
- y2="576.29"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-880.1"
- y1="576.29"
- x1="-903.75"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13526"
- y2="604.38"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-855.76"
- y1="604.38"
- x1="-881.14"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13528"
- y2="674.95"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-795.1"
- y1="674.95"
- x1="-819.55"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13530"
- y2="731.49"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-936.51"
- y1="731.49"
- x1="-1034.4"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13532"
- y2="692.97"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-908.2"
- y1="692.97"
- x1="-945.5"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13534"
- y2="703.01"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-844.49"
- y1="703.01"
- x1="-883.11"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13536"
- y2="759.61"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-827.62"
- y1="759.61"
- x1="-851.21"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13538"
- y2="717.22"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-976.89"
- y1="717.22"
- x1="-1050.6"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13540"
- y2="741.68"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-941.46"
- y1="741.68"
- x1="-1002.7"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13542"
- y2="769.52"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-913.18"
- y1="769.52"
- x1="-946.46"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13544"
- y2="735.59"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-851.68"
- y1="735.59"
- x1="-876.81"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13546"
- y2="719.01"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-779.84"
- y1="719.01"
- x1="-805.04"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13548"
- y2="736.04"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-735.39"
- y1="736.04"
- x1="-780.8"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13550"
- y2="756.03"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-795.21"
- y1="756.03"
- x1="-892.97"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13552"
- y2="830.65"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-908.29"
- y1="830.65"
- x1="-966.3"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13554"
- y2="887.08"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-875.91"
- y1="887.08"
- x1="-929.34"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13556"
- y2="862.45"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-816.2"
- y1="862.45"
- x1="-849.49"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13558"
- y2="896.8"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-775.57"
- y1="896.8"
- x1="-792.92"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13560"
- y2="824.26"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-743.47"
- y1="824.26"
- x1="-788.86"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13562"
- y2="828.25"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-707.11"
- y1="828.25"
- x1="-760.59"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13564"
- y2="793.99"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-832.37"
- y1="793.99"
- x1="-895.99"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13566"
- y2="870.53"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-771.28"
- y1="870.53"
- x1="-801"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13568"
- y2="883.77"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-835.97"
- y1="883.77"
- x1="-876.81"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13570"
- y2="856.62"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-796"
- y1="856.62"
- x1="-833.3"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13572"
- y2="876.8"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-968.8"
- y1="876.8"
- x1="-1026.3"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13574"
- y2="897.18"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-924.4"
- y1="897.18"
- x1="-973.79"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13576"
- y2="808.1"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-1005.2"
- y1="808.1"
- x1="-1062.7"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13578"
- y2="828.29"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-1029.4"
- y1="828.29"
- x1="-1103.1"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13580"
- y2="929.12"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-993.03"
- y1="929.12"
- x1="-1022.3"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13582"
- y2="984.03"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-989.04"
- y1="984.03"
- x1="-1011.7"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13584"
- y2="984.05"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-940.56"
- y1="984.05"
- x1="-955.68"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13586"
- y2="939.23"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-953.58"
- y1="939.23"
- x1="-982.83"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13588"
- y2="959.43"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-903.6"
- y1="959.43"
- x1="-918.18"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13590"
- y2="947.31"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-860.65"
- y1="947.31"
- x1="-877.77"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13592"
- y2="949.33"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-787.92"
- y1="949.33"
- x1="-805.04"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13594"
- y2="953.08"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-748.75"
- y1="953.08"
- x1="-775.8"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13596"
- y2="891.12"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-719.23"
- y1="891.12"
- x1="-760.54"
- inkscape:collect="always"
- />
- <linearGradient
- id="linearGradient13598"
- y2="719.01"
- xlink:href="#linearGradient4603-2"
- gradientUnits="userSpaceOnUse"
- x2="-715.19"
- y1="719.01"
- x1="-764.63"
- inkscape:collect="always"
- />
- <radialGradient
- id="radialGradient14254"
- xlink:href="#linearGradient3754"
- gradientUnits="userSpaceOnUse"
- cy="372.68"
- cx="367.25"
- gradientTransform="matrix(1.1909 -.18446 .20605 1.457 -152.14 -148.35)"
- r="184.29"
- inkscape:collect="always"
- />
- <radialGradient
- id="radialGradient14256"
- xlink:href="#linearGradient3754"
- gradientUnits="userSpaceOnUse"
- cy="386.13"
- cx="372.99"
- gradientTransform="matrix(1.1424 .028194 -.036452 1.6176 -38.709 -289.77)"
- r="184.29"
- inkscape:collect="always"
- />
- <radialGradient
- id="radialGradient14423"
- xlink:href="#linearGradient3754"
- gradientUnits="userSpaceOnUse"
- cy="521.33"
- cx="298.64"
- gradientTransform="matrix(.99997 -.0078510 .013094 1.8265 -6.8594 -406.38)"
- r="184.29"
- inkscape:collect="always"
- />
- </defs
- >
- <sodipodi:namedview
- id="base"
- fit-margin-left="10"
- inkscape:zoom="0.7060307"
- borderopacity="1.0"
- inkscape:current-layer="layer1"
- inkscape:cx="223.37346"
- inkscape:cy="284.80929"
- inkscape:window-maximized="1"
- showgrid="false"
- fit-margin-right="10"
- units="cm"
- inkscape:document-units="px"
- bordercolor="#666666"
- inkscape:window-x="1272"
- inkscape:window-y="-8"
- fit-margin-bottom="10"
- inkscape:window-width="1280"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- pagecolor="#ffffff"
- inkscape:window-height="962"
- fit-margin-top="10"
- />
- <g
- id="layer1"
- inkscape:label="vejce"
- inkscape:groupmode="layer"
- transform="translate(354.26 -189.65)"
- >
- <g
- id="g12280"
- transform="matrix(.26723 0 0 .25337 66.381 -127.97)"
- >
- <path
- id="path5971"
- d="m-628.7 1608.6c-178.81 72.599 0.75292 151.71-228.17 164.38-228.93 12.673-159.47 79.466-350.76-31.078s-384.51 161.17-207.86 337.47c176.66 176.3 534.32 161.71 728.3 156.17 193.97-5.5374 364.58-70.753 343.84-234.88-20.749-164.13-106.54-464.66-285.34-392.06z"
- sodipodi:nodetypes="zzzzzzz"
- style="color:#000000;filter:url(#filter5769-0);fill:#374837"
- inkscape:connector-curvature="0"
- />
- <path
- id="path6094"
- d="m-582.55 1693.5c-11.65 0.7232-18.766 14.187-16.25 24.875-3.3946 66.302 18.97 130.42 19.548 196.47 2.1875 49.658-42.714 32.341-72.349 73.361-38.301 53.253-97.181-78.96-162.52-82.287-113.72 4.5453-192.17 137.69-261.98 49.048-51.825-60.958-103.69-83.47-172.16-126.59-22.237-13.214-50.423-20.682-75.25-10.969-47.983 18.877-74.85 76.152-63.25 125.81 8.0343 39.665 36.315 72.264 69.371 94.078 71.186 51.023 157.67 74.888 243.28 88.514 111.77 17.15 225.39 17.23 338.22 14.471 62.478-2.2359 125.54-5.2015 186.43-19.982 33.395-8.7838 67.034-21.898 92.445-45.897 14.49-14.839 21.541-35.891 19.09-56.464-1.734-34.562-12.836-67.635-18.834-101.55-16.399-69.377-39.364-139.01-82.422-196.56-10.625-13.109-25.172-26.882-43.369-26.318z"
- sodipodi:nodetypes="cccccccccccccccccc"
- style="color:#000000;fill-opacity:.88444;filter:url(#filter6164-4);fill:#008000"
- inkscape:connector-curvature="0"
- />
- </g
- >
- <path
- id="path3811"
- sodipodi:rx="184.28572"
- sodipodi:ry="271.42856"
- style="color:#000000;fill-opacity:.78431;filter:url(#filter3827);fill:#000000"
- sodipodi:type="arc"
- d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
- inkscape:transform-center-x="-49.28546"
- inkscape:transform-center-y="12.358414"
- transform="matrix(-.048163 .15949 -.40374 .00071922 46.343 297.63)"
- sodipodi:cy="472.36218"
- sodipodi:cx="384.28571"
- />
- <path
- id="path2984"
- sodipodi:rx="184.28572"
- sodipodi:ry="271.42856"
- style="color:#000000;fill:url(#radialGradient14254)"
- sodipodi:type="arc"
- d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
- transform="matrix(.26516 0 0 .23991 -265.22 157.45)"
- sodipodi:cy="472.36218"
- sodipodi:cx="384.28571"
- />
- <path
- id="path3762"
- sodipodi:rx="184.28572"
- sodipodi:ry="271.42856"
- style="color:#000000;fill:url(#radialGradient14256)"
- sodipodi:type="arc"
- d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
- transform="matrix(.25656 -.063419 .064001 .23213 -360.91 209.43)"
- sodipodi:cy="472.36218"
- sodipodi:cx="384.28571"
- />
- <path
- id="path3762-9"
- sodipodi:rx="184.28572"
- sodipodi:ry="271.42856"
- style="color:#000000;fill:url(#radialGradient14423)"
- sodipodi:type="arc"
- d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
- inkscape:transform-center-x="-74.285714"
- inkscape:transform-center-y="45.714286"
- transform="matrix(.0012513 .25106 -.25337 .0011322 -29.139 225.13)"
- sodipodi:cy="472.36218"
- sodipodi:cx="384.28571"
- />
- <g
- id="g4689"
- transform="matrix(0.212 0 0 .18257 -51.737 213.92)"
- >
- <path
- id="path4439"
- style="fill-rule:evenodd;fill:url(#linearGradient13520)"
- d="m-1034.4 296.77c7.2299 16.843 12.7 34.37 17.565 52.028 5.8885 21.375 10.762 43.012 15.141 64.745 0 0 0 0.00001 0.0001 0.00001 9.6817 48.046 16.958 96.537 23.247 145.15 5.5267 42.728 10.202 85.56 14.23 128.45 2.0854 22.209 4.0359 44.417 5.6461 66.632l9.9655-0.83046c-2.0973-22.276-4.5315-44.5-7.0983-66.693-4.9587-42.88-10.566-85.686-17.021-128.36v-0.00002c-7.3421-48.543-15.682-96.977-26.413-144.89-4.8537-21.672-10.204-43.248-16.561-64.527-5.2499-17.575-11.111-35.018-18.702-51.702z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4441-5"
- inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
- />
- <path
- id="path4443"
- style="fill-rule:evenodd;fill:url(#linearGradient13522)"
- d="m-925.3 304.85c-10.148 84.575-15.444 169.77-16.635 255.02-0.59326 42.436-0.10513 84.913 1.8613 127.35v0.00001c1.7829 38.502 4.742 77.013 9.8236 115.33l9.8995-1.4142c-5.7975-37.84-9.5041-76.042-12.052-114.35-2.8068-42.215-4.1438-84.548-4.4025-126.9v-0.00002c-0.51871-85.098 3.056-170.28 11.505-255.04z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4445-7"
- inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
- />
- <path
- id="path4447"
- style="fill-rule:evenodd;fill:url(#linearGradient13524)"
- d="m-888.93 329.09c-0.0336 41.831-2.2515 83.605-4.6431 125.36-2.6107 45.574-5.629 91.136-7.7287 136.78-1.9784 42.973-3.3049 86.07-1.7759 129.21 0.66018 18.636 1.8763 37.31 4.1994 55.915 1.9665 15.792 4.7245 31.621 9.1997 47.123l9.5783-2.8735c-4.587-14.706-7.5584-30-9.8162-45.461-2.6515-18.199-4.2212-36.6-5.2528-55.064v-0.00002c-2.3877-42.751-1.9319-85.708-0.82778-128.66 1.1739-45.606 3.2701-91.217 4.9592-136.85 1.5479-41.806 2.9203-83.661 2.1079-125.48z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4449-1"
- inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
- />
- <path
- id="path4451"
- style="fill-rule:evenodd;fill:url(#linearGradient13526)"
- d="m-856.61 353.34c-7.8284 83.677-17.99 167.16-22.371 251.2v0.00002c-2.2065 42.339-2.9727 84.818-1.0891 127.27 1.8358 41.411 6.2163 82.832 14.53 123.61l9.778-2.0953c-8.9918-39.98-14.137-80.865-16.782-121.93v-0.00003c-2.7106-42.095-2.7879-84.391-1.4293-126.65v-0.00001c2.6964-83.884 11.2-167.59 17.363-251.41z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4453-2"
- inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
- />
- <path
- id="path4455"
- style="fill-rule:evenodd;fill:url(#linearGradient13528)"
- d="m-816.2 417.99c0.2223 85.933-3.0379 171.81-3.3267 257.8-0.29098 85.452 2.3375 171.22 14.547 256.12l9.8837-1.5206c-13.759-83.9-18.037-169.31-19.415-254.63-1.3829-85.864 0.2052-171.85-1.6889-257.76z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4457-6"
- inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
- />
- <path
- id="path4459"
- style="fill-rule:evenodd;fill:url(#linearGradient13530)"
- d="m-1034.4 486.68c28.873 78.168 45.535 160.21 57.592 242.57 12 82.013 19.462 164.66 30.392 247.05l9.8995-1.4142c-12.538-81.885-21.672-164.48-35.341-246.42-13.721-82.286-32.109-164.22-62.543-241.79z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4461-4"
- inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
- />
- <path
- id="path4463"
- style="fill-rule:evenodd;fill:url(#linearGradient13532)"
- d="m-945.5 450.31c15.301 79.801 18.914 161.24 20.317 242.44 1.3877 80.859 0.51222 161.93 7.0286 242.89l9.9589-0.90536c-8.1348-80.203-8.9222-161.21-11.979-242.12-3.0602-81.243-8.3872-162.83-25.325-242.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4465-3"
- inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
- />
- <path
- id="path4467"
- style="fill-rule:evenodd;fill:url(#linearGradient13534)"
- d="m-844.49 506.88c-13.76 65.162-24.284 131.07-30.99 197.42-6.5309 64.604-9.5639 129.74-6.3254 194.83l9.9805-0.62378c-4.8503-64.338-3.4794-129.19 1.3922-193.76 5.0057-66.313 13.839-132.38 25.942-197.87z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4469-2"
- inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
- />
- <path
- id="path4471"
- style="fill-rule:evenodd;fill:url(#linearGradient13536)"
- d="m-828.33 539.2c1.1072 73.893-6.5568 147.5-13.287 221.11-6.6726 72.854-12.66 146.22-7.8606 219.7l9.9705-0.76696c-6.4194-72.368-2.1025-145.58 2.8998-218.53 5.0658-73.706 11.059-147.66 8.2773-221.51z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4473-6"
- inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
- />
- <path
- id="path4475"
- style="fill-rule:evenodd;fill:url(#linearGradient13538)"
- d="m-1050.6 539.2c10.951 59.284 24.534 118.08 36.527 177.12 12.038 59.271 22.574 118.89 27.184 178.91l9.9589-0.90536c-6.3485-60.519-18.573-120.06-32.266-179.06-13.637-58.769-28.821-117.1-41.404-176.06z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4477-5"
- inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
- />
- <path
- id="path4479"
- style="fill-rule:evenodd;fill:url(#linearGradient13540)"
- d="m-941.46 486.68c-28.786 81.012-46.448 165.92-55.219 251.62-8.7905 85.783-8.8078 173.01 5.8528 258.39l9.8387-1.7889c-16.128-83.955-17.798-170.54-10.715-256.14 7.0871-85.508 23.031-170.53 50.243-252.08z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4481-6"
- inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
- />
- <path
- id="path4483"
- style="fill-rule:evenodd;fill:url(#linearGradient13542)"
- d="m-913.18 591.73c-15.457 57.384-23.34 116.7-27.572 176.07-4.2627 59.759-4.8785 119.71-5.7121 179.5h10c-0.8336-59.816-1.8976-119.56 0.688-179.21 2.5724-59.272 8.7496-118.57 22.596-176.36z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4485-8"
- inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
- />
- <path
- id="path4487"
- style="fill-rule:evenodd;fill:url(#linearGradient13544)"
- d="m-876.81 563.45c1.0452 57.788 0.66111 115.58 2.1167 173.41 1.4325 57.026 4.5566 114.2 13.154 170.86l9.8639-1.644c-10.14-55.759-14.899-112.56-17.987-169.42-3.1292-57.659-4.4251-115.48-7.1477-173.21z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4489-2"
- inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
- />
- <path
- id="path4491"
- style="fill-rule:evenodd;fill:url(#linearGradient13546)"
- d="m-779.84 555.37c-4.2179 54.474-10.101 108.78-15.14 163.21-5.0472 54.502-9.226 109.18-10.063 164.08h10c-0.83713-54.498 1.6673-109.12 5.045-163.7 3.3748-54.506 7.6025-109.02 10.158-163.59z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4493-9"
- inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
- />
- <path
- id="path4495"
- style="fill-rule:evenodd;fill:url(#linearGradient13548)"
- d="m-735.39 559.41c-2.3319 5.1584-3.935 10.626-5.3882 16.101-2.0073 7.5596-3.6207 15.222-5.086 22.904-3.838 20.121-6.6608 40.429-9.221 60.746-0.00001 0.00001-0.00001 0.00001-0.00001 0.00002-3.002 23.819-5.546 47.695-7.8896 71.584-2.3378 23.829-4.4604 47.678-6.482 71.531-1.7116 20.196-3.3385 40.394-4.9968 60.582 0 0.00001 0 0.00001-0.00001 0.00001-0.62401 7.5964-1.2513 15.187-1.9162 22.767-0.46732 5.326-0.93848 10.626-1.5106 15.888-0.18058 1.6576-0.36508 3.2824-0.59038 4.8678l-0.00001 0.00001c-0.0765 0.53652-0.153 1.0441-0.24009 1.5204-0.0665 0.34261-0.10856 0.58151-0.15232 0.70852-0.0202 0.0455 0.003-0.0141 0.0599-0.18269 0.00011 0.00002 0.00021 0.00004 0.00032 0.00006 1.1416 0.21508 2.6439 0.0308 4.489-0.57047 0.00008-0.00003 0.00017-0.00006 0.00026-0.00009 0.13377 0.083 0.26428 0.16273 0.39069 0.23277 0.1035 0.0573 0.20473 0.10642 0.30824 0.14876 0.13684 0.056 0.27702 0.10288 0.41831 0.14664 0.00004 0.00001 0.00009 0.00003 0.00013 0.00004 0.20865 0.0646 0.41937 0.12123 0.62934 0.17222 0.66234 0.16085 1.3165 0.26476 1.9502 0.31723h0.00006c0.004 0.0201 0.002-0.0186-0.0127-0.11493-0.0406-0.29437-0.0659-0.66129-0.0977-1.0981-0.10193-1.4865-0.13757-3.0367-0.17231-4.6477-0.0525-2.5414-0.0683-5.0989-0.0743-7.6724-0.019-8.2505 0.0725-16.518 0.17773-24.804h-10c0.10518 8.2972 0.22465 16.614 0.45525 24.945 0.0718 2.5976 0.15468 5.2112 0.27547 7.8387 0.074 1.6324 0.15922 3.3267 0.32067 5.0747 0.0443 0.49793 0.10476 1.0656 0.20305 1.6987 0.0306 0.20565 0.0791 0.46821 0.15133 0.78592 0.00005 0.00002 0.00009 0.00003 0.00014 0.00005 0.67836 0.24823 1.382 0.54796 2.1233 0.89343 0.235 0.10953 0.47386 0.22374 0.71938 0.34026 0.00005 0.00003 0.0001 0.00005 0.00015 0.00008 0.16626 0.0789 0.33574 0.15939 0.51067 0.23554 0.13233 0.0576 0.26816 0.11117 0.40291 0.15919 0.16458 0.0586 0.32686 0.1116 0.48767 0.16535 0.00018-0.00007 0.00037-0.00014 0.00055-0.0002 1.9398-0.70377 3.4965-1.0212 4.6896-0.93597 0.00011 0.00001 0.00022 0.00001 0.00033 0.00002 0.14367-0.386 0.23093-0.67097 0.27011-0.85167 0.14843-0.60557 0.23822-1.1137 0.29598-1.5182 0.0994-0.64538 0.17767-1.2645 0.24567-1.8558v-0.00003c0.20228-1.7507 0.35471-3.4731 0.49453-5.1636 0.44705-5.3881 0.78759-10.756 1.1194-16.099 0.47386-7.6225 0.90902-15.241 1.34-22.853 0-0.00001 0.00001-0.00002 0.00001-0.00002 1.1455-20.231 2.2584-40.457 3.4555-60.672 1.4141-23.88 2.9285-47.75 4.6585-71.604 1.7345-23.916 3.6681-47.813 6.061-71.668 2.0421-20.353 4.3414-40.679 7.6619-60.857 1.2679-7.7039 2.6819-15.384 4.4932-22.978 1.3132-5.5028 2.7697-10.991 4.9699-16.206z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4497-4"
- inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
- />
- <path
- id="path4503"
- style="fill-rule:evenodd;fill:url(#linearGradient13550)"
- d="m-892.97 583.65c5.171 59.038 19.963 116.95 36.973 173.79 17.085 57.124 36.463 113.52 51.135 170.97l9.6529-2.612c-16.438-57.524-37.389-113.36-56.029-169.85-18.539-56.218-34.906-113.42-41.731-172.29z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4505-1"
- inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
- />
- <path
- id="path4507"
- style="fill-rule:evenodd;fill:url(#linearGradient13552)"
- d="m-965.71 620.02c-0.78849 16.199-0.70433 32.441-0.2236 48.661 0.55321 18.672 1.6652 37.328 3.0949 55.956v0.00002c3.1164 40.604 7.713 81.094 13.039 121.47v0.00002c5.0115 37.997 10.706 75.91 16.991 113.73 4.5182 27.19 9.2673 54.374 14.738 81.456l9.778-2.0952c-6.0697-26.774-11.438-53.742-16.589-80.775-7.1587-37.577-13.732-75.27-19.628-113.08v-0.00001c-6.265-40.176-11.805-80.467-15.871-120.93-1.8653-18.561-3.4146-37.155-4.4064-55.786-0.86148-16.186-1.3287-32.4-0.92224-48.613z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4509-3"
- inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
- />
- <path
- id="path4511"
- style="fill-rule:evenodd;fill:url(#linearGradient13554)"
- d="m-929.34 660.42c11.628 36.946 18.13 75.268 22.783 113.68 5.0349 41.586 7.6665 83.419 9.5282 125.28v0.00001c1.7621 39.648 2.7094 79.35 4.2509 119.08 0.66751 17.213 1.4503 34.447 2.6419 51.685 1.001 14.504 2.2703 29.058 4.3413 43.578l9.8837-1.5206c-2.3338-14.11-3.8937-28.409-5.2063-42.78-1.557-17.066-2.7112-34.197-3.7543-51.356-2.4072-39.611-4.2261-79.311-6.8611-118.98v-0.00002c-2.7806-41.879-6.3419-83.761-12.3-125.32-5.499-38.381-12.873-76.662-25.308-113.34z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4513-4"
- inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
- />
- <path
- id="path4515"
- style="fill-rule:evenodd;fill:url(#linearGradient13556)"
- d="m-816.2 672.54c-3.961 64.296-11.826 128.23-18.91 192.28-6.8852 62.214-13.545 124.65-14.375 187.54h10c-0.82965-62.271 4.18-124.69 9.4228-187.05 5.3991-64.171 11.589-128.39 13.862-192.77z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4517-1"
- inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
- />
- <path
- id="path4519"
- style="fill-rule:evenodd;fill:url(#linearGradient13558)"
- d="m-775.8 729.11c-0.097 12.252-0.46904 24.497-0.90546 36.74-0.55289 15.509-1.2429 31.011-1.9898 46.512-1.699 35.26-3.6964 70.503-5.7693 105.75v0.00001c-1.8634 31.679-3.8166 63.356-5.7166 95.043-0.66205 11.04-1.3227 22.088-1.9245 33.148-0.20243 3.7194-0.39929 7.4481-0.56938 11.188-0.10452 2.2762-0.21174 4.6065-0.24666 6.9943h10c-0.0349-2.1761 0.003-4.4086 0.0381-6.6942 0.0578-3.6957 0.1429-7.4006 0.23413-11.114 0.27124-11.04 0.60201-22.086 0.93482-33.141 0.95501-31.72 1.9638-63.446 2.883-95.177v-0.00001c1.0225-35.297 1.9694-70.601 2.6176-105.91v-0.00002c0.28494-15.522 0.51295-31.047 0.60365-46.571 0.0716-12.254 0.0786-24.513-0.18943-36.762z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4521-8"
- inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
- />
- <path
- id="path4523"
- style="fill-rule:evenodd;fill:url(#linearGradient13560)"
- d="m-743.47 664.46c-16.291 106.04-35.472 211.71-45.391 318.82l9.9705 0.76696c6.5354-106.79 22.432-213.1 35.421-319.59z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4525-4"
- inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
- />
- <path
- id="path4527"
- style="fill-rule:evenodd;fill:url(#linearGradient13562)"
- d="m-707.11 636.18c-7.809 66.383-18.994 132.27-29.449 198.31-5.1628 32.604-10.226 65.242-14.647 98.001v0.00001c-3.9074 28.941-7.3776 58.008-9.3828 87.272l9.9846 0.5548c1.23-28.97 3.9337-57.937 7.0808-86.891v-0.00002c3.562-32.761 7.7752-65.477 12.092-98.193v-0.00001c8.7427-66.247 18.231-132.49 24.322-199.05z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4529-7"
- inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
- />
- <path
- id="path4531"
- style="fill-rule:evenodd;fill:url(#linearGradient13564)"
- d="m-832.37 603.85c-23.101 60.319-40.463 122.95-51.332 186.79-10.847 63.684-15.255 128.76-10.216 193.48l9.9589-0.90536c-6.6271-63.601-3.9382-128.19 5.2025-191.8 9.1672-63.766 24.851-126.67 46.387-187.56z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4533-9"
- inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
- />
- <path
- id="path4535"
- style="fill-rule:evenodd;fill:url(#linearGradient13566)"
- d="m-771.76 648.3c0.4349 74.237-6.4541 148.22-13.66 222.1-7.2088 73.85-14.742 147.86-15.584 222.37h10c-0.84144-73.902 5.0218-147.93 10.566-221.94 5.5528-74.038 10.779-148.32 8.6773-222.53z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4537-1"
- inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
- />
- <path
- id="path4539"
- style="fill-rule:evenodd;fill:url(#linearGradient13568)"
- d="m-876.81 716.99c2.775 28.034 3.0496 56.22 2.7479 84.372v0.00002c-0.30645 28.46-1.24 56.933-1.0057 85.482 0.22636 27.988 1.5735 56.11 6.031 83.958 4.3804 27.385 11.964 54.491 24.12 79.755l8.9443-4.4722c-12.388-23.826-20.522-49.915-25.628-76.588-5.1936-27.149-7.3491-54.935-8.4113-82.769-1.08-28.391-0.99407-56.882-1.5354-85.376v-0.00002c-0.53401-28.184-1.6549-56.422-5.2628-84.362z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4541-8"
- inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
- />
- <path
- id="path4543"
- style="fill-rule:evenodd;fill:url(#linearGradient13570)"
- d="m-796 664.46c-7.5868 128.21-24.013 255.58-37.304 383.41l9.9589 0.9054c9.9613-127.96 23.088-255.95 27.345-384.31z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4545-5"
- inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
- />
- <path
- id="path4547"
- style="fill-rule:evenodd;fill:url(#linearGradient13572)"
- d="m-1026.3 680.63c1.0537 65.848 10.696 131.34 21.12 196.39 10.448 65.254 21.81 130.4 26.425 195.96l9.9655-0.8304c-6.3565-66.098-19.381-131.06-31.471-195.98-12.045-64.725-23.322-129.74-26.039-195.54z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4549-2"
- inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
- />
- <path
- id="path4551"
- style="fill-rule:evenodd;fill:url(#linearGradient13574)"
- d="m-973.79 749.32c11.467 48.568 17.963 98.083 23.319 147.66 5.3202 49.278 9.4411 98.743 16.186 148.06l9.8837-1.5206c-8.339-48.721-14.113-98.013-21.093-147.17-7.0178-49.447-15.208-98.881-28.295-147.04z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4553-6"
- inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
- />
- <path
- id="path4555"
- style="fill-rule:evenodd;fill:url(#linearGradient13576)"
- d="m-1062.7 611.94c0.4653 65.794 10.346 131.25 20.995 196.2 10.695 65.295 22.35 130.49 26.547 196.12l9.9706-0.767c-5.9473-66.25-19.268-131.27-31.607-196.23-12.265-64.621-23.779-129.57-25.906-195.33z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4557-2"
- inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
- />
- <path
- id="path4559"
- style="fill-rule:evenodd;fill:url(#linearGradient13578)"
- d="m-1103.1 636.18c35.633 125.29 56.106 254.51 63.703 384.21l9.9746-0.7124c-10.962-130.12-34.85-259.17-73.678-383.5z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4561-8"
- inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
- />
- <path
- id="path4563"
- style="fill-rule:evenodd;fill:url(#linearGradient13580)"
- d="m-1022.3 797.8c13.218 87.043 20.917 174.97 19.244 262.64h10c-1.6732-88.38-12.74-176.16-29.244-262.64z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4565-5"
- inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
- />
- <path
- id="path4567"
- style="fill-rule:evenodd;fill:url(#linearGradient13582)"
- d="m-1002.1 854.37c-8.7311 42.662-10.741 86.622-9.0315 130.28 1.6896 43.223 6.8813 86.226 12.163 129.03l9.8995-1.4142c-6.9123-42.554-13.723-85.052-17.046-127.91-3.3521-43.274-3.0687-87.019 4.0154-129.98z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4569-9"
- inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
- />
- <path
- id="path4571"
- style="fill-rule:evenodd;fill:url(#linearGradient13584)"
- d="m-953.58 886.7c-0.0621 0.0202-0.0987 0.0856-0.12846 0.14386-0.0562 0.10825-0.0926 0.22597-0.1255 0.34307-0.11594 0.41234-0.18079 0.83807-0.24159 1.2611-0.22318 1.5504-0.33607 3.1164-0.44332 4.6772v0.00001c-0.385 5.5978-0.55116 11.212-0.69856 16.818-0.47545 18.073-0.51769 36.163-0.40171 54.244 0.13682 21.366 0.5391 42.745 1.3942 64.13 0.38887 9.7264 0.87378 19.464 1.5511 29.209 0.54955 7.9254 1.2114 15.895 2.2332 23.884l9.8837-1.5206c-1.3817-7.6335-2.4267-15.386-3.3761-23.196-1.1639-9.5827-2.1408-19.207-3.0252-28.854-1.9443-21.21-3.4411-42.482-4.6744-63.78v-0.00001c-1.0436-18.028-1.9302-36.061-2.3838-54.115v-0.00001c-0.14064-5.6036-0.26337-11.203-0.16671-16.804 0.0271-1.5636 0.0588-3.1252 0.20167-4.6806 0.0392-0.4251 0.0813-0.8497 0.17546-1.2651 0.0268-0.11812 0.0565-0.23586 0.10664-0.34573 0.0275-0.0592 0.0584-0.12494 0.11941-0.14828z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4573-0"
- inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
- />
- <path
- id="path4575"
- style="fill-rule:evenodd;fill:url(#linearGradient13586)"
- d="m-953.58 850.33c-13.826 26.58-20.852 56.456-24.424 86.389-3.639 30.385-3.9872 61.041-4.8199 91.398h10c-0.83271-30.466-2.185-60.761-0.2393-90.942 1.9281-29.713 7.1448-59.543 19.483-86.845z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4577-1"
- inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
- />
- <path
- id="path4579"
- style="fill-rule:evenodd;fill:url(#linearGradient13588)"
- d="m-909.14 838.21c4.6797 40.194 2.8502 80.725-0.36133 121-3.2248 40.311-7.8366 80.633-8.6793 121.43h10c-0.84266-40.177 2.105-80.614 3.6686-121.14 1.5731-40.493 1.7023-81.332-4.628-121.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4581-8"
- inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
- />
- <path
- id="path4583"
- style="fill-rule:evenodd;fill:url(#linearGradient13590)"
- d="m-860.65 846.29c-5.9206 67.242-15.441 134.16-17.122 202.03h10c-1.6805-67.093 4.528-134.58 7.1218-202.03z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4585-3"
- inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
- />
- <path
- id="path4587"
- style="fill-rule:evenodd;fill:url(#linearGradient13592)"
- d="m-787.92 842.25c-9.4933 70.922-15.454 142.42-17.122 214.15h10c-1.6677-71.335 0.94181-142.87 7.1218-214.15z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4589-4"
- inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
- />
- <path
- id="path4591"
- style="fill-rule:evenodd;fill:url(#linearGradient13594)"
- d="m-775.8 1044.3c2.416-29.418 4.9823-58.825 8.3556-88.124 3.1586-31.283 6.5972-62.479 11.851-93.132v0.00001c3.9172 22.555 2.3772 45.898-0.93861 69.056-2.1157 23.682-5.8676 47.343-8.091 71.411l9.9705 0.767c1.4505-23.692 4.4772-47.515 5.8894-71.604 0.13168-23.526-0.95565-47.554-6.8378-70.772 0-0.00001-0.00001-0.00001-0.00001-0.00002-7.1406 31.138-11.468 62.577-14.553 94.006 0 0 0 0.00001-0.00001 0.00001-2.4747 29.438-4.1356 58.915-5.6459 88.393z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4593-0"
- inkscape:original-d="m -775.79716,1044.281 c 3.40919,-51.13789 8.52518,-123.60906 20.20305,-181.8275 9.62955,44.98048 -0.41715,94.31638 -4.04061,141.4214"
- />
- <path
- id="path4595"
- style="fill-rule:evenodd;fill:url(#linearGradient13596)"
- d="m-719.23 765.48c-10.019 83.814-26.816 166.51-41.307 249.76l9.8837 1.5206c11.174-83.573 24.722-167.13 31.424-251.28z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4597-6"
- inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
- />
- <path
- id="path4599"
- style="fill-rule:evenodd;fill:url(#linearGradient13598)"
- d="m-715.19 510.92c-30.133 136.48-47.776 276.04-49.447 416.18h10c-1.6706-139.38 12.577-279.02 39.447-416.18z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4601-8"
- inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
- />
- </g
- >
- <g
- id="g4811"
- transform="matrix(0.212 0 0 .18257 107.4 214.08)"
- >
- <path
- id="path4813"
- style="fill:url(#linearGradient13520);fill-rule:evenodd"
- d="m-1034.4 296.77c7.2299 16.843 12.7 34.37 17.565 52.028 5.8885 21.375 10.762 43.012 15.141 64.745 0 0 0 0.00001 0.0001 0.00001 9.6817 48.046 16.958 96.537 23.247 145.15 5.5267 42.728 10.202 85.56 14.23 128.45 2.0854 22.209 4.0359 44.417 5.6461 66.632l9.9655-0.83046c-2.0973-22.276-4.5315-44.5-7.0983-66.693-4.9587-42.88-10.566-85.686-17.021-128.36v-0.00002c-7.3421-48.543-15.682-96.977-26.413-144.89-4.8537-21.672-10.204-43.248-16.561-64.527-5.2499-17.575-11.111-35.018-18.702-51.702z"
- inkscape:path-effect="#path-effect4441-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
- />
- <path
- id="path4815"
- style="fill:url(#linearGradient13522);fill-rule:evenodd"
- d="m-925.3 304.85c-10.148 84.575-15.444 169.77-16.635 255.02-0.59326 42.436-0.10513 84.913 1.8613 127.35v0.00001c1.7829 38.502 4.742 77.013 9.8236 115.33l9.8995-1.4142c-5.7975-37.84-9.5041-76.042-12.052-114.35-2.8068-42.215-4.1438-84.548-4.4025-126.9v-0.00002c-0.51871-85.098 3.056-170.28 11.505-255.04z"
- inkscape:path-effect="#path-effect4445-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
- />
- <path
- id="path4817"
- style="fill:url(#linearGradient13524);fill-rule:evenodd"
- d="m-888.93 329.09c-0.0336 41.831-2.2515 83.605-4.6431 125.36-2.6107 45.574-5.629 91.136-7.7287 136.78-1.9784 42.973-3.3049 86.07-1.7759 129.21 0.66018 18.636 1.8763 37.31 4.1994 55.915 1.9665 15.792 4.7245 31.621 9.1997 47.123l9.5783-2.8735c-4.587-14.706-7.5584-30-9.8162-45.461-2.6515-18.199-4.2212-36.6-5.2528-55.064v-0.00002c-2.3877-42.751-1.9319-85.708-0.82778-128.66 1.1739-45.606 3.2701-91.217 4.9592-136.85 1.5479-41.806 2.9203-83.661 2.1079-125.48z"
- inkscape:path-effect="#path-effect4449-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
- />
- <path
- id="path4819"
- style="fill:url(#linearGradient13526);fill-rule:evenodd"
- d="m-856.61 353.34c-7.8284 83.677-17.99 167.16-22.371 251.2v0.00002c-2.2065 42.339-2.9727 84.818-1.0891 127.27 1.8358 41.411 6.2163 82.832 14.53 123.61l9.778-2.0953c-8.9918-39.98-14.137-80.865-16.782-121.93v-0.00003c-2.7106-42.095-2.7879-84.391-1.4293-126.65v-0.00001c2.6964-83.884 11.2-167.59 17.363-251.41z"
- inkscape:path-effect="#path-effect4453-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
- />
- <path
- id="path4821"
- style="fill:url(#linearGradient13528);fill-rule:evenodd"
- d="m-816.2 417.99c0.2223 85.933-3.0379 171.81-3.3267 257.8-0.29098 85.452 2.3375 171.22 14.547 256.12l9.8837-1.5206c-13.759-83.9-18.037-169.31-19.415-254.63-1.3829-85.864 0.2052-171.85-1.6889-257.76z"
- inkscape:path-effect="#path-effect4457-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
- />
- <path
- id="path4823"
- style="fill:url(#linearGradient13530);fill-rule:evenodd"
- d="m-1034.4 486.68c28.873 78.168 45.535 160.21 57.592 242.57 12 82.013 19.462 164.66 30.392 247.05l9.8995-1.4142c-12.538-81.885-21.672-164.48-35.341-246.42-13.721-82.286-32.109-164.22-62.543-241.79z"
- inkscape:path-effect="#path-effect4461-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
- />
- <path
- id="path4825"
- style="fill:url(#linearGradient13532);fill-rule:evenodd"
- d="m-945.5 450.31c15.301 79.801 18.914 161.24 20.317 242.44 1.3877 80.859 0.51222 161.93 7.0286 242.89l9.9589-0.90536c-8.1348-80.203-8.9222-161.21-11.979-242.12-3.0602-81.243-8.3872-162.83-25.325-242.3z"
- inkscape:path-effect="#path-effect4465-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
- />
- <path
- id="path4827"
- style="fill:url(#linearGradient13534);fill-rule:evenodd"
- d="m-844.49 506.88c-13.76 65.162-24.284 131.07-30.99 197.42-6.5309 64.604-9.5639 129.74-6.3254 194.83l9.9805-0.62378c-4.8503-64.338-3.4794-129.19 1.3922-193.76 5.0057-66.313 13.839-132.38 25.942-197.87z"
- inkscape:path-effect="#path-effect4469-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
- />
- <path
- id="path4829"
- style="fill:url(#linearGradient13536);fill-rule:evenodd"
- d="m-828.33 539.2c1.1072 73.893-6.5568 147.5-13.287 221.11-6.6726 72.854-12.66 146.22-7.8606 219.7l9.9705-0.76696c-6.4194-72.368-2.1025-145.58 2.8998-218.53 5.0658-73.706 11.059-147.66 8.2773-221.51z"
- inkscape:path-effect="#path-effect4473-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
- />
- <path
- id="path4831"
- style="fill:url(#linearGradient13538);fill-rule:evenodd"
- d="m-1050.6 539.2c10.951 59.284 24.534 118.08 36.527 177.12 12.038 59.271 22.574 118.89 27.184 178.91l9.9589-0.90536c-6.3485-60.519-18.573-120.06-32.266-179.06-13.637-58.769-28.821-117.1-41.404-176.06z"
- inkscape:path-effect="#path-effect4477-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
- />
- <path
- id="path4833"
- style="fill:url(#linearGradient13540);fill-rule:evenodd"
- d="m-941.46 486.68c-28.786 81.012-46.448 165.92-55.219 251.62-8.7905 85.783-8.8078 173.01 5.8528 258.39l9.8387-1.7889c-16.128-83.955-17.798-170.54-10.715-256.14 7.0871-85.508 23.031-170.53 50.243-252.08z"
- inkscape:path-effect="#path-effect4481-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
- />
- <path
- id="path4835"
- style="fill:url(#linearGradient13542);fill-rule:evenodd"
- d="m-913.18 591.73c-15.457 57.384-23.34 116.7-27.572 176.07-4.2627 59.759-4.8785 119.71-5.7121 179.5h10c-0.8336-59.816-1.8976-119.56 0.688-179.21 2.5724-59.272 8.7496-118.57 22.596-176.36z"
- inkscape:path-effect="#path-effect4485-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
- />
- <path
- id="path4837"
- style="fill:url(#linearGradient13544);fill-rule:evenodd"
- d="m-876.81 563.45c1.0452 57.788 0.66111 115.58 2.1167 173.41 1.4325 57.026 4.5566 114.2 13.154 170.86l9.8639-1.644c-10.14-55.759-14.899-112.56-17.987-169.42-3.1292-57.659-4.4251-115.48-7.1477-173.21z"
- inkscape:path-effect="#path-effect4489-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
- />
- <path
- id="path4839"
- style="fill:url(#linearGradient13546);fill-rule:evenodd"
- d="m-779.84 555.37c-4.2179 54.474-10.101 108.78-15.14 163.21-5.0472 54.502-9.226 109.18-10.063 164.08h10c-0.83713-54.498 1.6673-109.12 5.045-163.7 3.3748-54.506 7.6025-109.02 10.158-163.59z"
- inkscape:path-effect="#path-effect4493-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
- />
- <path
- id="path4841"
- style="fill:url(#linearGradient13548);fill-rule:evenodd"
- d="m-735.39 559.41c-2.3319 5.1584-3.935 10.626-5.3882 16.101-2.0073 7.5596-3.6207 15.222-5.086 22.904-3.838 20.121-6.6608 40.429-9.221 60.746-0.00001 0.00001-0.00001 0.00001-0.00001 0.00002-3.002 23.819-5.546 47.695-7.8896 71.584-2.3378 23.829-4.4604 47.678-6.482 71.531-1.7116 20.196-3.3385 40.394-4.9968 60.582 0 0.00001 0 0.00001-0.00001 0.00001-0.62401 7.5964-1.2513 15.187-1.9162 22.767-0.46732 5.326-0.93848 10.626-1.5106 15.888-0.18058 1.6576-0.36508 3.2824-0.59038 4.8678l-0.00001 0.00001c-0.0765 0.53652-0.153 1.0441-0.24009 1.5204-0.0665 0.34261-0.10856 0.58151-0.15232 0.70852-0.0202 0.0455 0.003-0.0141 0.0599-0.18269 0.00011 0.00002 0.00021 0.00004 0.00032 0.00006 1.1416 0.21508 2.6439 0.0308 4.489-0.57047 0.00008-0.00003 0.00017-0.00006 0.00026-0.00009 0.13377 0.083 0.26428 0.16273 0.39069 0.23277 0.1035 0.0573 0.20473 0.10642 0.30824 0.14876 0.13684 0.056 0.27702 0.10288 0.41831 0.14664 0.00004 0.00001 0.00009 0.00003 0.00013 0.00004 0.20865 0.0646 0.41937 0.12123 0.62934 0.17222 0.66234 0.16085 1.3165 0.26476 1.9502 0.31723h0.00006c0.004 0.0201 0.002-0.0186-0.0127-0.11493-0.0406-0.29437-0.0659-0.66129-0.0977-1.0981-0.10193-1.4865-0.13757-3.0367-0.17231-4.6477-0.0525-2.5414-0.0683-5.0989-0.0743-7.6724-0.019-8.2505 0.0725-16.518 0.17773-24.804h-10c0.10518 8.2972 0.22465 16.614 0.45525 24.945 0.0718 2.5976 0.15468 5.2112 0.27547 7.8387 0.074 1.6324 0.15922 3.3267 0.32067 5.0747 0.0443 0.49793 0.10476 1.0656 0.20305 1.6987 0.0306 0.20565 0.0791 0.46821 0.15133 0.78592 0.00005 0.00002 0.00009 0.00003 0.00014 0.00005 0.67836 0.24823 1.382 0.54796 2.1233 0.89343 0.235 0.10953 0.47386 0.22374 0.71938 0.34026 0.00005 0.00003 0.0001 0.00005 0.00015 0.00008 0.16626 0.0789 0.33574 0.15939 0.51067 0.23554 0.13233 0.0576 0.26816 0.11117 0.40291 0.15919 0.16458 0.0586 0.32686 0.1116 0.48767 0.16535 0.00018-0.00007 0.00037-0.00014 0.00055-0.0002 1.9398-0.70377 3.4965-1.0212 4.6896-0.93597 0.00011 0.00001 0.00022 0.00001 0.00033 0.00002 0.14367-0.386 0.23093-0.67097 0.27011-0.85167 0.14843-0.60557 0.23822-1.1137 0.29598-1.5182 0.0994-0.64538 0.17767-1.2645 0.24567-1.8558v-0.00003c0.20228-1.7507 0.35471-3.4731 0.49453-5.1636 0.44705-5.3881 0.78759-10.756 1.1194-16.099 0.47386-7.6225 0.90902-15.241 1.34-22.853 0-0.00001 0.00001-0.00002 0.00001-0.00002 1.1455-20.231 2.2584-40.457 3.4555-60.672 1.4141-23.88 2.9285-47.75 4.6585-71.604 1.7345-23.916 3.6681-47.813 6.061-71.668 2.0421-20.353 4.3414-40.679 7.6619-60.857 1.2679-7.7039 2.6819-15.384 4.4932-22.978 1.3132-5.5028 2.7697-10.991 4.9699-16.206z"
- inkscape:path-effect="#path-effect4497-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
- />
- <path
- id="path4843"
- style="fill:url(#linearGradient13550);fill-rule:evenodd"
- d="m-892.97 583.65c5.171 59.038 19.963 116.95 36.973 173.79 17.085 57.124 36.463 113.52 51.135 170.97l9.6529-2.612c-16.438-57.524-37.389-113.36-56.029-169.85-18.539-56.218-34.906-113.42-41.731-172.29z"
- inkscape:path-effect="#path-effect4505-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
- />
- <path
- id="path4845"
- style="fill:url(#linearGradient13552);fill-rule:evenodd"
- d="m-965.71 620.02c-0.78849 16.199-0.70433 32.441-0.2236 48.661 0.55321 18.672 1.6652 37.328 3.0949 55.956v0.00002c3.1164 40.604 7.713 81.094 13.039 121.47v0.00002c5.0115 37.997 10.706 75.91 16.991 113.73 4.5182 27.19 9.2673 54.374 14.738 81.456l9.778-2.0952c-6.0697-26.774-11.438-53.742-16.589-80.775-7.1587-37.577-13.732-75.27-19.628-113.08v-0.00001c-6.265-40.176-11.805-80.467-15.871-120.93-1.8653-18.561-3.4146-37.155-4.4064-55.786-0.86148-16.186-1.3287-32.4-0.92224-48.613z"
- inkscape:path-effect="#path-effect4509-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
- />
- <path
- id="path4847"
- style="fill:url(#linearGradient13554);fill-rule:evenodd"
- d="m-929.34 660.42c11.628 36.946 18.13 75.268 22.783 113.68 5.0349 41.586 7.6665 83.419 9.5282 125.28v0.00001c1.7621 39.648 2.7094 79.35 4.2509 119.08 0.66751 17.213 1.4503 34.447 2.6419 51.685 1.001 14.504 2.2703 29.058 4.3413 43.578l9.8837-1.5206c-2.3338-14.11-3.8937-28.409-5.2063-42.78-1.557-17.066-2.7112-34.197-3.7543-51.356-2.4072-39.611-4.2261-79.311-6.8611-118.98v-0.00002c-2.7806-41.879-6.3419-83.761-12.3-125.32-5.499-38.381-12.873-76.662-25.308-113.34z"
- inkscape:path-effect="#path-effect4513-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
- />
- <path
- id="path4849"
- style="fill:url(#linearGradient13556);fill-rule:evenodd"
- d="m-816.2 672.54c-3.961 64.296-11.826 128.23-18.91 192.28-6.8852 62.214-13.545 124.65-14.375 187.54h10c-0.82965-62.271 4.18-124.69 9.4228-187.05 5.3991-64.171 11.589-128.39 13.862-192.77z"
- inkscape:path-effect="#path-effect4517-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
- />
- <path
- id="path4851"
- style="fill:url(#linearGradient13558);fill-rule:evenodd"
- d="m-775.8 729.11c-0.097 12.252-0.46904 24.497-0.90546 36.74-0.55289 15.509-1.2429 31.011-1.9898 46.512-1.699 35.26-3.6964 70.503-5.7693 105.75v0.00001c-1.8634 31.679-3.8166 63.356-5.7166 95.043-0.66205 11.04-1.3227 22.088-1.9245 33.148-0.20243 3.7194-0.39929 7.4481-0.56938 11.188-0.10452 2.2762-0.21174 4.6065-0.24666 6.9943h10c-0.0349-2.1761 0.003-4.4086 0.0381-6.6942 0.0578-3.6957 0.1429-7.4006 0.23413-11.114 0.27124-11.04 0.60201-22.086 0.93482-33.141 0.95501-31.72 1.9638-63.446 2.883-95.177v-0.00001c1.0225-35.297 1.9694-70.601 2.6176-105.91v-0.00002c0.28494-15.522 0.51295-31.047 0.60365-46.571 0.0716-12.254 0.0786-24.513-0.18943-36.762z"
- inkscape:path-effect="#path-effect4521-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
- />
- <path
- id="path4853"
- style="fill:url(#linearGradient13560);fill-rule:evenodd"
- d="m-743.47 664.46c-16.291 106.04-35.472 211.71-45.391 318.82l9.9705 0.76696c6.5354-106.79 22.432-213.1 35.421-319.59z"
- inkscape:path-effect="#path-effect4525-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
- />
- <path
- id="path4855"
- style="fill:url(#linearGradient13562);fill-rule:evenodd"
- d="m-707.11 636.18c-7.809 66.383-18.994 132.27-29.449 198.31-5.1628 32.604-10.226 65.242-14.647 98.001v0.00001c-3.9074 28.941-7.3776 58.008-9.3828 87.272l9.9846 0.5548c1.23-28.97 3.9337-57.937 7.0808-86.891v-0.00002c3.562-32.761 7.7752-65.477 12.092-98.193v-0.00001c8.7427-66.247 18.231-132.49 24.322-199.05z"
- inkscape:path-effect="#path-effect4529-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
- />
- <path
- id="path4857"
- style="fill:url(#linearGradient13564);fill-rule:evenodd"
- d="m-832.37 603.85c-23.101 60.319-40.463 122.95-51.332 186.79-10.847 63.684-15.255 128.76-10.216 193.48l9.9589-0.90536c-6.6271-63.601-3.9382-128.19 5.2025-191.8 9.1672-63.766 24.851-126.67 46.387-187.56z"
- inkscape:path-effect="#path-effect4533-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
- />
- <path
- id="path4859"
- style="fill:url(#linearGradient13566);fill-rule:evenodd"
- d="m-771.76 648.3c0.4349 74.237-6.4541 148.22-13.66 222.1-7.2088 73.85-14.742 147.86-15.584 222.37h10c-0.84144-73.902 5.0218-147.93 10.566-221.94 5.5528-74.038 10.779-148.32 8.6773-222.53z"
- inkscape:path-effect="#path-effect4537-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
- />
- <path
- id="path4861"
- style="fill:url(#linearGradient13568);fill-rule:evenodd"
- d="m-876.81 716.99c2.775 28.034 3.0496 56.22 2.7479 84.372v0.00002c-0.30645 28.46-1.24 56.933-1.0057 85.482 0.22636 27.988 1.5735 56.11 6.031 83.958 4.3804 27.385 11.964 54.491 24.12 79.755l8.9443-4.4722c-12.388-23.826-20.522-49.915-25.628-76.588-5.1936-27.149-7.3491-54.935-8.4113-82.769-1.08-28.391-0.99407-56.882-1.5354-85.376v-0.00002c-0.53401-28.184-1.6549-56.422-5.2628-84.362z"
- inkscape:path-effect="#path-effect4541-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
- />
- <path
- id="path4863"
- style="fill:url(#linearGradient13570);fill-rule:evenodd"
- d="m-796 664.46c-7.5868 128.21-24.013 255.58-37.304 383.41l9.9589 0.9054c9.9613-127.96 23.088-255.95 27.345-384.31z"
- inkscape:path-effect="#path-effect4545-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
- />
- <path
- id="path4865"
- style="fill:url(#linearGradient13572);fill-rule:evenodd"
- d="m-1026.3 680.63c1.0537 65.848 10.696 131.34 21.12 196.39 10.448 65.254 21.81 130.4 26.425 195.96l9.9655-0.8304c-6.3565-66.098-19.381-131.06-31.471-195.98-12.045-64.725-23.322-129.74-26.039-195.54z"
- inkscape:path-effect="#path-effect4549-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
- />
- <path
- id="path4867"
- style="fill:url(#linearGradient13574);fill-rule:evenodd"
- d="m-973.79 749.32c11.467 48.568 17.963 98.083 23.319 147.66 5.3202 49.278 9.4411 98.743 16.186 148.06l9.8837-1.5206c-8.339-48.721-14.113-98.013-21.093-147.17-7.0178-49.447-15.208-98.881-28.295-147.04z"
- inkscape:path-effect="#path-effect4553-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
- />
- <path
- id="path4869"
- style="fill:url(#linearGradient13576);fill-rule:evenodd"
- d="m-1062.7 611.94c0.4653 65.794 10.346 131.25 20.995 196.2 10.695 65.295 22.35 130.49 26.547 196.12l9.9706-0.767c-5.9473-66.25-19.268-131.27-31.607-196.23-12.265-64.621-23.779-129.57-25.906-195.33z"
- inkscape:path-effect="#path-effect4557-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
- />
- <path
- id="path4871"
- style="fill:url(#linearGradient13578);fill-rule:evenodd"
- d="m-1103.1 636.18c35.633 125.29 56.106 254.51 63.703 384.21l9.9746-0.7124c-10.962-130.12-34.85-259.17-73.678-383.5z"
- inkscape:path-effect="#path-effect4561-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
- />
- <path
- id="path4873"
- style="fill:url(#linearGradient13580);fill-rule:evenodd"
- d="m-1022.3 797.8c13.218 87.043 20.917 174.97 19.244 262.64h10c-1.6732-88.38-12.74-176.16-29.244-262.64z"
- inkscape:path-effect="#path-effect4565-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
- />
- <path
- id="path4875"
- style="fill:url(#linearGradient13582);fill-rule:evenodd"
- d="m-1002.1 854.37c-8.7311 42.662-10.741 86.622-9.0315 130.28 1.6896 43.223 6.8813 86.226 12.163 129.03l9.8995-1.4142c-6.9123-42.554-13.723-85.052-17.046-127.91-3.3521-43.274-3.0687-87.019 4.0154-129.98z"
- inkscape:path-effect="#path-effect4569-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
- />
- <path
- id="path4877"
- style="fill:url(#linearGradient13584);fill-rule:evenodd"
- d="m-953.58 886.7c-0.0621 0.0202-0.0987 0.0856-0.12846 0.14386-0.0562 0.10825-0.0926 0.22597-0.1255 0.34307-0.11594 0.41234-0.18079 0.83807-0.24159 1.2611-0.22318 1.5504-0.33607 3.1164-0.44332 4.6772v0.00001c-0.385 5.5978-0.55116 11.212-0.69856 16.818-0.47545 18.073-0.51769 36.163-0.40171 54.244 0.13682 21.366 0.5391 42.745 1.3942 64.13 0.38887 9.7264 0.87378 19.464 1.5511 29.209 0.54955 7.9254 1.2114 15.895 2.2332 23.884l9.8837-1.5206c-1.3817-7.6335-2.4267-15.386-3.3761-23.196-1.1639-9.5827-2.1408-19.207-3.0252-28.854-1.9443-21.21-3.4411-42.482-4.6744-63.78v-0.00001c-1.0436-18.028-1.9302-36.061-2.3838-54.115v-0.00001c-0.14064-5.6036-0.26337-11.203-0.16671-16.804 0.0271-1.5636 0.0588-3.1252 0.20167-4.6806 0.0392-0.4251 0.0813-0.8497 0.17546-1.2651 0.0268-0.11812 0.0565-0.23586 0.10664-0.34573 0.0275-0.0592 0.0584-0.12494 0.11941-0.14828z"
- inkscape:path-effect="#path-effect4573-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
- />
- <path
- id="path4879"
- style="fill:url(#linearGradient13586);fill-rule:evenodd"
- d="m-953.58 850.33c-13.826 26.58-20.852 56.456-24.424 86.389-3.639 30.385-3.9872 61.041-4.8199 91.398h10c-0.83271-30.466-2.185-60.761-0.2393-90.942 1.9281-29.713 7.1448-59.543 19.483-86.845z"
- inkscape:path-effect="#path-effect4577-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
- />
- <path
- id="path4881"
- style="fill:url(#linearGradient13588);fill-rule:evenodd"
- d="m-909.14 838.21c4.6797 40.194 2.8502 80.725-0.36133 121-3.2248 40.311-7.8366 80.633-8.6793 121.43h10c-0.84266-40.177 2.105-80.614 3.6686-121.14 1.5731-40.493 1.7023-81.332-4.628-121.3z"
- inkscape:path-effect="#path-effect4581-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
- />
- <path
- id="path4883"
- style="fill:url(#linearGradient13590);fill-rule:evenodd"
- d="m-860.65 846.29c-5.9206 67.242-15.441 134.16-17.122 202.03h10c-1.6805-67.093 4.528-134.58 7.1218-202.03z"
- inkscape:path-effect="#path-effect4585-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
- />
- <path
- id="path4885"
- style="fill:url(#linearGradient13592);fill-rule:evenodd"
- d="m-787.92 842.25c-9.4933 70.922-15.454 142.42-17.122 214.15h10c-1.6677-71.335 0.94181-142.87 7.1218-214.15z"
- inkscape:path-effect="#path-effect4589-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
- />
- <path
- id="path4887"
- style="fill:url(#linearGradient13594);fill-rule:evenodd"
- d="m-775.8 1044.3c2.416-29.418 4.9823-58.825 8.3556-88.124 3.1586-31.283 6.5972-62.479 11.851-93.132v0.00001c3.9172 22.555 2.3772 45.898-0.93861 69.056-2.1157 23.682-5.8676 47.343-8.091 71.411l9.9705 0.767c1.4505-23.692 4.4772-47.515 5.8894-71.604 0.13168-23.526-0.95565-47.554-6.8378-70.772 0-0.00001-0.00001-0.00001-0.00001-0.00002-7.1406 31.138-11.468 62.577-14.553 94.006 0 0 0 0.00001-0.00001 0.00001-2.4747 29.438-4.1356 58.915-5.6459 88.393z"
- inkscape:path-effect="#path-effect4593-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -775.79716,1044.281 c 3.40919,-51.13789 8.52518,-123.60906 20.20305,-181.8275 9.62955,44.98048 -0.41715,94.31638 -4.04061,141.4214"
- />
- <path
- id="path4889"
- style="fill:url(#linearGradient13596);fill-rule:evenodd"
- d="m-719.23 765.48c-10.019 83.814-26.816 166.51-41.307 249.76l9.8837 1.5206c11.174-83.573 24.722-167.13 31.424-251.28z"
- inkscape:path-effect="#path-effect4597-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
- />
- <path
- id="path4891"
- style="fill:url(#linearGradient13598);fill-rule:evenodd"
- d="m-715.19 510.92c-30.133 136.48-47.776 276.04-49.447 416.18h10c-1.6706-139.38 12.577-279.02 39.447-416.18z"
- inkscape:path-effect="#path-effect4601-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
- />
- </g
- >
- <g
- id="g4973"
- transform="matrix(-0.212 0 0 .18257 -385.18 213.6)"
- >
- <path
- id="path4975"
- style="fill:url(#linearGradient13520);fill-rule:evenodd"
- d="m-1034.4 296.77c25.699 73.085 41.012 149.34 51.631 225.98 10.622 76.685 16.643 153.94 24.21 231.15l9.9413-1.082c-9.2071-76.902-16.911-154.17-29.208-230.81-12.286-76.594-29.31-152.72-56.575-225.24z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3621-0"
- inkscape:original-d="m -1034.3962,296.76807 c 53.23279,146.34059 64.10484,303.08898 80.81218,456.58896"
- />
- <path
- id="path4977"
- style="fill:url(#linearGradient13522);fill-rule:evenodd"
- d="m-925.3 304.85c-18.339 165.02-24.623 332.24-4.9588 497.64l9.9176-1.2809c-22.87-163.93-19.982-331-4.9588-496.35z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3626-4"
- inkscape:original-d="m -925.29974,304.84929 c -16.66579,165.04009 -21.2925,332.13737 0,496.99506"
- />
- <path
- id="path4979"
- style="fill:url(#linearGradient13524);fill-rule:evenodd"
- d="m-888.93 329.09c0.37906 41.161-1.5471 82.287-4.1204 123.36-2.5799 41.166-5.817 82.301-8.084 123.54v0.00002c-2.2605 41.1-3.5538 82.33-2.2167 123.59 1.3392 41.36 5.3844 82.761 13.57 123.5l9.7836-2.0693c-8.8722-39.907-13.696-80.754-15.862-121.75-2.1595-40.907-1.7006-81.989-0.27737-123.05v-0.00002c1.429-41.196 3.8336-82.395 5.5814-123.63v-0.00002c1.7442-41.139 2.8373-82.342 1.6256-123.49z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3631-0"
- inkscape:original-d="m -888.93425,329.09295 c 3.17473,164.26424 -30.40345,330.10148 4.04061,492.95445"
- />
- <path
- id="path4981"
- style="fill:url(#linearGradient13526);fill-rule:evenodd"
- d="m-856.61 353.34c-7.6276 83.531-17.995 166.82-22.439 250.7-4.4472 83.803-2.7579 168.55 13.502 251.35l9.7925-2.0265c-17.701-81.312-21.051-165.48-18.297-249.11 2.7631-83.714 11.476-167.25 17.442-250.91z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3636-1"
- inkscape:original-d="m -856.60937,353.33661 c -13.52384,166.34361 -38.30366,335.46454 -4.04061,501.03567"
- />
- <path
- id="path4983"
- style="fill:url(#linearGradient13528);fill-rule:evenodd"
- d="m-816.2 417.99c0.25891 85.678-3.0278 171.3-3.3392 257.03-0.31508 85.708 2.397 171.73 14.559 256.88l9.8852-1.5109c-13.718-84.17-18.085-169.82-19.443-255.4-1.3554-85.61 0.26413-171.34-1.6616-257z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3641-7"
- inkscape:original-d="m -816.20327,417.98638 c 2.18123,171.06799 -9.80546,343.25754 16.16244,513.1575"
- />
- <path
- id="path4985"
- style="fill:url(#linearGradient13530);fill-rule:evenodd"
- d="m-1034.4 486.68c28.756 77.995 45.467 159.81 57.508 241.96 12.043 82.212 19.537 165.06 30.476 247.66l9.8998-1.4121c-12.551-82.089-21.721-164.88-35.438-247.02-13.702-82.085-32.133-163.79-62.446-241.19z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3646-7"
- inkscape:original-d="m -1034.3962,486.67675 c 59.42037,156.32304 69.54123,324.91169 92.93402,488.91384"
- />
- <path
- id="path4987"
- style="fill:url(#linearGradient13532);fill-rule:evenodd"
- d="m-945.5 450.31c15.242 79.625 18.904 160.87 20.304 241.89 1.3912 81.044 0.5634 162.29 7.0411 243.44l9.9595-0.89882c-8.1008-80.395-8.9395-161.59-12.003-242.68-3.0537-81.06-8.4264-162.45-25.301-241.75z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3651-3"
- inkscape:original-d="m -945.50279,450.31126 c 32.26472,159.65439 17.76737,323.56709 32.32488,484.87323"
- />
- <path
- id="path4989"
- style="fill:url(#linearGradient13534);fill-rule:evenodd"
- d="m-844.49 506.88c-26.611 128.72-43.105 260.35-37.317 392.22l9.984-0.56608c-9.092-130.56 3.9945-262.31 27.333-391.66z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3656-9"
- inkscape:original-d="m -844.48754,506.8798 c -24.94818,128.8966 -39.77511,260.53992 -32.32488,391.93919"
- />
- <path
- id="path4991"
- style="fill:url(#linearGradient13536);fill-rule:evenodd"
- d="m-828.33 539.2c1.1245 73.521-6.4858 146.76-13.211 220-6.7346 73.225-12.578 146.96-7.9381 220.8l9.9724-0.74208c-6.2702-72.77-2.1062-146.34 2.9501-219.66 5.0688-73.335 11.017-146.92 8.2261-220.4z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3661-8"
- inkscape:original-d="m -828.3251,539.20468 c 3.91872,147.12676 -27.11346,293.26049 -16.16244,440.42652"
- />
- <path
- id="path4993"
- style="fill:url(#linearGradient13538);fill-rule:evenodd"
- d="m-1050.6 539.2c10.99 59.404 24.586 118.33 36.606 177.49 12.013 59.146 22.462 118.64 27.106 178.54l9.9583-0.91242c-6.3774-60.383-18.511-119.82-32.178-178.69-13.666-58.891-28.868-117.35-41.492-176.43z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3666-8"
- inkscape:original-d="m -1050.5587,539.20468 c 23.591,118.36721 57.64228,234.99389 68.69041,355.5737"
- />
- <path
- id="path4995"
- style="fill:url(#linearGradient13540);fill-rule:evenodd"
- d="m-941.46 486.68c-55.515 162.82-76.049 339.07-49.379 509.94l9.8648-1.6388c-29.71-168.5-12.836-344.44 39.514-508.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3671-6"
- inkscape:original-d="m -941.46218,486.67675 c -53.86048,163.11936 -72.68802,339.12027 -44.44672,509.11689"
- />
- <path
- id="path4997"
- style="fill:url(#linearGradient13542);fill-rule:evenodd"
- d="m-913.18 591.73c-15.434 57.571-23.404 117.04-27.623 176.6-4.2249 59.587-4.7892 119.36-5.6609 178.97l10 0.007c-0.7906-59.647-1.9012-119.22 0.65152-178.69 2.5542-59.445 8.8144-118.9 22.633-176.88z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3676-0"
- inkscape:original-d="m -913.17791,591.73262 c -29.37665,116.04343 -28.20345,236.74345 -28.28427,355.5737"
- />
- <path
- id="path4999"
- style="fill:url(#linearGradient13544);fill-rule:evenodd"
- d="m-876.81 563.45c1.0952 57.392 0.65261 114.79 2.0626 172.23 1.4074 57.426 4.6947 114.97 13.206 172.04l9.868-1.6192c-10.071-56.19-15.004-113.36-18.078-170.61-3.0722-57.267-4.2982-114.69-7.0594-172.03z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3681-8"
- inkscape:original-d="m -876.81242,563.44834 c 3.85175,114.58957 1.57654,229.93347 20.20305,343.45187"
- />
- <path
- id="path5001"
- style="fill:url(#linearGradient13546);fill-rule:evenodd"
- d="m-779.84 555.37c-4.223 54.512-10.108 108.85-15.148 163.32-5.0408 54.463-9.2335 109.1-10.055 163.97l10-0.003c-0.85193-54.458 1.6676-109.04 5.0401-163.58 3.3743-54.545 7.6034-109.09 10.163-163.71z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3686-1"
- inkscape:original-d="m -779.83778,555.36712 c -6.78015,109.08847 -20.23383,217.8534 -20.20305,327.28943"
- />
- <path
- id="path5003"
- style="fill:url(#linearGradient13548);fill-rule:evenodd"
- d="m-735.39 559.41c-14.655 50.257-21.24 102.62-26.453 154.75-5.2274 52.149-9.1891 104.44-18.88 155.53l9.8538 1.7035c8.1491-52.108 10.455-104.6 14.007-156.81 3.5633-52.187 8.424-104.47 21.472-155.17z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3691-5"
- inkscape:original-d="m -735.39106,559.40773 c -27.84875,101.48869 -22.58243,208.02479 -40.40608,311.12699"
- />
- <path
- id="path5005"
- style="fill:url(#linearGradient13550);fill-rule:evenodd"
- d="m-892.97 583.65c5.2395 59.161 20.013 117.2 37.075 174.17 17.062 56.996 36.417 113.27 51.032 170.59l9.6539-2.6079c-16.379-57.409-37.305-113.12-55.918-169.48-18.593-56.335-34.946-113.67-41.843-172.67z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3696-9"
- inkscape:original-d="m -892.97486,583.6514 c 12.21249,118.89297 62.03348,229.06528 92.93403,343.45187"
- />
- <path
- id="path5007"
- style="fill:url(#linearGradient13552);fill-rule:evenodd"
- d="m-965.71 620.02c-0.9859 70.685 4.7015 141.42 13.749 211.61 9.0488 70.209 21.425 139.94 33.867 209.55l9.8226-1.8752c-14.075-69.292-28.064-138.56-38.74-208.38-10.671-69.801-18.019-140.22-18.7-210.91z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3701-7"
- inkscape:original-d="m -965.70585,620.01689 c -0.30605,141.68973 26.06209,281.59025 52.52794,420.22351"
- />
- <path
- id="path5009"
- style="fill:url(#linearGradient13554);fill-rule:evenodd"
- d="m-929.34 660.42c21.405 72.932 28.257 149.15 31.65 225 1.6938 38.013 2.5591 76.082 4.0531 114.18v0.00001c1.4883 37.993 3.6044 76.041 7.8214 113.97l9.926-1.214c-5.0036-37.465-7.9356-75.265-10.254-113.13-2.3238-37.975-4.0248-76.043-6.5558-114.08-0.00001-0.00001-0.00001-0.00002-0.00001-0.00003-5.0385-75.917-13.642-152.28-36.64-224.72z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3706-3"
- inkscape:original-d="m -929.34035,660.42299 c 44.80257,146.68549 30.08832,302.09993 48.48732,452.54831"
- />
- <path
- id="path5011"
- style="fill:url(#linearGradient13556);fill-rule:evenodd"
- d="m-816.2 672.54c-3.8957 63.386-11.608 126.42-18.65 189.55-7.0449 63.125-13.423 126.48-14.634 190.24l9.9998 0.058c-0.47191-63.226 4.232-126.56 9.6102-189.81 5.3821-63.26 11.443-126.57 13.674-190.04z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3711-1"
- inkscape:original-d="m -816.20327,672.54482 c -6.12651,126.8531 -27.54477,252.65302 -28.28427,379.81738"
- />
- <path
- id="path5013"
- style="fill:url(#linearGradient13558);fill-rule:evenodd"
- d="m-775.8 729.11c-2.3501 111.86-11.647 223.34-17.119 335.2l9.9942 0.34c2.134-111.75 8.1079-223.66 7.1247-335.54z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3716-0"
- inkscape:original-d="m -775.79716,729.11336 c -0.68363,111.89152 -8.31922,223.57485 -12.12184,335.37064"
- />
- <path
- id="path5015"
- style="fill:url(#linearGradient13560);fill-rule:evenodd"
- d="m-743.47 664.46c-16.285 106.04-35.454 211.71-45.391 318.82l9.9704 0.76864c6.5534-106.79 22.438-213.1 35.421-319.59z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3721-6"
- inkscape:original-d="m -743.47228,664.4636 c -14.63041,106.24336 -32.15666,212.1997 -40.40611,319.20821"
- />
- <path
- id="path5017"
- style="fill:url(#linearGradient13562);fill-rule:evenodd"
- d="m-707.11 636.18c-7.4716 64.072-18.236 127.66-28.434 191.37-10.199 63.705-19.841 127.62-25.042 192.15l9.9772 0.6744c3.4984-64.175 11.469-128.18 20.012-192.1 8.5459-63.923 17.673-127.86 23.486-192.1z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3726-0"
- inkscape:original-d="m -707.10679,636.17933 c -13.28551,128.31701 -39.77855,255.02861 -48.48732,383.85797"
- />
- <path
- id="path5019"
- style="fill:url(#linearGradient13564);fill-rule:evenodd"
- d="m-832.37 603.85c-45.61 120.69-70.928 250.67-61.55 380.24l9.9636-0.85268c-12.623-127.51 9.1102-257.56 51.587-379.39z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3731-1"
- inkscape:original-d="m -832.36571,603.85445 c -43.9539,121.0126 -67.59798,250.93804 -56.56854,379.81736"
- />
- <path
- id="path5021"
- style="fill:url(#linearGradient13566);fill-rule:evenodd"
- d="m-771.76 648.3c0.43943 74.22-6.4524 148.19-13.656 222.05-7.2096 73.866-14.745 147.89-15.588 222.42l10 0.0002c-0.84055-73.919 5.0242-147.96 10.569-221.99 5.5508-74.021 10.78-148.29 8.6744-222.48z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3736-9"
- inkscape:original-d="m -771.75655,648.30116 c 2.54915,148.63954 -24.24152,295.91581 -24.24367,444.46714"
- />
- <path
- id="path5023"
- style="fill:url(#linearGradient13568);fill-rule:evenodd"
- d="m-876.81 716.99c2.864 27.799 3.1656 55.761 2.8256 83.686-0.34393 28.121-1.359 56.253-1.1987 84.464v0.00001c0.15564 27.932 1.4804 55.999 5.8947 83.791 4.4472 28.001 12.214 55.665 24.348 81.577l8.9915-4.3764c-12.424-24.543-20.771-51.207-25.956-78.487-5.1504-27.102-7.2823-54.831-8.2721-82.607-0.99651-28.055-0.81896-56.21-1.3127-84.368v-0.00001c-0.48882-27.961-1.6306-55.978-5.3205-83.68z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3741-4"
- inkscape:original-d="m -876.81242,716.99153 c 13.01574,110.22137 -14.12403,227.59962 36.36549,331.33007"
- />
- <path
- id="path5025"
- style="fill:url(#linearGradient13570);fill-rule:evenodd"
- d="m-796 664.46c-7.5616 128.21-23.978 255.59-37.304 383.4l9.9587 0.908c9.9959-127.96 23.114-255.95 27.346-384.31z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3746-4"
- inkscape:original-d="m -796.00022,664.4636 c -5.89835,128.32073 -20.66596,255.99161 -32.32488,383.858"
- />
- <path
- id="path5027"
- style="fill:url(#linearGradient13572);fill-rule:evenodd"
- d="m-1026.3 680.63c1.1246 65.944 10.708 131.54 21.159 196.68 10.444 65.156 21.77 130.21 26.386 195.67l9.9654-0.8316c-6.3547-65.999-19.34-130.87-31.426-195.7-12.074-64.816-23.295-129.93-26.085-195.83z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3751-9"
- inkscape:original-d="m -1026.315,680.62604 c 3.9271,132.24674 41.55539,260.45405 52.52793,391.93916"
- />
- <path
- id="path5029"
- style="fill:url(#linearGradient13574);fill-rule:evenodd"
- d="m-973.79 749.32c11.398 48.426 17.931 97.778 23.27 147.2 5.3369 49.433 9.4949 99.048 16.234 148.52l9.8845-1.5154c-8.3398-48.881-14.156-98.323-21.158-147.63-6.9964-49.295-15.217-98.562-28.231-146.58z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3757-8"
- inkscape:original-d="m -973.78707,749.31642 c 24.46945,96.66828 29.38399,196.71358 44.44672,294.96458"
- />
- <path
- id="path5031"
- style="fill:url(#linearGradient13576);fill-rule:evenodd"
- d="m-1062.7 611.94c0.5754 65.959 10.369 131.58 21.064 196.7 10.686 65.126 22.288 130.16 26.479 195.63l9.9704-0.7676c-5.9363-66.083-19.2-130.94-31.526-195.73-12.314-64.777-23.745-129.9-25.987-195.82z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3762-8"
- inkscape:original-d="m -1062.6805,611.93567 c 2.8271,132.36092 42.3975,260.35002 52.5279,391.93923"
- />
- <path
- id="path5033"
- style="fill:url(#linearGradient13578);fill-rule:evenodd"
- d="m-1103.1 636.18c35.623 125.29 56.096 254.51 63.703 384.21l9.9746-0.7132c-10.972-130.12-34.86-259.17-73.678-383.5z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3767-7"
- inkscape:original-d="m -1103.0866,636.17933 c 37.2296,124.84249 59.4034,253.98016 68.6904,383.85797"
- />
- <path
- id="path5035"
- style="fill:url(#linearGradient13580);fill-rule:evenodd"
- d="m-1022.3 797.8c13.236 87.04 20.939 174.97 19.244 262.64h10c-1.6505-88.382-12.722-176.16-29.244-262.64z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3772-3"
- inkscape:original-d="m -1022.2744,797.80374 c 14.8733,86.72593 24.26629,174.57542 24.24367,262.63966"
- />
- <path
- id="path5037"
- style="fill:url(#linearGradient13582);fill-rule:evenodd"
- d="m-1002.1 854.37c-8.7454 42.426-10.706 86.163-9.0446 129.59 1.6586 43.452 6.821 86.691 12.177 129.72l9.898-1.4246c-6.9926-42.765-13.783-85.498-17.085-128.59-3.2949-43.053-3.0528-86.571 4.0546-129.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3777-3"
- inkscape:original-d="m -1002.0713,854.37228 c -15.9584,85.72311 -4.2009,173.26202 8.08118,258.59902"
- />
- <path
- id="path5039"
- style="fill:url(#linearGradient13584);fill-rule:evenodd"
- d="m-953.58 886.7c-3.8826 64.67-2.581 129.75 3.1133 194.51l9.9359-1.1308c-8.9523-63.937-13.6-128.6-13.049-193.38z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3782-1"
- inkscape:original-d="m -953.58402,886.69716 c -2.21718,64.73322 0.75872,129.60684 8.08123,193.94934"
- />
- <path
- id="path5041"
- style="fill:url(#linearGradient13586);fill-rule:evenodd"
- d="m-953.58 850.33c-13.819 26.814-20.972 56.854-24.52 87.005-3.5638 30.19-3.8264 60.639-4.7236 90.771l10 0.023c-0.75712-30.28-2.183-60.368-0.30105-90.343 1.8886-29.911 7.226-59.92 19.545-87.455z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3787-7"
- inkscape:original-d="m -953.58402,850.33167 c -26.5665,55.24006 -24.10535,118.11052 -24.24366,177.78683"
- />
- <path
- id="path5043"
- style="fill:url(#linearGradient13588);fill-rule:evenodd"
- d="m-909.14 838.21c4.6789 40.2 2.8501 80.738-0.36244 121.02-3.2248 40.305-7.8369 80.621-8.6782 121.41l10-0.0004c-0.84383-40.171 2.1044-80.601 3.6682-121.12 1.5738-40.5 1.7021-81.344-4.6276-121.32z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3792-4"
- inkscape:original-d="m -909.1373,838.20984 c 11.07697,80.67157 -4.0432,161.63603 -4.04061,242.43666"
- />
- <path
- id="path5045"
- style="fill:url(#linearGradient13590);fill-rule:evenodd"
- d="m-860.65 846.29c-5.9286 67.241-15.47 134.16-17.122 202.03h10c-1.7088-67.09 4.5199-134.58 7.1218-202.03z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3797-6"
- inkscape:original-d="m -860.64998,846.29106 c -4.26386,67.32459 -12.15025,134.48989 -12.12183,202.03054"
- />
- <path
- id="path5047"
- style="fill:url(#linearGradient13592);fill-rule:evenodd"
- d="m-787.92 842.25c-9.5176 70.918-15.481 142.42-17.122 214.15h10c-1.694-71.333 0.91739-142.87 7.1218-214.15z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3802-1"
- inkscape:original-d="m -787.919,842.25045 c -7.86056,71.09741 -12.14825,142.61295 -12.12183,214.15235"
- />
- <path
- id="path5049"
- style="fill:url(#linearGradient13594);fill-rule:evenodd"
- d="m-775.8 1044.3c-1.5874-8.9573-1.8931-18.072-1.5351-27.126 0.37479-9.4419 1.5033-18.832 3.1622-28.116v-0.00001c1.5366-8.594 3.5256-17.093 6.0167-25.422 1.9524-6.5158 4.136-12.918 6.9886-18.927 0.97512-2.0444 1.9785-3.9928 3.1681-5.7093 0.42713-0.61216 0.83743-1.1593 1.2655-1.5969 0.34133-0.32193 0.5621-0.54736 0.69761-0.57666 0.0812 0.0529-0.10128 0.0453-0.61331 0.10873h-0.00001c-0.55504-0.13965-0.84664-0.21997-0.9194-0.37217-0.003-0.0526 0.0313 0.16725 0.20589 0.55758 0.19657 0.56679 0.31477 1.2584 0.43481 2.0444 0.36814 2.5199 0.34345 5.2022 0.27377 8.0048-0.12466 4.3398-0.51828 8.7068-1.0028 13.108-1.5788 14.311-4.1397 28.538-6.9119 42.792l9.8634 1.647c2.0259-14.478 3.8461-29.084 4.6822-43.804 0.25826-4.5278 0.42039-9.1124 0.30947-13.733-0.0609-2.9222-0.22452-5.9928-0.82751-9.1147-0.18417-0.98136-0.45467-2.05-0.88582-3.1631-0.24689-0.73766-0.73671-1.6338-1.556-2.5714-0.6386-0.76533-1.6831-1.3194-3.0686-1.5398h-0.00002c-1.3801-0.021-2.4266 0.28749-3.0957 0.78508-0.9182 0.59519-1.5893 1.2349-2.064 1.8264-0.68383 0.80713-1.2438 1.6252-1.7212 2.4157-1.334 2.1968-2.363 4.4583-3.2647 6.6754-2.6739 6.54-4.5822 13.275-6.2017 19.997-2.083 8.6239-3.6375 17.353-4.7245 26.121v0.00001c-1.1753 9.4728-1.8033 19.017-1.6719 28.543 0.12456 9.132 0.93134 18.285 2.9958 27.144z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3807-9"
- inkscape:original-d="m -775.79716,1044.281 c -13.82151,-67.43157 40.74693,-187.62835 16.16244,-40.4061"
- />
- <path
- id="path5051"
- style="fill:url(#linearGradient13596);fill-rule:evenodd"
- d="m-719.23 765.48c-10.058 83.809-26.824 166.51-41.307 249.76l9.8839 1.5196c11.166-83.575 24.682-167.14 31.424-251.28z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3812-6"
- inkscape:original-d="m -719.22862,765.47886 c -8.40321,84.0088 -23.54343,167.12335 -36.36549,250.51784"
- />
- <path
- id="path5053"
- style="fill:url(#linearGradient13598);fill-rule:evenodd"
- d="m-715.19 510.92c-30.132 136.49-47.774 276.04-49.447 416.18l10 0.00014c-1.6688-139.38 12.578-279.02 39.447-416.18z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect3817-3"
- inkscape:original-d="m -715.18801,510.92041 c -28.49352,136.79435 -44.44488,276.38255 -44.44671,416.18286"
- />
- </g
- >
- <g
- id="g5173"
- transform="matrix(-0.212 0 0 .18257 -264.33 189.83)"
- >
- <path
- id="path5175"
- style="fill:url(#linearGradient13520);fill-rule:evenodd"
- d="m-1034.4 296.77c7.2299 16.843 12.7 34.37 17.565 52.028 5.8885 21.375 10.762 43.012 15.141 64.745 0 0 0 0.00001 0.0001 0.00001 9.6817 48.046 16.958 96.537 23.247 145.15 5.5267 42.728 10.202 85.56 14.23 128.45 2.0854 22.209 4.0359 44.417 5.6461 66.632l9.9655-0.83046c-2.0973-22.276-4.5315-44.5-7.0983-66.693-4.9587-42.88-10.566-85.686-17.021-128.36v-0.00002c-7.3421-48.543-15.682-96.977-26.413-144.89-4.8537-21.672-10.204-43.248-16.561-64.527-5.2499-17.575-11.111-35.018-18.702-51.702z"
- inkscape:path-effect="#path-effect4441-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
- />
- <path
- id="path5177"
- style="fill:url(#linearGradient13522);fill-rule:evenodd"
- d="m-925.3 304.85c-10.148 84.575-15.444 169.77-16.635 255.02-0.59326 42.436-0.10513 84.913 1.8613 127.35v0.00001c1.7829 38.502 4.742 77.013 9.8236 115.33l9.8995-1.4142c-5.7975-37.84-9.5041-76.042-12.052-114.35-2.8068-42.215-4.1438-84.548-4.4025-126.9v-0.00002c-0.51871-85.098 3.056-170.28 11.505-255.04z"
- inkscape:path-effect="#path-effect4445-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
- />
- <path
- id="path5179"
- style="fill:url(#linearGradient13524);fill-rule:evenodd"
- d="m-888.93 329.09c-0.0336 41.831-2.2515 83.605-4.6431 125.36-2.6107 45.574-5.629 91.136-7.7287 136.78-1.9784 42.973-3.3049 86.07-1.7759 129.21 0.66018 18.636 1.8763 37.31 4.1994 55.915 1.9665 15.792 4.7245 31.621 9.1997 47.123l9.5783-2.8735c-4.587-14.706-7.5584-30-9.8162-45.461-2.6515-18.199-4.2212-36.6-5.2528-55.064v-0.00002c-2.3877-42.751-1.9319-85.708-0.82778-128.66 1.1739-45.606 3.2701-91.217 4.9592-136.85 1.5479-41.806 2.9203-83.661 2.1079-125.48z"
- inkscape:path-effect="#path-effect4449-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
- />
- <path
- id="path5181"
- style="fill:url(#linearGradient13526);fill-rule:evenodd"
- d="m-856.61 353.34c-7.8284 83.677-17.99 167.16-22.371 251.2v0.00002c-2.2065 42.339-2.9727 84.818-1.0891 127.27 1.8358 41.411 6.2163 82.832 14.53 123.61l9.778-2.0953c-8.9918-39.98-14.137-80.865-16.782-121.93v-0.00003c-2.7106-42.095-2.7879-84.391-1.4293-126.65v-0.00001c2.6964-83.884 11.2-167.59 17.363-251.41z"
- inkscape:path-effect="#path-effect4453-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
- />
- <path
- id="path5183"
- style="fill:url(#linearGradient13528);fill-rule:evenodd"
- d="m-816.2 417.99c0.2223 85.933-3.0379 171.81-3.3267 257.8-0.29098 85.452 2.3375 171.22 14.547 256.12l9.8837-1.5206c-13.759-83.9-18.037-169.31-19.415-254.63-1.3829-85.864 0.2052-171.85-1.6889-257.76z"
- inkscape:path-effect="#path-effect4457-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
- />
- <path
- id="path5185"
- style="fill:url(#linearGradient13530);fill-rule:evenodd"
- d="m-1034.4 486.68c28.873 78.168 45.535 160.21 57.592 242.57 12 82.013 19.462 164.66 30.392 247.05l9.8995-1.4142c-12.538-81.885-21.672-164.48-35.341-246.42-13.721-82.286-32.109-164.22-62.543-241.79z"
- inkscape:path-effect="#path-effect4461-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
- />
- <path
- id="path5187"
- style="fill:url(#linearGradient13532);fill-rule:evenodd"
- d="m-945.5 450.31c15.301 79.801 18.914 161.24 20.317 242.44 1.3877 80.859 0.51222 161.93 7.0286 242.89l9.9589-0.90536c-8.1348-80.203-8.9222-161.21-11.979-242.12-3.0602-81.243-8.3872-162.83-25.325-242.3z"
- inkscape:path-effect="#path-effect4465-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
- />
- <path
- id="path5189"
- style="fill:url(#linearGradient13534);fill-rule:evenodd"
- d="m-844.49 506.88c-13.76 65.162-24.284 131.07-30.99 197.42-6.5309 64.604-9.5639 129.74-6.3254 194.83l9.9805-0.62378c-4.8503-64.338-3.4794-129.19 1.3922-193.76 5.0057-66.313 13.839-132.38 25.942-197.87z"
- inkscape:path-effect="#path-effect4469-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
- />
- <path
- id="path5191"
- style="fill:url(#linearGradient13536);fill-rule:evenodd"
- d="m-828.33 539.2c1.1072 73.893-6.5568 147.5-13.287 221.11-6.6726 72.854-12.66 146.22-7.8606 219.7l9.9705-0.76696c-6.4194-72.368-2.1025-145.58 2.8998-218.53 5.0658-73.706 11.059-147.66 8.2773-221.51z"
- inkscape:path-effect="#path-effect4473-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
- />
- <path
- id="path5193"
- style="fill:url(#linearGradient13538);fill-rule:evenodd"
- d="m-1050.6 539.2c10.951 59.284 24.534 118.08 36.527 177.12 12.038 59.271 22.574 118.89 27.184 178.91l9.9589-0.90536c-6.3485-60.519-18.573-120.06-32.266-179.06-13.637-58.769-28.821-117.1-41.404-176.06z"
- inkscape:path-effect="#path-effect4477-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
- />
- <path
- id="path5195"
- style="fill:url(#linearGradient13540);fill-rule:evenodd"
- d="m-941.46 486.68c-28.786 81.012-46.448 165.92-55.219 251.62-8.7905 85.783-8.8078 173.01 5.8528 258.39l9.8387-1.7889c-16.128-83.955-17.798-170.54-10.715-256.14 7.0871-85.508 23.031-170.53 50.243-252.08z"
- inkscape:path-effect="#path-effect4481-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
- />
- <path
- id="path5197"
- style="fill:url(#linearGradient13542);fill-rule:evenodd"
- d="m-913.18 591.73c-15.457 57.384-23.34 116.7-27.572 176.07-4.2627 59.759-4.8785 119.71-5.7121 179.5h10c-0.8336-59.816-1.8976-119.56 0.688-179.21 2.5724-59.272 8.7496-118.57 22.596-176.36z"
- inkscape:path-effect="#path-effect4485-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
- />
- <path
- id="path5199"
- style="fill:url(#linearGradient13544);fill-rule:evenodd"
- d="m-876.81 563.45c1.0452 57.788 0.66111 115.58 2.1167 173.41 1.4325 57.026 4.5566 114.2 13.154 170.86l9.8639-1.644c-10.14-55.759-14.899-112.56-17.987-169.42-3.1292-57.659-4.4251-115.48-7.1477-173.21z"
- inkscape:path-effect="#path-effect4489-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
- />
- <path
- id="path5201"
- style="fill:url(#linearGradient13546);fill-rule:evenodd"
- d="m-779.84 555.37c-4.2179 54.474-10.101 108.78-15.14 163.21-5.0472 54.502-9.226 109.18-10.063 164.08h10c-0.83713-54.498 1.6673-109.12 5.045-163.7 3.3748-54.506 7.6025-109.02 10.158-163.59z"
- inkscape:path-effect="#path-effect4493-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
- />
- <path
- id="path5203"
- style="fill:url(#linearGradient13548);fill-rule:evenodd"
- d="m-735.39 559.41c-2.3319 5.1584-3.935 10.626-5.3882 16.101-2.0073 7.5596-3.6207 15.222-5.086 22.904-3.838 20.121-6.6608 40.429-9.221 60.746-0.00001 0.00001-0.00001 0.00001-0.00001 0.00002-3.002 23.819-5.546 47.695-7.8896 71.584-2.3378 23.829-4.4604 47.678-6.482 71.531-1.7116 20.196-3.3385 40.394-4.9968 60.582 0 0.00001 0 0.00001-0.00001 0.00001-0.62401 7.5964-1.2513 15.187-1.9162 22.767-0.46732 5.326-0.93848 10.626-1.5106 15.888-0.18058 1.6576-0.36508 3.2824-0.59038 4.8678l-0.00001 0.00001c-0.0765 0.53652-0.153 1.0441-0.24009 1.5204-0.0665 0.34261-0.10856 0.58151-0.15232 0.70852-0.0202 0.0455 0.003-0.0141 0.0599-0.18269 0.00011 0.00002 0.00021 0.00004 0.00032 0.00006 1.1416 0.21508 2.6439 0.0308 4.489-0.57047 0.00008-0.00003 0.00017-0.00006 0.00026-0.00009 0.13377 0.083 0.26428 0.16273 0.39069 0.23277 0.1035 0.0573 0.20473 0.10642 0.30824 0.14876 0.13684 0.056 0.27702 0.10288 0.41831 0.14664 0.00004 0.00001 0.00009 0.00003 0.00013 0.00004 0.20865 0.0646 0.41937 0.12123 0.62934 0.17222 0.66234 0.16085 1.3165 0.26476 1.9502 0.31723h0.00006c0.004 0.0201 0.002-0.0186-0.0127-0.11493-0.0406-0.29437-0.0659-0.66129-0.0977-1.0981-0.10193-1.4865-0.13757-3.0367-0.17231-4.6477-0.0525-2.5414-0.0683-5.0989-0.0743-7.6724-0.019-8.2505 0.0725-16.518 0.17773-24.804h-10c0.10518 8.2972 0.22465 16.614 0.45525 24.945 0.0718 2.5976 0.15468 5.2112 0.27547 7.8387 0.074 1.6324 0.15922 3.3267 0.32067 5.0747 0.0443 0.49793 0.10476 1.0656 0.20305 1.6987 0.0306 0.20565 0.0791 0.46821 0.15133 0.78592 0.00005 0.00002 0.00009 0.00003 0.00014 0.00005 0.67836 0.24823 1.382 0.54796 2.1233 0.89343 0.235 0.10953 0.47386 0.22374 0.71938 0.34026 0.00005 0.00003 0.0001 0.00005 0.00015 0.00008 0.16626 0.0789 0.33574 0.15939 0.51067 0.23554 0.13233 0.0576 0.26816 0.11117 0.40291 0.15919 0.16458 0.0586 0.32686 0.1116 0.48767 0.16535 0.00018-0.00007 0.00037-0.00014 0.00055-0.0002 1.9398-0.70377 3.4965-1.0212 4.6896-0.93597 0.00011 0.00001 0.00022 0.00001 0.00033 0.00002 0.14367-0.386 0.23093-0.67097 0.27011-0.85167 0.14843-0.60557 0.23822-1.1137 0.29598-1.5182 0.0994-0.64538 0.17767-1.2645 0.24567-1.8558v-0.00003c0.20228-1.7507 0.35471-3.4731 0.49453-5.1636 0.44705-5.3881 0.78759-10.756 1.1194-16.099 0.47386-7.6225 0.90902-15.241 1.34-22.853 0-0.00001 0.00001-0.00002 0.00001-0.00002 1.1455-20.231 2.2584-40.457 3.4555-60.672 1.4141-23.88 2.9285-47.75 4.6585-71.604 1.7345-23.916 3.6681-47.813 6.061-71.668 2.0421-20.353 4.3414-40.679 7.6619-60.857 1.2679-7.7039 2.6819-15.384 4.4932-22.978 1.3132-5.5028 2.7697-10.991 4.9699-16.206z"
- inkscape:path-effect="#path-effect4497-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
- />
- <path
- id="path5205"
- style="fill:url(#linearGradient13550);fill-rule:evenodd"
- d="m-892.97 583.65c5.171 59.038 19.963 116.95 36.973 173.79 17.085 57.124 36.463 113.52 51.135 170.97l9.6529-2.612c-16.438-57.524-37.389-113.36-56.029-169.85-18.539-56.218-34.906-113.42-41.731-172.29z"
- inkscape:path-effect="#path-effect4505-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
- />
- <path
- id="path5207"
- style="fill:url(#linearGradient13552);fill-rule:evenodd"
- d="m-965.71 620.02c-0.78849 16.199-0.70433 32.441-0.2236 48.661 0.55321 18.672 1.6652 37.328 3.0949 55.956v0.00002c3.1164 40.604 7.713 81.094 13.039 121.47v0.00002c5.0115 37.997 10.706 75.91 16.991 113.73 4.5182 27.19 9.2673 54.374 14.738 81.456l9.778-2.0952c-6.0697-26.774-11.438-53.742-16.589-80.775-7.1587-37.577-13.732-75.27-19.628-113.08v-0.00001c-6.265-40.176-11.805-80.467-15.871-120.93-1.8653-18.561-3.4146-37.155-4.4064-55.786-0.86148-16.186-1.3287-32.4-0.92224-48.613z"
- inkscape:path-effect="#path-effect4509-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
- />
- <path
- id="path5209"
- style="fill:url(#linearGradient13554);fill-rule:evenodd"
- d="m-929.34 660.42c11.628 36.946 18.13 75.268 22.783 113.68 5.0349 41.586 7.6665 83.419 9.5282 125.28v0.00001c1.7621 39.648 2.7094 79.35 4.2509 119.08 0.66751 17.213 1.4503 34.447 2.6419 51.685 1.001 14.504 2.2703 29.058 4.3413 43.578l9.8837-1.5206c-2.3338-14.11-3.8937-28.409-5.2063-42.78-1.557-17.066-2.7112-34.197-3.7543-51.356-2.4072-39.611-4.2261-79.311-6.8611-118.98v-0.00002c-2.7806-41.879-6.3419-83.761-12.3-125.32-5.499-38.381-12.873-76.662-25.308-113.34z"
- inkscape:path-effect="#path-effect4513-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
- />
- <path
- id="path5211"
- style="fill:url(#linearGradient13556);fill-rule:evenodd"
- d="m-816.2 672.54c-3.961 64.296-11.826 128.23-18.91 192.28-6.8852 62.214-13.545 124.65-14.375 187.54h10c-0.82965-62.271 4.18-124.69 9.4228-187.05 5.3991-64.171 11.589-128.39 13.862-192.77z"
- inkscape:path-effect="#path-effect4517-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
- />
- <path
- id="path5213"
- style="fill:url(#linearGradient13558);fill-rule:evenodd"
- d="m-775.8 729.11c-0.097 12.252-0.46904 24.497-0.90546 36.74-0.55289 15.509-1.2429 31.011-1.9898 46.512-1.699 35.26-3.6964 70.503-5.7693 105.75v0.00001c-1.8634 31.679-3.8166 63.356-5.7166 95.043-0.66205 11.04-1.3227 22.088-1.9245 33.148-0.20243 3.7194-0.39929 7.4481-0.56938 11.188-0.10452 2.2762-0.21174 4.6065-0.24666 6.9943h10c-0.0349-2.1761 0.003-4.4086 0.0381-6.6942 0.0578-3.6957 0.1429-7.4006 0.23413-11.114 0.27124-11.04 0.60201-22.086 0.93482-33.141 0.95501-31.72 1.9638-63.446 2.883-95.177v-0.00001c1.0225-35.297 1.9694-70.601 2.6176-105.91v-0.00002c0.28494-15.522 0.51295-31.047 0.60365-46.571 0.0716-12.254 0.0786-24.513-0.18943-36.762z"
- inkscape:path-effect="#path-effect4521-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
- />
- <path
- id="path5215"
- style="fill:url(#linearGradient13560);fill-rule:evenodd"
- d="m-743.47 664.46c-16.291 106.04-35.472 211.71-45.391 318.82l9.9705 0.76696c6.5354-106.79 22.432-213.1 35.421-319.59z"
- inkscape:path-effect="#path-effect4525-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
- />
- <path
- id="path5217"
- style="fill:url(#linearGradient13562);fill-rule:evenodd"
- d="m-707.11 636.18c-7.809 66.383-18.994 132.27-29.449 198.31-5.1628 32.604-10.226 65.242-14.647 98.001v0.00001c-3.9074 28.941-7.3776 58.008-9.3828 87.272l9.9846 0.5548c1.23-28.97 3.9337-57.937 7.0808-86.891v-0.00002c3.562-32.761 7.7752-65.477 12.092-98.193v-0.00001c8.7427-66.247 18.231-132.49 24.322-199.05z"
- inkscape:path-effect="#path-effect4529-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
- />
- <path
- id="path5219"
- style="fill:url(#linearGradient13564);fill-rule:evenodd"
- d="m-832.37 603.85c-23.101 60.319-40.463 122.95-51.332 186.79-10.847 63.684-15.255 128.76-10.216 193.48l9.9589-0.90536c-6.6271-63.601-3.9382-128.19 5.2025-191.8 9.1672-63.766 24.851-126.67 46.387-187.56z"
- inkscape:path-effect="#path-effect4533-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
- />
- <path
- id="path5221"
- style="fill:url(#linearGradient13566);fill-rule:evenodd"
- d="m-771.76 648.3c0.4349 74.237-6.4541 148.22-13.66 222.1-7.2088 73.85-14.742 147.86-15.584 222.37h10c-0.84144-73.902 5.0218-147.93 10.566-221.94 5.5528-74.038 10.779-148.32 8.6773-222.53z"
- inkscape:path-effect="#path-effect4537-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
- />
- <path
- id="path5223"
- style="fill:url(#linearGradient13568);fill-rule:evenodd"
- d="m-876.81 716.99c2.775 28.034 3.0496 56.22 2.7479 84.372v0.00002c-0.30645 28.46-1.24 56.933-1.0057 85.482 0.22636 27.988 1.5735 56.11 6.031 83.958 4.3804 27.385 11.964 54.491 24.12 79.755l8.9443-4.4722c-12.388-23.826-20.522-49.915-25.628-76.588-5.1936-27.149-7.3491-54.935-8.4113-82.769-1.08-28.391-0.99407-56.882-1.5354-85.376v-0.00002c-0.53401-28.184-1.6549-56.422-5.2628-84.362z"
- inkscape:path-effect="#path-effect4541-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
- />
- <path
- id="path5225"
- style="fill:url(#linearGradient13570);fill-rule:evenodd"
- d="m-796 664.46c-7.5868 128.21-24.013 255.58-37.304 383.41l9.9589 0.9054c9.9613-127.96 23.088-255.95 27.345-384.31z"
- inkscape:path-effect="#path-effect4545-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
- />
- <path
- id="path5227"
- style="fill:url(#linearGradient13572);fill-rule:evenodd"
- d="m-1026.3 680.63c1.0537 65.848 10.696 131.34 21.12 196.39 10.448 65.254 21.81 130.4 26.425 195.96l9.9655-0.8304c-6.3565-66.098-19.381-131.06-31.471-195.98-12.045-64.725-23.322-129.74-26.039-195.54z"
- inkscape:path-effect="#path-effect4549-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
- />
- <path
- id="path5229"
- style="fill:url(#linearGradient13574);fill-rule:evenodd"
- d="m-973.79 749.32c11.467 48.568 17.963 98.083 23.319 147.66 5.3202 49.278 9.4411 98.743 16.186 148.06l9.8837-1.5206c-8.339-48.721-14.113-98.013-21.093-147.17-7.0178-49.447-15.208-98.881-28.295-147.04z"
- inkscape:path-effect="#path-effect4553-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
- />
- <path
- id="path5231"
- style="fill:url(#linearGradient13576);fill-rule:evenodd"
- d="m-1062.7 611.94c0.4653 65.794 10.346 131.25 20.995 196.2 10.695 65.295 22.35 130.49 26.547 196.12l9.9706-0.767c-5.9473-66.25-19.268-131.27-31.607-196.23-12.265-64.621-23.779-129.57-25.906-195.33z"
- inkscape:path-effect="#path-effect4557-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
- />
- <path
- id="path5233"
- style="fill:url(#linearGradient13578);fill-rule:evenodd"
- d="m-1103.1 636.18c35.633 125.29 56.106 254.51 63.703 384.21l9.9746-0.7124c-10.962-130.12-34.85-259.17-73.678-383.5z"
- inkscape:path-effect="#path-effect4561-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
- />
- <path
- id="path5235"
- style="fill:url(#linearGradient13580);fill-rule:evenodd"
- d="m-1022.3 797.8c13.218 87.043 20.917 174.97 19.244 262.64h10c-1.6732-88.38-12.74-176.16-29.244-262.64z"
- inkscape:path-effect="#path-effect4565-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
- />
- <path
- id="path5237"
- style="fill:url(#linearGradient13582);fill-rule:evenodd"
- d="m-1002.1 854.37c-8.7311 42.662-10.741 86.622-9.0315 130.28 1.6896 43.223 6.8813 86.226 12.163 129.03l9.8995-1.4142c-6.9123-42.554-13.723-85.052-17.046-127.91-3.3521-43.274-3.0687-87.019 4.0154-129.98z"
- inkscape:path-effect="#path-effect4569-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
- />
- <path
- id="path5239"
- style="fill:url(#linearGradient13584);fill-rule:evenodd"
- d="m-953.58 886.7c-0.0621 0.0202-0.0987 0.0856-0.12846 0.14386-0.0562 0.10825-0.0926 0.22597-0.1255 0.34307-0.11594 0.41234-0.18079 0.83807-0.24159 1.2611-0.22318 1.5504-0.33607 3.1164-0.44332 4.6772v0.00001c-0.385 5.5978-0.55116 11.212-0.69856 16.818-0.47545 18.073-0.51769 36.163-0.40171 54.244 0.13682 21.366 0.5391 42.745 1.3942 64.13 0.38887 9.7264 0.87378 19.464 1.5511 29.209 0.54955 7.9254 1.2114 15.895 2.2332 23.884l9.8837-1.5206c-1.3817-7.6335-2.4267-15.386-3.3761-23.196-1.1639-9.5827-2.1408-19.207-3.0252-28.854-1.9443-21.21-3.4411-42.482-4.6744-63.78v-0.00001c-1.0436-18.028-1.9302-36.061-2.3838-54.115v-0.00001c-0.14064-5.6036-0.26337-11.203-0.16671-16.804 0.0271-1.5636 0.0588-3.1252 0.20167-4.6806 0.0392-0.4251 0.0813-0.8497 0.17546-1.2651 0.0268-0.11812 0.0565-0.23586 0.10664-0.34573 0.0275-0.0592 0.0584-0.12494 0.11941-0.14828z"
- inkscape:path-effect="#path-effect4573-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
- />
- <path
- id="path5241"
- style="fill:url(#linearGradient13586);fill-rule:evenodd"
- d="m-953.58 850.33c-13.826 26.58-20.852 56.456-24.424 86.389-3.639 30.385-3.9872 61.041-4.8199 91.398h10c-0.83271-30.466-2.185-60.761-0.2393-90.942 1.9281-29.713 7.1448-59.543 19.483-86.845z"
- inkscape:path-effect="#path-effect4577-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
- />
- <path
- id="path5243"
- style="fill:url(#linearGradient13588);fill-rule:evenodd"
- d="m-909.14 838.21c4.6797 40.194 2.8502 80.725-0.36133 121-3.2248 40.311-7.8366 80.633-8.6793 121.43h10c-0.84266-40.177 2.105-80.614 3.6686-121.14 1.5731-40.493 1.7023-81.332-4.628-121.3z"
- inkscape:path-effect="#path-effect4581-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
- />
- <path
- id="path5245"
- style="fill:url(#linearGradient13590);fill-rule:evenodd"
- d="m-860.65 846.29c-5.9206 67.242-15.441 134.16-17.122 202.03h10c-1.6805-67.093 4.528-134.58 7.1218-202.03z"
- inkscape:path-effect="#path-effect4585-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
- />
- <path
- id="path5247"
- style="fill:url(#linearGradient13592);fill-rule:evenodd"
- d="m-787.92 842.25c-9.4933 70.922-15.454 142.42-17.122 214.15h10c-1.6677-71.335 0.94181-142.87 7.1218-214.15z"
- inkscape:path-effect="#path-effect4589-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
- />
- <path
- id="path5249"
- style="fill:url(#linearGradient13594);fill-rule:evenodd"
- d="m-775.8 1044.3c2.416-29.418 4.9823-58.825 8.3556-88.124 3.1586-31.283 6.5972-62.479 11.851-93.132v0.00001c3.9172 22.555 2.3772 45.898-0.93861 69.056-2.1157 23.682-5.8676 47.343-8.091 71.411l9.9705 0.767c1.4505-23.692 4.4772-47.515 5.8894-71.604 0.13168-23.526-0.95565-47.554-6.8378-70.772 0-0.00001-0.00001-0.00001-0.00001-0.00002-7.1406 31.138-11.468 62.577-14.553 94.006 0 0 0 0.00001-0.00001 0.00001-2.4747 29.438-4.1356 58.915-5.6459 88.393z"
- inkscape:path-effect="#path-effect4593-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -775.79716,1044.281 c 3.40919,-51.13789 8.52518,-123.60906 20.20305,-181.8275 9.62955,44.98048 -0.41715,94.31638 -4.04061,141.4214"
- />
- <path
- id="path5251"
- style="fill:url(#linearGradient13596);fill-rule:evenodd"
- d="m-719.23 765.48c-10.019 83.814-26.816 166.51-41.307 249.76l9.8837 1.5206c11.174-83.573 24.722-167.13 31.424-251.28z"
- inkscape:path-effect="#path-effect4597-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
- />
- <path
- id="path5253"
- style="fill:url(#linearGradient13598);fill-rule:evenodd"
- d="m-715.19 510.92c-30.133 136.48-47.776 276.04-49.447 416.18h10c-1.6706-139.38 12.577-279.02 39.447-416.18z"
- inkscape:path-effect="#path-effect4601-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
- />
- </g
- >
- <g
- id="g5335"
- transform="matrix(-0.212 0 0 .18257 -325.14 221.34)"
- >
- <path
- id="path5337"
- style="fill:url(#linearGradient13520);fill-rule:evenodd"
- d="m-1034.4 296.77c7.2299 16.843 12.7 34.37 17.565 52.028 5.8885 21.375 10.762 43.012 15.141 64.745 0 0 0 0.00001 0.0001 0.00001 9.6817 48.046 16.958 96.537 23.247 145.15 5.5267 42.728 10.202 85.56 14.23 128.45 2.0854 22.209 4.0359 44.417 5.6461 66.632l9.9655-0.83046c-2.0973-22.276-4.5315-44.5-7.0983-66.693-4.9587-42.88-10.566-85.686-17.021-128.36v-0.00002c-7.3421-48.543-15.682-96.977-26.413-144.89-4.8537-21.672-10.204-43.248-16.561-64.527-5.2499-17.575-11.111-35.018-18.702-51.702z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4441-5"
- inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
- />
- <path
- id="path5339"
- style="fill:url(#linearGradient13522);fill-rule:evenodd"
- d="m-925.3 304.85c-10.148 84.575-15.444 169.77-16.635 255.02-0.59326 42.436-0.10513 84.913 1.8613 127.35v0.00001c1.7829 38.502 4.742 77.013 9.8236 115.33l9.8995-1.4142c-5.7975-37.84-9.5041-76.042-12.052-114.35-2.8068-42.215-4.1438-84.548-4.4025-126.9v-0.00002c-0.51871-85.098 3.056-170.28 11.505-255.04z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4445-7"
- inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
- />
- <path
- id="path5341"
- style="fill:url(#linearGradient13524);fill-rule:evenodd"
- d="m-888.93 329.09c-0.0336 41.831-2.2515 83.605-4.6431 125.36-2.6107 45.574-5.629 91.136-7.7287 136.78-1.9784 42.973-3.3049 86.07-1.7759 129.21 0.66018 18.636 1.8763 37.31 4.1994 55.915 1.9665 15.792 4.7245 31.621 9.1997 47.123l9.5783-2.8735c-4.587-14.706-7.5584-30-9.8162-45.461-2.6515-18.199-4.2212-36.6-5.2528-55.064v-0.00002c-2.3877-42.751-1.9319-85.708-0.82778-128.66 1.1739-45.606 3.2701-91.217 4.9592-136.85 1.5479-41.806 2.9203-83.661 2.1079-125.48z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4449-1"
- inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
- />
- <path
- id="path5343"
- style="fill:url(#linearGradient13526);fill-rule:evenodd"
- d="m-856.61 353.34c-7.8284 83.677-17.99 167.16-22.371 251.2v0.00002c-2.2065 42.339-2.9727 84.818-1.0891 127.27 1.8358 41.411 6.2163 82.832 14.53 123.61l9.778-2.0953c-8.9918-39.98-14.137-80.865-16.782-121.93v-0.00003c-2.7106-42.095-2.7879-84.391-1.4293-126.65v-0.00001c2.6964-83.884 11.2-167.59 17.363-251.41z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4453-2"
- inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
- />
- <path
- id="path5345"
- style="fill:url(#linearGradient13528);fill-rule:evenodd"
- d="m-816.2 417.99c0.2223 85.933-3.0379 171.81-3.3267 257.8-0.29098 85.452 2.3375 171.22 14.547 256.12l9.8837-1.5206c-13.759-83.9-18.037-169.31-19.415-254.63-1.3829-85.864 0.2052-171.85-1.6889-257.76z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4457-6"
- inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
- />
- <path
- id="path5347"
- style="fill:url(#linearGradient13530);fill-rule:evenodd"
- d="m-1034.4 486.68c28.873 78.168 45.535 160.21 57.592 242.57 12 82.013 19.462 164.66 30.392 247.05l9.8995-1.4142c-12.538-81.885-21.672-164.48-35.341-246.42-13.721-82.286-32.109-164.22-62.543-241.79z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4461-4"
- inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
- />
- <path
- id="path5349"
- style="fill:url(#linearGradient13532);fill-rule:evenodd"
- d="m-945.5 450.31c15.301 79.801 18.914 161.24 20.317 242.44 1.3877 80.859 0.51222 161.93 7.0286 242.89l9.9589-0.90536c-8.1348-80.203-8.9222-161.21-11.979-242.12-3.0602-81.243-8.3872-162.83-25.325-242.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4465-3"
- inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
- />
- <path
- id="path5351"
- style="fill:url(#linearGradient13534);fill-rule:evenodd"
- d="m-844.49 506.88c-13.76 65.162-24.284 131.07-30.99 197.42-6.5309 64.604-9.5639 129.74-6.3254 194.83l9.9805-0.62378c-4.8503-64.338-3.4794-129.19 1.3922-193.76 5.0057-66.313 13.839-132.38 25.942-197.87z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4469-2"
- inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
- />
- <path
- id="path5353"
- style="fill:url(#linearGradient13536);fill-rule:evenodd"
- d="m-828.33 539.2c1.1072 73.893-6.5568 147.5-13.287 221.11-6.6726 72.854-12.66 146.22-7.8606 219.7l9.9705-0.76696c-6.4194-72.368-2.1025-145.58 2.8998-218.53 5.0658-73.706 11.059-147.66 8.2773-221.51z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4473-6"
- inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
- />
- <path
- id="path5355"
- style="fill:url(#linearGradient13538);fill-rule:evenodd"
- d="m-1050.6 539.2c10.951 59.284 24.534 118.08 36.527 177.12 12.038 59.271 22.574 118.89 27.184 178.91l9.9589-0.90536c-6.3485-60.519-18.573-120.06-32.266-179.06-13.637-58.769-28.821-117.1-41.404-176.06z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4477-5"
- inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
- />
- <path
- id="path5357"
- style="fill:url(#linearGradient13540);fill-rule:evenodd"
- d="m-941.46 486.68c-28.786 81.012-46.448 165.92-55.219 251.62-8.7905 85.783-8.8078 173.01 5.8528 258.39l9.8387-1.7889c-16.128-83.955-17.798-170.54-10.715-256.14 7.0871-85.508 23.031-170.53 50.243-252.08z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4481-6"
- inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
- />
- <path
- id="path5359"
- style="fill:url(#linearGradient13542);fill-rule:evenodd"
- d="m-913.18 591.73c-15.457 57.384-23.34 116.7-27.572 176.07-4.2627 59.759-4.8785 119.71-5.7121 179.5h10c-0.8336-59.816-1.8976-119.56 0.688-179.21 2.5724-59.272 8.7496-118.57 22.596-176.36z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4485-8"
- inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
- />
- <path
- id="path5361"
- style="fill:url(#linearGradient13544);fill-rule:evenodd"
- d="m-876.81 563.45c1.0452 57.788 0.66111 115.58 2.1167 173.41 1.4325 57.026 4.5566 114.2 13.154 170.86l9.8639-1.644c-10.14-55.759-14.899-112.56-17.987-169.42-3.1292-57.659-4.4251-115.48-7.1477-173.21z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4489-2"
- inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
- />
- <path
- id="path5363"
- style="fill:url(#linearGradient13546);fill-rule:evenodd"
- d="m-779.84 555.37c-4.2179 54.474-10.101 108.78-15.14 163.21-5.0472 54.502-9.226 109.18-10.063 164.08h10c-0.83713-54.498 1.6673-109.12 5.045-163.7 3.3748-54.506 7.6025-109.02 10.158-163.59z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4493-9"
- inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
- />
- <path
- id="path5365"
- style="fill:url(#linearGradient13548);fill-rule:evenodd"
- d="m-735.39 559.41c-2.3319 5.1584-3.935 10.626-5.3882 16.101-2.0073 7.5596-3.6207 15.222-5.086 22.904-3.838 20.121-6.6608 40.429-9.221 60.746-0.00001 0.00001-0.00001 0.00001-0.00001 0.00002-3.002 23.819-5.546 47.695-7.8896 71.584-2.3378 23.829-4.4604 47.678-6.482 71.531-1.7116 20.196-3.3385 40.394-4.9968 60.582 0 0.00001 0 0.00001-0.00001 0.00001-0.62401 7.5964-1.2513 15.187-1.9162 22.767-0.46732 5.326-0.93848 10.626-1.5106 15.888-0.18058 1.6576-0.36508 3.2824-0.59038 4.8678l-0.00001 0.00001c-0.0765 0.53652-0.153 1.0441-0.24009 1.5204-0.0665 0.34261-0.10856 0.58151-0.15232 0.70852-0.0202 0.0455 0.003-0.0141 0.0599-0.18269 0.00011 0.00002 0.00021 0.00004 0.00032 0.00006 1.1416 0.21508 2.6439 0.0308 4.489-0.57047 0.00008-0.00003 0.00017-0.00006 0.00026-0.00009 0.13377 0.083 0.26428 0.16273 0.39069 0.23277 0.1035 0.0573 0.20473 0.10642 0.30824 0.14876 0.13684 0.056 0.27702 0.10288 0.41831 0.14664 0.00004 0.00001 0.00009 0.00003 0.00013 0.00004 0.20865 0.0646 0.41937 0.12123 0.62934 0.17222 0.66234 0.16085 1.3165 0.26476 1.9502 0.31723h0.00006c0.004 0.0201 0.002-0.0186-0.0127-0.11493-0.0406-0.29437-0.0659-0.66129-0.0977-1.0981-0.10193-1.4865-0.13757-3.0367-0.17231-4.6477-0.0525-2.5414-0.0683-5.0989-0.0743-7.6724-0.019-8.2505 0.0725-16.518 0.17773-24.804h-10c0.10518 8.2972 0.22465 16.614 0.45525 24.945 0.0718 2.5976 0.15468 5.2112 0.27547 7.8387 0.074 1.6324 0.15922 3.3267 0.32067 5.0747 0.0443 0.49793 0.10476 1.0656 0.20305 1.6987 0.0306 0.20565 0.0791 0.46821 0.15133 0.78592 0.00005 0.00002 0.00009 0.00003 0.00014 0.00005 0.67836 0.24823 1.382 0.54796 2.1233 0.89343 0.235 0.10953 0.47386 0.22374 0.71938 0.34026 0.00005 0.00003 0.0001 0.00005 0.00015 0.00008 0.16626 0.0789 0.33574 0.15939 0.51067 0.23554 0.13233 0.0576 0.26816 0.11117 0.40291 0.15919 0.16458 0.0586 0.32686 0.1116 0.48767 0.16535 0.00018-0.00007 0.00037-0.00014 0.00055-0.0002 1.9398-0.70377 3.4965-1.0212 4.6896-0.93597 0.00011 0.00001 0.00022 0.00001 0.00033 0.00002 0.14367-0.386 0.23093-0.67097 0.27011-0.85167 0.14843-0.60557 0.23822-1.1137 0.29598-1.5182 0.0994-0.64538 0.17767-1.2645 0.24567-1.8558v-0.00003c0.20228-1.7507 0.35471-3.4731 0.49453-5.1636 0.44705-5.3881 0.78759-10.756 1.1194-16.099 0.47386-7.6225 0.90902-15.241 1.34-22.853 0-0.00001 0.00001-0.00002 0.00001-0.00002 1.1455-20.231 2.2584-40.457 3.4555-60.672 1.4141-23.88 2.9285-47.75 4.6585-71.604 1.7345-23.916 3.6681-47.813 6.061-71.668 2.0421-20.353 4.3414-40.679 7.6619-60.857 1.2679-7.7039 2.6819-15.384 4.4932-22.978 1.3132-5.5028 2.7697-10.991 4.9699-16.206z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4497-4"
- inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
- />
- <path
- id="path5367"
- style="fill:url(#linearGradient13550);fill-rule:evenodd"
- d="m-892.97 583.65c5.171 59.038 19.963 116.95 36.973 173.79 17.085 57.124 36.463 113.52 51.135 170.97l9.6529-2.612c-16.438-57.524-37.389-113.36-56.029-169.85-18.539-56.218-34.906-113.42-41.731-172.29z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4505-1"
- inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
- />
- <path
- id="path5369"
- style="fill:url(#linearGradient13552);fill-rule:evenodd"
- d="m-965.71 620.02c-0.78849 16.199-0.70433 32.441-0.2236 48.661 0.55321 18.672 1.6652 37.328 3.0949 55.956v0.00002c3.1164 40.604 7.713 81.094 13.039 121.47v0.00002c5.0115 37.997 10.706 75.91 16.991 113.73 4.5182 27.19 9.2673 54.374 14.738 81.456l9.778-2.0952c-6.0697-26.774-11.438-53.742-16.589-80.775-7.1587-37.577-13.732-75.27-19.628-113.08v-0.00001c-6.265-40.176-11.805-80.467-15.871-120.93-1.8653-18.561-3.4146-37.155-4.4064-55.786-0.86148-16.186-1.3287-32.4-0.92224-48.613z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4509-3"
- inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
- />
- <path
- id="path5371"
- style="fill:url(#linearGradient13554);fill-rule:evenodd"
- d="m-929.34 660.42c11.628 36.946 18.13 75.268 22.783 113.68 5.0349 41.586 7.6665 83.419 9.5282 125.28v0.00001c1.7621 39.648 2.7094 79.35 4.2509 119.08 0.66751 17.213 1.4503 34.447 2.6419 51.685 1.001 14.504 2.2703 29.058 4.3413 43.578l9.8837-1.5206c-2.3338-14.11-3.8937-28.409-5.2063-42.78-1.557-17.066-2.7112-34.197-3.7543-51.356-2.4072-39.611-4.2261-79.311-6.8611-118.98v-0.00002c-2.7806-41.879-6.3419-83.761-12.3-125.32-5.499-38.381-12.873-76.662-25.308-113.34z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4513-4"
- inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
- />
- <path
- id="path5373"
- style="fill:url(#linearGradient13556);fill-rule:evenodd"
- d="m-816.2 672.54c-3.961 64.296-11.826 128.23-18.91 192.28-6.8852 62.214-13.545 124.65-14.375 187.54h10c-0.82965-62.271 4.18-124.69 9.4228-187.05 5.3991-64.171 11.589-128.39 13.862-192.77z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4517-1"
- inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
- />
- <path
- id="path5375"
- style="fill:url(#linearGradient13558);fill-rule:evenodd"
- d="m-775.8 729.11c-0.097 12.252-0.46904 24.497-0.90546 36.74-0.55289 15.509-1.2429 31.011-1.9898 46.512-1.699 35.26-3.6964 70.503-5.7693 105.75v0.00001c-1.8634 31.679-3.8166 63.356-5.7166 95.043-0.66205 11.04-1.3227 22.088-1.9245 33.148-0.20243 3.7194-0.39929 7.4481-0.56938 11.188-0.10452 2.2762-0.21174 4.6065-0.24666 6.9943h10c-0.0349-2.1761 0.003-4.4086 0.0381-6.6942 0.0578-3.6957 0.1429-7.4006 0.23413-11.114 0.27124-11.04 0.60201-22.086 0.93482-33.141 0.95501-31.72 1.9638-63.446 2.883-95.177v-0.00001c1.0225-35.297 1.9694-70.601 2.6176-105.91v-0.00002c0.28494-15.522 0.51295-31.047 0.60365-46.571 0.0716-12.254 0.0786-24.513-0.18943-36.762z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4521-8"
- inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
- />
- <path
- id="path5377"
- style="fill:url(#linearGradient13560);fill-rule:evenodd"
- d="m-743.47 664.46c-16.291 106.04-35.472 211.71-45.391 318.82l9.9705 0.76696c6.5354-106.79 22.432-213.1 35.421-319.59z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4525-4"
- inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
- />
- <path
- id="path5379"
- style="fill:url(#linearGradient13562);fill-rule:evenodd"
- d="m-707.11 636.18c-7.809 66.383-18.994 132.27-29.449 198.31-5.1628 32.604-10.226 65.242-14.647 98.001v0.00001c-3.9074 28.941-7.3776 58.008-9.3828 87.272l9.9846 0.5548c1.23-28.97 3.9337-57.937 7.0808-86.891v-0.00002c3.562-32.761 7.7752-65.477 12.092-98.193v-0.00001c8.7427-66.247 18.231-132.49 24.322-199.05z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4529-7"
- inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
- />
- <path
- id="path5381"
- style="fill:url(#linearGradient13564);fill-rule:evenodd"
- d="m-832.37 603.85c-23.101 60.319-40.463 122.95-51.332 186.79-10.847 63.684-15.255 128.76-10.216 193.48l9.9589-0.90536c-6.6271-63.601-3.9382-128.19 5.2025-191.8 9.1672-63.766 24.851-126.67 46.387-187.56z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4533-9"
- inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
- />
- <path
- id="path5383"
- style="fill:url(#linearGradient13566);fill-rule:evenodd"
- d="m-771.76 648.3c0.4349 74.237-6.4541 148.22-13.66 222.1-7.2088 73.85-14.742 147.86-15.584 222.37h10c-0.84144-73.902 5.0218-147.93 10.566-221.94 5.5528-74.038 10.779-148.32 8.6773-222.53z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4537-1"
- inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
- />
- <path
- id="path5385"
- style="fill:url(#linearGradient13568);fill-rule:evenodd"
- d="m-876.81 716.99c2.775 28.034 3.0496 56.22 2.7479 84.372v0.00002c-0.30645 28.46-1.24 56.933-1.0057 85.482 0.22636 27.988 1.5735 56.11 6.031 83.958 4.3804 27.385 11.964 54.491 24.12 79.755l8.9443-4.4722c-12.388-23.826-20.522-49.915-25.628-76.588-5.1936-27.149-7.3491-54.935-8.4113-82.769-1.08-28.391-0.99407-56.882-1.5354-85.376v-0.00002c-0.53401-28.184-1.6549-56.422-5.2628-84.362z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4541-8"
- inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
- />
- <path
- id="path5387"
- style="fill:url(#linearGradient13570);fill-rule:evenodd"
- d="m-796 664.46c-7.5868 128.21-24.013 255.58-37.304 383.41l9.9589 0.9054c9.9613-127.96 23.088-255.95 27.345-384.31z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4545-5"
- inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
- />
- <path
- id="path5389"
- style="fill:url(#linearGradient13572);fill-rule:evenodd"
- d="m-1026.3 680.63c1.0537 65.848 10.696 131.34 21.12 196.39 10.448 65.254 21.81 130.4 26.425 195.96l9.9655-0.8304c-6.3565-66.098-19.381-131.06-31.471-195.98-12.045-64.725-23.322-129.74-26.039-195.54z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4549-2"
- inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
- />
- <path
- id="path5391"
- style="fill:url(#linearGradient13574);fill-rule:evenodd"
- d="m-973.79 749.32c11.467 48.568 17.963 98.083 23.319 147.66 5.3202 49.278 9.4411 98.743 16.186 148.06l9.8837-1.5206c-8.339-48.721-14.113-98.013-21.093-147.17-7.0178-49.447-15.208-98.881-28.295-147.04z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4553-6"
- inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
- />
- <path
- id="path5393"
- style="fill:url(#linearGradient13576);fill-rule:evenodd"
- d="m-1062.7 611.94c0.4653 65.794 10.346 131.25 20.995 196.2 10.695 65.295 22.35 130.49 26.547 196.12l9.9706-0.767c-5.9473-66.25-19.268-131.27-31.607-196.23-12.265-64.621-23.779-129.57-25.906-195.33z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4557-2"
- inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
- />
- <path
- id="path5395"
- style="fill:url(#linearGradient13578);fill-rule:evenodd"
- d="m-1103.1 636.18c35.633 125.29 56.106 254.51 63.703 384.21l9.9746-0.7124c-10.962-130.12-34.85-259.17-73.678-383.5z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4561-8"
- inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
- />
- <path
- id="path5397"
- style="fill:url(#linearGradient13580);fill-rule:evenodd"
- d="m-1022.3 797.8c13.218 87.043 20.917 174.97 19.244 262.64h10c-1.6732-88.38-12.74-176.16-29.244-262.64z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4565-5"
- inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
- />
- <path
- id="path5399"
- style="fill:url(#linearGradient13582);fill-rule:evenodd"
- d="m-1002.1 854.37c-8.7311 42.662-10.741 86.622-9.0315 130.28 1.6896 43.223 6.8813 86.226 12.163 129.03l9.8995-1.4142c-6.9123-42.554-13.723-85.052-17.046-127.91-3.3521-43.274-3.0687-87.019 4.0154-129.98z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4569-9"
- inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
- />
- <path
- id="path5401"
- style="fill:url(#linearGradient13584);fill-rule:evenodd"
- d="m-953.58 886.7c-0.0621 0.0202-0.0987 0.0856-0.12846 0.14386-0.0562 0.10825-0.0926 0.22597-0.1255 0.34307-0.11594 0.41234-0.18079 0.83807-0.24159 1.2611-0.22318 1.5504-0.33607 3.1164-0.44332 4.6772v0.00001c-0.385 5.5978-0.55116 11.212-0.69856 16.818-0.47545 18.073-0.51769 36.163-0.40171 54.244 0.13682 21.366 0.5391 42.745 1.3942 64.13 0.38887 9.7264 0.87378 19.464 1.5511 29.209 0.54955 7.9254 1.2114 15.895 2.2332 23.884l9.8837-1.5206c-1.3817-7.6335-2.4267-15.386-3.3761-23.196-1.1639-9.5827-2.1408-19.207-3.0252-28.854-1.9443-21.21-3.4411-42.482-4.6744-63.78v-0.00001c-1.0436-18.028-1.9302-36.061-2.3838-54.115v-0.00001c-0.14064-5.6036-0.26337-11.203-0.16671-16.804 0.0271-1.5636 0.0588-3.1252 0.20167-4.6806 0.0392-0.4251 0.0813-0.8497 0.17546-1.2651 0.0268-0.11812 0.0565-0.23586 0.10664-0.34573 0.0275-0.0592 0.0584-0.12494 0.11941-0.14828z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4573-0"
- inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
- />
- <path
- id="path5403"
- style="fill:url(#linearGradient13586);fill-rule:evenodd"
- d="m-953.58 850.33c-13.826 26.58-20.852 56.456-24.424 86.389-3.639 30.385-3.9872 61.041-4.8199 91.398h10c-0.83271-30.466-2.185-60.761-0.2393-90.942 1.9281-29.713 7.1448-59.543 19.483-86.845z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4577-1"
- inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
- />
- <path
- id="path5405"
- style="fill:url(#linearGradient13588);fill-rule:evenodd"
- d="m-909.14 838.21c4.6797 40.194 2.8502 80.725-0.36133 121-3.2248 40.311-7.8366 80.633-8.6793 121.43h10c-0.84266-40.177 2.105-80.614 3.6686-121.14 1.5731-40.493 1.7023-81.332-4.628-121.3z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4581-8"
- inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
- />
- <path
- id="path5407"
- style="fill:url(#linearGradient13590);fill-rule:evenodd"
- d="m-860.65 846.29c-5.9206 67.242-15.441 134.16-17.122 202.03h10c-1.6805-67.093 4.528-134.58 7.1218-202.03z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4585-3"
- inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
- />
- <path
- id="path5409"
- style="fill:url(#linearGradient13592);fill-rule:evenodd"
- d="m-787.92 842.25c-9.4933 70.922-15.454 142.42-17.122 214.15h10c-1.6677-71.335 0.94181-142.87 7.1218-214.15z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4589-4"
- inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
- />
- <path
- id="path5411"
- style="fill:url(#linearGradient13594);fill-rule:evenodd"
- d="m-775.8 1044.3c2.416-29.418 4.9823-58.825 8.3556-88.124 3.1586-31.283 6.5972-62.479 11.851-93.132v0.00001c3.9172 22.555 2.3772 45.898-0.93861 69.056-2.1157 23.682-5.8676 47.343-8.091 71.411l9.9705 0.767c1.4505-23.692 4.4772-47.515 5.8894-71.604 0.13168-23.526-0.95565-47.554-6.8378-70.772 0-0.00001-0.00001-0.00001-0.00001-0.00002-7.1406 31.138-11.468 62.577-14.553 94.006 0 0 0 0.00001-0.00001 0.00001-2.4747 29.438-4.1356 58.915-5.6459 88.393z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4593-0"
- inkscape:original-d="m -775.79716,1044.281 c 3.40919,-51.13789 8.52518,-123.60906 20.20305,-181.8275 9.62955,44.98048 -0.41715,94.31638 -4.04061,141.4214"
- />
- <path
- id="path5413"
- style="fill:url(#linearGradient13596);fill-rule:evenodd"
- d="m-719.23 765.48c-10.019 83.814-26.816 166.51-41.307 249.76l9.8837 1.5206c11.174-83.573 24.722-167.13 31.424-251.28z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4597-6"
- inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
- />
- <path
- id="path5415"
- style="fill:url(#linearGradient13598);fill-rule:evenodd"
- d="m-715.19 510.92c-30.133 136.48-47.776 276.04-49.447 416.18h10c-1.6706-139.38 12.577-279.02 39.447-416.18z"
- inkscape:connector-curvature="0"
- inkscape:path-effect="#path-effect4601-8"
- inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
- />
- </g
- >
- <g
- id="g5497"
- transform="matrix(-0.212 0 0 .18257 -475.08 189.84)"
- >
- <path
- id="path5499"
- style="fill:url(#linearGradient13520);fill-rule:evenodd"
- d="m-1034.4 296.77c7.2299 16.843 12.7 34.37 17.565 52.028 5.8885 21.375 10.762 43.012 15.141 64.745 0 0 0 0.00001 0.0001 0.00001 9.6817 48.046 16.958 96.537 23.247 145.15 5.5267 42.728 10.202 85.56 14.23 128.45 2.0854 22.209 4.0359 44.417 5.6461 66.632l9.9655-0.83046c-2.0973-22.276-4.5315-44.5-7.0983-66.693-4.9587-42.88-10.566-85.686-17.021-128.36v-0.00002c-7.3421-48.543-15.682-96.977-26.413-144.89-4.8537-21.672-10.204-43.248-16.561-64.527-5.2499-17.575-11.111-35.018-18.702-51.702z"
- inkscape:path-effect="#path-effect4441-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
- />
- <path
- id="path5501"
- style="fill:url(#linearGradient13522);fill-rule:evenodd"
- d="m-925.3 304.85c-10.148 84.575-15.444 169.77-16.635 255.02-0.59326 42.436-0.10513 84.913 1.8613 127.35v0.00001c1.7829 38.502 4.742 77.013 9.8236 115.33l9.8995-1.4142c-5.7975-37.84-9.5041-76.042-12.052-114.35-2.8068-42.215-4.1438-84.548-4.4025-126.9v-0.00002c-0.51871-85.098 3.056-170.28 11.505-255.04z"
- inkscape:path-effect="#path-effect4445-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
- />
- <path
- id="path5503"
- style="fill:url(#linearGradient13524);fill-rule:evenodd"
- d="m-888.93 329.09c-0.0336 41.831-2.2515 83.605-4.6431 125.36-2.6107 45.574-5.629 91.136-7.7287 136.78-1.9784 42.973-3.3049 86.07-1.7759 129.21 0.66018 18.636 1.8763 37.31 4.1994 55.915 1.9665 15.792 4.7245 31.621 9.1997 47.123l9.5783-2.8735c-4.587-14.706-7.5584-30-9.8162-45.461-2.6515-18.199-4.2212-36.6-5.2528-55.064v-0.00002c-2.3877-42.751-1.9319-85.708-0.82778-128.66 1.1739-45.606 3.2701-91.217 4.9592-136.85 1.5479-41.806 2.9203-83.661 2.1079-125.48z"
- inkscape:path-effect="#path-effect4449-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
- />
- <path
- id="path5505"
- style="fill:url(#linearGradient13526);fill-rule:evenodd"
- d="m-856.61 353.34c-7.8284 83.677-17.99 167.16-22.371 251.2v0.00002c-2.2065 42.339-2.9727 84.818-1.0891 127.27 1.8358 41.411 6.2163 82.832 14.53 123.61l9.778-2.0953c-8.9918-39.98-14.137-80.865-16.782-121.93v-0.00003c-2.7106-42.095-2.7879-84.391-1.4293-126.65v-0.00001c2.6964-83.884 11.2-167.59 17.363-251.41z"
- inkscape:path-effect="#path-effect4453-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
- />
- <path
- id="path5507"
- style="fill:url(#linearGradient13528);fill-rule:evenodd"
- d="m-816.2 417.99c0.2223 85.933-3.0379 171.81-3.3267 257.8-0.29098 85.452 2.3375 171.22 14.547 256.12l9.8837-1.5206c-13.759-83.9-18.037-169.31-19.415-254.63-1.3829-85.864 0.2052-171.85-1.6889-257.76z"
- inkscape:path-effect="#path-effect4457-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
- />
- <path
- id="path5509"
- style="fill:url(#linearGradient13530);fill-rule:evenodd"
- d="m-1034.4 486.68c28.873 78.168 45.535 160.21 57.592 242.57 12 82.013 19.462 164.66 30.392 247.05l9.8995-1.4142c-12.538-81.885-21.672-164.48-35.341-246.42-13.721-82.286-32.109-164.22-62.543-241.79z"
- inkscape:path-effect="#path-effect4461-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
- />
- <path
- id="path5511"
- style="fill:url(#linearGradient13532);fill-rule:evenodd"
- d="m-945.5 450.31c15.301 79.801 18.914 161.24 20.317 242.44 1.3877 80.859 0.51222 161.93 7.0286 242.89l9.9589-0.90536c-8.1348-80.203-8.9222-161.21-11.979-242.12-3.0602-81.243-8.3872-162.83-25.325-242.3z"
- inkscape:path-effect="#path-effect4465-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
- />
- <path
- id="path5513"
- style="fill:url(#linearGradient13534);fill-rule:evenodd"
- d="m-844.49 506.88c-13.76 65.162-24.284 131.07-30.99 197.42-6.5309 64.604-9.5639 129.74-6.3254 194.83l9.9805-0.62378c-4.8503-64.338-3.4794-129.19 1.3922-193.76 5.0057-66.313 13.839-132.38 25.942-197.87z"
- inkscape:path-effect="#path-effect4469-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
- />
- <path
- id="path5515"
- style="fill:url(#linearGradient13536);fill-rule:evenodd"
- d="m-828.33 539.2c1.1072 73.893-6.5568 147.5-13.287 221.11-6.6726 72.854-12.66 146.22-7.8606 219.7l9.9705-0.76696c-6.4194-72.368-2.1025-145.58 2.8998-218.53 5.0658-73.706 11.059-147.66 8.2773-221.51z"
- inkscape:path-effect="#path-effect4473-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
- />
- <path
- id="path5517"
- style="fill:url(#linearGradient13538);fill-rule:evenodd"
- d="m-1050.6 539.2c10.951 59.284 24.534 118.08 36.527 177.12 12.038 59.271 22.574 118.89 27.184 178.91l9.9589-0.90536c-6.3485-60.519-18.573-120.06-32.266-179.06-13.637-58.769-28.821-117.1-41.404-176.06z"
- inkscape:path-effect="#path-effect4477-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
- />
- <path
- id="path5519"
- style="fill:url(#linearGradient13540);fill-rule:evenodd"
- d="m-941.46 486.68c-28.786 81.012-46.448 165.92-55.219 251.62-8.7905 85.783-8.8078 173.01 5.8528 258.39l9.8387-1.7889c-16.128-83.955-17.798-170.54-10.715-256.14 7.0871-85.508 23.031-170.53 50.243-252.08z"
- inkscape:path-effect="#path-effect4481-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
- />
- <path
- id="path5521"
- style="fill:url(#linearGradient13542);fill-rule:evenodd"
- d="m-913.18 591.73c-15.457 57.384-23.34 116.7-27.572 176.07-4.2627 59.759-4.8785 119.71-5.7121 179.5h10c-0.8336-59.816-1.8976-119.56 0.688-179.21 2.5724-59.272 8.7496-118.57 22.596-176.36z"
- inkscape:path-effect="#path-effect4485-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
- />
- <path
- id="path5523"
- style="fill:url(#linearGradient13544);fill-rule:evenodd"
- d="m-876.81 563.45c1.0452 57.788 0.66111 115.58 2.1167 173.41 1.4325 57.026 4.5566 114.2 13.154 170.86l9.8639-1.644c-10.14-55.759-14.899-112.56-17.987-169.42-3.1292-57.659-4.4251-115.48-7.1477-173.21z"
- inkscape:path-effect="#path-effect4489-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
- />
- <path
- id="path5525"
- style="fill:url(#linearGradient13546);fill-rule:evenodd"
- d="m-779.84 555.37c-4.2179 54.474-10.101 108.78-15.14 163.21-5.0472 54.502-9.226 109.18-10.063 164.08h10c-0.83713-54.498 1.6673-109.12 5.045-163.7 3.3748-54.506 7.6025-109.02 10.158-163.59z"
- inkscape:path-effect="#path-effect4493-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
- />
- <path
- id="path5527"
- style="fill:url(#linearGradient13548);fill-rule:evenodd"
- d="m-735.39 559.41c-2.3319 5.1584-3.935 10.626-5.3882 16.101-2.0073 7.5596-3.6207 15.222-5.086 22.904-3.838 20.121-6.6608 40.429-9.221 60.746-0.00001 0.00001-0.00001 0.00001-0.00001 0.00002-3.002 23.819-5.546 47.695-7.8896 71.584-2.3378 23.829-4.4604 47.678-6.482 71.531-1.7116 20.196-3.3385 40.394-4.9968 60.582 0 0.00001 0 0.00001-0.00001 0.00001-0.62401 7.5964-1.2513 15.187-1.9162 22.767-0.46732 5.326-0.93848 10.626-1.5106 15.888-0.18058 1.6576-0.36508 3.2824-0.59038 4.8678l-0.00001 0.00001c-0.0765 0.53652-0.153 1.0441-0.24009 1.5204-0.0665 0.34261-0.10856 0.58151-0.15232 0.70852-0.0202 0.0455 0.003-0.0141 0.0599-0.18269 0.00011 0.00002 0.00021 0.00004 0.00032 0.00006 1.1416 0.21508 2.6439 0.0308 4.489-0.57047 0.00008-0.00003 0.00017-0.00006 0.00026-0.00009 0.13377 0.083 0.26428 0.16273 0.39069 0.23277 0.1035 0.0573 0.20473 0.10642 0.30824 0.14876 0.13684 0.056 0.27702 0.10288 0.41831 0.14664 0.00004 0.00001 0.00009 0.00003 0.00013 0.00004 0.20865 0.0646 0.41937 0.12123 0.62934 0.17222 0.66234 0.16085 1.3165 0.26476 1.9502 0.31723h0.00006c0.004 0.0201 0.002-0.0186-0.0127-0.11493-0.0406-0.29437-0.0659-0.66129-0.0977-1.0981-0.10193-1.4865-0.13757-3.0367-0.17231-4.6477-0.0525-2.5414-0.0683-5.0989-0.0743-7.6724-0.019-8.2505 0.0725-16.518 0.17773-24.804h-10c0.10518 8.2972 0.22465 16.614 0.45525 24.945 0.0718 2.5976 0.15468 5.2112 0.27547 7.8387 0.074 1.6324 0.15922 3.3267 0.32067 5.0747 0.0443 0.49793 0.10476 1.0656 0.20305 1.6987 0.0306 0.20565 0.0791 0.46821 0.15133 0.78592 0.00005 0.00002 0.00009 0.00003 0.00014 0.00005 0.67836 0.24823 1.382 0.54796 2.1233 0.89343 0.235 0.10953 0.47386 0.22374 0.71938 0.34026 0.00005 0.00003 0.0001 0.00005 0.00015 0.00008 0.16626 0.0789 0.33574 0.15939 0.51067 0.23554 0.13233 0.0576 0.26816 0.11117 0.40291 0.15919 0.16458 0.0586 0.32686 0.1116 0.48767 0.16535 0.00018-0.00007 0.00037-0.00014 0.00055-0.0002 1.9398-0.70377 3.4965-1.0212 4.6896-0.93597 0.00011 0.00001 0.00022 0.00001 0.00033 0.00002 0.14367-0.386 0.23093-0.67097 0.27011-0.85167 0.14843-0.60557 0.23822-1.1137 0.29598-1.5182 0.0994-0.64538 0.17767-1.2645 0.24567-1.8558v-0.00003c0.20228-1.7507 0.35471-3.4731 0.49453-5.1636 0.44705-5.3881 0.78759-10.756 1.1194-16.099 0.47386-7.6225 0.90902-15.241 1.34-22.853 0-0.00001 0.00001-0.00002 0.00001-0.00002 1.1455-20.231 2.2584-40.457 3.4555-60.672 1.4141-23.88 2.9285-47.75 4.6585-71.604 1.7345-23.916 3.6681-47.813 6.061-71.668 2.0421-20.353 4.3414-40.679 7.6619-60.857 1.2679-7.7039 2.6819-15.384 4.4932-22.978 1.3132-5.5028 2.7697-10.991 4.9699-16.206z"
- inkscape:path-effect="#path-effect4497-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
- />
- <path
- id="path5529"
- style="fill:url(#linearGradient13550);fill-rule:evenodd"
- d="m-892.97 583.65c5.171 59.038 19.963 116.95 36.973 173.79 17.085 57.124 36.463 113.52 51.135 170.97l9.6529-2.612c-16.438-57.524-37.389-113.36-56.029-169.85-18.539-56.218-34.906-113.42-41.731-172.29z"
- inkscape:path-effect="#path-effect4505-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
- />
- <path
- id="path5531"
- style="fill:url(#linearGradient13552);fill-rule:evenodd"
- d="m-965.71 620.02c-0.78849 16.199-0.70433 32.441-0.2236 48.661 0.55321 18.672 1.6652 37.328 3.0949 55.956v0.00002c3.1164 40.604 7.713 81.094 13.039 121.47v0.00002c5.0115 37.997 10.706 75.91 16.991 113.73 4.5182 27.19 9.2673 54.374 14.738 81.456l9.778-2.0952c-6.0697-26.774-11.438-53.742-16.589-80.775-7.1587-37.577-13.732-75.27-19.628-113.08v-0.00001c-6.265-40.176-11.805-80.467-15.871-120.93-1.8653-18.561-3.4146-37.155-4.4064-55.786-0.86148-16.186-1.3287-32.4-0.92224-48.613z"
- inkscape:path-effect="#path-effect4509-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
- />
- <path
- id="path5533"
- style="fill:url(#linearGradient13554);fill-rule:evenodd"
- d="m-929.34 660.42c11.628 36.946 18.13 75.268 22.783 113.68 5.0349 41.586 7.6665 83.419 9.5282 125.28v0.00001c1.7621 39.648 2.7094 79.35 4.2509 119.08 0.66751 17.213 1.4503 34.447 2.6419 51.685 1.001 14.504 2.2703 29.058 4.3413 43.578l9.8837-1.5206c-2.3338-14.11-3.8937-28.409-5.2063-42.78-1.557-17.066-2.7112-34.197-3.7543-51.356-2.4072-39.611-4.2261-79.311-6.8611-118.98v-0.00002c-2.7806-41.879-6.3419-83.761-12.3-125.32-5.499-38.381-12.873-76.662-25.308-113.34z"
- inkscape:path-effect="#path-effect4513-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
- />
- <path
- id="path5535"
- style="fill:url(#linearGradient13556);fill-rule:evenodd"
- d="m-816.2 672.54c-3.961 64.296-11.826 128.23-18.91 192.28-6.8852 62.214-13.545 124.65-14.375 187.54h10c-0.82965-62.271 4.18-124.69 9.4228-187.05 5.3991-64.171 11.589-128.39 13.862-192.77z"
- inkscape:path-effect="#path-effect4517-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
- />
- <path
- id="path5537"
- style="fill:url(#linearGradient13558);fill-rule:evenodd"
- d="m-775.8 729.11c-0.097 12.252-0.46904 24.497-0.90546 36.74-0.55289 15.509-1.2429 31.011-1.9898 46.512-1.699 35.26-3.6964 70.503-5.7693 105.75v0.00001c-1.8634 31.679-3.8166 63.356-5.7166 95.043-0.66205 11.04-1.3227 22.088-1.9245 33.148-0.20243 3.7194-0.39929 7.4481-0.56938 11.188-0.10452 2.2762-0.21174 4.6065-0.24666 6.9943h10c-0.0349-2.1761 0.003-4.4086 0.0381-6.6942 0.0578-3.6957 0.1429-7.4006 0.23413-11.114 0.27124-11.04 0.60201-22.086 0.93482-33.141 0.95501-31.72 1.9638-63.446 2.883-95.177v-0.00001c1.0225-35.297 1.9694-70.601 2.6176-105.91v-0.00002c0.28494-15.522 0.51295-31.047 0.60365-46.571 0.0716-12.254 0.0786-24.513-0.18943-36.762z"
- inkscape:path-effect="#path-effect4521-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
- />
- <path
- id="path5539"
- style="fill:url(#linearGradient13560);fill-rule:evenodd"
- d="m-743.47 664.46c-16.291 106.04-35.472 211.71-45.391 318.82l9.9705 0.76696c6.5354-106.79 22.432-213.1 35.421-319.59z"
- inkscape:path-effect="#path-effect4525-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
- />
- <path
- id="path5541"
- style="fill:url(#linearGradient13562);fill-rule:evenodd"
- d="m-707.11 636.18c-7.809 66.383-18.994 132.27-29.449 198.31-5.1628 32.604-10.226 65.242-14.647 98.001v0.00001c-3.9074 28.941-7.3776 58.008-9.3828 87.272l9.9846 0.5548c1.23-28.97 3.9337-57.937 7.0808-86.891v-0.00002c3.562-32.761 7.7752-65.477 12.092-98.193v-0.00001c8.7427-66.247 18.231-132.49 24.322-199.05z"
- inkscape:path-effect="#path-effect4529-7"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
- />
- <path
- id="path5543"
- style="fill:url(#linearGradient13564);fill-rule:evenodd"
- d="m-832.37 603.85c-23.101 60.319-40.463 122.95-51.332 186.79-10.847 63.684-15.255 128.76-10.216 193.48l9.9589-0.90536c-6.6271-63.601-3.9382-128.19 5.2025-191.8 9.1672-63.766 24.851-126.67 46.387-187.56z"
- inkscape:path-effect="#path-effect4533-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
- />
- <path
- id="path5545"
- style="fill:url(#linearGradient13566);fill-rule:evenodd"
- d="m-771.76 648.3c0.4349 74.237-6.4541 148.22-13.66 222.1-7.2088 73.85-14.742 147.86-15.584 222.37h10c-0.84144-73.902 5.0218-147.93 10.566-221.94 5.5528-74.038 10.779-148.32 8.6773-222.53z"
- inkscape:path-effect="#path-effect4537-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
- />
- <path
- id="path5547"
- style="fill:url(#linearGradient13568);fill-rule:evenodd"
- d="m-876.81 716.99c2.775 28.034 3.0496 56.22 2.7479 84.372v0.00002c-0.30645 28.46-1.24 56.933-1.0057 85.482 0.22636 27.988 1.5735 56.11 6.031 83.958 4.3804 27.385 11.964 54.491 24.12 79.755l8.9443-4.4722c-12.388-23.826-20.522-49.915-25.628-76.588-5.1936-27.149-7.3491-54.935-8.4113-82.769-1.08-28.391-0.99407-56.882-1.5354-85.376v-0.00002c-0.53401-28.184-1.6549-56.422-5.2628-84.362z"
- inkscape:path-effect="#path-effect4541-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
- />
- <path
- id="path5549"
- style="fill:url(#linearGradient13570);fill-rule:evenodd"
- d="m-796 664.46c-7.5868 128.21-24.013 255.58-37.304 383.41l9.9589 0.9054c9.9613-127.96 23.088-255.95 27.345-384.31z"
- inkscape:path-effect="#path-effect4545-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
- />
- <path
- id="path5551"
- style="fill:url(#linearGradient13572);fill-rule:evenodd"
- d="m-1026.3 680.63c1.0537 65.848 10.696 131.34 21.12 196.39 10.448 65.254 21.81 130.4 26.425 195.96l9.9655-0.8304c-6.3565-66.098-19.381-131.06-31.471-195.98-12.045-64.725-23.322-129.74-26.039-195.54z"
- inkscape:path-effect="#path-effect4549-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
- />
- <path
- id="path5553"
- style="fill:url(#linearGradient13574);fill-rule:evenodd"
- d="m-973.79 749.32c11.467 48.568 17.963 98.083 23.319 147.66 5.3202 49.278 9.4411 98.743 16.186 148.06l9.8837-1.5206c-8.339-48.721-14.113-98.013-21.093-147.17-7.0178-49.447-15.208-98.881-28.295-147.04z"
- inkscape:path-effect="#path-effect4553-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
- />
- <path
- id="path5555"
- style="fill:url(#linearGradient13576);fill-rule:evenodd"
- d="m-1062.7 611.94c0.4653 65.794 10.346 131.25 20.995 196.2 10.695 65.295 22.35 130.49 26.547 196.12l9.9706-0.767c-5.9473-66.25-19.268-131.27-31.607-196.23-12.265-64.621-23.779-129.57-25.906-195.33z"
- inkscape:path-effect="#path-effect4557-2"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
- />
- <path
- id="path5557"
- style="fill:url(#linearGradient13578);fill-rule:evenodd"
- d="m-1103.1 636.18c35.633 125.29 56.106 254.51 63.703 384.21l9.9746-0.7124c-10.962-130.12-34.85-259.17-73.678-383.5z"
- inkscape:path-effect="#path-effect4561-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
- />
- <path
- id="path5559"
- style="fill:url(#linearGradient13580);fill-rule:evenodd"
- d="m-1022.3 797.8c13.218 87.043 20.917 174.97 19.244 262.64h10c-1.6732-88.38-12.74-176.16-29.244-262.64z"
- inkscape:path-effect="#path-effect4565-5"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
- />
- <path
- id="path5561"
- style="fill:url(#linearGradient13582);fill-rule:evenodd"
- d="m-1002.1 854.37c-8.7311 42.662-10.741 86.622-9.0315 130.28 1.6896 43.223 6.8813 86.226 12.163 129.03l9.8995-1.4142c-6.9123-42.554-13.723-85.052-17.046-127.91-3.3521-43.274-3.0687-87.019 4.0154-129.98z"
- inkscape:path-effect="#path-effect4569-9"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
- />
- <path
- id="path5563"
- style="fill:url(#linearGradient13584);fill-rule:evenodd"
- d="m-953.58 886.7c-0.0621 0.0202-0.0987 0.0856-0.12846 0.14386-0.0562 0.10825-0.0926 0.22597-0.1255 0.34307-0.11594 0.41234-0.18079 0.83807-0.24159 1.2611-0.22318 1.5504-0.33607 3.1164-0.44332 4.6772v0.00001c-0.385 5.5978-0.55116 11.212-0.69856 16.818-0.47545 18.073-0.51769 36.163-0.40171 54.244 0.13682 21.366 0.5391 42.745 1.3942 64.13 0.38887 9.7264 0.87378 19.464 1.5511 29.209 0.54955 7.9254 1.2114 15.895 2.2332 23.884l9.8837-1.5206c-1.3817-7.6335-2.4267-15.386-3.3761-23.196-1.1639-9.5827-2.1408-19.207-3.0252-28.854-1.9443-21.21-3.4411-42.482-4.6744-63.78v-0.00001c-1.0436-18.028-1.9302-36.061-2.3838-54.115v-0.00001c-0.14064-5.6036-0.26337-11.203-0.16671-16.804 0.0271-1.5636 0.0588-3.1252 0.20167-4.6806 0.0392-0.4251 0.0813-0.8497 0.17546-1.2651 0.0268-0.11812 0.0565-0.23586 0.10664-0.34573 0.0275-0.0592 0.0584-0.12494 0.11941-0.14828z"
- inkscape:path-effect="#path-effect4573-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
- />
- <path
- id="path5565"
- style="fill:url(#linearGradient13586);fill-rule:evenodd"
- d="m-953.58 850.33c-13.826 26.58-20.852 56.456-24.424 86.389-3.639 30.385-3.9872 61.041-4.8199 91.398h10c-0.83271-30.466-2.185-60.761-0.2393-90.942 1.9281-29.713 7.1448-59.543 19.483-86.845z"
- inkscape:path-effect="#path-effect4577-1"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
- />
- <path
- id="path5567"
- style="fill:url(#linearGradient13588);fill-rule:evenodd"
- d="m-909.14 838.21c4.6797 40.194 2.8502 80.725-0.36133 121-3.2248 40.311-7.8366 80.633-8.6793 121.43h10c-0.84266-40.177 2.105-80.614 3.6686-121.14 1.5731-40.493 1.7023-81.332-4.628-121.3z"
- inkscape:path-effect="#path-effect4581-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
- />
- <path
- id="path5569"
- style="fill:url(#linearGradient13590);fill-rule:evenodd"
- d="m-860.65 846.29c-5.9206 67.242-15.441 134.16-17.122 202.03h10c-1.6805-67.093 4.528-134.58 7.1218-202.03z"
- inkscape:path-effect="#path-effect4585-3"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
- />
- <path
- id="path5571"
- style="fill:url(#linearGradient13592);fill-rule:evenodd"
- d="m-787.92 842.25c-9.4933 70.922-15.454 142.42-17.122 214.15h10c-1.6677-71.335 0.94181-142.87 7.1218-214.15z"
- inkscape:path-effect="#path-effect4589-4"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
- />
- <path
- id="path5573"
- style="fill:url(#linearGradient13594);fill-rule:evenodd"
- d="m-775.8 1044.3c2.416-29.418 4.9823-58.825 8.3556-88.124 3.1586-31.283 6.5972-62.479 11.851-93.132v0.00001c3.9172 22.555 2.3772 45.898-0.93861 69.056-2.1157 23.682-5.8676 47.343-8.091 71.411l9.9705 0.767c1.4505-23.692 4.4772-47.515 5.8894-71.604 0.13168-23.526-0.95565-47.554-6.8378-70.772 0-0.00001-0.00001-0.00001-0.00001-0.00002-7.1406 31.138-11.468 62.577-14.553 94.006 0 0 0 0.00001-0.00001 0.00001-2.4747 29.438-4.1356 58.915-5.6459 88.393z"
- inkscape:path-effect="#path-effect4593-0"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -775.79716,1044.281 c 3.40919,-51.13789 8.52518,-123.60906 20.20305,-181.8275 9.62955,44.98048 -0.41715,94.31638 -4.04061,141.4214"
- />
- <path
- id="path5575"
- style="fill:url(#linearGradient13596);fill-rule:evenodd"
- d="m-719.23 765.48c-10.019 83.814-26.816 166.51-41.307 249.76l9.8837 1.5206c11.174-83.573 24.722-167.13 31.424-251.28z"
- inkscape:path-effect="#path-effect4597-6"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
- />
- <path
- id="path5577"
- style="fill:url(#linearGradient13598);fill-rule:evenodd"
- d="m-715.19 510.92c-30.133 136.48-47.776 276.04-49.447 416.18h10c-1.6706-139.38 12.577-279.02 39.447-416.18z"
- inkscape:path-effect="#path-effect4601-8"
- inkscape:connector-curvature="0"
- inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
- />
- </g
- >
- </g
- >
- <metadata
- >
- <rdf:RDF
- >
- <cc:Work
- >
- <dc:format
- >image/svg+xml</dc:format
- >
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage"
- />
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/publicdomain/"
- />
- <dc:publisher
- >
- <cc:Agent
- rdf:about="http://openclipart.org/"
- >
- <dc:title
- >Openclipart</dc:title
- >
- </cc:Agent
- >
- </dc:publisher
- >
- <dc:title
- >egg in grass</dc:title
- >
- <dc:date
- >2013-03-02T16:26:05</dc:date
- >
- <dc:description
- >Three eggs in grass</dc:description
- >
- <dc:source
- >https://openclipart.org/detail/175421/egg-in-grass-by-jarda-175421</dc:source
- >
- <dc:creator
- >
- <cc:Agent
- >
- <dc:title
- >jarda</dc:title
- >
- </cc:Agent
- >
- </dc:creator
- >
- <dc:subject
- >
- <rdf:Bag
- >
- <rdf:li
- >easter</rdf:li
- >
- <rdf:li
- >egg</rdf:li
- >
- <rdf:li
- >eggs</rdf:li
- >
- <rdf:li
- >grass</rdf:li
- >
- </rdf:Bag
- >
- </dc:subject
- >
- </cc:Work
- >
- <cc:License
- rdf:about="http://creativecommons.org/licenses/publicdomain/"
- >
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Reproduction"
- />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Distribution"
- />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
- />
- </cc:License
- >
- </rdf:RDF
- >
- </metadata
- >
- </svg
- >
|