eggs-in-grass.svg 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  5. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6. xmlns="http://www.w3.org/2000/svg"
  7. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  8. xmlns:cc="http://creativecommons.org/ns#"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:dc="http://purl.org/dc/elements/1.1/"
  11. xmlns:svg="http://www.w3.org/2000/svg"
  12. xmlns:ns1="http://sozi.baierouge.fr"
  13. id="svg2"
  14. sodipodi:docname="vejceš.svg"
  15. viewBox="0 0 353.12 272.58"
  16. version="1.1"
  17. inkscape:version="0.48.3.1 r9886"
  18. inkscape:label="Pozadí"
  19. >
  20. <defs
  21. id="defs3"
  22. >
  23. <linearGradient
  24. id="linearGradient3754"
  25. >
  26. <stop
  27. id="stop3756"
  28. style="stop-color:#fff1e8"
  29. offset="0"
  30. />
  31. <stop
  32. id="stop6228"
  33. style="stop-color:#ffbb8e"
  34. offset=".5"
  35. />
  36. <stop
  37. id="stop3758"
  38. style="stop-color:#793100"
  39. offset="1"
  40. />
  41. </linearGradient
  42. >
  43. <filter
  44. id="filter3827"
  45. height="1.7083"
  46. width="1.1931"
  47. color-interpolation-filters="sRGB"
  48. y="-.35413"
  49. x="-.096541"
  50. inkscape:collect="always"
  51. >
  52. <feGaussianBlur
  53. id="feGaussianBlur3829"
  54. stdDeviation="34.84401"
  55. inkscape:collect="always"
  56. />
  57. </filter
  58. >
  59. <filter
  60. id="filter5769-0"
  61. height="1.9026"
  62. width="1.4103"
  63. color-interpolation-filters="sRGB"
  64. y="-.45132"
  65. x="-.20514"
  66. inkscape:collect="always"
  67. >
  68. <feGaussianBlur
  69. id="feGaussianBlur5771-9"
  70. stdDeviation="21.491357"
  71. inkscape:collect="always"
  72. />
  73. </filter
  74. >
  75. <filter
  76. id="filter6164-4"
  77. height="1.3449"
  78. width="1.1767"
  79. color-interpolation-filters="sRGB"
  80. y="-.17246"
  81. x="-.088362"
  82. inkscape:collect="always"
  83. >
  84. <feGaussianBlur
  85. id="feGaussianBlur6166-8"
  86. stdDeviation="37.981259"
  87. inkscape:collect="always"
  88. />
  89. </filter
  90. >
  91. <linearGradient
  92. id="linearGradient4603-2"
  93. >
  94. <stop
  95. id="stop4605-4"
  96. style="stop-color:#005500"
  97. offset="0"
  98. />
  99. <stop
  100. id="stop4607-5"
  101. style="stop-color:#001700"
  102. offset="1"
  103. />
  104. </linearGradient
  105. >
  106. <linearGradient
  107. id="linearGradient13520"
  108. y2="525.27"
  109. xlink:href="#linearGradient4603-2"
  110. gradientUnits="userSpaceOnUse"
  111. x2="-948.6"
  112. y1="525.27"
  113. x1="-1034.4"
  114. inkscape:collect="always"
  115. />
  116. <linearGradient
  117. id="linearGradient13522"
  118. y2="553.7"
  119. xlink:href="#linearGradient4603-2"
  120. gradientUnits="userSpaceOnUse"
  121. x2="-920.35"
  122. y1="553.7"
  123. x1="-942.17"
  124. inkscape:collect="always"
  125. />
  126. <linearGradient
  127. id="linearGradient13524"
  128. y2="576.29"
  129. xlink:href="#linearGradient4603-2"
  130. gradientUnits="userSpaceOnUse"
  131. x2="-880.1"
  132. y1="576.29"
  133. x1="-903.75"
  134. inkscape:collect="always"
  135. />
  136. <linearGradient
  137. id="linearGradient13526"
  138. y2="604.38"
  139. xlink:href="#linearGradient4603-2"
  140. gradientUnits="userSpaceOnUse"
  141. x2="-855.76"
  142. y1="604.38"
  143. x1="-881.14"
  144. inkscape:collect="always"
  145. />
  146. <linearGradient
  147. id="linearGradient13528"
  148. y2="674.95"
  149. xlink:href="#linearGradient4603-2"
  150. gradientUnits="userSpaceOnUse"
  151. x2="-795.1"
  152. y1="674.95"
  153. x1="-819.55"
  154. inkscape:collect="always"
  155. />
  156. <linearGradient
  157. id="linearGradient13530"
  158. y2="731.49"
  159. xlink:href="#linearGradient4603-2"
  160. gradientUnits="userSpaceOnUse"
  161. x2="-936.51"
  162. y1="731.49"
  163. x1="-1034.4"
  164. inkscape:collect="always"
  165. />
  166. <linearGradient
  167. id="linearGradient13532"
  168. y2="692.97"
  169. xlink:href="#linearGradient4603-2"
  170. gradientUnits="userSpaceOnUse"
  171. x2="-908.2"
  172. y1="692.97"
  173. x1="-945.5"
  174. inkscape:collect="always"
  175. />
  176. <linearGradient
  177. id="linearGradient13534"
  178. y2="703.01"
  179. xlink:href="#linearGradient4603-2"
  180. gradientUnits="userSpaceOnUse"
  181. x2="-844.49"
  182. y1="703.01"
  183. x1="-883.11"
  184. inkscape:collect="always"
  185. />
  186. <linearGradient
  187. id="linearGradient13536"
  188. y2="759.61"
  189. xlink:href="#linearGradient4603-2"
  190. gradientUnits="userSpaceOnUse"
  191. x2="-827.62"
  192. y1="759.61"
  193. x1="-851.21"
  194. inkscape:collect="always"
  195. />
  196. <linearGradient
  197. id="linearGradient13538"
  198. y2="717.22"
  199. xlink:href="#linearGradient4603-2"
  200. gradientUnits="userSpaceOnUse"
  201. x2="-976.89"
  202. y1="717.22"
  203. x1="-1050.6"
  204. inkscape:collect="always"
  205. />
  206. <linearGradient
  207. id="linearGradient13540"
  208. y2="741.68"
  209. xlink:href="#linearGradient4603-2"
  210. gradientUnits="userSpaceOnUse"
  211. x2="-941.46"
  212. y1="741.68"
  213. x1="-1002.7"
  214. inkscape:collect="always"
  215. />
  216. <linearGradient
  217. id="linearGradient13542"
  218. y2="769.52"
  219. xlink:href="#linearGradient4603-2"
  220. gradientUnits="userSpaceOnUse"
  221. x2="-913.18"
  222. y1="769.52"
  223. x1="-946.46"
  224. inkscape:collect="always"
  225. />
  226. <linearGradient
  227. id="linearGradient13544"
  228. y2="735.59"
  229. xlink:href="#linearGradient4603-2"
  230. gradientUnits="userSpaceOnUse"
  231. x2="-851.68"
  232. y1="735.59"
  233. x1="-876.81"
  234. inkscape:collect="always"
  235. />
  236. <linearGradient
  237. id="linearGradient13546"
  238. y2="719.01"
  239. xlink:href="#linearGradient4603-2"
  240. gradientUnits="userSpaceOnUse"
  241. x2="-779.84"
  242. y1="719.01"
  243. x1="-805.04"
  244. inkscape:collect="always"
  245. />
  246. <linearGradient
  247. id="linearGradient13548"
  248. y2="736.04"
  249. xlink:href="#linearGradient4603-2"
  250. gradientUnits="userSpaceOnUse"
  251. x2="-735.39"
  252. y1="736.04"
  253. x1="-780.8"
  254. inkscape:collect="always"
  255. />
  256. <linearGradient
  257. id="linearGradient13550"
  258. y2="756.03"
  259. xlink:href="#linearGradient4603-2"
  260. gradientUnits="userSpaceOnUse"
  261. x2="-795.21"
  262. y1="756.03"
  263. x1="-892.97"
  264. inkscape:collect="always"
  265. />
  266. <linearGradient
  267. id="linearGradient13552"
  268. y2="830.65"
  269. xlink:href="#linearGradient4603-2"
  270. gradientUnits="userSpaceOnUse"
  271. x2="-908.29"
  272. y1="830.65"
  273. x1="-966.3"
  274. inkscape:collect="always"
  275. />
  276. <linearGradient
  277. id="linearGradient13554"
  278. y2="887.08"
  279. xlink:href="#linearGradient4603-2"
  280. gradientUnits="userSpaceOnUse"
  281. x2="-875.91"
  282. y1="887.08"
  283. x1="-929.34"
  284. inkscape:collect="always"
  285. />
  286. <linearGradient
  287. id="linearGradient13556"
  288. y2="862.45"
  289. xlink:href="#linearGradient4603-2"
  290. gradientUnits="userSpaceOnUse"
  291. x2="-816.2"
  292. y1="862.45"
  293. x1="-849.49"
  294. inkscape:collect="always"
  295. />
  296. <linearGradient
  297. id="linearGradient13558"
  298. y2="896.8"
  299. xlink:href="#linearGradient4603-2"
  300. gradientUnits="userSpaceOnUse"
  301. x2="-775.57"
  302. y1="896.8"
  303. x1="-792.92"
  304. inkscape:collect="always"
  305. />
  306. <linearGradient
  307. id="linearGradient13560"
  308. y2="824.26"
  309. xlink:href="#linearGradient4603-2"
  310. gradientUnits="userSpaceOnUse"
  311. x2="-743.47"
  312. y1="824.26"
  313. x1="-788.86"
  314. inkscape:collect="always"
  315. />
  316. <linearGradient
  317. id="linearGradient13562"
  318. y2="828.25"
  319. xlink:href="#linearGradient4603-2"
  320. gradientUnits="userSpaceOnUse"
  321. x2="-707.11"
  322. y1="828.25"
  323. x1="-760.59"
  324. inkscape:collect="always"
  325. />
  326. <linearGradient
  327. id="linearGradient13564"
  328. y2="793.99"
  329. xlink:href="#linearGradient4603-2"
  330. gradientUnits="userSpaceOnUse"
  331. x2="-832.37"
  332. y1="793.99"
  333. x1="-895.99"
  334. inkscape:collect="always"
  335. />
  336. <linearGradient
  337. id="linearGradient13566"
  338. y2="870.53"
  339. xlink:href="#linearGradient4603-2"
  340. gradientUnits="userSpaceOnUse"
  341. x2="-771.28"
  342. y1="870.53"
  343. x1="-801"
  344. inkscape:collect="always"
  345. />
  346. <linearGradient
  347. id="linearGradient13568"
  348. y2="883.77"
  349. xlink:href="#linearGradient4603-2"
  350. gradientUnits="userSpaceOnUse"
  351. x2="-835.97"
  352. y1="883.77"
  353. x1="-876.81"
  354. inkscape:collect="always"
  355. />
  356. <linearGradient
  357. id="linearGradient13570"
  358. y2="856.62"
  359. xlink:href="#linearGradient4603-2"
  360. gradientUnits="userSpaceOnUse"
  361. x2="-796"
  362. y1="856.62"
  363. x1="-833.3"
  364. inkscape:collect="always"
  365. />
  366. <linearGradient
  367. id="linearGradient13572"
  368. y2="876.8"
  369. xlink:href="#linearGradient4603-2"
  370. gradientUnits="userSpaceOnUse"
  371. x2="-968.8"
  372. y1="876.8"
  373. x1="-1026.3"
  374. inkscape:collect="always"
  375. />
  376. <linearGradient
  377. id="linearGradient13574"
  378. y2="897.18"
  379. xlink:href="#linearGradient4603-2"
  380. gradientUnits="userSpaceOnUse"
  381. x2="-924.4"
  382. y1="897.18"
  383. x1="-973.79"
  384. inkscape:collect="always"
  385. />
  386. <linearGradient
  387. id="linearGradient13576"
  388. y2="808.1"
  389. xlink:href="#linearGradient4603-2"
  390. gradientUnits="userSpaceOnUse"
  391. x2="-1005.2"
  392. y1="808.1"
  393. x1="-1062.7"
  394. inkscape:collect="always"
  395. />
  396. <linearGradient
  397. id="linearGradient13578"
  398. y2="828.29"
  399. xlink:href="#linearGradient4603-2"
  400. gradientUnits="userSpaceOnUse"
  401. x2="-1029.4"
  402. y1="828.29"
  403. x1="-1103.1"
  404. inkscape:collect="always"
  405. />
  406. <linearGradient
  407. id="linearGradient13580"
  408. y2="929.12"
  409. xlink:href="#linearGradient4603-2"
  410. gradientUnits="userSpaceOnUse"
  411. x2="-993.03"
  412. y1="929.12"
  413. x1="-1022.3"
  414. inkscape:collect="always"
  415. />
  416. <linearGradient
  417. id="linearGradient13582"
  418. y2="984.03"
  419. xlink:href="#linearGradient4603-2"
  420. gradientUnits="userSpaceOnUse"
  421. x2="-989.04"
  422. y1="984.03"
  423. x1="-1011.7"
  424. inkscape:collect="always"
  425. />
  426. <linearGradient
  427. id="linearGradient13584"
  428. y2="984.05"
  429. xlink:href="#linearGradient4603-2"
  430. gradientUnits="userSpaceOnUse"
  431. x2="-940.56"
  432. y1="984.05"
  433. x1="-955.68"
  434. inkscape:collect="always"
  435. />
  436. <linearGradient
  437. id="linearGradient13586"
  438. y2="939.23"
  439. xlink:href="#linearGradient4603-2"
  440. gradientUnits="userSpaceOnUse"
  441. x2="-953.58"
  442. y1="939.23"
  443. x1="-982.83"
  444. inkscape:collect="always"
  445. />
  446. <linearGradient
  447. id="linearGradient13588"
  448. y2="959.43"
  449. xlink:href="#linearGradient4603-2"
  450. gradientUnits="userSpaceOnUse"
  451. x2="-903.6"
  452. y1="959.43"
  453. x1="-918.18"
  454. inkscape:collect="always"
  455. />
  456. <linearGradient
  457. id="linearGradient13590"
  458. y2="947.31"
  459. xlink:href="#linearGradient4603-2"
  460. gradientUnits="userSpaceOnUse"
  461. x2="-860.65"
  462. y1="947.31"
  463. x1="-877.77"
  464. inkscape:collect="always"
  465. />
  466. <linearGradient
  467. id="linearGradient13592"
  468. y2="949.33"
  469. xlink:href="#linearGradient4603-2"
  470. gradientUnits="userSpaceOnUse"
  471. x2="-787.92"
  472. y1="949.33"
  473. x1="-805.04"
  474. inkscape:collect="always"
  475. />
  476. <linearGradient
  477. id="linearGradient13594"
  478. y2="953.08"
  479. xlink:href="#linearGradient4603-2"
  480. gradientUnits="userSpaceOnUse"
  481. x2="-748.75"
  482. y1="953.08"
  483. x1="-775.8"
  484. inkscape:collect="always"
  485. />
  486. <linearGradient
  487. id="linearGradient13596"
  488. y2="891.12"
  489. xlink:href="#linearGradient4603-2"
  490. gradientUnits="userSpaceOnUse"
  491. x2="-719.23"
  492. y1="891.12"
  493. x1="-760.54"
  494. inkscape:collect="always"
  495. />
  496. <linearGradient
  497. id="linearGradient13598"
  498. y2="719.01"
  499. xlink:href="#linearGradient4603-2"
  500. gradientUnits="userSpaceOnUse"
  501. x2="-715.19"
  502. y1="719.01"
  503. x1="-764.63"
  504. inkscape:collect="always"
  505. />
  506. <radialGradient
  507. id="radialGradient14254"
  508. xlink:href="#linearGradient3754"
  509. gradientUnits="userSpaceOnUse"
  510. cy="372.68"
  511. cx="367.25"
  512. gradientTransform="matrix(1.1909 -.18446 .20605 1.457 -152.14 -148.35)"
  513. r="184.29"
  514. inkscape:collect="always"
  515. />
  516. <radialGradient
  517. id="radialGradient14256"
  518. xlink:href="#linearGradient3754"
  519. gradientUnits="userSpaceOnUse"
  520. cy="386.13"
  521. cx="372.99"
  522. gradientTransform="matrix(1.1424 .028194 -.036452 1.6176 -38.709 -289.77)"
  523. r="184.29"
  524. inkscape:collect="always"
  525. />
  526. <radialGradient
  527. id="radialGradient14423"
  528. xlink:href="#linearGradient3754"
  529. gradientUnits="userSpaceOnUse"
  530. cy="521.33"
  531. cx="298.64"
  532. gradientTransform="matrix(.99997 -.0078510 .013094 1.8265 -6.8594 -406.38)"
  533. r="184.29"
  534. inkscape:collect="always"
  535. />
  536. </defs
  537. >
  538. <sodipodi:namedview
  539. id="base"
  540. fit-margin-left="10"
  541. inkscape:zoom="0.7060307"
  542. borderopacity="1.0"
  543. inkscape:current-layer="layer1"
  544. inkscape:cx="223.37346"
  545. inkscape:cy="284.80929"
  546. inkscape:window-maximized="1"
  547. showgrid="false"
  548. fit-margin-right="10"
  549. units="cm"
  550. inkscape:document-units="px"
  551. bordercolor="#666666"
  552. inkscape:window-x="1272"
  553. inkscape:window-y="-8"
  554. fit-margin-bottom="10"
  555. inkscape:window-width="1280"
  556. inkscape:pageopacity="0.0"
  557. inkscape:pageshadow="2"
  558. pagecolor="#ffffff"
  559. inkscape:window-height="962"
  560. fit-margin-top="10"
  561. />
  562. <g
  563. id="layer1"
  564. inkscape:label="vejce"
  565. inkscape:groupmode="layer"
  566. transform="translate(354.26 -189.65)"
  567. >
  568. <g
  569. id="g12280"
  570. transform="matrix(.26723 0 0 .25337 66.381 -127.97)"
  571. >
  572. <path
  573. id="path5971"
  574. 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"
  575. sodipodi:nodetypes="zzzzzzz"
  576. style="color:#000000;filter:url(#filter5769-0);fill:#374837"
  577. inkscape:connector-curvature="0"
  578. />
  579. <path
  580. id="path6094"
  581. 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"
  582. sodipodi:nodetypes="cccccccccccccccccc"
  583. style="color:#000000;fill-opacity:.88444;filter:url(#filter6164-4);fill:#008000"
  584. inkscape:connector-curvature="0"
  585. />
  586. </g
  587. >
  588. <path
  589. id="path3811"
  590. sodipodi:rx="184.28572"
  591. sodipodi:ry="271.42856"
  592. style="color:#000000;fill-opacity:.78431;filter:url(#filter3827);fill:#000000"
  593. sodipodi:type="arc"
  594. d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
  595. inkscape:transform-center-x="-49.28546"
  596. inkscape:transform-center-y="12.358414"
  597. transform="matrix(-.048163 .15949 -.40374 .00071922 46.343 297.63)"
  598. sodipodi:cy="472.36218"
  599. sodipodi:cx="384.28571"
  600. />
  601. <path
  602. id="path2984"
  603. sodipodi:rx="184.28572"
  604. sodipodi:ry="271.42856"
  605. style="color:#000000;fill:url(#radialGradient14254)"
  606. sodipodi:type="arc"
  607. d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
  608. transform="matrix(.26516 0 0 .23991 -265.22 157.45)"
  609. sodipodi:cy="472.36218"
  610. sodipodi:cx="384.28571"
  611. />
  612. <path
  613. id="path3762"
  614. sodipodi:rx="184.28572"
  615. sodipodi:ry="271.42856"
  616. style="color:#000000;fill:url(#radialGradient14256)"
  617. sodipodi:type="arc"
  618. d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
  619. transform="matrix(.25656 -.063419 .064001 .23213 -360.91 209.43)"
  620. sodipodi:cy="472.36218"
  621. sodipodi:cx="384.28571"
  622. />
  623. <path
  624. id="path3762-9"
  625. sodipodi:rx="184.28572"
  626. sodipodi:ry="271.42856"
  627. style="color:#000000;fill:url(#radialGradient14423)"
  628. sodipodi:type="arc"
  629. d="m568.57 472.36a184.29 271.43 0 1 1 -368.57 0 184.29 271.43 0 1 1 368.57 0z"
  630. inkscape:transform-center-x="-74.285714"
  631. inkscape:transform-center-y="45.714286"
  632. transform="matrix(.0012513 .25106 -.25337 .0011322 -29.139 225.13)"
  633. sodipodi:cy="472.36218"
  634. sodipodi:cx="384.28571"
  635. />
  636. <g
  637. id="g4689"
  638. transform="matrix(0.212 0 0 .18257 -51.737 213.92)"
  639. >
  640. <path
  641. id="path4439"
  642. style="fill-rule:evenodd;fill:url(#linearGradient13520)"
  643. 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"
  644. inkscape:connector-curvature="0"
  645. inkscape:path-effect="#path-effect4441-5"
  646. inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
  647. />
  648. <path
  649. id="path4443"
  650. style="fill-rule:evenodd;fill:url(#linearGradient13522)"
  651. 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"
  652. inkscape:connector-curvature="0"
  653. inkscape:path-effect="#path-effect4445-7"
  654. inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
  655. />
  656. <path
  657. id="path4447"
  658. style="fill-rule:evenodd;fill:url(#linearGradient13524)"
  659. 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"
  660. inkscape:connector-curvature="0"
  661. inkscape:path-effect="#path-effect4449-1"
  662. inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
  663. />
  664. <path
  665. id="path4451"
  666. style="fill-rule:evenodd;fill:url(#linearGradient13526)"
  667. 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"
  668. inkscape:connector-curvature="0"
  669. inkscape:path-effect="#path-effect4453-2"
  670. inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
  671. />
  672. <path
  673. id="path4455"
  674. style="fill-rule:evenodd;fill:url(#linearGradient13528)"
  675. 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"
  676. inkscape:connector-curvature="0"
  677. inkscape:path-effect="#path-effect4457-6"
  678. inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
  679. />
  680. <path
  681. id="path4459"
  682. style="fill-rule:evenodd;fill:url(#linearGradient13530)"
  683. 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"
  684. inkscape:connector-curvature="0"
  685. inkscape:path-effect="#path-effect4461-4"
  686. inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
  687. />
  688. <path
  689. id="path4463"
  690. style="fill-rule:evenodd;fill:url(#linearGradient13532)"
  691. 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"
  692. inkscape:connector-curvature="0"
  693. inkscape:path-effect="#path-effect4465-3"
  694. inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
  695. />
  696. <path
  697. id="path4467"
  698. style="fill-rule:evenodd;fill:url(#linearGradient13534)"
  699. 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"
  700. inkscape:connector-curvature="0"
  701. inkscape:path-effect="#path-effect4469-2"
  702. inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
  703. />
  704. <path
  705. id="path4471"
  706. style="fill-rule:evenodd;fill:url(#linearGradient13536)"
  707. 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"
  708. inkscape:connector-curvature="0"
  709. inkscape:path-effect="#path-effect4473-6"
  710. inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
  711. />
  712. <path
  713. id="path4475"
  714. style="fill-rule:evenodd;fill:url(#linearGradient13538)"
  715. 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"
  716. inkscape:connector-curvature="0"
  717. inkscape:path-effect="#path-effect4477-5"
  718. inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
  719. />
  720. <path
  721. id="path4479"
  722. style="fill-rule:evenodd;fill:url(#linearGradient13540)"
  723. 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"
  724. inkscape:connector-curvature="0"
  725. inkscape:path-effect="#path-effect4481-6"
  726. inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
  727. />
  728. <path
  729. id="path4483"
  730. style="fill-rule:evenodd;fill:url(#linearGradient13542)"
  731. 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"
  732. inkscape:connector-curvature="0"
  733. inkscape:path-effect="#path-effect4485-8"
  734. inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
  735. />
  736. <path
  737. id="path4487"
  738. style="fill-rule:evenodd;fill:url(#linearGradient13544)"
  739. 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"
  740. inkscape:connector-curvature="0"
  741. inkscape:path-effect="#path-effect4489-2"
  742. inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
  743. />
  744. <path
  745. id="path4491"
  746. style="fill-rule:evenodd;fill:url(#linearGradient13546)"
  747. 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"
  748. inkscape:connector-curvature="0"
  749. inkscape:path-effect="#path-effect4493-9"
  750. inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
  751. />
  752. <path
  753. id="path4495"
  754. style="fill-rule:evenodd;fill:url(#linearGradient13548)"
  755. 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"
  756. inkscape:connector-curvature="0"
  757. inkscape:path-effect="#path-effect4497-4"
  758. inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
  759. />
  760. <path
  761. id="path4503"
  762. style="fill-rule:evenodd;fill:url(#linearGradient13550)"
  763. 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"
  764. inkscape:connector-curvature="0"
  765. inkscape:path-effect="#path-effect4505-1"
  766. inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
  767. />
  768. <path
  769. id="path4507"
  770. style="fill-rule:evenodd;fill:url(#linearGradient13552)"
  771. 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"
  772. inkscape:connector-curvature="0"
  773. inkscape:path-effect="#path-effect4509-3"
  774. inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
  775. />
  776. <path
  777. id="path4511"
  778. style="fill-rule:evenodd;fill:url(#linearGradient13554)"
  779. 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"
  780. inkscape:connector-curvature="0"
  781. inkscape:path-effect="#path-effect4513-4"
  782. inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
  783. />
  784. <path
  785. id="path4515"
  786. style="fill-rule:evenodd;fill:url(#linearGradient13556)"
  787. 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"
  788. inkscape:connector-curvature="0"
  789. inkscape:path-effect="#path-effect4517-1"
  790. inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
  791. />
  792. <path
  793. id="path4519"
  794. style="fill-rule:evenodd;fill:url(#linearGradient13558)"
  795. 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"
  796. inkscape:connector-curvature="0"
  797. inkscape:path-effect="#path-effect4521-8"
  798. inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
  799. />
  800. <path
  801. id="path4523"
  802. style="fill-rule:evenodd;fill:url(#linearGradient13560)"
  803. 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"
  804. inkscape:connector-curvature="0"
  805. inkscape:path-effect="#path-effect4525-4"
  806. inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
  807. />
  808. <path
  809. id="path4527"
  810. style="fill-rule:evenodd;fill:url(#linearGradient13562)"
  811. 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"
  812. inkscape:connector-curvature="0"
  813. inkscape:path-effect="#path-effect4529-7"
  814. inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
  815. />
  816. <path
  817. id="path4531"
  818. style="fill-rule:evenodd;fill:url(#linearGradient13564)"
  819. 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"
  820. inkscape:connector-curvature="0"
  821. inkscape:path-effect="#path-effect4533-9"
  822. inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
  823. />
  824. <path
  825. id="path4535"
  826. style="fill-rule:evenodd;fill:url(#linearGradient13566)"
  827. 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"
  828. inkscape:connector-curvature="0"
  829. inkscape:path-effect="#path-effect4537-1"
  830. inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
  831. />
  832. <path
  833. id="path4539"
  834. style="fill-rule:evenodd;fill:url(#linearGradient13568)"
  835. 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"
  836. inkscape:connector-curvature="0"
  837. inkscape:path-effect="#path-effect4541-8"
  838. inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
  839. />
  840. <path
  841. id="path4543"
  842. style="fill-rule:evenodd;fill:url(#linearGradient13570)"
  843. 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"
  844. inkscape:connector-curvature="0"
  845. inkscape:path-effect="#path-effect4545-5"
  846. inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
  847. />
  848. <path
  849. id="path4547"
  850. style="fill-rule:evenodd;fill:url(#linearGradient13572)"
  851. 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"
  852. inkscape:connector-curvature="0"
  853. inkscape:path-effect="#path-effect4549-2"
  854. inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
  855. />
  856. <path
  857. id="path4551"
  858. style="fill-rule:evenodd;fill:url(#linearGradient13574)"
  859. 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"
  860. inkscape:connector-curvature="0"
  861. inkscape:path-effect="#path-effect4553-6"
  862. inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
  863. />
  864. <path
  865. id="path4555"
  866. style="fill-rule:evenodd;fill:url(#linearGradient13576)"
  867. 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"
  868. inkscape:connector-curvature="0"
  869. inkscape:path-effect="#path-effect4557-2"
  870. inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
  871. />
  872. <path
  873. id="path4559"
  874. style="fill-rule:evenodd;fill:url(#linearGradient13578)"
  875. 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"
  876. inkscape:connector-curvature="0"
  877. inkscape:path-effect="#path-effect4561-8"
  878. inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
  879. />
  880. <path
  881. id="path4563"
  882. style="fill-rule:evenodd;fill:url(#linearGradient13580)"
  883. 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"
  884. inkscape:connector-curvature="0"
  885. inkscape:path-effect="#path-effect4565-5"
  886. inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
  887. />
  888. <path
  889. id="path4567"
  890. style="fill-rule:evenodd;fill:url(#linearGradient13582)"
  891. 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"
  892. inkscape:connector-curvature="0"
  893. inkscape:path-effect="#path-effect4569-9"
  894. inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
  895. />
  896. <path
  897. id="path4571"
  898. style="fill-rule:evenodd;fill:url(#linearGradient13584)"
  899. 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"
  900. inkscape:connector-curvature="0"
  901. inkscape:path-effect="#path-effect4573-0"
  902. inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
  903. />
  904. <path
  905. id="path4575"
  906. style="fill-rule:evenodd;fill:url(#linearGradient13586)"
  907. 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"
  908. inkscape:connector-curvature="0"
  909. inkscape:path-effect="#path-effect4577-1"
  910. inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
  911. />
  912. <path
  913. id="path4579"
  914. style="fill-rule:evenodd;fill:url(#linearGradient13588)"
  915. 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"
  916. inkscape:connector-curvature="0"
  917. inkscape:path-effect="#path-effect4581-8"
  918. inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
  919. />
  920. <path
  921. id="path4583"
  922. style="fill-rule:evenodd;fill:url(#linearGradient13590)"
  923. 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"
  924. inkscape:connector-curvature="0"
  925. inkscape:path-effect="#path-effect4585-3"
  926. inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
  927. />
  928. <path
  929. id="path4587"
  930. style="fill-rule:evenodd;fill:url(#linearGradient13592)"
  931. 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"
  932. inkscape:connector-curvature="0"
  933. inkscape:path-effect="#path-effect4589-4"
  934. inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
  935. />
  936. <path
  937. id="path4591"
  938. style="fill-rule:evenodd;fill:url(#linearGradient13594)"
  939. 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"
  940. inkscape:connector-curvature="0"
  941. inkscape:path-effect="#path-effect4593-0"
  942. 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"
  943. />
  944. <path
  945. id="path4595"
  946. style="fill-rule:evenodd;fill:url(#linearGradient13596)"
  947. 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"
  948. inkscape:connector-curvature="0"
  949. inkscape:path-effect="#path-effect4597-6"
  950. inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
  951. />
  952. <path
  953. id="path4599"
  954. style="fill-rule:evenodd;fill:url(#linearGradient13598)"
  955. 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"
  956. inkscape:connector-curvature="0"
  957. inkscape:path-effect="#path-effect4601-8"
  958. inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
  959. />
  960. </g
  961. >
  962. <g
  963. id="g4811"
  964. transform="matrix(0.212 0 0 .18257 107.4 214.08)"
  965. >
  966. <path
  967. id="path4813"
  968. style="fill:url(#linearGradient13520);fill-rule:evenodd"
  969. 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"
  970. inkscape:path-effect="#path-effect4441-5"
  971. inkscape:connector-curvature="0"
  972. inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
  973. />
  974. <path
  975. id="path4815"
  976. style="fill:url(#linearGradient13522);fill-rule:evenodd"
  977. 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"
  978. inkscape:path-effect="#path-effect4445-7"
  979. inkscape:connector-curvature="0"
  980. inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
  981. />
  982. <path
  983. id="path4817"
  984. style="fill:url(#linearGradient13524);fill-rule:evenodd"
  985. 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"
  986. inkscape:path-effect="#path-effect4449-1"
  987. inkscape:connector-curvature="0"
  988. inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
  989. />
  990. <path
  991. id="path4819"
  992. style="fill:url(#linearGradient13526);fill-rule:evenodd"
  993. 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"
  994. inkscape:path-effect="#path-effect4453-2"
  995. inkscape:connector-curvature="0"
  996. inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
  997. />
  998. <path
  999. id="path4821"
  1000. style="fill:url(#linearGradient13528);fill-rule:evenodd"
  1001. 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"
  1002. inkscape:path-effect="#path-effect4457-6"
  1003. inkscape:connector-curvature="0"
  1004. inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
  1005. />
  1006. <path
  1007. id="path4823"
  1008. style="fill:url(#linearGradient13530);fill-rule:evenodd"
  1009. 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"
  1010. inkscape:path-effect="#path-effect4461-4"
  1011. inkscape:connector-curvature="0"
  1012. inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
  1013. />
  1014. <path
  1015. id="path4825"
  1016. style="fill:url(#linearGradient13532);fill-rule:evenodd"
  1017. 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"
  1018. inkscape:path-effect="#path-effect4465-3"
  1019. inkscape:connector-curvature="0"
  1020. inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
  1021. />
  1022. <path
  1023. id="path4827"
  1024. style="fill:url(#linearGradient13534);fill-rule:evenodd"
  1025. 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"
  1026. inkscape:path-effect="#path-effect4469-2"
  1027. inkscape:connector-curvature="0"
  1028. inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
  1029. />
  1030. <path
  1031. id="path4829"
  1032. style="fill:url(#linearGradient13536);fill-rule:evenodd"
  1033. 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"
  1034. inkscape:path-effect="#path-effect4473-6"
  1035. inkscape:connector-curvature="0"
  1036. inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
  1037. />
  1038. <path
  1039. id="path4831"
  1040. style="fill:url(#linearGradient13538);fill-rule:evenodd"
  1041. 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"
  1042. inkscape:path-effect="#path-effect4477-5"
  1043. inkscape:connector-curvature="0"
  1044. inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
  1045. />
  1046. <path
  1047. id="path4833"
  1048. style="fill:url(#linearGradient13540);fill-rule:evenodd"
  1049. 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"
  1050. inkscape:path-effect="#path-effect4481-6"
  1051. inkscape:connector-curvature="0"
  1052. inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
  1053. />
  1054. <path
  1055. id="path4835"
  1056. style="fill:url(#linearGradient13542);fill-rule:evenodd"
  1057. 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"
  1058. inkscape:path-effect="#path-effect4485-8"
  1059. inkscape:connector-curvature="0"
  1060. inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
  1061. />
  1062. <path
  1063. id="path4837"
  1064. style="fill:url(#linearGradient13544);fill-rule:evenodd"
  1065. 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"
  1066. inkscape:path-effect="#path-effect4489-2"
  1067. inkscape:connector-curvature="0"
  1068. inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
  1069. />
  1070. <path
  1071. id="path4839"
  1072. style="fill:url(#linearGradient13546);fill-rule:evenodd"
  1073. 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"
  1074. inkscape:path-effect="#path-effect4493-9"
  1075. inkscape:connector-curvature="0"
  1076. inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
  1077. />
  1078. <path
  1079. id="path4841"
  1080. style="fill:url(#linearGradient13548);fill-rule:evenodd"
  1081. 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"
  1082. inkscape:path-effect="#path-effect4497-4"
  1083. inkscape:connector-curvature="0"
  1084. inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
  1085. />
  1086. <path
  1087. id="path4843"
  1088. style="fill:url(#linearGradient13550);fill-rule:evenodd"
  1089. 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"
  1090. inkscape:path-effect="#path-effect4505-1"
  1091. inkscape:connector-curvature="0"
  1092. inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
  1093. />
  1094. <path
  1095. id="path4845"
  1096. style="fill:url(#linearGradient13552);fill-rule:evenodd"
  1097. 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"
  1098. inkscape:path-effect="#path-effect4509-3"
  1099. inkscape:connector-curvature="0"
  1100. inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
  1101. />
  1102. <path
  1103. id="path4847"
  1104. style="fill:url(#linearGradient13554);fill-rule:evenodd"
  1105. 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"
  1106. inkscape:path-effect="#path-effect4513-4"
  1107. inkscape:connector-curvature="0"
  1108. inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
  1109. />
  1110. <path
  1111. id="path4849"
  1112. style="fill:url(#linearGradient13556);fill-rule:evenodd"
  1113. 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"
  1114. inkscape:path-effect="#path-effect4517-1"
  1115. inkscape:connector-curvature="0"
  1116. inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
  1117. />
  1118. <path
  1119. id="path4851"
  1120. style="fill:url(#linearGradient13558);fill-rule:evenodd"
  1121. 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"
  1122. inkscape:path-effect="#path-effect4521-8"
  1123. inkscape:connector-curvature="0"
  1124. inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
  1125. />
  1126. <path
  1127. id="path4853"
  1128. style="fill:url(#linearGradient13560);fill-rule:evenodd"
  1129. 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"
  1130. inkscape:path-effect="#path-effect4525-4"
  1131. inkscape:connector-curvature="0"
  1132. inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
  1133. />
  1134. <path
  1135. id="path4855"
  1136. style="fill:url(#linearGradient13562);fill-rule:evenodd"
  1137. 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"
  1138. inkscape:path-effect="#path-effect4529-7"
  1139. inkscape:connector-curvature="0"
  1140. inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
  1141. />
  1142. <path
  1143. id="path4857"
  1144. style="fill:url(#linearGradient13564);fill-rule:evenodd"
  1145. 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"
  1146. inkscape:path-effect="#path-effect4533-9"
  1147. inkscape:connector-curvature="0"
  1148. inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
  1149. />
  1150. <path
  1151. id="path4859"
  1152. style="fill:url(#linearGradient13566);fill-rule:evenodd"
  1153. 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"
  1154. inkscape:path-effect="#path-effect4537-1"
  1155. inkscape:connector-curvature="0"
  1156. inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
  1157. />
  1158. <path
  1159. id="path4861"
  1160. style="fill:url(#linearGradient13568);fill-rule:evenodd"
  1161. 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"
  1162. inkscape:path-effect="#path-effect4541-8"
  1163. inkscape:connector-curvature="0"
  1164. inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
  1165. />
  1166. <path
  1167. id="path4863"
  1168. style="fill:url(#linearGradient13570);fill-rule:evenodd"
  1169. 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"
  1170. inkscape:path-effect="#path-effect4545-5"
  1171. inkscape:connector-curvature="0"
  1172. inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
  1173. />
  1174. <path
  1175. id="path4865"
  1176. style="fill:url(#linearGradient13572);fill-rule:evenodd"
  1177. 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"
  1178. inkscape:path-effect="#path-effect4549-2"
  1179. inkscape:connector-curvature="0"
  1180. inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
  1181. />
  1182. <path
  1183. id="path4867"
  1184. style="fill:url(#linearGradient13574);fill-rule:evenodd"
  1185. 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"
  1186. inkscape:path-effect="#path-effect4553-6"
  1187. inkscape:connector-curvature="0"
  1188. inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
  1189. />
  1190. <path
  1191. id="path4869"
  1192. style="fill:url(#linearGradient13576);fill-rule:evenodd"
  1193. 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"
  1194. inkscape:path-effect="#path-effect4557-2"
  1195. inkscape:connector-curvature="0"
  1196. inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
  1197. />
  1198. <path
  1199. id="path4871"
  1200. style="fill:url(#linearGradient13578);fill-rule:evenodd"
  1201. 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"
  1202. inkscape:path-effect="#path-effect4561-8"
  1203. inkscape:connector-curvature="0"
  1204. inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
  1205. />
  1206. <path
  1207. id="path4873"
  1208. style="fill:url(#linearGradient13580);fill-rule:evenodd"
  1209. 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"
  1210. inkscape:path-effect="#path-effect4565-5"
  1211. inkscape:connector-curvature="0"
  1212. inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
  1213. />
  1214. <path
  1215. id="path4875"
  1216. style="fill:url(#linearGradient13582);fill-rule:evenodd"
  1217. 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"
  1218. inkscape:path-effect="#path-effect4569-9"
  1219. inkscape:connector-curvature="0"
  1220. inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
  1221. />
  1222. <path
  1223. id="path4877"
  1224. style="fill:url(#linearGradient13584);fill-rule:evenodd"
  1225. 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"
  1226. inkscape:path-effect="#path-effect4573-0"
  1227. inkscape:connector-curvature="0"
  1228. inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
  1229. />
  1230. <path
  1231. id="path4879"
  1232. style="fill:url(#linearGradient13586);fill-rule:evenodd"
  1233. 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"
  1234. inkscape:path-effect="#path-effect4577-1"
  1235. inkscape:connector-curvature="0"
  1236. inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
  1237. />
  1238. <path
  1239. id="path4881"
  1240. style="fill:url(#linearGradient13588);fill-rule:evenodd"
  1241. 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"
  1242. inkscape:path-effect="#path-effect4581-8"
  1243. inkscape:connector-curvature="0"
  1244. inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
  1245. />
  1246. <path
  1247. id="path4883"
  1248. style="fill:url(#linearGradient13590);fill-rule:evenodd"
  1249. 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"
  1250. inkscape:path-effect="#path-effect4585-3"
  1251. inkscape:connector-curvature="0"
  1252. inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
  1253. />
  1254. <path
  1255. id="path4885"
  1256. style="fill:url(#linearGradient13592);fill-rule:evenodd"
  1257. 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"
  1258. inkscape:path-effect="#path-effect4589-4"
  1259. inkscape:connector-curvature="0"
  1260. inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
  1261. />
  1262. <path
  1263. id="path4887"
  1264. style="fill:url(#linearGradient13594);fill-rule:evenodd"
  1265. 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"
  1266. inkscape:path-effect="#path-effect4593-0"
  1267. inkscape:connector-curvature="0"
  1268. 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"
  1269. />
  1270. <path
  1271. id="path4889"
  1272. style="fill:url(#linearGradient13596);fill-rule:evenodd"
  1273. 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"
  1274. inkscape:path-effect="#path-effect4597-6"
  1275. inkscape:connector-curvature="0"
  1276. inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
  1277. />
  1278. <path
  1279. id="path4891"
  1280. style="fill:url(#linearGradient13598);fill-rule:evenodd"
  1281. 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"
  1282. inkscape:path-effect="#path-effect4601-8"
  1283. inkscape:connector-curvature="0"
  1284. inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
  1285. />
  1286. </g
  1287. >
  1288. <g
  1289. id="g4973"
  1290. transform="matrix(-0.212 0 0 .18257 -385.18 213.6)"
  1291. >
  1292. <path
  1293. id="path4975"
  1294. style="fill:url(#linearGradient13520);fill-rule:evenodd"
  1295. 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"
  1296. inkscape:connector-curvature="0"
  1297. inkscape:path-effect="#path-effect3621-0"
  1298. inkscape:original-d="m -1034.3962,296.76807 c 53.23279,146.34059 64.10484,303.08898 80.81218,456.58896"
  1299. />
  1300. <path
  1301. id="path4977"
  1302. style="fill:url(#linearGradient13522);fill-rule:evenodd"
  1303. 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"
  1304. inkscape:connector-curvature="0"
  1305. inkscape:path-effect="#path-effect3626-4"
  1306. inkscape:original-d="m -925.29974,304.84929 c -16.66579,165.04009 -21.2925,332.13737 0,496.99506"
  1307. />
  1308. <path
  1309. id="path4979"
  1310. style="fill:url(#linearGradient13524);fill-rule:evenodd"
  1311. 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"
  1312. inkscape:connector-curvature="0"
  1313. inkscape:path-effect="#path-effect3631-0"
  1314. inkscape:original-d="m -888.93425,329.09295 c 3.17473,164.26424 -30.40345,330.10148 4.04061,492.95445"
  1315. />
  1316. <path
  1317. id="path4981"
  1318. style="fill:url(#linearGradient13526);fill-rule:evenodd"
  1319. 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"
  1320. inkscape:connector-curvature="0"
  1321. inkscape:path-effect="#path-effect3636-1"
  1322. inkscape:original-d="m -856.60937,353.33661 c -13.52384,166.34361 -38.30366,335.46454 -4.04061,501.03567"
  1323. />
  1324. <path
  1325. id="path4983"
  1326. style="fill:url(#linearGradient13528);fill-rule:evenodd"
  1327. 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"
  1328. inkscape:connector-curvature="0"
  1329. inkscape:path-effect="#path-effect3641-7"
  1330. inkscape:original-d="m -816.20327,417.98638 c 2.18123,171.06799 -9.80546,343.25754 16.16244,513.1575"
  1331. />
  1332. <path
  1333. id="path4985"
  1334. style="fill:url(#linearGradient13530);fill-rule:evenodd"
  1335. 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"
  1336. inkscape:connector-curvature="0"
  1337. inkscape:path-effect="#path-effect3646-7"
  1338. inkscape:original-d="m -1034.3962,486.67675 c 59.42037,156.32304 69.54123,324.91169 92.93402,488.91384"
  1339. />
  1340. <path
  1341. id="path4987"
  1342. style="fill:url(#linearGradient13532);fill-rule:evenodd"
  1343. 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"
  1344. inkscape:connector-curvature="0"
  1345. inkscape:path-effect="#path-effect3651-3"
  1346. inkscape:original-d="m -945.50279,450.31126 c 32.26472,159.65439 17.76737,323.56709 32.32488,484.87323"
  1347. />
  1348. <path
  1349. id="path4989"
  1350. style="fill:url(#linearGradient13534);fill-rule:evenodd"
  1351. 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"
  1352. inkscape:connector-curvature="0"
  1353. inkscape:path-effect="#path-effect3656-9"
  1354. inkscape:original-d="m -844.48754,506.8798 c -24.94818,128.8966 -39.77511,260.53992 -32.32488,391.93919"
  1355. />
  1356. <path
  1357. id="path4991"
  1358. style="fill:url(#linearGradient13536);fill-rule:evenodd"
  1359. 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"
  1360. inkscape:connector-curvature="0"
  1361. inkscape:path-effect="#path-effect3661-8"
  1362. inkscape:original-d="m -828.3251,539.20468 c 3.91872,147.12676 -27.11346,293.26049 -16.16244,440.42652"
  1363. />
  1364. <path
  1365. id="path4993"
  1366. style="fill:url(#linearGradient13538);fill-rule:evenodd"
  1367. 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"
  1368. inkscape:connector-curvature="0"
  1369. inkscape:path-effect="#path-effect3666-8"
  1370. inkscape:original-d="m -1050.5587,539.20468 c 23.591,118.36721 57.64228,234.99389 68.69041,355.5737"
  1371. />
  1372. <path
  1373. id="path4995"
  1374. style="fill:url(#linearGradient13540);fill-rule:evenodd"
  1375. 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"
  1376. inkscape:connector-curvature="0"
  1377. inkscape:path-effect="#path-effect3671-6"
  1378. inkscape:original-d="m -941.46218,486.67675 c -53.86048,163.11936 -72.68802,339.12027 -44.44672,509.11689"
  1379. />
  1380. <path
  1381. id="path4997"
  1382. style="fill:url(#linearGradient13542);fill-rule:evenodd"
  1383. 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"
  1384. inkscape:connector-curvature="0"
  1385. inkscape:path-effect="#path-effect3676-0"
  1386. inkscape:original-d="m -913.17791,591.73262 c -29.37665,116.04343 -28.20345,236.74345 -28.28427,355.5737"
  1387. />
  1388. <path
  1389. id="path4999"
  1390. style="fill:url(#linearGradient13544);fill-rule:evenodd"
  1391. 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"
  1392. inkscape:connector-curvature="0"
  1393. inkscape:path-effect="#path-effect3681-8"
  1394. inkscape:original-d="m -876.81242,563.44834 c 3.85175,114.58957 1.57654,229.93347 20.20305,343.45187"
  1395. />
  1396. <path
  1397. id="path5001"
  1398. style="fill:url(#linearGradient13546);fill-rule:evenodd"
  1399. 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"
  1400. inkscape:connector-curvature="0"
  1401. inkscape:path-effect="#path-effect3686-1"
  1402. inkscape:original-d="m -779.83778,555.36712 c -6.78015,109.08847 -20.23383,217.8534 -20.20305,327.28943"
  1403. />
  1404. <path
  1405. id="path5003"
  1406. style="fill:url(#linearGradient13548);fill-rule:evenodd"
  1407. 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"
  1408. inkscape:connector-curvature="0"
  1409. inkscape:path-effect="#path-effect3691-5"
  1410. inkscape:original-d="m -735.39106,559.40773 c -27.84875,101.48869 -22.58243,208.02479 -40.40608,311.12699"
  1411. />
  1412. <path
  1413. id="path5005"
  1414. style="fill:url(#linearGradient13550);fill-rule:evenodd"
  1415. 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"
  1416. inkscape:connector-curvature="0"
  1417. inkscape:path-effect="#path-effect3696-9"
  1418. inkscape:original-d="m -892.97486,583.6514 c 12.21249,118.89297 62.03348,229.06528 92.93403,343.45187"
  1419. />
  1420. <path
  1421. id="path5007"
  1422. style="fill:url(#linearGradient13552);fill-rule:evenodd"
  1423. 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"
  1424. inkscape:connector-curvature="0"
  1425. inkscape:path-effect="#path-effect3701-7"
  1426. inkscape:original-d="m -965.70585,620.01689 c -0.30605,141.68973 26.06209,281.59025 52.52794,420.22351"
  1427. />
  1428. <path
  1429. id="path5009"
  1430. style="fill:url(#linearGradient13554);fill-rule:evenodd"
  1431. 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"
  1432. inkscape:connector-curvature="0"
  1433. inkscape:path-effect="#path-effect3706-3"
  1434. inkscape:original-d="m -929.34035,660.42299 c 44.80257,146.68549 30.08832,302.09993 48.48732,452.54831"
  1435. />
  1436. <path
  1437. id="path5011"
  1438. style="fill:url(#linearGradient13556);fill-rule:evenodd"
  1439. 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"
  1440. inkscape:connector-curvature="0"
  1441. inkscape:path-effect="#path-effect3711-1"
  1442. inkscape:original-d="m -816.20327,672.54482 c -6.12651,126.8531 -27.54477,252.65302 -28.28427,379.81738"
  1443. />
  1444. <path
  1445. id="path5013"
  1446. style="fill:url(#linearGradient13558);fill-rule:evenodd"
  1447. 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"
  1448. inkscape:connector-curvature="0"
  1449. inkscape:path-effect="#path-effect3716-0"
  1450. inkscape:original-d="m -775.79716,729.11336 c -0.68363,111.89152 -8.31922,223.57485 -12.12184,335.37064"
  1451. />
  1452. <path
  1453. id="path5015"
  1454. style="fill:url(#linearGradient13560);fill-rule:evenodd"
  1455. 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"
  1456. inkscape:connector-curvature="0"
  1457. inkscape:path-effect="#path-effect3721-6"
  1458. inkscape:original-d="m -743.47228,664.4636 c -14.63041,106.24336 -32.15666,212.1997 -40.40611,319.20821"
  1459. />
  1460. <path
  1461. id="path5017"
  1462. style="fill:url(#linearGradient13562);fill-rule:evenodd"
  1463. 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"
  1464. inkscape:connector-curvature="0"
  1465. inkscape:path-effect="#path-effect3726-0"
  1466. inkscape:original-d="m -707.10679,636.17933 c -13.28551,128.31701 -39.77855,255.02861 -48.48732,383.85797"
  1467. />
  1468. <path
  1469. id="path5019"
  1470. style="fill:url(#linearGradient13564);fill-rule:evenodd"
  1471. 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"
  1472. inkscape:connector-curvature="0"
  1473. inkscape:path-effect="#path-effect3731-1"
  1474. inkscape:original-d="m -832.36571,603.85445 c -43.9539,121.0126 -67.59798,250.93804 -56.56854,379.81736"
  1475. />
  1476. <path
  1477. id="path5021"
  1478. style="fill:url(#linearGradient13566);fill-rule:evenodd"
  1479. 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"
  1480. inkscape:connector-curvature="0"
  1481. inkscape:path-effect="#path-effect3736-9"
  1482. inkscape:original-d="m -771.75655,648.30116 c 2.54915,148.63954 -24.24152,295.91581 -24.24367,444.46714"
  1483. />
  1484. <path
  1485. id="path5023"
  1486. style="fill:url(#linearGradient13568);fill-rule:evenodd"
  1487. 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"
  1488. inkscape:connector-curvature="0"
  1489. inkscape:path-effect="#path-effect3741-4"
  1490. inkscape:original-d="m -876.81242,716.99153 c 13.01574,110.22137 -14.12403,227.59962 36.36549,331.33007"
  1491. />
  1492. <path
  1493. id="path5025"
  1494. style="fill:url(#linearGradient13570);fill-rule:evenodd"
  1495. 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"
  1496. inkscape:connector-curvature="0"
  1497. inkscape:path-effect="#path-effect3746-4"
  1498. inkscape:original-d="m -796.00022,664.4636 c -5.89835,128.32073 -20.66596,255.99161 -32.32488,383.858"
  1499. />
  1500. <path
  1501. id="path5027"
  1502. style="fill:url(#linearGradient13572);fill-rule:evenodd"
  1503. 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"
  1504. inkscape:connector-curvature="0"
  1505. inkscape:path-effect="#path-effect3751-9"
  1506. inkscape:original-d="m -1026.315,680.62604 c 3.9271,132.24674 41.55539,260.45405 52.52793,391.93916"
  1507. />
  1508. <path
  1509. id="path5029"
  1510. style="fill:url(#linearGradient13574);fill-rule:evenodd"
  1511. 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"
  1512. inkscape:connector-curvature="0"
  1513. inkscape:path-effect="#path-effect3757-8"
  1514. inkscape:original-d="m -973.78707,749.31642 c 24.46945,96.66828 29.38399,196.71358 44.44672,294.96458"
  1515. />
  1516. <path
  1517. id="path5031"
  1518. style="fill:url(#linearGradient13576);fill-rule:evenodd"
  1519. 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"
  1520. inkscape:connector-curvature="0"
  1521. inkscape:path-effect="#path-effect3762-8"
  1522. inkscape:original-d="m -1062.6805,611.93567 c 2.8271,132.36092 42.3975,260.35002 52.5279,391.93923"
  1523. />
  1524. <path
  1525. id="path5033"
  1526. style="fill:url(#linearGradient13578);fill-rule:evenodd"
  1527. 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"
  1528. inkscape:connector-curvature="0"
  1529. inkscape:path-effect="#path-effect3767-7"
  1530. inkscape:original-d="m -1103.0866,636.17933 c 37.2296,124.84249 59.4034,253.98016 68.6904,383.85797"
  1531. />
  1532. <path
  1533. id="path5035"
  1534. style="fill:url(#linearGradient13580);fill-rule:evenodd"
  1535. 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"
  1536. inkscape:connector-curvature="0"
  1537. inkscape:path-effect="#path-effect3772-3"
  1538. inkscape:original-d="m -1022.2744,797.80374 c 14.8733,86.72593 24.26629,174.57542 24.24367,262.63966"
  1539. />
  1540. <path
  1541. id="path5037"
  1542. style="fill:url(#linearGradient13582);fill-rule:evenodd"
  1543. 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"
  1544. inkscape:connector-curvature="0"
  1545. inkscape:path-effect="#path-effect3777-3"
  1546. inkscape:original-d="m -1002.0713,854.37228 c -15.9584,85.72311 -4.2009,173.26202 8.08118,258.59902"
  1547. />
  1548. <path
  1549. id="path5039"
  1550. style="fill:url(#linearGradient13584);fill-rule:evenodd"
  1551. 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"
  1552. inkscape:connector-curvature="0"
  1553. inkscape:path-effect="#path-effect3782-1"
  1554. inkscape:original-d="m -953.58402,886.69716 c -2.21718,64.73322 0.75872,129.60684 8.08123,193.94934"
  1555. />
  1556. <path
  1557. id="path5041"
  1558. style="fill:url(#linearGradient13586);fill-rule:evenodd"
  1559. 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"
  1560. inkscape:connector-curvature="0"
  1561. inkscape:path-effect="#path-effect3787-7"
  1562. inkscape:original-d="m -953.58402,850.33167 c -26.5665,55.24006 -24.10535,118.11052 -24.24366,177.78683"
  1563. />
  1564. <path
  1565. id="path5043"
  1566. style="fill:url(#linearGradient13588);fill-rule:evenodd"
  1567. 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"
  1568. inkscape:connector-curvature="0"
  1569. inkscape:path-effect="#path-effect3792-4"
  1570. inkscape:original-d="m -909.1373,838.20984 c 11.07697,80.67157 -4.0432,161.63603 -4.04061,242.43666"
  1571. />
  1572. <path
  1573. id="path5045"
  1574. style="fill:url(#linearGradient13590);fill-rule:evenodd"
  1575. 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"
  1576. inkscape:connector-curvature="0"
  1577. inkscape:path-effect="#path-effect3797-6"
  1578. inkscape:original-d="m -860.64998,846.29106 c -4.26386,67.32459 -12.15025,134.48989 -12.12183,202.03054"
  1579. />
  1580. <path
  1581. id="path5047"
  1582. style="fill:url(#linearGradient13592);fill-rule:evenodd"
  1583. 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"
  1584. inkscape:connector-curvature="0"
  1585. inkscape:path-effect="#path-effect3802-1"
  1586. inkscape:original-d="m -787.919,842.25045 c -7.86056,71.09741 -12.14825,142.61295 -12.12183,214.15235"
  1587. />
  1588. <path
  1589. id="path5049"
  1590. style="fill:url(#linearGradient13594);fill-rule:evenodd"
  1591. 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"
  1592. inkscape:connector-curvature="0"
  1593. inkscape:path-effect="#path-effect3807-9"
  1594. inkscape:original-d="m -775.79716,1044.281 c -13.82151,-67.43157 40.74693,-187.62835 16.16244,-40.4061"
  1595. />
  1596. <path
  1597. id="path5051"
  1598. style="fill:url(#linearGradient13596);fill-rule:evenodd"
  1599. 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"
  1600. inkscape:connector-curvature="0"
  1601. inkscape:path-effect="#path-effect3812-6"
  1602. inkscape:original-d="m -719.22862,765.47886 c -8.40321,84.0088 -23.54343,167.12335 -36.36549,250.51784"
  1603. />
  1604. <path
  1605. id="path5053"
  1606. style="fill:url(#linearGradient13598);fill-rule:evenodd"
  1607. 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"
  1608. inkscape:connector-curvature="0"
  1609. inkscape:path-effect="#path-effect3817-3"
  1610. inkscape:original-d="m -715.18801,510.92041 c -28.49352,136.79435 -44.44488,276.38255 -44.44671,416.18286"
  1611. />
  1612. </g
  1613. >
  1614. <g
  1615. id="g5173"
  1616. transform="matrix(-0.212 0 0 .18257 -264.33 189.83)"
  1617. >
  1618. <path
  1619. id="path5175"
  1620. style="fill:url(#linearGradient13520);fill-rule:evenodd"
  1621. 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"
  1622. inkscape:path-effect="#path-effect4441-5"
  1623. inkscape:connector-curvature="0"
  1624. inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
  1625. />
  1626. <path
  1627. id="path5177"
  1628. style="fill:url(#linearGradient13522);fill-rule:evenodd"
  1629. 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"
  1630. inkscape:path-effect="#path-effect4445-7"
  1631. inkscape:connector-curvature="0"
  1632. inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
  1633. />
  1634. <path
  1635. id="path5179"
  1636. style="fill:url(#linearGradient13524);fill-rule:evenodd"
  1637. 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"
  1638. inkscape:path-effect="#path-effect4449-1"
  1639. inkscape:connector-curvature="0"
  1640. inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
  1641. />
  1642. <path
  1643. id="path5181"
  1644. style="fill:url(#linearGradient13526);fill-rule:evenodd"
  1645. 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"
  1646. inkscape:path-effect="#path-effect4453-2"
  1647. inkscape:connector-curvature="0"
  1648. inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
  1649. />
  1650. <path
  1651. id="path5183"
  1652. style="fill:url(#linearGradient13528);fill-rule:evenodd"
  1653. 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"
  1654. inkscape:path-effect="#path-effect4457-6"
  1655. inkscape:connector-curvature="0"
  1656. inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
  1657. />
  1658. <path
  1659. id="path5185"
  1660. style="fill:url(#linearGradient13530);fill-rule:evenodd"
  1661. 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"
  1662. inkscape:path-effect="#path-effect4461-4"
  1663. inkscape:connector-curvature="0"
  1664. inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
  1665. />
  1666. <path
  1667. id="path5187"
  1668. style="fill:url(#linearGradient13532);fill-rule:evenodd"
  1669. 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"
  1670. inkscape:path-effect="#path-effect4465-3"
  1671. inkscape:connector-curvature="0"
  1672. inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
  1673. />
  1674. <path
  1675. id="path5189"
  1676. style="fill:url(#linearGradient13534);fill-rule:evenodd"
  1677. 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"
  1678. inkscape:path-effect="#path-effect4469-2"
  1679. inkscape:connector-curvature="0"
  1680. inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
  1681. />
  1682. <path
  1683. id="path5191"
  1684. style="fill:url(#linearGradient13536);fill-rule:evenodd"
  1685. 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"
  1686. inkscape:path-effect="#path-effect4473-6"
  1687. inkscape:connector-curvature="0"
  1688. inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
  1689. />
  1690. <path
  1691. id="path5193"
  1692. style="fill:url(#linearGradient13538);fill-rule:evenodd"
  1693. 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"
  1694. inkscape:path-effect="#path-effect4477-5"
  1695. inkscape:connector-curvature="0"
  1696. inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
  1697. />
  1698. <path
  1699. id="path5195"
  1700. style="fill:url(#linearGradient13540);fill-rule:evenodd"
  1701. 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"
  1702. inkscape:path-effect="#path-effect4481-6"
  1703. inkscape:connector-curvature="0"
  1704. inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
  1705. />
  1706. <path
  1707. id="path5197"
  1708. style="fill:url(#linearGradient13542);fill-rule:evenodd"
  1709. 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"
  1710. inkscape:path-effect="#path-effect4485-8"
  1711. inkscape:connector-curvature="0"
  1712. inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
  1713. />
  1714. <path
  1715. id="path5199"
  1716. style="fill:url(#linearGradient13544);fill-rule:evenodd"
  1717. 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"
  1718. inkscape:path-effect="#path-effect4489-2"
  1719. inkscape:connector-curvature="0"
  1720. inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
  1721. />
  1722. <path
  1723. id="path5201"
  1724. style="fill:url(#linearGradient13546);fill-rule:evenodd"
  1725. 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"
  1726. inkscape:path-effect="#path-effect4493-9"
  1727. inkscape:connector-curvature="0"
  1728. inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
  1729. />
  1730. <path
  1731. id="path5203"
  1732. style="fill:url(#linearGradient13548);fill-rule:evenodd"
  1733. 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"
  1734. inkscape:path-effect="#path-effect4497-4"
  1735. inkscape:connector-curvature="0"
  1736. inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
  1737. />
  1738. <path
  1739. id="path5205"
  1740. style="fill:url(#linearGradient13550);fill-rule:evenodd"
  1741. 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"
  1742. inkscape:path-effect="#path-effect4505-1"
  1743. inkscape:connector-curvature="0"
  1744. inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
  1745. />
  1746. <path
  1747. id="path5207"
  1748. style="fill:url(#linearGradient13552);fill-rule:evenodd"
  1749. 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"
  1750. inkscape:path-effect="#path-effect4509-3"
  1751. inkscape:connector-curvature="0"
  1752. inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
  1753. />
  1754. <path
  1755. id="path5209"
  1756. style="fill:url(#linearGradient13554);fill-rule:evenodd"
  1757. 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"
  1758. inkscape:path-effect="#path-effect4513-4"
  1759. inkscape:connector-curvature="0"
  1760. inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
  1761. />
  1762. <path
  1763. id="path5211"
  1764. style="fill:url(#linearGradient13556);fill-rule:evenodd"
  1765. 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"
  1766. inkscape:path-effect="#path-effect4517-1"
  1767. inkscape:connector-curvature="0"
  1768. inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
  1769. />
  1770. <path
  1771. id="path5213"
  1772. style="fill:url(#linearGradient13558);fill-rule:evenodd"
  1773. 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"
  1774. inkscape:path-effect="#path-effect4521-8"
  1775. inkscape:connector-curvature="0"
  1776. inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
  1777. />
  1778. <path
  1779. id="path5215"
  1780. style="fill:url(#linearGradient13560);fill-rule:evenodd"
  1781. 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"
  1782. inkscape:path-effect="#path-effect4525-4"
  1783. inkscape:connector-curvature="0"
  1784. inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
  1785. />
  1786. <path
  1787. id="path5217"
  1788. style="fill:url(#linearGradient13562);fill-rule:evenodd"
  1789. 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"
  1790. inkscape:path-effect="#path-effect4529-7"
  1791. inkscape:connector-curvature="0"
  1792. inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
  1793. />
  1794. <path
  1795. id="path5219"
  1796. style="fill:url(#linearGradient13564);fill-rule:evenodd"
  1797. 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"
  1798. inkscape:path-effect="#path-effect4533-9"
  1799. inkscape:connector-curvature="0"
  1800. inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
  1801. />
  1802. <path
  1803. id="path5221"
  1804. style="fill:url(#linearGradient13566);fill-rule:evenodd"
  1805. 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"
  1806. inkscape:path-effect="#path-effect4537-1"
  1807. inkscape:connector-curvature="0"
  1808. inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
  1809. />
  1810. <path
  1811. id="path5223"
  1812. style="fill:url(#linearGradient13568);fill-rule:evenodd"
  1813. 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"
  1814. inkscape:path-effect="#path-effect4541-8"
  1815. inkscape:connector-curvature="0"
  1816. inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
  1817. />
  1818. <path
  1819. id="path5225"
  1820. style="fill:url(#linearGradient13570);fill-rule:evenodd"
  1821. 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"
  1822. inkscape:path-effect="#path-effect4545-5"
  1823. inkscape:connector-curvature="0"
  1824. inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
  1825. />
  1826. <path
  1827. id="path5227"
  1828. style="fill:url(#linearGradient13572);fill-rule:evenodd"
  1829. 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"
  1830. inkscape:path-effect="#path-effect4549-2"
  1831. inkscape:connector-curvature="0"
  1832. inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
  1833. />
  1834. <path
  1835. id="path5229"
  1836. style="fill:url(#linearGradient13574);fill-rule:evenodd"
  1837. 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"
  1838. inkscape:path-effect="#path-effect4553-6"
  1839. inkscape:connector-curvature="0"
  1840. inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
  1841. />
  1842. <path
  1843. id="path5231"
  1844. style="fill:url(#linearGradient13576);fill-rule:evenodd"
  1845. 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"
  1846. inkscape:path-effect="#path-effect4557-2"
  1847. inkscape:connector-curvature="0"
  1848. inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
  1849. />
  1850. <path
  1851. id="path5233"
  1852. style="fill:url(#linearGradient13578);fill-rule:evenodd"
  1853. 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"
  1854. inkscape:path-effect="#path-effect4561-8"
  1855. inkscape:connector-curvature="0"
  1856. inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
  1857. />
  1858. <path
  1859. id="path5235"
  1860. style="fill:url(#linearGradient13580);fill-rule:evenodd"
  1861. 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"
  1862. inkscape:path-effect="#path-effect4565-5"
  1863. inkscape:connector-curvature="0"
  1864. inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
  1865. />
  1866. <path
  1867. id="path5237"
  1868. style="fill:url(#linearGradient13582);fill-rule:evenodd"
  1869. 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"
  1870. inkscape:path-effect="#path-effect4569-9"
  1871. inkscape:connector-curvature="0"
  1872. inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
  1873. />
  1874. <path
  1875. id="path5239"
  1876. style="fill:url(#linearGradient13584);fill-rule:evenodd"
  1877. 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"
  1878. inkscape:path-effect="#path-effect4573-0"
  1879. inkscape:connector-curvature="0"
  1880. inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
  1881. />
  1882. <path
  1883. id="path5241"
  1884. style="fill:url(#linearGradient13586);fill-rule:evenodd"
  1885. 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"
  1886. inkscape:path-effect="#path-effect4577-1"
  1887. inkscape:connector-curvature="0"
  1888. inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
  1889. />
  1890. <path
  1891. id="path5243"
  1892. style="fill:url(#linearGradient13588);fill-rule:evenodd"
  1893. 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"
  1894. inkscape:path-effect="#path-effect4581-8"
  1895. inkscape:connector-curvature="0"
  1896. inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
  1897. />
  1898. <path
  1899. id="path5245"
  1900. style="fill:url(#linearGradient13590);fill-rule:evenodd"
  1901. 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"
  1902. inkscape:path-effect="#path-effect4585-3"
  1903. inkscape:connector-curvature="0"
  1904. inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
  1905. />
  1906. <path
  1907. id="path5247"
  1908. style="fill:url(#linearGradient13592);fill-rule:evenodd"
  1909. 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"
  1910. inkscape:path-effect="#path-effect4589-4"
  1911. inkscape:connector-curvature="0"
  1912. inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
  1913. />
  1914. <path
  1915. id="path5249"
  1916. style="fill:url(#linearGradient13594);fill-rule:evenodd"
  1917. 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"
  1918. inkscape:path-effect="#path-effect4593-0"
  1919. inkscape:connector-curvature="0"
  1920. 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"
  1921. />
  1922. <path
  1923. id="path5251"
  1924. style="fill:url(#linearGradient13596);fill-rule:evenodd"
  1925. 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"
  1926. inkscape:path-effect="#path-effect4597-6"
  1927. inkscape:connector-curvature="0"
  1928. inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
  1929. />
  1930. <path
  1931. id="path5253"
  1932. style="fill:url(#linearGradient13598);fill-rule:evenodd"
  1933. 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"
  1934. inkscape:path-effect="#path-effect4601-8"
  1935. inkscape:connector-curvature="0"
  1936. inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
  1937. />
  1938. </g
  1939. >
  1940. <g
  1941. id="g5335"
  1942. transform="matrix(-0.212 0 0 .18257 -325.14 221.34)"
  1943. >
  1944. <path
  1945. id="path5337"
  1946. style="fill:url(#linearGradient13520);fill-rule:evenodd"
  1947. 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"
  1948. inkscape:connector-curvature="0"
  1949. inkscape:path-effect="#path-effect4441-5"
  1950. inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
  1951. />
  1952. <path
  1953. id="path5339"
  1954. style="fill:url(#linearGradient13522);fill-rule:evenodd"
  1955. 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"
  1956. inkscape:connector-curvature="0"
  1957. inkscape:path-effect="#path-effect4445-7"
  1958. inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
  1959. />
  1960. <path
  1961. id="path5341"
  1962. style="fill:url(#linearGradient13524);fill-rule:evenodd"
  1963. 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"
  1964. inkscape:connector-curvature="0"
  1965. inkscape:path-effect="#path-effect4449-1"
  1966. inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
  1967. />
  1968. <path
  1969. id="path5343"
  1970. style="fill:url(#linearGradient13526);fill-rule:evenodd"
  1971. 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"
  1972. inkscape:connector-curvature="0"
  1973. inkscape:path-effect="#path-effect4453-2"
  1974. inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
  1975. />
  1976. <path
  1977. id="path5345"
  1978. style="fill:url(#linearGradient13528);fill-rule:evenodd"
  1979. 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"
  1980. inkscape:connector-curvature="0"
  1981. inkscape:path-effect="#path-effect4457-6"
  1982. inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
  1983. />
  1984. <path
  1985. id="path5347"
  1986. style="fill:url(#linearGradient13530);fill-rule:evenodd"
  1987. 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"
  1988. inkscape:connector-curvature="0"
  1989. inkscape:path-effect="#path-effect4461-4"
  1990. inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
  1991. />
  1992. <path
  1993. id="path5349"
  1994. style="fill:url(#linearGradient13532);fill-rule:evenodd"
  1995. 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"
  1996. inkscape:connector-curvature="0"
  1997. inkscape:path-effect="#path-effect4465-3"
  1998. inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
  1999. />
  2000. <path
  2001. id="path5351"
  2002. style="fill:url(#linearGradient13534);fill-rule:evenodd"
  2003. 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"
  2004. inkscape:connector-curvature="0"
  2005. inkscape:path-effect="#path-effect4469-2"
  2006. inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
  2007. />
  2008. <path
  2009. id="path5353"
  2010. style="fill:url(#linearGradient13536);fill-rule:evenodd"
  2011. 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"
  2012. inkscape:connector-curvature="0"
  2013. inkscape:path-effect="#path-effect4473-6"
  2014. inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
  2015. />
  2016. <path
  2017. id="path5355"
  2018. style="fill:url(#linearGradient13538);fill-rule:evenodd"
  2019. 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"
  2020. inkscape:connector-curvature="0"
  2021. inkscape:path-effect="#path-effect4477-5"
  2022. inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
  2023. />
  2024. <path
  2025. id="path5357"
  2026. style="fill:url(#linearGradient13540);fill-rule:evenodd"
  2027. 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"
  2028. inkscape:connector-curvature="0"
  2029. inkscape:path-effect="#path-effect4481-6"
  2030. inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
  2031. />
  2032. <path
  2033. id="path5359"
  2034. style="fill:url(#linearGradient13542);fill-rule:evenodd"
  2035. 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"
  2036. inkscape:connector-curvature="0"
  2037. inkscape:path-effect="#path-effect4485-8"
  2038. inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
  2039. />
  2040. <path
  2041. id="path5361"
  2042. style="fill:url(#linearGradient13544);fill-rule:evenodd"
  2043. 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"
  2044. inkscape:connector-curvature="0"
  2045. inkscape:path-effect="#path-effect4489-2"
  2046. inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
  2047. />
  2048. <path
  2049. id="path5363"
  2050. style="fill:url(#linearGradient13546);fill-rule:evenodd"
  2051. 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"
  2052. inkscape:connector-curvature="0"
  2053. inkscape:path-effect="#path-effect4493-9"
  2054. inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
  2055. />
  2056. <path
  2057. id="path5365"
  2058. style="fill:url(#linearGradient13548);fill-rule:evenodd"
  2059. 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"
  2060. inkscape:connector-curvature="0"
  2061. inkscape:path-effect="#path-effect4497-4"
  2062. inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
  2063. />
  2064. <path
  2065. id="path5367"
  2066. style="fill:url(#linearGradient13550);fill-rule:evenodd"
  2067. 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"
  2068. inkscape:connector-curvature="0"
  2069. inkscape:path-effect="#path-effect4505-1"
  2070. inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
  2071. />
  2072. <path
  2073. id="path5369"
  2074. style="fill:url(#linearGradient13552);fill-rule:evenodd"
  2075. 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"
  2076. inkscape:connector-curvature="0"
  2077. inkscape:path-effect="#path-effect4509-3"
  2078. inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
  2079. />
  2080. <path
  2081. id="path5371"
  2082. style="fill:url(#linearGradient13554);fill-rule:evenodd"
  2083. 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"
  2084. inkscape:connector-curvature="0"
  2085. inkscape:path-effect="#path-effect4513-4"
  2086. inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
  2087. />
  2088. <path
  2089. id="path5373"
  2090. style="fill:url(#linearGradient13556);fill-rule:evenodd"
  2091. 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"
  2092. inkscape:connector-curvature="0"
  2093. inkscape:path-effect="#path-effect4517-1"
  2094. inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
  2095. />
  2096. <path
  2097. id="path5375"
  2098. style="fill:url(#linearGradient13558);fill-rule:evenodd"
  2099. 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"
  2100. inkscape:connector-curvature="0"
  2101. inkscape:path-effect="#path-effect4521-8"
  2102. inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
  2103. />
  2104. <path
  2105. id="path5377"
  2106. style="fill:url(#linearGradient13560);fill-rule:evenodd"
  2107. 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"
  2108. inkscape:connector-curvature="0"
  2109. inkscape:path-effect="#path-effect4525-4"
  2110. inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
  2111. />
  2112. <path
  2113. id="path5379"
  2114. style="fill:url(#linearGradient13562);fill-rule:evenodd"
  2115. 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"
  2116. inkscape:connector-curvature="0"
  2117. inkscape:path-effect="#path-effect4529-7"
  2118. inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
  2119. />
  2120. <path
  2121. id="path5381"
  2122. style="fill:url(#linearGradient13564);fill-rule:evenodd"
  2123. 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"
  2124. inkscape:connector-curvature="0"
  2125. inkscape:path-effect="#path-effect4533-9"
  2126. inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
  2127. />
  2128. <path
  2129. id="path5383"
  2130. style="fill:url(#linearGradient13566);fill-rule:evenodd"
  2131. 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"
  2132. inkscape:connector-curvature="0"
  2133. inkscape:path-effect="#path-effect4537-1"
  2134. inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
  2135. />
  2136. <path
  2137. id="path5385"
  2138. style="fill:url(#linearGradient13568);fill-rule:evenodd"
  2139. 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"
  2140. inkscape:connector-curvature="0"
  2141. inkscape:path-effect="#path-effect4541-8"
  2142. inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
  2143. />
  2144. <path
  2145. id="path5387"
  2146. style="fill:url(#linearGradient13570);fill-rule:evenodd"
  2147. 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"
  2148. inkscape:connector-curvature="0"
  2149. inkscape:path-effect="#path-effect4545-5"
  2150. inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
  2151. />
  2152. <path
  2153. id="path5389"
  2154. style="fill:url(#linearGradient13572);fill-rule:evenodd"
  2155. 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"
  2156. inkscape:connector-curvature="0"
  2157. inkscape:path-effect="#path-effect4549-2"
  2158. inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
  2159. />
  2160. <path
  2161. id="path5391"
  2162. style="fill:url(#linearGradient13574);fill-rule:evenodd"
  2163. 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"
  2164. inkscape:connector-curvature="0"
  2165. inkscape:path-effect="#path-effect4553-6"
  2166. inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
  2167. />
  2168. <path
  2169. id="path5393"
  2170. style="fill:url(#linearGradient13576);fill-rule:evenodd"
  2171. 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"
  2172. inkscape:connector-curvature="0"
  2173. inkscape:path-effect="#path-effect4557-2"
  2174. inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
  2175. />
  2176. <path
  2177. id="path5395"
  2178. style="fill:url(#linearGradient13578);fill-rule:evenodd"
  2179. 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"
  2180. inkscape:connector-curvature="0"
  2181. inkscape:path-effect="#path-effect4561-8"
  2182. inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
  2183. />
  2184. <path
  2185. id="path5397"
  2186. style="fill:url(#linearGradient13580);fill-rule:evenodd"
  2187. 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"
  2188. inkscape:connector-curvature="0"
  2189. inkscape:path-effect="#path-effect4565-5"
  2190. inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
  2191. />
  2192. <path
  2193. id="path5399"
  2194. style="fill:url(#linearGradient13582);fill-rule:evenodd"
  2195. 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"
  2196. inkscape:connector-curvature="0"
  2197. inkscape:path-effect="#path-effect4569-9"
  2198. inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
  2199. />
  2200. <path
  2201. id="path5401"
  2202. style="fill:url(#linearGradient13584);fill-rule:evenodd"
  2203. 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"
  2204. inkscape:connector-curvature="0"
  2205. inkscape:path-effect="#path-effect4573-0"
  2206. inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
  2207. />
  2208. <path
  2209. id="path5403"
  2210. style="fill:url(#linearGradient13586);fill-rule:evenodd"
  2211. 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"
  2212. inkscape:connector-curvature="0"
  2213. inkscape:path-effect="#path-effect4577-1"
  2214. inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
  2215. />
  2216. <path
  2217. id="path5405"
  2218. style="fill:url(#linearGradient13588);fill-rule:evenodd"
  2219. 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"
  2220. inkscape:connector-curvature="0"
  2221. inkscape:path-effect="#path-effect4581-8"
  2222. inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
  2223. />
  2224. <path
  2225. id="path5407"
  2226. style="fill:url(#linearGradient13590);fill-rule:evenodd"
  2227. 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"
  2228. inkscape:connector-curvature="0"
  2229. inkscape:path-effect="#path-effect4585-3"
  2230. inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
  2231. />
  2232. <path
  2233. id="path5409"
  2234. style="fill:url(#linearGradient13592);fill-rule:evenodd"
  2235. 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"
  2236. inkscape:connector-curvature="0"
  2237. inkscape:path-effect="#path-effect4589-4"
  2238. inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
  2239. />
  2240. <path
  2241. id="path5411"
  2242. style="fill:url(#linearGradient13594);fill-rule:evenodd"
  2243. 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"
  2244. inkscape:connector-curvature="0"
  2245. inkscape:path-effect="#path-effect4593-0"
  2246. 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"
  2247. />
  2248. <path
  2249. id="path5413"
  2250. style="fill:url(#linearGradient13596);fill-rule:evenodd"
  2251. 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"
  2252. inkscape:connector-curvature="0"
  2253. inkscape:path-effect="#path-effect4597-6"
  2254. inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
  2255. />
  2256. <path
  2257. id="path5415"
  2258. style="fill:url(#linearGradient13598);fill-rule:evenodd"
  2259. 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"
  2260. inkscape:connector-curvature="0"
  2261. inkscape:path-effect="#path-effect4601-8"
  2262. inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
  2263. />
  2264. </g
  2265. >
  2266. <g
  2267. id="g5497"
  2268. transform="matrix(-0.212 0 0 .18257 -475.08 189.84)"
  2269. >
  2270. <path
  2271. id="path5499"
  2272. style="fill:url(#linearGradient13520);fill-rule:evenodd"
  2273. 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"
  2274. inkscape:path-effect="#path-effect4441-5"
  2275. inkscape:connector-curvature="0"
  2276. inkscape:original-d="m -1034.3962,296.76807 c 51.39368,116.26533 78.50692,428.92583 80.81218,456.58896"
  2277. />
  2278. <path
  2279. id="path5501"
  2280. style="fill:url(#linearGradient13522);fill-rule:evenodd"
  2281. 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"
  2282. inkscape:path-effect="#path-effect4445-7"
  2283. inkscape:connector-curvature="0"
  2284. inkscape:original-d="m -925.29974,304.84929 c -17.38866,158.33581 -20.13015,356.08401 0,496.99506"
  2285. />
  2286. <path
  2287. id="path5503"
  2288. style="fill:url(#linearGradient13524);fill-rule:evenodd"
  2289. 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"
  2290. inkscape:path-effect="#path-effect4449-1"
  2291. inkscape:connector-curvature="0"
  2292. inkscape:original-d="m -888.93425,329.09295 c 1.40635,151.07217 -28.67167,383.91352 4.04061,492.95445"
  2293. />
  2294. <path
  2295. id="path5505"
  2296. style="fill:url(#linearGradient13526);fill-rule:evenodd"
  2297. 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"
  2298. inkscape:path-effect="#path-effect4453-2"
  2299. inkscape:connector-curvature="0"
  2300. inkscape:original-d="m -856.60937,353.33661 c -13.47516,161.30672 -38.15642,341.82857 -4.04061,501.03567"
  2301. />
  2302. <path
  2303. id="path5507"
  2304. style="fill:url(#linearGradient13528);fill-rule:evenodd"
  2305. 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"
  2306. inkscape:path-effect="#path-effect4457-6"
  2307. inkscape:connector-curvature="0"
  2308. inkscape:original-d="m -816.20327,417.98638 c 2.10814,171.17673 -9.67941,345.18547 16.16244,513.1575"
  2309. />
  2310. <path
  2311. id="path5509"
  2312. style="fill:url(#linearGradient13530);fill-rule:evenodd"
  2313. 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"
  2314. inkscape:path-effect="#path-effect4461-4"
  2315. inkscape:connector-curvature="0"
  2316. inkscape:original-d="m -1034.3962,486.67675 c 59.43094,156.06741 69.77076,326.77105 92.93402,488.91384"
  2317. />
  2318. <path
  2319. id="path5511"
  2320. style="fill:url(#linearGradient13532);fill-rule:evenodd"
  2321. 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"
  2322. inkscape:path-effect="#path-effect4465-3"
  2323. inkscape:connector-curvature="0"
  2324. inkscape:original-d="m -945.50279,450.31126 c 32.26278,159.38529 17.81853,325.30338 32.32488,484.87323"
  2325. />
  2326. <path
  2327. id="path5513"
  2328. style="fill:url(#linearGradient13534);fill-rule:evenodd"
  2329. 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"
  2330. inkscape:path-effect="#path-effect4469-2"
  2331. inkscape:connector-curvature="0"
  2332. inkscape:original-d="m -844.48754,506.8798 c -25.14899,127.04648 -39.98561,269.36756 -32.32488,391.93919"
  2333. />
  2334. <path
  2335. id="path5515"
  2336. style="fill:url(#linearGradient13536);fill-rule:evenodd"
  2337. 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"
  2338. inkscape:path-effect="#path-effect4473-6"
  2339. inkscape:connector-curvature="0"
  2340. inkscape:original-d="m -828.3251,539.20468 c 3.86428,146.80016 -27.22934,296.55675 -16.16244,440.42652"
  2341. />
  2342. <path
  2343. id="path5517"
  2344. style="fill:url(#linearGradient13538);fill-rule:evenodd"
  2345. 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"
  2346. inkscape:path-effect="#path-effect4477-5"
  2347. inkscape:connector-curvature="0"
  2348. inkscape:original-d="m -1050.5587,539.20468 c 23.215,116.64543 57.79608,235.736 68.69041,355.5737"
  2349. />
  2350. <path
  2351. id="path5519"
  2352. style="fill:url(#linearGradient13540);fill-rule:evenodd"
  2353. 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"
  2354. inkscape:path-effect="#path-effect4481-6"
  2355. inkscape:connector-curvature="0"
  2356. inkscape:original-d="m -941.46218,486.67675 c -52.38877,152.08855 -73.41112,349.81268 -44.44672,509.11689"
  2357. />
  2358. <path
  2359. id="path5521"
  2360. style="fill:url(#linearGradient13542);fill-rule:evenodd"
  2361. 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"
  2362. inkscape:path-effect="#path-effect4485-8"
  2363. inkscape:connector-curvature="0"
  2364. inkscape:original-d="m -913.17791,591.73262 c -29.17883,114.68699 -28.28427,236.70194 -28.28427,355.5737"
  2365. />
  2366. <path
  2367. id="path5523"
  2368. style="fill:url(#linearGradient13544);fill-rule:evenodd"
  2369. 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"
  2370. inkscape:path-effect="#path-effect4489-2"
  2371. inkscape:connector-curvature="0"
  2372. inkscape:original-d="m -876.81242,563.44834 c 3.72009,114.05503 1.89816,233.62251 20.20305,343.45187"
  2373. />
  2374. <path
  2375. id="path5525"
  2376. style="fill:url(#linearGradient13546);fill-rule:evenodd"
  2377. 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"
  2378. inkscape:path-effect="#path-effect4493-9"
  2379. inkscape:connector-curvature="0"
  2380. inkscape:original-d="m -779.83778,555.36712 c -6.79317,109.3677 -20.20305,217.26792 -20.20305,327.28943"
  2381. />
  2382. <path
  2383. id="path5527"
  2384. style="fill:url(#linearGradient13548);fill-rule:evenodd"
  2385. 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"
  2386. inkscape:path-effect="#path-effect4497-4"
  2387. inkscape:connector-curvature="0"
  2388. inkscape:original-d="m -735.39106,559.40773 c -28.67349,65.63614 -40.4061,478.89427 -40.4061,311.12699"
  2389. />
  2390. <path
  2391. id="path5529"
  2392. style="fill:url(#linearGradient13550);fill-rule:evenodd"
  2393. 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"
  2394. inkscape:path-effect="#path-effect4505-1"
  2395. inkscape:connector-curvature="0"
  2396. inkscape:original-d="m -892.97486,583.6514 c 12.00465,117.99195 61.95602,228.96791 92.93403,343.45187"
  2397. />
  2398. <path
  2399. id="path5531"
  2400. style="fill:url(#linearGradient13552);fill-rule:evenodd"
  2401. 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"
  2402. inkscape:path-effect="#path-effect4509-3"
  2403. inkscape:connector-curvature="0"
  2404. inkscape:original-d="m -965.70585,620.01689 c -4.32589,117.33259 36.29662,344.4773 52.52794,420.22351"
  2405. />
  2406. <path
  2407. id="path5533"
  2408. style="fill:url(#linearGradient13554);fill-rule:evenodd"
  2409. 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"
  2410. inkscape:path-effect="#path-effect4513-4"
  2411. inkscape:connector-curvature="0"
  2412. inkscape:original-d="m -929.34035,660.42299 c 44.27021,135.45986 32.79246,350.53171 48.48732,452.54831"
  2413. />
  2414. <path
  2415. id="path5535"
  2416. style="fill:url(#linearGradient13556);fill-rule:evenodd"
  2417. 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"
  2418. inkscape:path-effect="#path-effect4517-1"
  2419. inkscape:connector-curvature="0"
  2420. inkscape:original-d="m -816.20327,672.54482 c -5.9826,123.49843 -28.28427,263.28688 -28.28427,379.81738"
  2421. />
  2422. <path
  2423. id="path5537"
  2424. style="fill:url(#linearGradient13558);fill-rule:evenodd"
  2425. 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"
  2426. inkscape:path-effect="#path-effect4521-8"
  2427. inkscape:connector-curvature="0"
  2428. inkscape:original-d="M -775.79716,729.11336 C -775.22998,810.36746 -787.919,1040.39 -787.919,1064.484"
  2429. />
  2430. <path
  2431. id="path5539"
  2432. style="fill:url(#linearGradient13560);fill-rule:evenodd"
  2433. 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"
  2434. inkscape:path-effect="#path-effect4525-4"
  2435. inkscape:connector-curvature="0"
  2436. inkscape:original-d="m -743.47228,664.4636 c -14.61513,106.08869 -32.21078,212.66892 -40.40611,319.20821"
  2437. />
  2438. <path
  2439. id="path5541"
  2440. style="fill:url(#linearGradient13562);fill-rule:evenodd"
  2441. 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"
  2442. inkscape:path-effect="#path-effect4529-7"
  2443. inkscape:connector-curvature="0"
  2444. inkscape:original-d="m -707.10679,636.17933 c -12.89933,123.37198 -42.63347,278.48865 -48.48732,383.85797"
  2445. />
  2446. <path
  2447. id="path5543"
  2448. style="fill:url(#linearGradient13564);fill-rule:evenodd"
  2449. 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"
  2450. inkscape:path-effect="#path-effect4533-9"
  2451. inkscape:connector-curvature="0"
  2452. inkscape:original-d="m -832.36571,603.85445 c -43.47256,118.05228 -67.96301,254.47817 -56.56854,379.81736"
  2453. />
  2454. <path
  2455. id="path5545"
  2456. style="fill:url(#linearGradient13566);fill-rule:evenodd"
  2457. 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"
  2458. inkscape:path-effect="#path-effect4537-1"
  2459. inkscape:connector-curvature="0"
  2460. inkscape:original-d="m -771.75655,648.30116 c 2.54206,148.76737 -24.24367,295.91881 -24.24367,444.46714"
  2461. />
  2462. <path
  2463. id="path5547"
  2464. style="fill:url(#linearGradient13568);fill-rule:evenodd"
  2465. 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"
  2466. inkscape:path-effect="#path-effect4541-8"
  2467. inkscape:connector-curvature="0"
  2468. inkscape:original-d="m -876.81242,716.99153 c 12.58827,110.39116 -13.32288,231.9533 36.36549,331.33007"
  2469. />
  2470. <path
  2471. id="path5549"
  2472. style="fill:url(#linearGradient13570);fill-rule:evenodd"
  2473. 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"
  2474. inkscape:path-effect="#path-effect4545-5"
  2475. inkscape:connector-curvature="0"
  2476. inkscape:original-d="m -796.00022,664.4636 c -5.99138,129.78851 -20.88309,257.99828 -32.32488,383.858"
  2477. />
  2478. <path
  2479. id="path5551"
  2480. style="fill:url(#linearGradient13572);fill-rule:evenodd"
  2481. 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"
  2482. inkscape:path-effect="#path-effect4549-2"
  2483. inkscape:connector-curvature="0"
  2484. inkscape:original-d="m -1026.315,680.62604 c 3.7484,130.86937 41.62141,261.06091 52.52793,391.93916"
  2485. />
  2486. <path
  2487. id="path5553"
  2488. style="fill:url(#linearGradient13574);fill-rule:evenodd"
  2489. 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"
  2490. inkscape:path-effect="#path-effect4553-6"
  2491. inkscape:connector-curvature="0"
  2492. inkscape:original-d="m -973.78707,749.31642 c 24.39753,96.1066 29.60644,198.50275 44.44672,294.96458"
  2493. />
  2494. <path
  2495. id="path5555"
  2496. style="fill:url(#linearGradient13576);fill-rule:evenodd"
  2497. 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"
  2498. inkscape:path-effect="#path-effect4557-2"
  2499. inkscape:connector-curvature="0"
  2500. inkscape:original-d="m -1062.6805,611.93567 c 2.5695,130.37931 42.4566,261.01217 52.5279,391.93923"
  2501. />
  2502. <path
  2503. id="path5557"
  2504. style="fill:url(#linearGradient13578);fill-rule:evenodd"
  2505. 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"
  2506. inkscape:path-effect="#path-effect4561-8"
  2507. inkscape:connector-curvature="0"
  2508. inkscape:original-d="m -1103.0866,636.17933 c 37.3466,125.19861 59.459,254.61836 68.6904,383.85797"
  2509. />
  2510. <path
  2511. id="path5559"
  2512. style="fill:url(#linearGradient13580);fill-rule:evenodd"
  2513. 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"
  2514. inkscape:path-effect="#path-effect4565-5"
  2515. inkscape:connector-curvature="0"
  2516. inkscape:original-d="m -1022.2744,797.80374 c 14.9397,87.22129 24.24367,174.46466 24.24367,262.63966"
  2517. />
  2518. <path
  2519. id="path5561"
  2520. style="fill:url(#linearGradient13582);fill-rule:evenodd"
  2521. 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"
  2522. inkscape:path-effect="#path-effect4569-9"
  2523. inkscape:connector-curvature="0"
  2524. inkscape:original-d="m -1002.0713,854.37228 c -16.0631,86.96913 -4.0265,173.84562 8.08118,258.59902"
  2525. />
  2526. <path
  2527. id="path5563"
  2528. style="fill:url(#linearGradient13584);fill-rule:evenodd"
  2529. 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"
  2530. inkscape:path-effect="#path-effect4573-0"
  2531. inkscape:connector-curvature="0"
  2532. inkscape:original-d="m -953.58402,886.69716 c -2.72783,0.9639 -0.0883,140.84764 8.08123,193.94934"
  2533. />
  2534. <path
  2535. id="path5565"
  2536. style="fill:url(#linearGradient13586);fill-rule:evenodd"
  2537. 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"
  2538. inkscape:path-effect="#path-effect4577-1"
  2539. inkscape:connector-curvature="0"
  2540. inkscape:original-d="m -953.58402,850.33167 c -26.21736,53.99185 -24.24366,117.72471 -24.24366,177.78683"
  2541. />
  2542. <path
  2543. id="path5567"
  2544. style="fill:url(#linearGradient13588);fill-rule:evenodd"
  2545. 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"
  2546. inkscape:path-effect="#path-effect4581-8"
  2547. inkscape:connector-curvature="0"
  2548. inkscape:original-d="m -909.1373,838.20984 c 11.07634,80.6442 -4.04061,161.61423 -4.04061,242.43666"
  2549. />
  2550. <path
  2551. id="path5569"
  2552. style="fill:url(#linearGradient13590);fill-rule:evenodd"
  2553. 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"
  2554. inkscape:path-effect="#path-effect4585-3"
  2555. inkscape:connector-curvature="0"
  2556. inkscape:original-d="m -860.64998,846.29106 c -4.26395,67.45378 -12.12183,133.89728 -12.12183,202.03054"
  2557. />
  2558. <path
  2559. id="path5571"
  2560. style="fill:url(#linearGradient13592);fill-rule:evenodd"
  2561. 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"
  2562. inkscape:path-effect="#path-effect4589-4"
  2563. inkscape:connector-curvature="0"
  2564. inkscape:original-d="m -787.919,842.25045 c -7.91454,71.81085 -12.12183,142.23029 -12.12183,214.15235"
  2565. />
  2566. <path
  2567. id="path5573"
  2568. style="fill:url(#linearGradient13594);fill-rule:evenodd"
  2569. 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"
  2570. inkscape:path-effect="#path-effect4593-0"
  2571. inkscape:connector-curvature="0"
  2572. 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"
  2573. />
  2574. <path
  2575. id="path5575"
  2576. style="fill:url(#linearGradient13596);fill-rule:evenodd"
  2577. 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"
  2578. inkscape:path-effect="#path-effect4597-6"
  2579. inkscape:connector-curvature="0"
  2580. inkscape:original-d="m -719.22862,765.47886 c -8.26232,82.99174 -23.64361,167.82555 -36.36549,250.51784"
  2581. />
  2582. <path
  2583. id="path5577"
  2584. style="fill:url(#linearGradient13598);fill-rule:evenodd"
  2585. 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"
  2586. inkscape:path-effect="#path-effect4601-8"
  2587. inkscape:connector-curvature="0"
  2588. inkscape:original-d="m -715.18801,510.92041 c -28.473,136.6875 -44.44671,276.32292 -44.44671,416.18286"
  2589. />
  2590. </g
  2591. >
  2592. </g
  2593. >
  2594. <metadata
  2595. >
  2596. <rdf:RDF
  2597. >
  2598. <cc:Work
  2599. >
  2600. <dc:format
  2601. >image/svg+xml</dc:format
  2602. >
  2603. <dc:type
  2604. rdf:resource="http://purl.org/dc/dcmitype/StillImage"
  2605. />
  2606. <cc:license
  2607. rdf:resource="http://creativecommons.org/licenses/publicdomain/"
  2608. />
  2609. <dc:publisher
  2610. >
  2611. <cc:Agent
  2612. rdf:about="http://openclipart.org/"
  2613. >
  2614. <dc:title
  2615. >Openclipart</dc:title
  2616. >
  2617. </cc:Agent
  2618. >
  2619. </dc:publisher
  2620. >
  2621. <dc:title
  2622. >egg in grass</dc:title
  2623. >
  2624. <dc:date
  2625. >2013-03-02T16:26:05</dc:date
  2626. >
  2627. <dc:description
  2628. >Three eggs in grass</dc:description
  2629. >
  2630. <dc:source
  2631. >https://openclipart.org/detail/175421/egg-in-grass-by-jarda-175421</dc:source
  2632. >
  2633. <dc:creator
  2634. >
  2635. <cc:Agent
  2636. >
  2637. <dc:title
  2638. >jarda</dc:title
  2639. >
  2640. </cc:Agent
  2641. >
  2642. </dc:creator
  2643. >
  2644. <dc:subject
  2645. >
  2646. <rdf:Bag
  2647. >
  2648. <rdf:li
  2649. >easter</rdf:li
  2650. >
  2651. <rdf:li
  2652. >egg</rdf:li
  2653. >
  2654. <rdf:li
  2655. >eggs</rdf:li
  2656. >
  2657. <rdf:li
  2658. >grass</rdf:li
  2659. >
  2660. </rdf:Bag
  2661. >
  2662. </dc:subject
  2663. >
  2664. </cc:Work
  2665. >
  2666. <cc:License
  2667. rdf:about="http://creativecommons.org/licenses/publicdomain/"
  2668. >
  2669. <cc:permits
  2670. rdf:resource="http://creativecommons.org/ns#Reproduction"
  2671. />
  2672. <cc:permits
  2673. rdf:resource="http://creativecommons.org/ns#Distribution"
  2674. />
  2675. <cc:permits
  2676. rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
  2677. />
  2678. </cc:License
  2679. >
  2680. </rdf:RDF
  2681. >
  2682. </metadata
  2683. >
  2684. </svg
  2685. >