calligraauthor.svg 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. width="128"
  13. height="128"
  14. id="svg2"
  15. sodipodi:version="0.32"
  16. inkscape:version="0.48.4 r9939"
  17. version="1.0"
  18. sodipodi:docname="hisc-app-calligraauthor.svg"
  19. inkscape:output_extension="org.inkscape.output.svgz.inkscape"
  20. inkscape:export-filename="/home/timo/hi1024-app-calligraauthor.png"
  21. inkscape:export-xdpi="720"
  22. inkscape:export-ydpi="720">
  23. <defs
  24. id="defs4">
  25. <linearGradient
  26. id="linearGradient4425">
  27. <stop
  28. style="stop-color:#000000;stop-opacity:0.30769232;"
  29. offset="0"
  30. id="stop4429" />
  31. <stop
  32. style="stop-color:#000000;stop-opacity:0;"
  33. offset="1"
  34. id="stop4431" />
  35. </linearGradient>
  36. <linearGradient
  37. id="linearGradient4372">
  38. <stop
  39. id="stop4374"
  40. offset="0"
  41. style="stop-color:#ffffff;stop-opacity:0" />
  42. <stop
  43. id="stop4376"
  44. offset="1"
  45. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  46. </linearGradient>
  47. <linearGradient
  48. id="linearGradient4330">
  49. <stop
  50. style="stop-color:#000000;stop-opacity:0.56390977;"
  51. offset="0"
  52. id="stop4332" />
  53. <stop
  54. style="stop-color:#000000;stop-opacity:0;"
  55. offset="1"
  56. id="stop4334" />
  57. </linearGradient>
  58. <linearGradient
  59. id="linearGradient4302">
  60. <stop
  61. style="stop-color:#f28f32;stop-opacity:0.04511278;"
  62. offset="0"
  63. id="stop4304" />
  64. <stop
  65. id="stop4310"
  66. offset="0.5"
  67. style="stop-color:#df720b;stop-opacity:1;" />
  68. <stop
  69. style="stop-color:#473d34;stop-opacity:1;"
  70. offset="1"
  71. id="stop4306" />
  72. </linearGradient>
  73. <linearGradient
  74. id="linearGradient4255">
  75. <stop
  76. style="stop-color:#4587cf;stop-opacity:1;"
  77. offset="0"
  78. id="stop4257" />
  79. <stop
  80. id="stop4277"
  81. offset="0.5"
  82. style="stop-color:#4ad9ed;stop-opacity:1;" />
  83. <stop
  84. style="stop-color:#e7edec;stop-opacity:1;"
  85. offset="1"
  86. id="stop4259" />
  87. </linearGradient>
  88. <linearGradient
  89. id="linearGradient4508">
  90. <stop
  91. style="stop-color:#ffffff;stop-opacity:1;"
  92. offset="0"
  93. id="stop4510" />
  94. <stop
  95. style="stop-color:#e6e6e6;stop-opacity:1;"
  96. offset="1"
  97. id="stop4512" />
  98. </linearGradient>
  99. <linearGradient
  100. inkscape:collect="always"
  101. id="linearGradient4489">
  102. <stop
  103. style="stop-color:#464646;stop-opacity:1"
  104. offset="0"
  105. id="stop4492" />
  106. <stop
  107. style="stop-color:#686868;stop-opacity:1"
  108. offset="1"
  109. id="stop4494" />
  110. </linearGradient>
  111. <linearGradient
  112. id="linearGradient4423">
  113. <stop
  114. id="stop4425"
  115. offset="0"
  116. style="stop-color:#646464;stop-opacity:1" />
  117. <stop
  118. id="stop4427"
  119. offset="1"
  120. style="stop-color:#717171;stop-opacity:1" />
  121. </linearGradient>
  122. <linearGradient
  123. id="linearGradient4387">
  124. <stop
  125. style="stop-color:#828282;stop-opacity:1;"
  126. offset="0"
  127. id="stop4389" />
  128. <stop
  129. style="stop-color:#b4b4b4;stop-opacity:1;"
  130. offset="1"
  131. id="stop4391" />
  132. </linearGradient>
  133. <linearGradient
  134. id="linearGradient4375">
  135. <stop
  136. id="stop4377"
  137. offset="0"
  138. style="stop-color:#b86d52;stop-opacity:1" />
  139. <stop
  140. id="stop4379"
  141. offset="1"
  142. style="stop-color:#f0b280;stop-opacity:1" />
  143. </linearGradient>
  144. <linearGradient
  145. id="linearGradient4279">
  146. <stop
  147. style="stop-color:#c63434;stop-opacity:1;"
  148. offset="0"
  149. id="stop4281" />
  150. <stop
  151. style="stop-color:#f4e49f;stop-opacity:1;"
  152. offset="1"
  153. id="stop4283" />
  154. </linearGradient>
  155. <linearGradient
  156. id="linearGradient4129">
  157. <stop
  158. style="stop-color:#505050;stop-opacity:1;"
  159. offset="0"
  160. id="stop4131" />
  161. <stop
  162. style="stop-color:#5a5a5a;stop-opacity:1;"
  163. offset="1"
  164. id="stop4133" />
  165. </linearGradient>
  166. <linearGradient
  167. id="linearGradient4599">
  168. <stop
  169. style="stop-color:#ffffff;stop-opacity:0;"
  170. offset="0"
  171. id="stop4601" />
  172. <stop
  173. id="stop4603"
  174. offset="0.66666669"
  175. style="stop-color:#ffffff;stop-opacity:0.49803922;" />
  176. <stop
  177. style="stop-color:#ffffff;stop-opacity:0;"
  178. offset="1"
  179. id="stop4605" />
  180. </linearGradient>
  181. <linearGradient
  182. id="linearGradient4550">
  183. <stop
  184. id="stop4552"
  185. offset="0"
  186. style="stop-color:#ffffff;stop-opacity:0;" />
  187. <stop
  188. style="stop-color:#ffffff;stop-opacity:0.49803922;"
  189. offset="0.33333334"
  190. id="stop4554" />
  191. <stop
  192. id="stop4556"
  193. offset="1"
  194. style="stop-color:#ffffff;stop-opacity:0;" />
  195. </linearGradient>
  196. <linearGradient
  197. id="linearGradient4503">
  198. <stop
  199. style="stop-color:#000000;stop-opacity:0;"
  200. offset="0"
  201. id="stop4505" />
  202. <stop
  203. id="stop4511"
  204. offset="0.25"
  205. style="stop-color:#000000;stop-opacity:0.49803922;" />
  206. <stop
  207. style="stop-color:#000000;stop-opacity:0;"
  208. offset="1"
  209. id="stop4507" />
  210. </linearGradient>
  211. <linearGradient
  212. id="linearGradient4487">
  213. <stop
  214. style="stop-color:#b89051;stop-opacity:1;"
  215. offset="0"
  216. id="stop4489" />
  217. <stop
  218. id="stop4499"
  219. offset="0.5"
  220. style="stop-color:#563724;stop-opacity:1;" />
  221. <stop
  222. style="stop-color:#7da0a2;stop-opacity:1;"
  223. offset="1"
  224. id="stop4491" />
  225. </linearGradient>
  226. <linearGradient
  227. id="linearGradient4475">
  228. <stop
  229. style="stop-color:#e6e6e6;stop-opacity:1;"
  230. offset="0"
  231. id="stop4477" />
  232. <stop
  233. id="stop4483"
  234. offset="0.7352941"
  235. style="stop-color:#121314;stop-opacity:0.49803922;" />
  236. <stop
  237. style="stop-color:#cae0e5;stop-opacity:1;"
  238. offset="1"
  239. id="stop4479" />
  240. </linearGradient>
  241. <linearGradient
  242. id="linearGradient4467">
  243. <stop
  244. style="stop-color:#000000;stop-opacity:1;"
  245. offset="0"
  246. id="stop4469" />
  247. <stop
  248. style="stop-color:#4d4f56;stop-opacity:0;"
  249. offset="1"
  250. id="stop4471" />
  251. </linearGradient>
  252. <inkscape:path-effect
  253. effect="skeletal"
  254. id="path-effect4424"
  255. is_visible="true"
  256. pattern="m 0.25,0.25 0,80"
  257. copytype="single_stretched"
  258. prop_scale="1"
  259. scale_y_rel="false"
  260. spacing="0"
  261. normal_offset="0"
  262. tang_offset="0"
  263. prop_units="false"
  264. vertical_pattern="false"
  265. fuse_tolerance="0" />
  266. <linearGradient
  267. id="linearGradient4416">
  268. <stop
  269. id="stop4418"
  270. offset="0"
  271. style="stop-color:#979797;stop-opacity:1;" />
  272. <stop
  273. id="stop4420"
  274. offset="1"
  275. style="stop-color:#d5d5d5;stop-opacity:1;" />
  276. </linearGradient>
  277. <linearGradient
  278. inkscape:collect="always"
  279. id="linearGradient4392">
  280. <stop
  281. style="stop-color:#000000;stop-opacity:1;"
  282. offset="0"
  283. id="stop4394" />
  284. <stop
  285. style="stop-color:#000000;stop-opacity:0;"
  286. offset="1"
  287. id="stop4396" />
  288. </linearGradient>
  289. <inkscape:path-effect
  290. effect="skeletal"
  291. id="path-effect4222"
  292. is_visible="true"
  293. pattern="M 0,0 1,0"
  294. copytype="single_stretched"
  295. prop_scale="1"
  296. scale_y_rel="false"
  297. spacing="0"
  298. normal_offset="0"
  299. tang_offset="0"
  300. prop_units="false"
  301. vertical_pattern="false"
  302. fuse_tolerance="0" />
  303. <inkscape:path-effect
  304. effect="skeletal"
  305. id="path-effect4212"
  306. is_visible="true"
  307. pattern="M 0,0 1,0"
  308. copytype="single_stretched"
  309. prop_scale="1"
  310. scale_y_rel="false"
  311. spacing="0"
  312. normal_offset="0"
  313. tang_offset="0"
  314. prop_units="false"
  315. vertical_pattern="false"
  316. fuse_tolerance="0" />
  317. <inkscape:path-effect
  318. effect="skeletal"
  319. id="path-effect4202"
  320. is_visible="true"
  321. pattern="M 0,0 1,0"
  322. copytype="single_stretched"
  323. prop_scale="1"
  324. scale_y_rel="false"
  325. spacing="0"
  326. normal_offset="0"
  327. tang_offset="0"
  328. prop_units="false"
  329. vertical_pattern="false"
  330. fuse_tolerance="0" />
  331. <inkscape:path-effect
  332. effect="skeletal"
  333. id="path-effect4192"
  334. is_visible="true"
  335. pattern="M 0,0 1,0"
  336. copytype="single_stretched"
  337. prop_scale="1"
  338. scale_y_rel="false"
  339. spacing="0"
  340. normal_offset="0"
  341. tang_offset="0"
  342. prop_units="false"
  343. vertical_pattern="false"
  344. fuse_tolerance="0" />
  345. <inkscape:path-effect
  346. effect="skeletal"
  347. id="path-effect3976"
  348. is_visible="true"
  349. pattern="M 4,0 5,0"
  350. copytype="single_stretched"
  351. prop_scale="1"
  352. scale_y_rel="false"
  353. spacing="0"
  354. normal_offset="0"
  355. tang_offset="0"
  356. prop_units="false"
  357. vertical_pattern="false"
  358. fuse_tolerance="0" />
  359. <inkscape:path-effect
  360. effect="skeletal"
  361. id="path-effect3972"
  362. is_visible="true"
  363. pattern="M 0,0 1,0"
  364. copytype="single_stretched"
  365. prop_scale="1"
  366. scale_y_rel="false"
  367. spacing="0"
  368. normal_offset="0"
  369. tang_offset="0"
  370. prop_units="false"
  371. vertical_pattern="false"
  372. fuse_tolerance="0" />
  373. <inkscape:path-effect
  374. effect="skeletal"
  375. id="path-effect3968"
  376. is_visible="true"
  377. pattern="M 0,0 1,0"
  378. copytype="single_stretched"
  379. prop_scale="1"
  380. scale_y_rel="false"
  381. spacing="0"
  382. normal_offset="0"
  383. tang_offset="0"
  384. prop_units="false"
  385. vertical_pattern="false"
  386. fuse_tolerance="0" />
  387. <inkscape:path-effect
  388. effect="skeletal"
  389. id="path-effect3956"
  390. is_visible="true"
  391. pattern="M 0,0 1,0"
  392. copytype="single_stretched"
  393. prop_scale="1"
  394. scale_y_rel="false"
  395. spacing="0"
  396. normal_offset="0"
  397. tang_offset="0"
  398. prop_units="false"
  399. vertical_pattern="false"
  400. fuse_tolerance="0" />
  401. <inkscape:path-effect
  402. effect="skeletal"
  403. id="path-effect3952"
  404. is_visible="true"
  405. pattern="M 0,0 1,0"
  406. copytype="single_stretched"
  407. prop_scale="1"
  408. scale_y_rel="false"
  409. spacing="0"
  410. normal_offset="0"
  411. tang_offset="0"
  412. prop_units="false"
  413. vertical_pattern="false"
  414. fuse_tolerance="0" />
  415. <inkscape:path-effect
  416. effect="skeletal"
  417. id="path-effect3948"
  418. is_visible="true"
  419. pattern="M 0,0 1,0"
  420. copytype="single_stretched"
  421. prop_scale="1"
  422. scale_y_rel="false"
  423. spacing="0"
  424. normal_offset="0"
  425. tang_offset="0"
  426. prop_units="false"
  427. vertical_pattern="false"
  428. fuse_tolerance="0" />
  429. <inkscape:path-effect
  430. effect="skeletal"
  431. id="path-effect3944"
  432. is_visible="true"
  433. pattern="M 0,0 1,0"
  434. copytype="single_stretched"
  435. prop_scale="1"
  436. scale_y_rel="false"
  437. spacing="0"
  438. normal_offset="0"
  439. tang_offset="0"
  440. prop_units="false"
  441. vertical_pattern="false"
  442. fuse_tolerance="0" />
  443. <inkscape:path-effect
  444. effect="skeletal"
  445. id="path-effect3940"
  446. is_visible="true"
  447. pattern="M 0,0 1,0"
  448. copytype="single_stretched"
  449. prop_scale="1"
  450. scale_y_rel="false"
  451. spacing="0"
  452. normal_offset="0"
  453. tang_offset="0"
  454. prop_units="false"
  455. vertical_pattern="false"
  456. fuse_tolerance="0" />
  457. <inkscape:path-effect
  458. effect="skeletal"
  459. id="path-effect3936"
  460. is_visible="true"
  461. pattern="M 0,0 1,0"
  462. copytype="single_stretched"
  463. prop_scale="1"
  464. scale_y_rel="false"
  465. spacing="0"
  466. normal_offset="0"
  467. tang_offset="0"
  468. prop_units="false"
  469. vertical_pattern="false"
  470. fuse_tolerance="0" />
  471. <inkscape:path-effect
  472. effect="skeletal"
  473. id="path-effect3932"
  474. is_visible="true"
  475. pattern="M 0,0 1,0"
  476. copytype="single_stretched"
  477. prop_scale="1"
  478. scale_y_rel="false"
  479. spacing="0"
  480. normal_offset="0"
  481. tang_offset="0"
  482. prop_units="false"
  483. vertical_pattern="false"
  484. fuse_tolerance="0" />
  485. <inkscape:path-effect
  486. effect="skeletal"
  487. id="path-effect3928"
  488. is_visible="true"
  489. pattern="M 0,0 1,0"
  490. copytype="single_stretched"
  491. prop_scale="1"
  492. scale_y_rel="false"
  493. spacing="0"
  494. normal_offset="0"
  495. tang_offset="0"
  496. prop_units="false"
  497. vertical_pattern="false"
  498. fuse_tolerance="0" />
  499. <inkscape:path-effect
  500. effect="skeletal"
  501. id="path-effect3924"
  502. is_visible="true"
  503. pattern="M 0,0 1,0"
  504. copytype="single_stretched"
  505. prop_scale="1"
  506. scale_y_rel="false"
  507. spacing="0"
  508. normal_offset="0"
  509. tang_offset="0"
  510. prop_units="false"
  511. vertical_pattern="false"
  512. fuse_tolerance="0" />
  513. <inkscape:path-effect
  514. effect="skeletal"
  515. id="path-effect3920"
  516. is_visible="true"
  517. pattern="M 0,0 1,0"
  518. copytype="single_stretched"
  519. prop_scale="1"
  520. scale_y_rel="false"
  521. spacing="0"
  522. normal_offset="0"
  523. tang_offset="0"
  524. prop_units="false"
  525. vertical_pattern="false"
  526. fuse_tolerance="0" />
  527. <linearGradient
  528. inkscape:collect="always"
  529. id="linearGradient3525">
  530. <stop
  531. style="stop-color:#000000;stop-opacity:1;"
  532. offset="0"
  533. id="stop3527" />
  534. <stop
  535. style="stop-color:#000000;stop-opacity:0;"
  536. offset="1"
  537. id="stop3529" />
  538. </linearGradient>
  539. <linearGradient
  540. id="linearGradient3164">
  541. <stop
  542. style="stop-color:#fafafa;stop-opacity:1"
  543. offset="0"
  544. id="stop3166" />
  545. <stop
  546. id="stop3190"
  547. offset="0.5"
  548. style="stop-color:#fafafa;stop-opacity:1;" />
  549. <stop
  550. id="stop3172"
  551. offset="1"
  552. style="stop-color:#eeeeee;stop-opacity:1" />
  553. </linearGradient>
  554. <clipPath
  555. id="clipPath3451"
  556. clipPathUnits="userSpaceOnUse">
  557. <path
  558. style="opacity:0.70499998;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  559. d="M 62.65625,4 C 61.672837,4 60.875,4.7978365 60.875,5.78125 L 60.875,8.03125 C 60.386341,8.0973482 60,8.4929275 60,9 L 60,57 C 60,57.55317 60.446831,58 61,58 C 60.44683,58 60,58.446831 60,59 L 60,111 L 61,142 C 61,142.55317 61.446831,143 62,143 L 68,143 C 68.55317,143 69,142.55317 69,142 L 70,111 L 70,59 C 70,58.44683 69.553173,58 69,58 C 69.55317,58 70,57.553169 70,57 L 70,9 C 70,8.44683 69.553173,8 69,8 L 69,5.78125 C 69,4.7978366 68.202165,4 67.21875,4 L 62.65625,4 z "
  560. id="path3453" />
  561. </clipPath>
  562. <clipPath
  563. id="clipPath3344"
  564. clipPathUnits="userSpaceOnUse">
  565. <path
  566. style="opacity:0.31000001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  567. d="M 62.65625,4 C 61.672837,4 60.875,4.7978365 60.875,5.78125 L 60.875,8.03125 C 60.386341,8.0973482 60,8.4929275 60,9 L 60,57 C 60,57.55317 60.446831,58 61,58 C 60.44683,58 60,58.446831 60,59 L 60,111 L 61,142 C 61,142.55317 61.446831,143 62,143 L 68,143 C 68.55317,143 69,142.55317 69,142 L 70,111 L 70,59 C 70,58.44683 69.553173,58 69,58 C 69.55317,58 70,57.553169 70,57 L 70,9 C 70,8.44683 69.553173,8 69,8 L 69,5.78125 C 69,4.7978366 68.202165,4 67.21875,4 L 62.65625,4 z "
  568. id="path3346" />
  569. </clipPath>
  570. <linearGradient
  571. id="linearGradient3293"
  572. inkscape:collect="always">
  573. <stop
  574. id="stop3295"
  575. offset="0"
  576. style="stop-color:#000000;stop-opacity:1;" />
  577. <stop
  578. id="stop3297"
  579. offset="1"
  580. style="stop-color:#000000;stop-opacity:0;" />
  581. </linearGradient>
  582. <linearGradient
  583. id="linearGradient3301">
  584. <stop
  585. id="stop3303"
  586. offset="0"
  587. style="stop-color:#eaeaea;stop-opacity:1;" />
  588. <stop
  589. style="stop-color:#f2f2f2;stop-opacity:1;"
  590. offset="0.22222222"
  591. id="stop3309" />
  592. <stop
  593. id="stop3311"
  594. offset="0.75"
  595. style="stop-color:#d0d0d0;stop-opacity:1;" />
  596. <stop
  597. id="stop3305"
  598. offset="1"
  599. style="stop-color:#dcdcdc;stop-opacity:1" />
  600. </linearGradient>
  601. <linearGradient
  602. id="linearGradient3366">
  603. <stop
  604. id="stop3368"
  605. offset="0"
  606. style="stop-color:#ffffff;stop-opacity:0;" />
  607. <stop
  608. style="stop-color:#ffffff;stop-opacity:1;"
  609. offset="0.5"
  610. id="stop3374" />
  611. <stop
  612. id="stop3370"
  613. offset="1"
  614. style="stop-color:#ffffff;stop-opacity:0;" />
  615. </linearGradient>
  616. <linearGradient
  617. id="linearGradient3602">
  618. <stop
  619. style="stop-color:#000000;stop-opacity:0;"
  620. offset="0"
  621. id="stop3604" />
  622. <stop
  623. style="stop-color:#080808;stop-opacity:1"
  624. offset="1"
  625. id="stop3606" />
  626. </linearGradient>
  627. <clipPath
  628. clipPathUnits="userSpaceOnUse"
  629. id="clipPath3611">
  630. <path
  631. style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  632. d="M 89,7 L 5,25 L 24,124 L 90,110 L 108,104 L 104.86911,84.758645 L 89,7 z "
  633. id="path3613"
  634. sodipodi:nodetypes="ccccccc" />
  635. </clipPath>
  636. <linearGradient
  637. inkscape:collect="always"
  638. xlink:href="#linearGradient3525"
  639. id="linearGradient3498"
  640. gradientUnits="userSpaceOnUse"
  641. x1="59.139973"
  642. y1="108.25226"
  643. x2="107.96648"
  644. y2="74.752258" />
  645. <linearGradient
  646. inkscape:collect="always"
  647. xlink:href="#linearGradient3293"
  648. id="linearGradient3532"
  649. gradientUnits="userSpaceOnUse"
  650. spreadMethod="reflect"
  651. x1="65.348648"
  652. y1="58"
  653. x2="72.100372"
  654. y2="58" />
  655. <inkscape:path-effect
  656. effect="skeletal"
  657. id="path-effect3976-8"
  658. is_visible="true"
  659. pattern="M 4,0 5,0"
  660. copytype="single_stretched"
  661. prop_scale="1"
  662. scale_y_rel="false"
  663. spacing="0"
  664. normal_offset="0"
  665. tang_offset="0"
  666. prop_units="false"
  667. vertical_pattern="false"
  668. fuse_tolerance="0" />
  669. <inkscape:path-effect
  670. effect="skeletal"
  671. id="path-effect3972-5"
  672. is_visible="true"
  673. pattern="M 0,0 1,0"
  674. copytype="single_stretched"
  675. prop_scale="1"
  676. scale_y_rel="false"
  677. spacing="0"
  678. normal_offset="0"
  679. tang_offset="0"
  680. prop_units="false"
  681. vertical_pattern="false"
  682. fuse_tolerance="0" />
  683. <inkscape:path-effect
  684. effect="skeletal"
  685. id="path-effect3968-0"
  686. is_visible="true"
  687. pattern="M 0,0 1,0"
  688. copytype="single_stretched"
  689. prop_scale="1"
  690. scale_y_rel="false"
  691. spacing="0"
  692. normal_offset="0"
  693. tang_offset="0"
  694. prop_units="false"
  695. vertical_pattern="false"
  696. fuse_tolerance="0" />
  697. <inkscape:path-effect
  698. effect="skeletal"
  699. id="path-effect3956-2"
  700. is_visible="true"
  701. pattern="M 0,0 1,0"
  702. copytype="single_stretched"
  703. prop_scale="1"
  704. scale_y_rel="false"
  705. spacing="0"
  706. normal_offset="0"
  707. tang_offset="0"
  708. prop_units="false"
  709. vertical_pattern="false"
  710. fuse_tolerance="0" />
  711. <inkscape:path-effect
  712. effect="skeletal"
  713. id="path-effect3952-4"
  714. is_visible="true"
  715. pattern="M 0,0 1,0"
  716. copytype="single_stretched"
  717. prop_scale="1"
  718. scale_y_rel="false"
  719. spacing="0"
  720. normal_offset="0"
  721. tang_offset="0"
  722. prop_units="false"
  723. vertical_pattern="false"
  724. fuse_tolerance="0" />
  725. <inkscape:path-effect
  726. effect="skeletal"
  727. id="path-effect3948-6"
  728. is_visible="true"
  729. pattern="M 0,0 1,0"
  730. copytype="single_stretched"
  731. prop_scale="1"
  732. scale_y_rel="false"
  733. spacing="0"
  734. normal_offset="0"
  735. tang_offset="0"
  736. prop_units="false"
  737. vertical_pattern="false"
  738. fuse_tolerance="0" />
  739. <inkscape:path-effect
  740. effect="skeletal"
  741. id="path-effect3944-7"
  742. is_visible="true"
  743. pattern="M 0,0 1,0"
  744. copytype="single_stretched"
  745. prop_scale="1"
  746. scale_y_rel="false"
  747. spacing="0"
  748. normal_offset="0"
  749. tang_offset="0"
  750. prop_units="false"
  751. vertical_pattern="false"
  752. fuse_tolerance="0" />
  753. <inkscape:path-effect
  754. effect="skeletal"
  755. id="path-effect3940-7"
  756. is_visible="true"
  757. pattern="M 0,0 1,0"
  758. copytype="single_stretched"
  759. prop_scale="1"
  760. scale_y_rel="false"
  761. spacing="0"
  762. normal_offset="0"
  763. tang_offset="0"
  764. prop_units="false"
  765. vertical_pattern="false"
  766. fuse_tolerance="0" />
  767. <inkscape:path-effect
  768. effect="skeletal"
  769. id="path-effect3936-3"
  770. is_visible="true"
  771. pattern="M 0,0 1,0"
  772. copytype="single_stretched"
  773. prop_scale="1"
  774. scale_y_rel="false"
  775. spacing="0"
  776. normal_offset="0"
  777. tang_offset="0"
  778. prop_units="false"
  779. vertical_pattern="false"
  780. fuse_tolerance="0" />
  781. <inkscape:path-effect
  782. effect="skeletal"
  783. id="path-effect3932-0"
  784. is_visible="true"
  785. pattern="M 0,0 1,0"
  786. copytype="single_stretched"
  787. prop_scale="1"
  788. scale_y_rel="false"
  789. spacing="0"
  790. normal_offset="0"
  791. tang_offset="0"
  792. prop_units="false"
  793. vertical_pattern="false"
  794. fuse_tolerance="0" />
  795. <inkscape:path-effect
  796. effect="skeletal"
  797. id="path-effect3928-0"
  798. is_visible="true"
  799. pattern="M 0,0 1,0"
  800. copytype="single_stretched"
  801. prop_scale="1"
  802. scale_y_rel="false"
  803. spacing="0"
  804. normal_offset="0"
  805. tang_offset="0"
  806. prop_units="false"
  807. vertical_pattern="false"
  808. fuse_tolerance="0" />
  809. <inkscape:path-effect
  810. effect="skeletal"
  811. id="path-effect3924-4"
  812. is_visible="true"
  813. pattern="M 0,0 1,0"
  814. copytype="single_stretched"
  815. prop_scale="1"
  816. scale_y_rel="false"
  817. spacing="0"
  818. normal_offset="0"
  819. tang_offset="0"
  820. prop_units="false"
  821. vertical_pattern="false"
  822. fuse_tolerance="0" />
  823. <inkscape:path-effect
  824. effect="skeletal"
  825. id="path-effect3920-6"
  826. is_visible="true"
  827. pattern="M 0,0 1,0"
  828. copytype="single_stretched"
  829. prop_scale="1"
  830. scale_y_rel="false"
  831. spacing="0"
  832. normal_offset="0"
  833. tang_offset="0"
  834. prop_units="false"
  835. vertical_pattern="false"
  836. fuse_tolerance="0" />
  837. <inkscape:path-effect
  838. effect="skeletal"
  839. id="path-effect4222-7"
  840. is_visible="true"
  841. pattern="M 0,0 1,0"
  842. copytype="single_stretched"
  843. prop_scale="1"
  844. scale_y_rel="false"
  845. spacing="0"
  846. normal_offset="0"
  847. tang_offset="0"
  848. prop_units="false"
  849. vertical_pattern="false"
  850. fuse_tolerance="0" />
  851. <inkscape:path-effect
  852. effect="skeletal"
  853. id="path-effect3976-8-1"
  854. is_visible="true"
  855. pattern="m -3.7324166,0.26041387 1,0"
  856. copytype="single_stretched"
  857. prop_scale="1"
  858. scale_y_rel="false"
  859. spacing="0"
  860. normal_offset="0"
  861. tang_offset="0"
  862. prop_units="false"
  863. vertical_pattern="false"
  864. fuse_tolerance="0" />
  865. <inkscape:path-effect
  866. effect="skeletal"
  867. id="path-effect3972-5-3"
  868. is_visible="true"
  869. pattern="m -3.7324166,0.26041387 1,0"
  870. copytype="single_stretched"
  871. prop_scale="1"
  872. scale_y_rel="false"
  873. spacing="0"
  874. normal_offset="0"
  875. tang_offset="0"
  876. prop_units="false"
  877. vertical_pattern="false"
  878. fuse_tolerance="0" />
  879. <inkscape:path-effect
  880. effect="skeletal"
  881. id="path-effect3968-0-7"
  882. is_visible="true"
  883. pattern="m 0.26758337,0.26041387 1.00000003,0"
  884. copytype="single_stretched"
  885. prop_scale="1"
  886. scale_y_rel="false"
  887. spacing="0"
  888. normal_offset="0"
  889. tang_offset="0"
  890. prop_units="false"
  891. vertical_pattern="false"
  892. fuse_tolerance="0" />
  893. <inkscape:path-effect
  894. effect="skeletal"
  895. id="path-effect3956-2-1"
  896. is_visible="true"
  897. pattern="m 0.26758337,0.26041387 1.00000003,0"
  898. copytype="single_stretched"
  899. prop_scale="1"
  900. scale_y_rel="false"
  901. spacing="0"
  902. normal_offset="0"
  903. tang_offset="0"
  904. prop_units="false"
  905. vertical_pattern="false"
  906. fuse_tolerance="0" />
  907. <inkscape:path-effect
  908. effect="skeletal"
  909. id="path-effect3952-4-4"
  910. is_visible="true"
  911. pattern="m 0.26758337,0.26041387 1.00000003,0"
  912. copytype="single_stretched"
  913. prop_scale="1"
  914. scale_y_rel="false"
  915. spacing="0"
  916. normal_offset="0"
  917. tang_offset="0"
  918. prop_units="false"
  919. vertical_pattern="false"
  920. fuse_tolerance="0" />
  921. <inkscape:path-effect
  922. effect="skeletal"
  923. id="path-effect3948-6-9"
  924. is_visible="true"
  925. pattern="m 0.26758337,0.26041387 1.00000003,0"
  926. copytype="single_stretched"
  927. prop_scale="1"
  928. scale_y_rel="false"
  929. spacing="0"
  930. normal_offset="0"
  931. tang_offset="0"
  932. prop_units="false"
  933. vertical_pattern="false"
  934. fuse_tolerance="0" />
  935. <inkscape:path-effect
  936. effect="skeletal"
  937. id="path-effect3944-7-8"
  938. is_visible="true"
  939. pattern="m 0.26758337,0.26041387 1.00000003,0"
  940. copytype="single_stretched"
  941. prop_scale="1"
  942. scale_y_rel="false"
  943. spacing="0"
  944. normal_offset="0"
  945. tang_offset="0"
  946. prop_units="false"
  947. vertical_pattern="false"
  948. fuse_tolerance="0" />
  949. <inkscape:path-effect
  950. effect="skeletal"
  951. id="path-effect3940-7-9"
  952. is_visible="true"
  953. pattern="m 0.26758337,0.26041387 1.00000003,0"
  954. copytype="single_stretched"
  955. prop_scale="1"
  956. scale_y_rel="false"
  957. spacing="0"
  958. normal_offset="0"
  959. tang_offset="0"
  960. prop_units="false"
  961. vertical_pattern="false"
  962. fuse_tolerance="0" />
  963. <inkscape:path-effect
  964. effect="skeletal"
  965. id="path-effect3936-3-3"
  966. is_visible="true"
  967. pattern="m 0.26758337,0.26041387 1.00000003,0"
  968. copytype="single_stretched"
  969. prop_scale="1"
  970. scale_y_rel="false"
  971. spacing="0"
  972. normal_offset="0"
  973. tang_offset="0"
  974. prop_units="false"
  975. vertical_pattern="false"
  976. fuse_tolerance="0" />
  977. <inkscape:path-effect
  978. effect="skeletal"
  979. id="path-effect3932-0-7"
  980. is_visible="true"
  981. pattern="m 0.26758337,0.26041387 1.00000003,0"
  982. copytype="single_stretched"
  983. prop_scale="1"
  984. scale_y_rel="false"
  985. spacing="0"
  986. normal_offset="0"
  987. tang_offset="0"
  988. prop_units="false"
  989. vertical_pattern="false"
  990. fuse_tolerance="0" />
  991. <inkscape:path-effect
  992. effect="skeletal"
  993. id="path-effect3928-0-7"
  994. is_visible="true"
  995. pattern="m 0.26758337,0.26041387 1.00000003,0"
  996. copytype="single_stretched"
  997. prop_scale="1"
  998. scale_y_rel="false"
  999. spacing="0"
  1000. normal_offset="0"
  1001. tang_offset="0"
  1002. prop_units="false"
  1003. vertical_pattern="false"
  1004. fuse_tolerance="0" />
  1005. <inkscape:path-effect
  1006. effect="skeletal"
  1007. id="path-effect3924-4-0"
  1008. is_visible="true"
  1009. pattern="m 0.26758337,0.26041387 1.00000003,0"
  1010. copytype="single_stretched"
  1011. prop_scale="1"
  1012. scale_y_rel="false"
  1013. spacing="0"
  1014. normal_offset="0"
  1015. tang_offset="0"
  1016. prop_units="false"
  1017. vertical_pattern="false"
  1018. fuse_tolerance="0" />
  1019. <inkscape:path-effect
  1020. effect="skeletal"
  1021. id="path-effect3920-6-7"
  1022. is_visible="true"
  1023. pattern="m 5.0175834,6.2604139 1,0"
  1024. copytype="single_stretched"
  1025. prop_scale="1"
  1026. scale_y_rel="false"
  1027. spacing="0"
  1028. normal_offset="0"
  1029. tang_offset="0"
  1030. prop_units="false"
  1031. vertical_pattern="false"
  1032. fuse_tolerance="0" />
  1033. <inkscape:path-effect
  1034. effect="skeletal"
  1035. id="path-effect4222-7-4"
  1036. is_visible="true"
  1037. pattern="m 0.26758337,0.26041387 1.00000003,0"
  1038. copytype="single_stretched"
  1039. prop_scale="1"
  1040. scale_y_rel="false"
  1041. spacing="0"
  1042. normal_offset="0"
  1043. tang_offset="0"
  1044. prop_units="false"
  1045. vertical_pattern="false"
  1046. fuse_tolerance="0" />
  1047. <inkscape:path-effect
  1048. effect="skeletal"
  1049. id="path-effect3976-8-1-9"
  1050. is_visible="true"
  1051. pattern="m -71.75,-23.75 1,0"
  1052. copytype="single_stretched"
  1053. prop_scale="1"
  1054. scale_y_rel="false"
  1055. spacing="0"
  1056. normal_offset="0"
  1057. tang_offset="0"
  1058. prop_units="false"
  1059. vertical_pattern="false"
  1060. fuse_tolerance="0" />
  1061. <inkscape:path-effect
  1062. effect="skeletal"
  1063. id="path-effect3976-8-1-1"
  1064. is_visible="true"
  1065. pattern="m 12.267585,0.26041387 1,0"
  1066. copytype="single_stretched"
  1067. prop_scale="1"
  1068. scale_y_rel="false"
  1069. spacing="0"
  1070. normal_offset="0"
  1071. tang_offset="0"
  1072. prop_units="false"
  1073. vertical_pattern="false"
  1074. fuse_tolerance="0" />
  1075. <linearGradient
  1076. inkscape:collect="always"
  1077. xlink:href="#linearGradient4392"
  1078. id="linearGradient4398"
  1079. x1="40"
  1080. y1="128"
  1081. x2="88"
  1082. y2="-16"
  1083. gradientUnits="userSpaceOnUse"
  1084. gradientTransform="translate(4.267584,4.2604137)" />
  1085. <linearGradient
  1086. inkscape:collect="always"
  1087. xlink:href="#linearGradient4416"
  1088. id="linearGradient4414"
  1089. x1="96"
  1090. y1="16"
  1091. x2="20"
  1092. y2="104"
  1093. gradientUnits="userSpaceOnUse"
  1094. gradientTransform="translate(-15.904272,21.289135)" />
  1095. <linearGradient
  1096. inkscape:collect="always"
  1097. xlink:href="#linearGradient4503-7"
  1098. id="linearGradient4509-8"
  1099. x1="114"
  1100. y1="58"
  1101. x2="120"
  1102. y2="58"
  1103. gradientUnits="userSpaceOnUse" />
  1104. <linearGradient
  1105. id="linearGradient4503-7">
  1106. <stop
  1107. style="stop-color:#000000;stop-opacity:0;"
  1108. offset="0"
  1109. id="stop4505-9" />
  1110. <stop
  1111. id="stop4511-5"
  1112. offset="0.5"
  1113. style="stop-color:#000000;stop-opacity:0.49803922;" />
  1114. <stop
  1115. style="stop-color:#000000;stop-opacity:0;"
  1116. offset="1"
  1117. id="stop4507-1" />
  1118. </linearGradient>
  1119. <linearGradient
  1120. y2="58"
  1121. x2="118"
  1122. y1="58"
  1123. x1="114"
  1124. gradientUnits="userSpaceOnUse"
  1125. id="linearGradient4529-2"
  1126. xlink:href="#linearGradient4550-8"
  1127. inkscape:collect="always"
  1128. gradientTransform="translate(-2,0)" />
  1129. <linearGradient
  1130. id="linearGradient4550-8">
  1131. <stop
  1132. id="stop4552-4"
  1133. offset="0"
  1134. style="stop-color:#ffffff;stop-opacity:0;" />
  1135. <stop
  1136. style="stop-color:#ffffff;stop-opacity:0.49803922;"
  1137. offset="0.33333334"
  1138. id="stop4554-0" />
  1139. <stop
  1140. id="stop4556-8"
  1141. offset="1"
  1142. style="stop-color:#ffffff;stop-opacity:0;" />
  1143. </linearGradient>
  1144. <linearGradient
  1145. id="linearGradient4599-9">
  1146. <stop
  1147. style="stop-color:#ffffff;stop-opacity:0;"
  1148. offset="0"
  1149. id="stop4601-6" />
  1150. <stop
  1151. id="stop4603-9"
  1152. offset="0.66666669"
  1153. style="stop-color:#ffffff;stop-opacity:0.49803922;" />
  1154. <stop
  1155. style="stop-color:#ffffff;stop-opacity:0;"
  1156. offset="1"
  1157. id="stop4605-6" />
  1158. </linearGradient>
  1159. <linearGradient
  1160. id="linearGradient4550-0">
  1161. <stop
  1162. id="stop4552-9"
  1163. offset="0"
  1164. style="stop-color:#ffffff;stop-opacity:0;" />
  1165. <stop
  1166. style="stop-color:#ffffff;stop-opacity:0.49803922;"
  1167. offset="0.33333334"
  1168. id="stop4554-8" />
  1169. <stop
  1170. id="stop4556-1"
  1171. offset="1"
  1172. style="stop-color:#ffffff;stop-opacity:0;" />
  1173. </linearGradient>
  1174. <linearGradient
  1175. id="linearGradient4503-1">
  1176. <stop
  1177. style="stop-color:#000000;stop-opacity:0;"
  1178. offset="0"
  1179. id="stop4505-8" />
  1180. <stop
  1181. id="stop4511-8"
  1182. offset="0.25"
  1183. style="stop-color:#000000;stop-opacity:0.49803922;" />
  1184. <stop
  1185. style="stop-color:#000000;stop-opacity:0;"
  1186. offset="1"
  1187. id="stop4507-5" />
  1188. </linearGradient>
  1189. <linearGradient
  1190. id="linearGradient4467-0">
  1191. <stop
  1192. style="stop-color:#000000;stop-opacity:1;"
  1193. offset="0"
  1194. id="stop4469-5" />
  1195. <stop
  1196. style="stop-color:#4d4f56;stop-opacity:0;"
  1197. offset="1"
  1198. id="stop4471-4" />
  1199. </linearGradient>
  1200. <linearGradient
  1201. id="linearGradient4475-2">
  1202. <stop
  1203. style="stop-color:#e6e6e6;stop-opacity:1;"
  1204. offset="0"
  1205. id="stop4477-7" />
  1206. <stop
  1207. id="stop4483-6"
  1208. offset="0.7352941"
  1209. style="stop-color:#121314;stop-opacity:0.49803922;" />
  1210. <stop
  1211. style="stop-color:#cae0e5;stop-opacity:1;"
  1212. offset="1"
  1213. id="stop4479-7" />
  1214. </linearGradient>
  1215. <linearGradient
  1216. inkscape:collect="always"
  1217. xlink:href="#linearGradient4487-6"
  1218. id="linearGradient4497-1"
  1219. x1="111.9"
  1220. y1="89"
  1221. x2="120.1"
  1222. y2="89"
  1223. gradientUnits="userSpaceOnUse" />
  1224. <linearGradient
  1225. id="linearGradient4487-6">
  1226. <stop
  1227. style="stop-color:#b89051;stop-opacity:1;"
  1228. offset="0"
  1229. id="stop4489-3" />
  1230. <stop
  1231. id="stop4499-4"
  1232. offset="0.5"
  1233. style="stop-color:#563724;stop-opacity:1;" />
  1234. <stop
  1235. style="stop-color:#7da0a2;stop-opacity:1;"
  1236. offset="1"
  1237. id="stop4491-6" />
  1238. </linearGradient>
  1239. <filter
  1240. inkscape:collect="always"
  1241. id="filter4743">
  1242. <feGaussianBlur
  1243. inkscape:collect="always"
  1244. stdDeviation="3.3068112"
  1245. id="feGaussianBlur4745" />
  1246. </filter>
  1247. <linearGradient
  1248. inkscape:collect="always"
  1249. xlink:href="#linearGradient4467-0-4"
  1250. id="linearGradient4473-6-3"
  1251. x1="118"
  1252. y1="20"
  1253. x2="104"
  1254. y2="20"
  1255. gradientUnits="userSpaceOnUse"
  1256. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,44.443651,-72.492422)" />
  1257. <linearGradient
  1258. id="linearGradient4467-0-4">
  1259. <stop
  1260. style="stop-color:#000000;stop-opacity:1;"
  1261. offset="0"
  1262. id="stop4469-5-2" />
  1263. <stop
  1264. style="stop-color:#4d4f56;stop-opacity:0;"
  1265. offset="1"
  1266. id="stop4471-4-0" />
  1267. </linearGradient>
  1268. <linearGradient
  1269. y2="58"
  1270. x2="114"
  1271. y1="58"
  1272. x1="120"
  1273. gradientTransform="translate(-256.59295,9.1126942)"
  1274. gradientUnits="userSpaceOnUse"
  1275. id="linearGradient4578-7-8"
  1276. xlink:href="#linearGradient4599-9-1"
  1277. inkscape:collect="always" />
  1278. <linearGradient
  1279. id="linearGradient4599-9-1">
  1280. <stop
  1281. style="stop-color:#ffffff;stop-opacity:0;"
  1282. offset="0"
  1283. id="stop4601-6-5" />
  1284. <stop
  1285. id="stop4603-9-3"
  1286. offset="0.66666669"
  1287. style="stop-color:#ffffff;stop-opacity:0.49803922;" />
  1288. <stop
  1289. style="stop-color:#ffffff;stop-opacity:0;"
  1290. offset="1"
  1291. id="stop4605-6-3" />
  1292. </linearGradient>
  1293. <linearGradient
  1294. y2="58"
  1295. x2="118"
  1296. y1="58"
  1297. x1="114"
  1298. gradientUnits="userSpaceOnUse"
  1299. id="linearGradient4529-0-8"
  1300. xlink:href="#linearGradient4550-0-1"
  1301. inkscape:collect="always"
  1302. gradientTransform="translate(20.592934,-125.1127)" />
  1303. <linearGradient
  1304. id="linearGradient4550-0-1">
  1305. <stop
  1306. id="stop4552-9-0"
  1307. offset="0"
  1308. style="stop-color:#ffffff;stop-opacity:0;" />
  1309. <stop
  1310. style="stop-color:#ffffff;stop-opacity:0.49803922;"
  1311. offset="0.33333334"
  1312. id="stop4554-8-6" />
  1313. <stop
  1314. id="stop4556-1-9"
  1315. offset="1"
  1316. style="stop-color:#ffffff;stop-opacity:0;" />
  1317. </linearGradient>
  1318. <linearGradient
  1319. inkscape:collect="always"
  1320. xlink:href="#linearGradient4503-1-2"
  1321. id="linearGradient4509-5-5"
  1322. x1="114"
  1323. y1="58"
  1324. x2="122"
  1325. y2="58"
  1326. gradientUnits="userSpaceOnUse"
  1327. gradientTransform="translate(22.592934,-125.1127)" />
  1328. <linearGradient
  1329. id="linearGradient4503-1-2">
  1330. <stop
  1331. style="stop-color:#000000;stop-opacity:0;"
  1332. offset="0"
  1333. id="stop4505-8-7" />
  1334. <stop
  1335. id="stop4511-8-5"
  1336. offset="0.25"
  1337. style="stop-color:#000000;stop-opacity:0.49803922;" />
  1338. <stop
  1339. style="stop-color:#000000;stop-opacity:0;"
  1340. offset="1"
  1341. id="stop4507-5-3" />
  1342. </linearGradient>
  1343. <linearGradient
  1344. inkscape:collect="always"
  1345. xlink:href="#linearGradient4467-0-7"
  1346. id="linearGradient4473-6-34"
  1347. x1="118"
  1348. y1="20"
  1349. x2="104"
  1350. y2="20"
  1351. gradientUnits="userSpaceOnUse"
  1352. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)" />
  1353. <linearGradient
  1354. id="linearGradient4467-0-7">
  1355. <stop
  1356. style="stop-color:#000000;stop-opacity:1;"
  1357. offset="0"
  1358. id="stop4469-5-7" />
  1359. <stop
  1360. style="stop-color:#4d4f56;stop-opacity:0;"
  1361. offset="1"
  1362. id="stop4471-4-8" />
  1363. </linearGradient>
  1364. <linearGradient
  1365. inkscape:collect="always"
  1366. xlink:href="#linearGradient4475-2-5"
  1367. id="linearGradient4481-1-5"
  1368. x1="111.75"
  1369. y1="58"
  1370. x2="120"
  1371. y2="58"
  1372. gradientUnits="userSpaceOnUse"
  1373. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)" />
  1374. <linearGradient
  1375. id="linearGradient4475-2-5">
  1376. <stop
  1377. style="stop-color:#e6e6e6;stop-opacity:1;"
  1378. offset="0"
  1379. id="stop4477-7-0" />
  1380. <stop
  1381. id="stop4483-6-6"
  1382. offset="0.7352941"
  1383. style="stop-color:#121314;stop-opacity:0.49803922;" />
  1384. <stop
  1385. style="stop-color:#cae0e5;stop-opacity:1;"
  1386. offset="1"
  1387. id="stop4479-7-5" />
  1388. </linearGradient>
  1389. <linearGradient
  1390. y2="89"
  1391. x2="120.1"
  1392. y1="89"
  1393. x1="111.9"
  1394. gradientUnits="userSpaceOnUse"
  1395. id="linearGradient4653-0"
  1396. xlink:href="#linearGradient4487-6-3"
  1397. inkscape:collect="always"
  1398. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,44.443651,-72.492422)" />
  1399. <linearGradient
  1400. id="linearGradient4487-6-3">
  1401. <stop
  1402. style="stop-color:#b89051;stop-opacity:1;"
  1403. offset="0"
  1404. id="stop4489-3-2" />
  1405. <stop
  1406. id="stop4499-4-7"
  1407. offset="0.5"
  1408. style="stop-color:#563724;stop-opacity:1;" />
  1409. <stop
  1410. style="stop-color:#7da0a2;stop-opacity:1;"
  1411. offset="1"
  1412. id="stop4491-6-4" />
  1413. </linearGradient>
  1414. <linearGradient
  1415. y2="89"
  1416. x2="120.1"
  1417. y1="89"
  1418. x1="111.9"
  1419. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)"
  1420. gradientUnits="userSpaceOnUse"
  1421. id="linearGradient3221"
  1422. xlink:href="#linearGradient4487-6-3"
  1423. inkscape:collect="always" />
  1424. <linearGradient
  1425. y2="58"
  1426. x2="114"
  1427. y1="58"
  1428. x1="120"
  1429. gradientTransform="translate(-256.59295,9.1126942)"
  1430. gradientUnits="userSpaceOnUse"
  1431. id="linearGradient4578-7-6"
  1432. xlink:href="#linearGradient4599-9-6"
  1433. inkscape:collect="always" />
  1434. <linearGradient
  1435. id="linearGradient4599-9-6">
  1436. <stop
  1437. style="stop-color:#ffffff;stop-opacity:0;"
  1438. offset="0"
  1439. id="stop4601-6-3" />
  1440. <stop
  1441. id="stop4603-9-39"
  1442. offset="0.66666669"
  1443. style="stop-color:#ffffff;stop-opacity:0.49803922;" />
  1444. <stop
  1445. style="stop-color:#ffffff;stop-opacity:0;"
  1446. offset="1"
  1447. id="stop4605-6-6" />
  1448. </linearGradient>
  1449. <linearGradient
  1450. y2="58"
  1451. x2="118"
  1452. y1="58"
  1453. x1="114"
  1454. gradientUnits="userSpaceOnUse"
  1455. id="linearGradient4529-0-9"
  1456. xlink:href="#linearGradient4550-0-8"
  1457. inkscape:collect="always"
  1458. gradientTransform="translate(20.592934,-125.1127)" />
  1459. <linearGradient
  1460. id="linearGradient4550-0-8">
  1461. <stop
  1462. id="stop4552-9-5"
  1463. offset="0"
  1464. style="stop-color:#ffffff;stop-opacity:0;" />
  1465. <stop
  1466. style="stop-color:#ffffff;stop-opacity:0.49803922;"
  1467. offset="0.33333334"
  1468. id="stop4554-8-0" />
  1469. <stop
  1470. id="stop4556-1-4"
  1471. offset="1"
  1472. style="stop-color:#ffffff;stop-opacity:0;" />
  1473. </linearGradient>
  1474. <linearGradient
  1475. inkscape:collect="always"
  1476. xlink:href="#linearGradient4503-1-0"
  1477. id="linearGradient4509-5-0"
  1478. x1="114"
  1479. y1="58"
  1480. x2="122"
  1481. y2="58"
  1482. gradientUnits="userSpaceOnUse"
  1483. gradientTransform="translate(22.592934,-125.1127)" />
  1484. <linearGradient
  1485. id="linearGradient4503-1-0">
  1486. <stop
  1487. style="stop-color:#000000;stop-opacity:0;"
  1488. offset="0"
  1489. id="stop4505-8-0" />
  1490. <stop
  1491. id="stop4511-8-8"
  1492. offset="0.25"
  1493. style="stop-color:#000000;stop-opacity:0.49803922;" />
  1494. <stop
  1495. style="stop-color:#000000;stop-opacity:0;"
  1496. offset="1"
  1497. id="stop4507-5-0" />
  1498. </linearGradient>
  1499. <linearGradient
  1500. inkscape:collect="always"
  1501. xlink:href="#linearGradient4467-0-0"
  1502. id="linearGradient4473-6-5"
  1503. x1="118"
  1504. y1="20"
  1505. x2="104"
  1506. y2="20"
  1507. gradientUnits="userSpaceOnUse"
  1508. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)" />
  1509. <linearGradient
  1510. id="linearGradient4467-0-0">
  1511. <stop
  1512. style="stop-color:#000000;stop-opacity:1;"
  1513. offset="0"
  1514. id="stop4469-5-0" />
  1515. <stop
  1516. style="stop-color:#4d4f56;stop-opacity:0;"
  1517. offset="1"
  1518. id="stop4471-4-1" />
  1519. </linearGradient>
  1520. <linearGradient
  1521. inkscape:collect="always"
  1522. xlink:href="#linearGradient4475-2-9"
  1523. id="linearGradient4481-1-4"
  1524. x1="111.75"
  1525. y1="58"
  1526. x2="120"
  1527. y2="58"
  1528. gradientUnits="userSpaceOnUse"
  1529. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)" />
  1530. <linearGradient
  1531. id="linearGradient4475-2-9">
  1532. <stop
  1533. style="stop-color:#e6e6e6;stop-opacity:1;"
  1534. offset="0"
  1535. id="stop4477-7-6" />
  1536. <stop
  1537. id="stop4483-6-1"
  1538. offset="0.7352941"
  1539. style="stop-color:#121314;stop-opacity:0.49803922;" />
  1540. <stop
  1541. style="stop-color:#cae0e5;stop-opacity:1;"
  1542. offset="1"
  1543. id="stop4479-7-2" />
  1544. </linearGradient>
  1545. <linearGradient
  1546. y2="89"
  1547. x2="120.1"
  1548. y1="89"
  1549. x1="111.9"
  1550. gradientUnits="userSpaceOnUse"
  1551. id="linearGradient4653-9"
  1552. xlink:href="#linearGradient4487-6-6"
  1553. inkscape:collect="always"
  1554. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,44.443651,-72.492422)" />
  1555. <linearGradient
  1556. id="linearGradient4487-6-6">
  1557. <stop
  1558. style="stop-color:#b89051;stop-opacity:1;"
  1559. offset="0"
  1560. id="stop4489-3-9" />
  1561. <stop
  1562. id="stop4499-4-0"
  1563. offset="0.5"
  1564. style="stop-color:#563724;stop-opacity:1;" />
  1565. <stop
  1566. style="stop-color:#7da0a2;stop-opacity:1;"
  1567. offset="1"
  1568. id="stop4491-6-9" />
  1569. </linearGradient>
  1570. <linearGradient
  1571. y2="89"
  1572. x2="120.1"
  1573. y1="89"
  1574. x1="111.9"
  1575. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)"
  1576. gradientUnits="userSpaceOnUse"
  1577. id="linearGradient3221-5"
  1578. xlink:href="#linearGradient4487-6-6"
  1579. inkscape:collect="always" />
  1580. <linearGradient
  1581. inkscape:collect="always"
  1582. xlink:href="#linearGradient4467-0-0"
  1583. id="linearGradient4175"
  1584. gradientUnits="userSpaceOnUse"
  1585. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)"
  1586. x1="116.45706"
  1587. y1="91.327553"
  1588. x2="115.69111"
  1589. y2="51.499592" />
  1590. <linearGradient
  1591. inkscape:collect="always"
  1592. xlink:href="#linearGradient4467-0-0-1"
  1593. id="linearGradient4175-5"
  1594. gradientUnits="userSpaceOnUse"
  1595. gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,104.44365,-72.492418)"
  1596. x1="116.45706"
  1597. y1="91.327553"
  1598. x2="115.69111"
  1599. y2="51.499592" />
  1600. <linearGradient
  1601. id="linearGradient4467-0-0-1">
  1602. <stop
  1603. style="stop-color:#000000;stop-opacity:1;"
  1604. offset="0"
  1605. id="stop4469-5-0-7" />
  1606. <stop
  1607. style="stop-color:#4d4f56;stop-opacity:0;"
  1608. offset="1"
  1609. id="stop4471-4-1-7" />
  1610. </linearGradient>
  1611. <linearGradient
  1612. inkscape:collect="always"
  1613. xlink:href="#linearGradient4416-7"
  1614. id="linearGradient4414-2"
  1615. x1="96"
  1616. y1="16"
  1617. x2="20"
  1618. y2="104"
  1619. gradientUnits="userSpaceOnUse"
  1620. gradientTransform="translate(3.9746885,4.0356688)" />
  1621. <linearGradient
  1622. id="linearGradient4416-7">
  1623. <stop
  1624. id="stop4418-2"
  1625. offset="0"
  1626. style="stop-color:#808080;stop-opacity:1;" />
  1627. <stop
  1628. id="stop4420-7"
  1629. offset="1"
  1630. style="stop-color:#464646;stop-opacity:1;" />
  1631. </linearGradient>
  1632. <linearGradient
  1633. y2="101.96433"
  1634. x2="52.025311"
  1635. y1="7.9643312"
  1636. x1="98.025314"
  1637. gradientTransform="translate(-15.904272,21.289135)"
  1638. gradientUnits="userSpaceOnUse"
  1639. id="linearGradient3273"
  1640. xlink:href="#linearGradient4416-7"
  1641. inkscape:collect="always" />
  1642. <linearGradient
  1643. y2="104"
  1644. x2="20"
  1645. y1="16"
  1646. x1="96"
  1647. gradientTransform="translate(3.974689,4.0356688)"
  1648. gradientUnits="userSpaceOnUse"
  1649. id="linearGradient3273-9"
  1650. xlink:href="#linearGradient4416-7-7"
  1651. inkscape:collect="always" />
  1652. <linearGradient
  1653. id="linearGradient4416-7-7">
  1654. <stop
  1655. id="stop4418-2-0"
  1656. offset="0"
  1657. style="stop-color:#ffffff;stop-opacity:1;" />
  1658. <stop
  1659. id="stop4420-7-4"
  1660. offset="1"
  1661. style="stop-color:#e8e8e8;stop-opacity:1;" />
  1662. </linearGradient>
  1663. <linearGradient
  1664. inkscape:collect="always"
  1665. xlink:href="#linearGradient4129"
  1666. id="linearGradient4135"
  1667. x1="94"
  1668. y1="22"
  1669. x2="38"
  1670. y2="90"
  1671. gradientUnits="userSpaceOnUse" />
  1672. <filter
  1673. inkscape:collect="always"
  1674. id="filter4141">
  1675. <feGaussianBlur
  1676. inkscape:collect="always"
  1677. stdDeviation="0.31"
  1678. id="feGaussianBlur4143" />
  1679. </filter>
  1680. <linearGradient
  1681. inkscape:collect="always"
  1682. xlink:href="#linearGradient4279-1"
  1683. id="linearGradient4285-3"
  1684. x1="44"
  1685. y1="56.279743"
  1686. x2="86"
  1687. y2="56.279743"
  1688. gradientUnits="userSpaceOnUse" />
  1689. <linearGradient
  1690. id="linearGradient4279-1">
  1691. <stop
  1692. style="stop-color:#c63434;stop-opacity:1;"
  1693. offset="0"
  1694. id="stop4281-4" />
  1695. <stop
  1696. style="stop-color:#f4e49f;stop-opacity:1;"
  1697. offset="1"
  1698. id="stop4283-1" />
  1699. </linearGradient>
  1700. <linearGradient
  1701. inkscape:collect="always"
  1702. xlink:href="#linearGradient4279-1-1"
  1703. id="linearGradient4338-2"
  1704. gradientUnits="userSpaceOnUse"
  1705. gradientTransform="translate(0,-3.9998446e-6)"
  1706. x1="44"
  1707. y1="56.279743"
  1708. x2="86"
  1709. y2="56.279743" />
  1710. <linearGradient
  1711. id="linearGradient4279-1-1">
  1712. <stop
  1713. style="stop-color:#c63434;stop-opacity:1;"
  1714. offset="0"
  1715. id="stop4281-4-6" />
  1716. <stop
  1717. style="stop-color:#f4e49f;stop-opacity:1;"
  1718. offset="1"
  1719. id="stop4283-1-1" />
  1720. </linearGradient>
  1721. <linearGradient
  1722. y2="24.000004"
  1723. x2="48"
  1724. y1="100.00001"
  1725. x1="80"
  1726. gradientTransform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736076,21.810617)"
  1727. gradientUnits="userSpaceOnUse"
  1728. id="linearGradient4355"
  1729. xlink:href="#linearGradient4375"
  1730. inkscape:collect="always" />
  1731. <linearGradient
  1732. inkscape:collect="always"
  1733. xlink:href="#linearGradient4387"
  1734. id="linearGradient4393"
  1735. x1="84"
  1736. y1="90"
  1737. x2="72"
  1738. y2="106"
  1739. gradientUnits="userSpaceOnUse"
  1740. gradientTransform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  1741. <linearGradient
  1742. inkscape:collect="always"
  1743. xlink:href="#linearGradient4423"
  1744. id="linearGradient4421"
  1745. x1="102"
  1746. y1="44"
  1747. x2="98"
  1748. y2="64"
  1749. gradientUnits="userSpaceOnUse"
  1750. gradientTransform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  1751. <linearGradient
  1752. inkscape:collect="always"
  1753. xlink:href="#linearGradient4387-0"
  1754. id="linearGradient4393-2"
  1755. x1="84"
  1756. y1="90"
  1757. x2="72"
  1758. y2="106"
  1759. gradientUnits="userSpaceOnUse" />
  1760. <linearGradient
  1761. id="linearGradient4387-0">
  1762. <stop
  1763. style="stop-color:#828282;stop-opacity:1;"
  1764. offset="0"
  1765. id="stop4389-5" />
  1766. <stop
  1767. style="stop-color:#b4b4b4;stop-opacity:1;"
  1768. offset="1"
  1769. id="stop4391-3" />
  1770. </linearGradient>
  1771. <filter
  1772. inkscape:collect="always"
  1773. id="filter4483">
  1774. <feGaussianBlur
  1775. inkscape:collect="always"
  1776. stdDeviation="0.3"
  1777. id="feGaussianBlur4485" />
  1778. </filter>
  1779. <linearGradient
  1780. inkscape:collect="always"
  1781. xlink:href="#linearGradient4489"
  1782. id="linearGradient4496"
  1783. x1="76"
  1784. y1="102"
  1785. x2="82"
  1786. y2="94"
  1787. gradientUnits="userSpaceOnUse" />
  1788. <radialGradient
  1789. inkscape:collect="always"
  1790. xlink:href="#linearGradient4508"
  1791. id="radialGradient4514"
  1792. cx="76"
  1793. cy="43"
  1794. fx="76"
  1795. fy="43"
  1796. r="26"
  1797. gradientTransform="matrix(1.3846154,2.3963356e-7,-3.1951137e-7,1.8461537,-49.109721,-22.131168)"
  1798. gradientUnits="userSpaceOnUse" />
  1799. <linearGradient
  1800. inkscape:collect="always"
  1801. xlink:href="#linearGradient4279-1-1-9"
  1802. id="linearGradient4136-0"
  1803. x1="106"
  1804. y1="87.201263"
  1805. x2="114"
  1806. y2="87.201263"
  1807. gradientUnits="userSpaceOnUse" />
  1808. <linearGradient
  1809. id="linearGradient4279-1-1-9">
  1810. <stop
  1811. style="stop-color:#c63434;stop-opacity:1;"
  1812. offset="0"
  1813. id="stop4281-4-6-3" />
  1814. <stop
  1815. style="stop-color:#f4e49f;stop-opacity:1;"
  1816. offset="1"
  1817. id="stop4283-1-1-9" />
  1818. </linearGradient>
  1819. <linearGradient
  1820. y2="87.201263"
  1821. x2="114"
  1822. y1="87.201263"
  1823. x1="106"
  1824. gradientUnits="userSpaceOnUse"
  1825. id="linearGradient4153-1"
  1826. xlink:href="#linearGradient4279-1-1-9-1"
  1827. inkscape:collect="always"
  1828. gradientTransform="matrix(0.61648212,0.10566715,-0.30858882,0.32892369,68.172249,52.184288)" />
  1829. <linearGradient
  1830. id="linearGradient4279-1-1-9-1">
  1831. <stop
  1832. style="stop-color:#c63434;stop-opacity:1;"
  1833. offset="0"
  1834. id="stop4281-4-6-3-8" />
  1835. <stop
  1836. style="stop-color:#f4e49f;stop-opacity:1;"
  1837. offset="1"
  1838. id="stop4283-1-1-9-8" />
  1839. </linearGradient>
  1840. <linearGradient
  1841. id="linearGradient4279-1-1-9-1-9">
  1842. <stop
  1843. style="stop-color:#c63434;stop-opacity:1;"
  1844. offset="0"
  1845. id="stop4281-4-6-3-8-1" />
  1846. <stop
  1847. style="stop-color:#f4e49f;stop-opacity:1;"
  1848. offset="1"
  1849. id="stop4283-1-1-9-8-6" />
  1850. </linearGradient>
  1851. <linearGradient
  1852. y2="87.201263"
  1853. x2="114"
  1854. y1="87.201263"
  1855. x1="106"
  1856. gradientUnits="userSpaceOnUse"
  1857. id="linearGradient4153-7"
  1858. xlink:href="#linearGradient4279-1-1-9-6"
  1859. inkscape:collect="always"
  1860. gradientTransform="matrix(0.61648212,0.10566715,-0.30858882,0.32892369,68.172249,52.184288)" />
  1861. <linearGradient
  1862. id="linearGradient4279-1-1-9-6">
  1863. <stop
  1864. style="stop-color:#c63434;stop-opacity:1;"
  1865. offset="0"
  1866. id="stop4281-4-6-3-2" />
  1867. <stop
  1868. style="stop-color:#f4e49f;stop-opacity:1;"
  1869. offset="1"
  1870. id="stop4283-1-1-9-4" />
  1871. </linearGradient>
  1872. <linearGradient
  1873. inkscape:collect="always"
  1874. xlink:href="#linearGradient4330-4"
  1875. id="linearGradient4336-7"
  1876. x1="124"
  1877. y1="82"
  1878. x2="100"
  1879. y2="76"
  1880. gradientUnits="userSpaceOnUse" />
  1881. <linearGradient
  1882. id="linearGradient4330-4">
  1883. <stop
  1884. style="stop-color:#000000;stop-opacity:0.56390977;"
  1885. offset="0"
  1886. id="stop4332-3" />
  1887. <stop
  1888. style="stop-color:#000000;stop-opacity:0;"
  1889. offset="1"
  1890. id="stop4334-9" />
  1891. </linearGradient>
  1892. <linearGradient
  1893. y2="78"
  1894. x2="100"
  1895. y1="78"
  1896. x1="106"
  1897. gradientUnits="userSpaceOnUse"
  1898. id="linearGradient4353-4"
  1899. xlink:href="#linearGradient4372-3"
  1900. inkscape:collect="always"
  1901. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  1902. <linearGradient
  1903. id="linearGradient4372-3">
  1904. <stop
  1905. id="stop4374-1"
  1906. offset="0"
  1907. style="stop-color:#ffffff;stop-opacity:0" />
  1908. <stop
  1909. id="stop4376-5"
  1910. offset="1"
  1911. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  1912. </linearGradient>
  1913. <linearGradient
  1914. inkscape:collect="always"
  1915. xlink:href="#linearGradient4302-2"
  1916. id="linearGradient4308-8"
  1917. x1="104"
  1918. y1="108"
  1919. x2="110"
  1920. y2="118"
  1921. gradientUnits="userSpaceOnUse"
  1922. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  1923. <linearGradient
  1924. id="linearGradient4302-2">
  1925. <stop
  1926. style="stop-color:#f28f32;stop-opacity:0.04511278;"
  1927. offset="0"
  1928. id="stop4304-0" />
  1929. <stop
  1930. id="stop4310-0"
  1931. offset="0.5"
  1932. style="stop-color:#df720b;stop-opacity:1;" />
  1933. <stop
  1934. style="stop-color:#473d34;stop-opacity:1;"
  1935. offset="1"
  1936. id="stop4306-3" />
  1937. </linearGradient>
  1938. <linearGradient
  1939. inkscape:collect="always"
  1940. xlink:href="#linearGradient4255-0"
  1941. id="linearGradient4261-8"
  1942. x1="105.16375"
  1943. y1="94.831635"
  1944. x2="128"
  1945. y2="72"
  1946. gradientUnits="userSpaceOnUse"
  1947. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  1948. <linearGradient
  1949. id="linearGradient4255-0">
  1950. <stop
  1951. style="stop-color:#4587cf;stop-opacity:1;"
  1952. offset="0"
  1953. id="stop4257-7" />
  1954. <stop
  1955. id="stop4277-8"
  1956. offset="0.5"
  1957. style="stop-color:#4ad9ed;stop-opacity:1;" />
  1958. <stop
  1959. style="stop-color:#e7edec;stop-opacity:1;"
  1960. offset="1"
  1961. id="stop4259-9" />
  1962. </linearGradient>
  1963. <linearGradient
  1964. inkscape:collect="always"
  1965. xlink:href="#linearGradient4255-0"
  1966. id="linearGradient4267-8"
  1967. x1="105.12883"
  1968. y1="92.122131"
  1969. x2="128"
  1970. y2="72"
  1971. gradientUnits="userSpaceOnUse"
  1972. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  1973. <linearGradient
  1974. id="linearGradient4424">
  1975. <stop
  1976. style="stop-color:#4587cf;stop-opacity:1;"
  1977. offset="0"
  1978. id="stop4426" />
  1979. <stop
  1980. id="stop4428"
  1981. offset="0.5"
  1982. style="stop-color:#4ad9ed;stop-opacity:1;" />
  1983. <stop
  1984. style="stop-color:#e7edec;stop-opacity:1;"
  1985. offset="1"
  1986. id="stop4430" />
  1987. </linearGradient>
  1988. <linearGradient
  1989. inkscape:collect="always"
  1990. xlink:href="#linearGradient4255-0"
  1991. id="linearGradient4271-4"
  1992. x1="106"
  1993. y1="90"
  1994. x2="126"
  1995. y2="64"
  1996. gradientUnits="userSpaceOnUse"
  1997. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  1998. <linearGradient
  1999. id="linearGradient4433">
  2000. <stop
  2001. style="stop-color:#4587cf;stop-opacity:1;"
  2002. offset="0"
  2003. id="stop4435" />
  2004. <stop
  2005. id="stop4437"
  2006. offset="0.5"
  2007. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2008. <stop
  2009. style="stop-color:#e7edec;stop-opacity:1;"
  2010. offset="1"
  2011. id="stop4439" />
  2012. </linearGradient>
  2013. <linearGradient
  2014. inkscape:collect="always"
  2015. xlink:href="#linearGradient4255-0"
  2016. id="linearGradient4269-8"
  2017. x1="106"
  2018. y1="74"
  2019. x2="144.89038"
  2020. y2="28.042295"
  2021. gradientUnits="userSpaceOnUse"
  2022. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2023. <linearGradient
  2024. id="linearGradient4442">
  2025. <stop
  2026. style="stop-color:#4587cf;stop-opacity:1;"
  2027. offset="0"
  2028. id="stop4444" />
  2029. <stop
  2030. id="stop4446"
  2031. offset="0.5"
  2032. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2033. <stop
  2034. style="stop-color:#e7edec;stop-opacity:1;"
  2035. offset="1"
  2036. id="stop4448" />
  2037. </linearGradient>
  2038. <linearGradient
  2039. inkscape:collect="always"
  2040. xlink:href="#linearGradient4330-9"
  2041. id="linearGradient4336-4"
  2042. x1="124"
  2043. y1="82"
  2044. x2="100"
  2045. y2="76"
  2046. gradientUnits="userSpaceOnUse"
  2047. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2048. <linearGradient
  2049. id="linearGradient4330-9">
  2050. <stop
  2051. style="stop-color:#000000;stop-opacity:0.56390977;"
  2052. offset="0"
  2053. id="stop4332-2" />
  2054. <stop
  2055. style="stop-color:#000000;stop-opacity:0;"
  2056. offset="1"
  2057. id="stop4334-6" />
  2058. </linearGradient>
  2059. <linearGradient
  2060. inkscape:collect="always"
  2061. xlink:href="#linearGradient4255-0"
  2062. id="linearGradient4275-1"
  2063. x1="96"
  2064. y1="80"
  2065. x2="124"
  2066. y2="26"
  2067. gradientUnits="userSpaceOnUse"
  2068. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2069. <linearGradient
  2070. id="linearGradient4455">
  2071. <stop
  2072. style="stop-color:#4587cf;stop-opacity:1;"
  2073. offset="0"
  2074. id="stop4457" />
  2075. <stop
  2076. id="stop4459"
  2077. offset="0.5"
  2078. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2079. <stop
  2080. style="stop-color:#e7edec;stop-opacity:1;"
  2081. offset="1"
  2082. id="stop4461" />
  2083. </linearGradient>
  2084. <linearGradient
  2085. inkscape:collect="always"
  2086. xlink:href="#linearGradient4255-0"
  2087. id="linearGradient4273-6"
  2088. x1="102"
  2089. y1="92"
  2090. x2="98"
  2091. y2="54"
  2092. gradientUnits="userSpaceOnUse"
  2093. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2094. <linearGradient
  2095. id="linearGradient4464">
  2096. <stop
  2097. style="stop-color:#4587cf;stop-opacity:1;"
  2098. offset="0"
  2099. id="stop4466" />
  2100. <stop
  2101. id="stop4468"
  2102. offset="0.5"
  2103. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2104. <stop
  2105. style="stop-color:#e7edec;stop-opacity:1;"
  2106. offset="1"
  2107. id="stop4470" />
  2108. </linearGradient>
  2109. <linearGradient
  2110. inkscape:collect="always"
  2111. xlink:href="#linearGradient4255-0"
  2112. id="linearGradient4263-1"
  2113. x1="104"
  2114. y1="96"
  2115. x2="96"
  2116. y2="72"
  2117. gradientUnits="userSpaceOnUse"
  2118. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2119. <linearGradient
  2120. id="linearGradient4473">
  2121. <stop
  2122. style="stop-color:#4587cf;stop-opacity:1;"
  2123. offset="0"
  2124. id="stop4475" />
  2125. <stop
  2126. id="stop4477-6"
  2127. offset="0.5"
  2128. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2129. <stop
  2130. style="stop-color:#e7edec;stop-opacity:1;"
  2131. offset="1"
  2132. id="stop4479-6" />
  2133. </linearGradient>
  2134. <linearGradient
  2135. inkscape:collect="always"
  2136. xlink:href="#linearGradient4255-0"
  2137. id="linearGradient4265-0"
  2138. x1="104"
  2139. y1="94"
  2140. x2="102"
  2141. y2="90"
  2142. gradientUnits="userSpaceOnUse" />
  2143. <linearGradient
  2144. id="linearGradient4482">
  2145. <stop
  2146. style="stop-color:#4587cf;stop-opacity:1;"
  2147. offset="0"
  2148. id="stop4484" />
  2149. <stop
  2150. id="stop4486"
  2151. offset="0.5"
  2152. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2153. <stop
  2154. style="stop-color:#e7edec;stop-opacity:1;"
  2155. offset="1"
  2156. id="stop4488" />
  2157. </linearGradient>
  2158. <linearGradient
  2159. y2="66"
  2160. x2="96"
  2161. y1="94"
  2162. x1="104"
  2163. gradientUnits="userSpaceOnUse"
  2164. id="linearGradient4502"
  2165. xlink:href="#linearGradient4255-0"
  2166. inkscape:collect="always"
  2167. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2168. <linearGradient
  2169. y2="78"
  2170. x2="100"
  2171. y1="78"
  2172. x1="106"
  2173. gradientUnits="userSpaceOnUse"
  2174. id="linearGradient4353-4-2"
  2175. xlink:href="#linearGradient4372-3-1"
  2176. inkscape:collect="always"
  2177. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106924)" />
  2178. <linearGradient
  2179. id="linearGradient4372-3-1">
  2180. <stop
  2181. id="stop4374-1-2"
  2182. offset="0"
  2183. style="stop-color:#ffffff;stop-opacity:0" />
  2184. <stop
  2185. id="stop4376-5-3"
  2186. offset="1"
  2187. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  2188. </linearGradient>
  2189. <linearGradient
  2190. y2="78"
  2191. x2="100"
  2192. y1="78"
  2193. x1="106"
  2194. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106923)"
  2195. gradientUnits="userSpaceOnUse"
  2196. id="linearGradient4656"
  2197. xlink:href="#linearGradient4372-3-1"
  2198. inkscape:collect="always" />
  2199. <linearGradient
  2200. y2="78"
  2201. x2="100"
  2202. y1="78"
  2203. x1="106"
  2204. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106923)"
  2205. gradientUnits="userSpaceOnUse"
  2206. id="linearGradient4656-5"
  2207. xlink:href="#linearGradient4372-3-1-6"
  2208. inkscape:collect="always" />
  2209. <linearGradient
  2210. id="linearGradient4372-3-1-6">
  2211. <stop
  2212. id="stop4374-1-2-4"
  2213. offset="0"
  2214. style="stop-color:#ffffff;stop-opacity:0" />
  2215. <stop
  2216. id="stop4376-5-3-6"
  2217. offset="1"
  2218. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  2219. </linearGradient>
  2220. <linearGradient
  2221. inkscape:collect="always"
  2222. xlink:href="#linearGradient4255-0-4"
  2223. id="linearGradient4263-1-8"
  2224. x1="104"
  2225. y1="96"
  2226. x2="96"
  2227. y2="72"
  2228. gradientUnits="userSpaceOnUse"
  2229. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2230. <linearGradient
  2231. id="linearGradient4255-0-4">
  2232. <stop
  2233. style="stop-color:#4587cf;stop-opacity:1;"
  2234. offset="0"
  2235. id="stop4257-7-8" />
  2236. <stop
  2237. id="stop4277-8-3"
  2238. offset="0.5"
  2239. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2240. <stop
  2241. style="stop-color:#e7edec;stop-opacity:1;"
  2242. offset="1"
  2243. id="stop4259-9-5" />
  2244. </linearGradient>
  2245. <linearGradient
  2246. y2="66"
  2247. x2="96"
  2248. y1="94"
  2249. x1="104"
  2250. gradientUnits="userSpaceOnUse"
  2251. id="linearGradient4502-8"
  2252. xlink:href="#linearGradient4255-0-4"
  2253. inkscape:collect="always"
  2254. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106924)" />
  2255. <linearGradient
  2256. id="linearGradient4725">
  2257. <stop
  2258. style="stop-color:#4587cf;stop-opacity:1;"
  2259. offset="0"
  2260. id="stop4727" />
  2261. <stop
  2262. id="stop4729"
  2263. offset="0.5"
  2264. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2265. <stop
  2266. style="stop-color:#e7edec;stop-opacity:1;"
  2267. offset="1"
  2268. id="stop4731" />
  2269. </linearGradient>
  2270. <linearGradient
  2271. y2="78"
  2272. x2="100"
  2273. y1="78"
  2274. x1="106"
  2275. gradientUnits="userSpaceOnUse"
  2276. id="linearGradient4353-4-0"
  2277. xlink:href="#linearGradient4372-3-5"
  2278. inkscape:collect="always"
  2279. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2280. <linearGradient
  2281. id="linearGradient4372-3-5">
  2282. <stop
  2283. id="stop4374-1-7"
  2284. offset="0"
  2285. style="stop-color:#ffffff;stop-opacity:0" />
  2286. <stop
  2287. id="stop4376-5-8"
  2288. offset="1"
  2289. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  2290. </linearGradient>
  2291. <linearGradient
  2292. inkscape:collect="always"
  2293. xlink:href="#linearGradient4255-0-4"
  2294. id="linearGradient4261-8-0"
  2295. x1="105.16375"
  2296. y1="94.831635"
  2297. x2="128"
  2298. y2="72"
  2299. gradientUnits="userSpaceOnUse"
  2300. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2301. <linearGradient
  2302. id="linearGradient4738">
  2303. <stop
  2304. style="stop-color:#4587cf;stop-opacity:1;"
  2305. offset="0"
  2306. id="stop4740" />
  2307. <stop
  2308. id="stop4742"
  2309. offset="0.5"
  2310. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2311. <stop
  2312. style="stop-color:#e7edec;stop-opacity:1;"
  2313. offset="1"
  2314. id="stop4744" />
  2315. </linearGradient>
  2316. <linearGradient
  2317. inkscape:collect="always"
  2318. xlink:href="#linearGradient4255-0-4"
  2319. id="linearGradient4267-8-5"
  2320. x1="105.12883"
  2321. y1="92.122131"
  2322. x2="128"
  2323. y2="72"
  2324. gradientUnits="userSpaceOnUse"
  2325. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2326. <linearGradient
  2327. id="linearGradient4747">
  2328. <stop
  2329. style="stop-color:#4587cf;stop-opacity:1;"
  2330. offset="0"
  2331. id="stop4749" />
  2332. <stop
  2333. id="stop4751"
  2334. offset="0.5"
  2335. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2336. <stop
  2337. style="stop-color:#e7edec;stop-opacity:1;"
  2338. offset="1"
  2339. id="stop4753" />
  2340. </linearGradient>
  2341. <linearGradient
  2342. inkscape:collect="always"
  2343. xlink:href="#linearGradient4255-0-4"
  2344. id="linearGradient4273-6-4"
  2345. x1="102"
  2346. y1="92"
  2347. x2="98"
  2348. y2="54"
  2349. gradientUnits="userSpaceOnUse"
  2350. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2351. <linearGradient
  2352. id="linearGradient4756">
  2353. <stop
  2354. style="stop-color:#4587cf;stop-opacity:1;"
  2355. offset="0"
  2356. id="stop4758" />
  2357. <stop
  2358. id="stop4760"
  2359. offset="0.5"
  2360. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2361. <stop
  2362. style="stop-color:#e7edec;stop-opacity:1;"
  2363. offset="1"
  2364. id="stop4762" />
  2365. </linearGradient>
  2366. <linearGradient
  2367. inkscape:collect="always"
  2368. xlink:href="#linearGradient4255-0-4"
  2369. id="linearGradient4271-4-1"
  2370. x1="106"
  2371. y1="90"
  2372. x2="126"
  2373. y2="64"
  2374. gradientUnits="userSpaceOnUse"
  2375. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2376. <linearGradient
  2377. id="linearGradient4765">
  2378. <stop
  2379. style="stop-color:#4587cf;stop-opacity:1;"
  2380. offset="0"
  2381. id="stop4767" />
  2382. <stop
  2383. id="stop4769"
  2384. offset="0.5"
  2385. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2386. <stop
  2387. style="stop-color:#e7edec;stop-opacity:1;"
  2388. offset="1"
  2389. id="stop4771" />
  2390. </linearGradient>
  2391. <linearGradient
  2392. inkscape:collect="always"
  2393. xlink:href="#linearGradient4255-0-4"
  2394. id="linearGradient4275-1-0"
  2395. x1="96"
  2396. y1="80"
  2397. x2="124"
  2398. y2="26"
  2399. gradientUnits="userSpaceOnUse"
  2400. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2401. <linearGradient
  2402. id="linearGradient4774">
  2403. <stop
  2404. style="stop-color:#4587cf;stop-opacity:1;"
  2405. offset="0"
  2406. id="stop4776" />
  2407. <stop
  2408. id="stop4778"
  2409. offset="0.5"
  2410. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2411. <stop
  2412. style="stop-color:#e7edec;stop-opacity:1;"
  2413. offset="1"
  2414. id="stop4780" />
  2415. </linearGradient>
  2416. <linearGradient
  2417. inkscape:collect="always"
  2418. xlink:href="#linearGradient4255-0-4"
  2419. id="linearGradient4269-8-3"
  2420. x1="106"
  2421. y1="74"
  2422. x2="138"
  2423. y2="48"
  2424. gradientUnits="userSpaceOnUse"
  2425. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)" />
  2426. <linearGradient
  2427. id="linearGradient4783">
  2428. <stop
  2429. style="stop-color:#4587cf;stop-opacity:1;"
  2430. offset="0"
  2431. id="stop4785" />
  2432. <stop
  2433. id="stop4787"
  2434. offset="0.5"
  2435. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2436. <stop
  2437. style="stop-color:#e7edec;stop-opacity:1;"
  2438. offset="1"
  2439. id="stop4789" />
  2440. </linearGradient>
  2441. <linearGradient
  2442. y2="66"
  2443. x2="96"
  2444. y1="94"
  2445. x1="104"
  2446. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,38.066903,-70.106925)"
  2447. gradientUnits="userSpaceOnUse"
  2448. id="linearGradient4800"
  2449. xlink:href="#linearGradient4255-0-4"
  2450. inkscape:collect="always" />
  2451. <linearGradient
  2452. inkscape:collect="always"
  2453. xlink:href="#linearGradient4255-0-3"
  2454. id="linearGradient4267-8-6"
  2455. x1="105.12883"
  2456. y1="92.122131"
  2457. x2="128"
  2458. y2="72"
  2459. gradientUnits="userSpaceOnUse"
  2460. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2461. <linearGradient
  2462. id="linearGradient4255-0-3">
  2463. <stop
  2464. style="stop-color:#4587cf;stop-opacity:1;"
  2465. offset="0"
  2466. id="stop4257-7-4" />
  2467. <stop
  2468. id="stop4277-8-0"
  2469. offset="0.5"
  2470. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2471. <stop
  2472. style="stop-color:#e7edec;stop-opacity:1;"
  2473. offset="1"
  2474. id="stop4259-9-4" />
  2475. </linearGradient>
  2476. <linearGradient
  2477. y2="78.19088"
  2478. x2="122.67642"
  2479. y1="92.122131"
  2480. x1="105.12883"
  2481. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.540163,-54.979673)"
  2482. gradientUnits="userSpaceOnUse"
  2483. id="linearGradient3454"
  2484. xlink:href="#linearGradient4255-0-3"
  2485. inkscape:collect="always" />
  2486. <linearGradient
  2487. inkscape:collect="always"
  2488. xlink:href="#linearGradient4255-0-6"
  2489. id="linearGradient4273-6-7"
  2490. x1="102"
  2491. y1="92"
  2492. x2="98"
  2493. y2="54"
  2494. gradientUnits="userSpaceOnUse"
  2495. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,22.066903,-54.106924)" />
  2496. <linearGradient
  2497. id="linearGradient4255-0-6">
  2498. <stop
  2499. style="stop-color:#4587cf;stop-opacity:1;"
  2500. offset="0"
  2501. id="stop4257-7-3" />
  2502. <stop
  2503. id="stop4277-8-8"
  2504. offset="0.5"
  2505. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2506. <stop
  2507. style="stop-color:#e7edec;stop-opacity:1;"
  2508. offset="1"
  2509. id="stop4259-9-2" />
  2510. </linearGradient>
  2511. <linearGradient
  2512. y2="54"
  2513. x2="98"
  2514. y1="92"
  2515. x1="102"
  2516. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,21.215947,-52.372089)"
  2517. gradientUnits="userSpaceOnUse"
  2518. id="linearGradient3491"
  2519. xlink:href="#linearGradient4255-0-6"
  2520. inkscape:collect="always" />
  2521. <linearGradient
  2522. inkscape:collect="always"
  2523. xlink:href="#linearGradient4255-0"
  2524. id="linearGradient3533"
  2525. gradientUnits="userSpaceOnUse"
  2526. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)"
  2527. x1="103.69576"
  2528. y1="90.268303"
  2529. x2="60.680538"
  2530. y2="47.283405" />
  2531. <linearGradient
  2532. y2="78"
  2533. x2="100"
  2534. y1="78"
  2535. x1="106"
  2536. gradientUnits="userSpaceOnUse"
  2537. id="linearGradient4353-4-6"
  2538. xlink:href="#linearGradient4372-3-4"
  2539. inkscape:collect="always"
  2540. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2541. <linearGradient
  2542. id="linearGradient4372-3-4">
  2543. <stop
  2544. id="stop4374-1-8"
  2545. offset="0"
  2546. style="stop-color:#ffffff;stop-opacity:0" />
  2547. <stop
  2548. id="stop4376-5-9"
  2549. offset="1"
  2550. style="stop-color:#ffffff;stop-opacity:0.56640625" />
  2551. </linearGradient>
  2552. <linearGradient
  2553. inkscape:collect="always"
  2554. xlink:href="#linearGradient4255-0-7"
  2555. id="linearGradient4269-8-4"
  2556. x1="106"
  2557. y1="74"
  2558. x2="138"
  2559. y2="48"
  2560. gradientUnits="userSpaceOnUse"
  2561. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2562. <linearGradient
  2563. id="linearGradient4255-0-7">
  2564. <stop
  2565. style="stop-color:#4587cf;stop-opacity:1;"
  2566. offset="0"
  2567. id="stop4257-7-34" />
  2568. <stop
  2569. id="stop4277-8-6"
  2570. offset="0.5"
  2571. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2572. <stop
  2573. style="stop-color:#e7edec;stop-opacity:1;"
  2574. offset="1"
  2575. id="stop4259-9-0" />
  2576. </linearGradient>
  2577. <linearGradient
  2578. inkscape:collect="always"
  2579. xlink:href="#linearGradient4330-9-4"
  2580. id="linearGradient4336-4-1"
  2581. x1="124"
  2582. y1="82"
  2583. x2="100"
  2584. y2="76"
  2585. gradientUnits="userSpaceOnUse"
  2586. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2587. <linearGradient
  2588. id="linearGradient4330-9-4">
  2589. <stop
  2590. style="stop-color:#000000;stop-opacity:0.56390977;"
  2591. offset="0"
  2592. id="stop4332-2-4" />
  2593. <stop
  2594. style="stop-color:#000000;stop-opacity:0;"
  2595. offset="1"
  2596. id="stop4334-6-7" />
  2597. </linearGradient>
  2598. <linearGradient
  2599. inkscape:collect="always"
  2600. xlink:href="#linearGradient4302-2-2"
  2601. id="linearGradient4308-8-9"
  2602. x1="104"
  2603. y1="108"
  2604. x2="110"
  2605. y2="118"
  2606. gradientUnits="userSpaceOnUse"
  2607. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)" />
  2608. <linearGradient
  2609. id="linearGradient4302-2-2">
  2610. <stop
  2611. style="stop-color:#f28f32;stop-opacity:0.04511278;"
  2612. offset="0"
  2613. id="stop4304-0-3" />
  2614. <stop
  2615. id="stop4310-0-6"
  2616. offset="0.5"
  2617. style="stop-color:#df720b;stop-opacity:1;" />
  2618. <stop
  2619. style="stop-color:#473d34;stop-opacity:1;"
  2620. offset="1"
  2621. id="stop4306-3-6" />
  2622. </linearGradient>
  2623. <linearGradient
  2624. inkscape:collect="always"
  2625. xlink:href="#linearGradient4255-0-7"
  2626. id="linearGradient3533-1"
  2627. gradientUnits="userSpaceOnUse"
  2628. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)"
  2629. x1="103.69576"
  2630. y1="90.268303"
  2631. x2="67.894783"
  2632. y2="42.674652" />
  2633. <linearGradient
  2634. id="linearGradient4341">
  2635. <stop
  2636. style="stop-color:#4587cf;stop-opacity:1;"
  2637. offset="0"
  2638. id="stop4343" />
  2639. <stop
  2640. id="stop4345"
  2641. offset="0.5"
  2642. style="stop-color:#4ad9ed;stop-opacity:1;" />
  2643. <stop
  2644. style="stop-color:#e7edec;stop-opacity:1;"
  2645. offset="1"
  2646. id="stop4347" />
  2647. </linearGradient>
  2648. <linearGradient
  2649. y2="42.674652"
  2650. x2="67.894783"
  2651. y1="90.268303"
  2652. x1="103.69576"
  2653. gradientTransform="matrix(0.8660254,0.5,-0.5,0.8660254,32.066903,-62.106924)"
  2654. gradientUnits="userSpaceOnUse"
  2655. id="linearGradient4355-9"
  2656. xlink:href="#linearGradient4255-0-7"
  2657. inkscape:collect="always" />
  2658. <linearGradient
  2659. inkscape:collect="always"
  2660. xlink:href="#linearGradient4425"
  2661. id="linearGradient4434"
  2662. x1="71.399422"
  2663. y1="89.124931"
  2664. x2="103.6021"
  2665. y2="72.60688"
  2666. gradientUnits="userSpaceOnUse"
  2667. gradientTransform="matrix(0.99608439,0.08840753,-0.08840753,0.99608439,7.4798316,-4.403704)" />
  2668. <filter
  2669. inkscape:collect="always"
  2670. id="filter4456">
  2671. <feGaussianBlur
  2672. inkscape:collect="always"
  2673. stdDeviation="0.35516911"
  2674. id="feGaussianBlur4458" />
  2675. </filter>
  2676. </defs>
  2677. <sodipodi:namedview
  2678. id="base"
  2679. pagecolor="#ffffff"
  2680. bordercolor="#666666"
  2681. borderopacity="1.0"
  2682. gridtolerance="10000"
  2683. guidetolerance="10"
  2684. objecttolerance="10"
  2685. inkscape:pageopacity="0.0"
  2686. inkscape:pageshadow="2"
  2687. inkscape:zoom="2.8284272"
  2688. inkscape:cx="71.765021"
  2689. inkscape:cy="63.310846"
  2690. inkscape:document-units="px"
  2691. inkscape:current-layer="layer5"
  2692. width="128px"
  2693. height="128px"
  2694. showgrid="false"
  2695. inkscape:grid-points="true"
  2696. inkscape:window-width="1920"
  2697. inkscape:window-height="1025"
  2698. inkscape:window-x="-3"
  2699. inkscape:window-y="32"
  2700. inkscape:window-maximized="1"
  2701. showguides="true"
  2702. inkscape:guide-bbox="true"
  2703. inkscape:snap-global="true">
  2704. <inkscape:grid
  2705. id="GridFromPre046Settings"
  2706. type="xygrid"
  2707. originx="0px"
  2708. originy="0px"
  2709. spacingx="2px"
  2710. spacingy="2px"
  2711. color="#3f3fff"
  2712. empcolor="#3f3fff"
  2713. opacity="0.15"
  2714. empopacity="0.38"
  2715. empspacing="2"
  2716. visible="true"
  2717. enabled="true"
  2718. snapvisiblegridlinesonly="true" />
  2719. <sodipodi:guide
  2720. orientation="-0.70710678,0.70710678"
  2721. position="-60,134"
  2722. id="guide4747" />
  2723. </sodipodi:namedview>
  2724. <metadata
  2725. id="metadata7">
  2726. <rdf:RDF>
  2727. <cc:Work
  2728. rdf:about="">
  2729. <dc:format>image/svg+xml</dc:format>
  2730. <dc:type
  2731. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  2732. <dc:title></dc:title>
  2733. </cc:Work>
  2734. </rdf:RDF>
  2735. </metadata>
  2736. <g
  2737. inkscape:groupmode="layer"
  2738. id="layer2"
  2739. inkscape:label="shad0"
  2740. style="display:inline"
  2741. sodipodi:insensitive="true">
  2742. <rect
  2743. style="opacity:0.62999998;fill:url(#linearGradient4398);fill-opacity:1;stroke:none;display:inline;filter:url(#filter4743)"
  2744. id="rect3916-8"
  2745. width="78.267586"
  2746. height="98.260414"
  2747. x="26"
  2748. y="12"
  2749. ry="4"
  2750. rx="4.2675858"
  2751. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  2752. </g>
  2753. <g
  2754. inkscape:groupmode="layer"
  2755. id="layer1"
  2756. inkscape:label="Calque"
  2757. style="display:inline"
  2758. sodipodi:insensitive="true">
  2759. <rect
  2760. style="fill:url(#linearGradient4414);fill-opacity:1;stroke:none;display:inline"
  2761. id="rect3916"
  2762. width="75.974686"
  2763. height="96.035667"
  2764. x="8.1210413"
  2765. y="29.253469"
  2766. ry="4"
  2767. rx="3.9746857"
  2768. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,0,0)" />
  2769. <rect
  2770. style="fill:url(#linearGradient3273);fill-opacity:1;stroke:none;display:inline"
  2771. id="rect3916-7"
  2772. width="72"
  2773. height="92"
  2774. x="10.12104"
  2775. y="31.253469"
  2776. ry="4"
  2777. rx="3.9746857"
  2778. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,0,0)" />
  2779. <rect
  2780. style="fill:url(#linearGradient4135);fill-opacity:1;stroke:none;display:inline;filter:url(#filter4141)"
  2781. id="rect3916-7-3-2"
  2782. width="56"
  2783. height="68"
  2784. x="38"
  2785. y="22"
  2786. ry="0"
  2787. rx="0"
  2788. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  2789. <rect
  2790. style="fill:url(#radialGradient4514);fill-opacity:1;stroke:none;display:inline"
  2791. id="rect3916-7-3"
  2792. width="52"
  2793. height="64"
  2794. x="20.121042"
  2795. y="41.253464"
  2796. ry="0"
  2797. rx="0"
  2798. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,0,0)" />
  2799. </g>
  2800. <g
  2801. inkscape:groupmode="layer"
  2802. id="layer4"
  2803. inkscape:label="Calque#3"
  2804. style="display:none">
  2805. <path
  2806. style="fill:#000000;fill-opacity:1;stroke:none"
  2807. d="m 76,28 c 0,2 3.740663,48.298413 6,50 1.955824,1.473 4,0 4,-2 0,2 0,6 0,8 -4,2 -8.013304,2.090858 -10,-2 -2.295634,-4.727 -6,-47.987464 -6,-50 -1.718986,-1.943076 -8,-2 -8,2 -2,0 0,0 -2,0 2,-10 12,-6 16,-6 z"
  2808. id="path4230"
  2809. inkscape:connector-curvature="0"
  2810. sodipodi:nodetypes="csccscccc" />
  2811. <path
  2812. style="fill:#000000;fill-opacity:1;stroke:none"
  2813. d="m 72,34 c -4,10 -18,50 -24,50 -2,0 -2,0 -4,0 2,-4 0,0 2,-4 0,0 0,0 2,0 4,0 20,-42 22,-50 1.53393,-6.13572 2,4 2,4 z"
  2814. id="path4232"
  2815. inkscape:connector-curvature="0"
  2816. sodipodi:nodetypes="csccssc" />
  2817. <path
  2818. style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
  2819. d="m 62,56 12,0 0,4 -14,0 z"
  2820. id="path4234"
  2821. inkscape:connector-curvature="0"
  2822. sodipodi:nodetypes="ccccc" />
  2823. </g>
  2824. <g
  2825. inkscape:groupmode="layer"
  2826. id="layer7"
  2827. inkscape:label="Calque#2"
  2828. style="display:inline"
  2829. sodipodi:insensitive="true">
  2830. <path
  2831. inkscape:connector-curvature="0"
  2832. style="fill:url(#linearGradient4355);fill-opacity:1;stroke:none;display:inline"
  2833. d="m 58.444389,30.380894 c -3.577831,0.926829 -6.794258,3.017556 -6.425067,8.74206 l 1.931852,-0.517638 c -0.95725,-3.572505 4.163404,-5.182765 6.651845,-4.27349 -0.330501,11.268812 -4.611268,51.349421 -8.269131,52.329542 l -1.931852,0.517639 -0.896576,4.381341 3.863704,-1.035276 c 3.131936,-0.8392 5.476709,-13.564001 7.190564,-26.773334 L 70.88306,60.985609 c 3.738184,9.611235 7.494191,18.605912 9.014389,20.360678 2.977793,3.43727 6.830831,2.310789 10.176896,-0.656339 l -2.070552,-7.727407 c 0.517638,1.931852 -1.075644,3.883733 -3.346065,2.967128 C 82.034973,74.870822 66.438859,31.118146 65.92122,29.186292 c -1.69037,0.452934 -4.694073,0.473734 -7.476831,1.194602 z m 4.722245,9.896249 c 1.562769,4.344616 3.777246,10.474622 6.258557,16.957996 l -8.33111,2.232314 c 0.878799,-7.358597 1.571996,-14.287064 2.072553,-19.19031 z"
  2834. id="path4230-3" />
  2835. <path
  2836. inkscape:connector-curvature="0"
  2837. style="fill:#323232;fill-opacity:1;stroke:none;filter:url(#filter4483)"
  2838. d="m 78,92 c -3.313708,0 -6,2.686292 -6,6 0,3.31371 2.686292,6 6,6 3.313708,0 6,-2.68629 6,-6 0,-3.313708 -2.686292,-6 -6,-6 z m 0,2 c 2.209139,0 4,1.790861 4,4 0,2.20914 -1.790861,4 -4,4 -2.209139,0 -4,-1.79086 -4,-4 0,-2.209139 1.790861,-4 4,-4 z"
  2839. id="path4381-8"
  2840. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  2841. <path
  2842. style="fill:url(#linearGradient4393);fill-opacity:1;stroke:none"
  2843. d="m 84.417492,90.487911 c -3.200796,0.857651 -5.100291,4.147673 -4.242641,7.348469 0.857652,3.2008 4.147673,5.10029 7.348469,4.24264 3.200797,-0.85765 5.100292,-4.14767 4.242641,-7.348468 -0.857651,-3.200797 -4.147673,-5.100292 -7.348469,-4.242641 z m 0.517638,1.931852 c 2.133864,-0.571768 4.327212,0.694562 4.89898,2.828427 0.571767,2.133865 -0.694563,4.327212 -2.828428,4.89898 -2.133864,0.57177 -4.327212,-0.694563 -4.898979,-2.828428 -0.571767,-2.133864 0.694563,-4.327212 2.828427,-4.898979 z"
  2844. id="path4381"
  2845. inkscape:connector-curvature="0" />
  2846. <path
  2847. style="fill:none;stroke:#545454;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  2848. d="m 95.176398,37.911814 -3.863704,1.035276 5.176381,19.318517 3.863705,-1.035276"
  2849. id="path4395"
  2850. inkscape:connector-curvature="0" />
  2851. <path
  2852. style="fill:url(#linearGradient4421);fill-opacity:1;stroke:none"
  2853. d="m 95.176398,37.911814 -3.863704,1.035276 5.176381,19.318517 3.863705,-1.035276 z"
  2854. id="path4395-9"
  2855. inkscape:connector-curvature="0"
  2856. sodipodi:nodetypes="ccccc" />
  2857. <path
  2858. sodipodi:type="arc"
  2859. style="fill:url(#linearGradient4496);fill-opacity:1;stroke:none"
  2860. id="path4487"
  2861. sodipodi:cx="78"
  2862. sodipodi:cy="98"
  2863. sodipodi:rx="4"
  2864. sodipodi:ry="4"
  2865. d="m 82,98 a 4,4 0 1 1 -8,0 4,4 0 1 1 8,0 z"
  2866. transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-14.736075,21.81062)" />
  2867. </g>
  2868. <g
  2869. inkscape:groupmode="layer"
  2870. id="layer6"
  2871. inkscape:label="Calque#1"
  2872. style="display:inline">
  2873. <path
  2874. style="opacity:1;fill:url(#linearGradient4434);fill-opacity:1;stroke:none;display:inline;filter:url(#filter4456)"
  2875. d="m 167.48701,49.993175 c -0.32281,-0.236894 -1.15056,-0.220341 -2.36544,-0.05706 -0.28727,-0.08321 -0.66841,-0.141114 -1.12369,-0.13981 -1.37954,-0.322955 -5.61209,-1.230081 -8.22011,-2.105638 -2.7895,0.560806 -5.65383,1.022734 -8.28911,1.473291 -0.60926,1.462692 -1.86519,3.480266 -3.24574,5.166876 -0.37341,0.130687 -0.79822,0.295347 -1.18081,0.431009 -0.10245,-1.215969 -0.29446,-2.51842 0.27687,-3.929369 -1.99273,0.32807 -4.3736,1.133593 -5.10959,1.567331 -0.32224,1.265241 -1.02204,3.86222 -1.20191,4.539944 -0.11201,0.04181 -0.22053,0.105939 -0.33301,0.148022 -0.13806,-0.935491 -0.1619,-3.095077 -0.29888,-4.142662 -10.32713,3.077396 -26.74661,10.119695 -36.04127,14.78804 -1.955652,2.454773 -2.667472,2.070515 -4.20671,5.828601 -0.07967,0.03427 -0.148582,0.07302 -0.227999,0.107205 0.0062,-1.116306 0.44251,-2.740876 2.424067,-5.247386 -2.417985,1.27264 -4.237957,4.000268 -5.192182,5.709462 0.582548,-1.224252 1.446363,-2.916869 2.86594,-4.517142 -0.605511,0.359384 -2.864022,1.441647 -3.138645,1.805611 -1.237178,1.639666 -1.719279,2.422226 -2.592225,4.671129 -0.03234,0.01419 -0.07275,0.02668 -0.105021,0.04082 -0.05951,-1.176633 0.110924,-2.571434 1.418503,-3.815133 -1.1687,0.76573 -2.505372,2.639769 -3.077635,3.948502 0.298355,-0.843271 0.795239,-2.477013 1.222634,-2.883528 -2.754795,1.804935 -2.847161,3.039749 -2.980766,4.245608 -0.120903,-0.580897 -0.152902,-2.059173 -1.406732,-2.782235 0.820959,1.10623 1.070525,2.344387 0.748313,3.12181 -0.12134,0.05403 -0.21307,0.09453 -0.33302,0.148023 -0.382038,-0.724053 -0.370685,-1.854666 -0.952333,-1.852284 -0.506265,0.0021 -0.240621,0.325844 -0.338987,0.754757 0.516226,-1.380773 0.705353,0.341813 0.791791,1.319558 -0.353484,0.15803 -0.658726,0.2911 -0.999061,0.444063 -0.234044,0.103735 -0.525968,0.210118 -0.753104,0.311281 -0.0075,0.0032 -0.01052,0.02234 -0.01796,0.02557 -1.529319,0.681271 -2.936042,1.292729 -4.119217,1.842643 -0.603,0.280263 -1.236716,0.636001 -1.880576,1.047017 -0.06181,0.03937 -0.11479,0.102709 -0.176847,0.14312 -0.313906,0.204947 -0.624537,0.406746 -0.943005,0.636148 -0.312955,0.224479 -0.613224,0.478661 -0.927767,0.723214 -0.131106,0.102275 -0.266179,0.188518 -0.397227,0.293857 -0.127472,0.102107 -0.244423,0.20704 -0.37165,0.311814 -0.395843,0.326844 -0.804551,0.646151 -1.194395,0.994212 -0.432231,0.385044 -0.851315,0.806978 -1.268939,1.209158 -0.03105,0.02999 -0.06645,0.0543 -0.0974,0.08434 -0.01597,0.01551 -0.04556,0.01772 -0.06149,0.0332 -0.01439,0.01401 -0.02156,0.03713 -0.03592,0.05116 -0.114606,0.11158 -0.233036,0.217449 -0.346074,0.32977 -0.772344,0.769349 -1.502388,1.565847 -2.171662,2.331783 -0.02001,0.02288 -0.03398,0.05387 -0.05387,0.07673 -0.375749,0.432013 -0.750019,0.851544 -1.079571,1.265743 5.213626,-3.294439 8.826974,-5.361531 12.07301,-7.025989 1.000292,-0.510929 2.04762,-1.024392 3.115254,-1.554754 0.116149,-0.05484 0.234638,-0.119107 0.350976,-0.173596 0.01308,-0.0065 0.03044,-0.0011 0.04354,-0.0076 0.745783,-0.34898 1.514297,-0.680972 2.287608,-1.028528 1.992171,1.507703 2.287887,3.642227 -0.07992,2.234857 0,0 1.334175,1.531048 1.842533,0.529954 0.765791,-1.508048 -0.588624,-2.078842 -1.078615,-3.086429 0.03272,-0.01456 0.0722,-0.0262 0.105021,-0.04082 1.868318,1.586039 2.430469,2.051109 3.015301,4.02613 0.545467,-0.847395 -1.131757,-3.048735 -2.016241,-4.470194 0.03385,-0.01496 0.07106,-0.0258 0.105021,-0.04082 1.178525,1.23071 3.153222,4.185143 6.130077,4.647463 -1.37627,-0.541145 -3.207586,-1.697351 -5.279571,-5.043091 0.02673,-0.01179 0.06026,-0.0033 0.08707,-0.01524 1.614647,1.680707 3.174996,3.232783 6.726476,4.722537 1.622792,-0.298242 7.090882,-1.398157 7.090882,-1.398157 -5.39381,0.316032 -9.804897,-2.509368 -11.36324,-4.426917 0.08619,-0.03808 0.184372,-0.07628 0.27153,-0.114825 6.42089,3.4933 8.58094,3.521001 14.53945,3.220423 5.71731,-0.288407 12.66437,-1.683069 18.73251,-3.839605 -2.68806,-2.475576 -9.04318,-6.817173 -11.39873,-8.346485 0.10768,-0.0384 0.20689,-0.08394 0.31507,-0.122444 3.58235,1.356367 11.61249,3.848245 16.68842,6.141941 0.47311,-0.234761 0.90696,-0.485468 1.35275,-0.7303 4.05781,-2.228597 13.41703,-7.403023 16.76629,-9.30561 -2.22428,-2.587225 -4.05086,-4.177398 -5.62729,-5.363587 1.08743,-0.333031 2.09234,-0.672464 3.1452,-0.999171 2.85321,0.66985 5.87411,1.610244 8.85898,2.936002 1.59744,-1.250191 5.57388,-4.58154 7.25071,-5.867873 -1.9061,-0.04263 -3.77071,-0.252759 -5.44975,-0.504264 0.72042,-0.247607 1.40934,-0.483969 2.07213,-0.721616 2.43903,0.170024 4.68194,0.124242 5.77404,-0.71901 -0.36971,-0.490418 0.32742,-1.287819 1.02948,-2.064564 0.007,-0.0078 0.0107,-0.01791 0.018,-0.02558 1.3133,-0.711815 1.94382,-1.308073 1.73308,-1.76149 -0.0263,-0.05668 -0.0594,-0.116299 -0.11755,-0.158889 z"
  2876. id="path4101-3-22-2"
  2877. inkscape:connector-curvature="0" />
  2878. </g>
  2879. <g
  2880. inkscape:groupmode="layer"
  2881. id="layer5"
  2882. inkscape:label="pen"
  2883. style="display:inline">
  2884. <path
  2885. style="fill:url(#linearGradient3533);fill-opacity:1;stroke:none;display:inline"
  2886. d="m 124.375,2 c -0.20797,0.03007 -5.79227,2.470282 -8.84375,3.375 -1.96076,2.061834 -4.0396,4.085756 -5.9375,5.96875 0.43386,1.963667 0.54486,5.247639 0.125,7.78125 -0.83886,-1.182657 -2.13902,-2.20109 -2.5625,-4.03125 -1.4424,1.413534 -2.92812,3.440863 -3.28125,4.21875 0.52282,1.37752 1.84375,4.96875 1.84375,4.96875 -0.10203,0.50159 -2.06181,-2.411577 -3.03125,-3.46875 -6.683753,8.45266 -16.06679,23.640232 -20.991374,32.801717 -0.198854,3.27812 -1.097601,3.195218 0.01698,7.733151 -0.725353,-0.859137 -1.469818,-2.416697 -1.265216,-6.012546 -1.996295,3.889523 -0.645783,9.972384 -0.723846,9.248282 -0.09112,-0.845263 -0.865824,-3.705329 -0.496941,-6.941099 -0.289065,0.64206 -1.512609,2.829143 -1.528234,3.284823 -0.07316,2.133808 -0.03213,3.015676 0.613632,5.573172 -0.768021,-0.943656 -1.531235,-2.227699 -1.15625,-4.09375 -0.516508,1.298238 -0.533647,3.600067 -0.25,5 -0.240366,-0.861596 -0.772457,-2.484213 -0.65625,-3.0625 -1.217483,3.060133 -0.583548,4.123818 0,5.1875 -0.432739,-0.405953 -1.308353,-1.597433 -2.75,-1.46875 1.528589,0.506953 2.526046,1.604397 2.4375,2.53125 -0.81627,-0.270933 -1.541822,-1.431252 -2.0625,-1.0625 -0.413151,0.2926 -0.0097,0.404943 0.15625,0.8125 -0.461739,-1.776087 1.488254,0.740605 1.78125,1.0625 3.188656,-2.423423 4.558116,-2.111219 2.8125,-4.53125 L 91.875,46.3125 C 94.041326,42.94991 121.17443,3.607074 124.125,2.125 124.33782,2.018101 124.40471,1.9957041 124.375,2 z"
  2887. id="path4101-3-22"
  2888. inkscape:connector-curvature="0"
  2889. sodipodi:nodetypes="sccccccccccscscccccccsccccss" />
  2890. <path
  2891. style="fill:#c0d1ce;fill-opacity:1;stroke:none;display:inline"
  2892. d="m 68.597646,90.61997 c 0.26795,-4.4641 1.535899,-10.660252 3.535899,-14.124353 C 82.633545,58.309083 122.0711,-2.9623219 125.45168,2.015043 114.55094,11.625488 106.15088,26.16695 97.243338,39.515994 88.335791,52.865038 70.865596,82.691769 68.597646,90.61997 z"
  2893. id="path3311"
  2894. inkscape:connector-curvature="0"
  2895. sodipodi:nodetypes="csczc" />
  2896. <path
  2897. inkscape:connector-curvature="0"
  2898. style="fill:url(#linearGradient4308-8);fill-opacity:1;stroke:none;display:inline"
  2899. d="m 71.848108,77.052507 c -1.833183,3.538786 -2.995641,9.322083 -3.250462,13.567463 1.394255,-3.616391 1.970318,-4.837685 3.461387,-7.999107 -0.895598,-1.850879 1.036358,-3.444513 -0.210925,-5.568356 z"
  2900. id="path3311-2"
  2901. sodipodi:nodetypes="cccc" />
  2902. <path
  2903. style="fill:url(#linearGradient4336-4);fill-opacity:1;stroke:none;display:inline"
  2904. d="m 68.597646,90.61997 c 0.26795,-4.4641 1.535899,-10.660252 3.535899,-14.124353 10.5,-18.186534 45.005905,-73.00907 48.470005,-71.00907 3.4641,2 -27.718317,40.746002 -35.718312,54.602409 -8.000004,13.856406 -9.982241,15.412853 -16.287592,30.531014 z"
  2905. id="path3311-29"
  2906. inkscape:connector-curvature="0"
  2907. sodipodi:nodetypes="cszzc" />
  2908. <path
  2909. style="fill:url(#linearGradient4269-8);fill-opacity:1;stroke:none;display:inline"
  2910. d="M 125.84375,0.90625 C 125.36101,1.0125675 124.45031,1.7837425 122.75,3.625 109.28294,18.208402 80.007652,66.615525 79.71875,67.09375 c -1.192464,1.897625 -2.438083,3.507732 -2.90625,5.25 2.94408,-0.271087 5.024563,1.645151 2,1.875 0,0 1.971678,0.486433 1.8125,-0.625 -0.259421,-1.811358 -1.942677,-1.266426 -2.90625,-2.03125 2.739107,0.255419 3.403349,0.252359 5.09375,1.59375 C 82.76912,72.077428 79.707396,71.170739 78.25,70.5 c 1.492948,0.158406 5.166783,1.786803 8.09375,0.34375 -1.480067,0.358269 -3.714734,0.478617 -7.53125,-1.21875 2.430169,0.478397 4.626763,0.928545 8.59375,0.0625 1.156774,-1.176554 5,-5.21875 5,-5.21875 -4.573793,3.628424 -10.370563,3.622921 -12.40625,2.75 7.920288,-0.833304 9.602103,-2.015749 14.46875,-5.8125 4.513498,-3.521237 9.39781,-8.654491 13.125,-13.90625 -4.32043,-0.574289 -14.921466,-0.311733 -15.4375,-0.21875 2.403544,-0.350789 12.28957,-3.691005 18.6875,-4.90625 0.25232,-0.463994 0.46334,-0.918474 0.6875,-1.375 2.04048,-4.155597 6.7271,-13.768363 8.375,-17.25 -5.6987,-1.446422 -8.76812,-1.21664 -11.4375,-1.125 3.84643,-1.999406 8.98653,-4.222879 14.6875,-5.34375 0.58904,-1.941103 1.92926,-6.952459 2.5625,-8.96875 -4.48387,3.000649 -9.37591,4.785054 -10.875,5.40625 2.33573,-2.165082 10.76627,-5.308452 11.71875,-8.375 -1.16875,-0.377887 0.38856,-4.2533096 -0.53125,-4.4375 -0.0523,-0.0104654 -0.11854,-0.0151882 -0.1875,0 z"
  2911. id="path4081"
  2912. inkscape:connector-curvature="0" />
  2913. <path
  2914. style="fill:url(#linearGradient4353-4);fill-opacity:1;stroke:none;display:inline"
  2915. d="m 68.597646,90.61997 c 0.26795,-4.4641 1.535899,-10.66025 3.535899,-14.12435 10.5,-18.186537 51.041375,-77.903142 54.505475,-75.903142 3.4641,2 -32.43935,42.913551 -40.439354,56.769958 -8.000004,13.856406 -15.33407,25.329334 -17.60202,33.257534 z"
  2916. id="path3311-29-1"
  2917. inkscape:connector-curvature="0"
  2918. sodipodi:nodetypes="cszzc" />
  2919. </g>
  2920. </svg>