wordpad.svg 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480
  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. height="272"
  13. width="632"
  14. version="1.1"
  15. id="svg2"
  16. inkscape:version="0.48.3.1 r9886"
  17. sodipodi:docname="wordpad.svg">
  18. <metadata
  19. id="metadata306">
  20. <rdf:RDF>
  21. <cc:Work
  22. rdf:about="">
  23. <dc:format>image/svg+xml</dc:format>
  24. <dc:type
  25. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  26. </cc:Work>
  27. </rdf:RDF>
  28. </metadata>
  29. <sodipodi:namedview
  30. pagecolor="#ffffff"
  31. bordercolor="#666666"
  32. borderopacity="1"
  33. objecttolerance="10"
  34. gridtolerance="10"
  35. guidetolerance="10"
  36. inkscape:pageopacity="0"
  37. inkscape:pageshadow="2"
  38. inkscape:window-width="1248"
  39. inkscape:window-height="844"
  40. id="namedview304"
  41. showgrid="false"
  42. inkscape:zoom="1"
  43. inkscape:cx="184"
  44. inkscape:cy="32"
  45. inkscape:window-x="0"
  46. inkscape:window-y="0"
  47. inkscape:window-maximized="0"
  48. inkscape:current-layer="svg2" />
  49. <defs
  50. id="defs4">
  51. <linearGradient
  52. id="linearGradient2804">
  53. <stop
  54. id="stop2806"
  55. stop-color="#FFF"
  56. offset="0" />
  57. <stop
  58. id="stop2808"
  59. stop-color="#d3d7cf"
  60. offset="1" />
  61. </linearGradient>
  62. <linearGradient
  63. id="linearGradient2791">
  64. <stop
  65. id="stop2793"
  66. stop-color="#555753"
  67. offset="0" />
  68. <stop
  69. id="stop2799"
  70. stop-color="#cccdcb"
  71. offset="0.5" />
  72. <stop
  73. id="stop2795"
  74. stop-color="#555753"
  75. offset="1" />
  76. </linearGradient>
  77. <linearGradient
  78. id="linearGradient3198">
  79. <stop
  80. id="stop3200"
  81. stop-color="#FFF"
  82. offset="0" />
  83. <stop
  84. id="stop3202"
  85. stop-color="#FFF"
  86. stop-opacity="0"
  87. offset="1" />
  88. </linearGradient>
  89. <filter
  90. id="filter3391"
  91. height="1.336"
  92. width="1.1344"
  93. color-interpolation-filters="sRGB"
  94. y="-0.168"
  95. x="-0.067199998">
  96. <feGaussianBlur
  97. id="feGaussianBlur3393"
  98. stdDeviation="0.14" />
  99. </filter>
  100. <linearGradient
  101. id="linearGradient5060">
  102. <stop
  103. id="stop5062"
  104. stop-color="#000"
  105. offset="0" />
  106. <stop
  107. id="stop5064"
  108. stop-color="#000"
  109. stop-opacity="0"
  110. offset="1" />
  111. </linearGradient>
  112. <linearGradient
  113. id="linearGradient3468"
  114. y2="25.5"
  115. gradientUnits="userSpaceOnUse"
  116. x2="20.5"
  117. gradientTransform="translate(-8.0000004,15.967633)"
  118. y1="27.5"
  119. x1="16">
  120. <stop
  121. id="stop3375"
  122. stop-color="#000"
  123. offset="0" />
  124. <stop
  125. id="stop3377"
  126. stop-color="#373737"
  127. stop-opacity="0"
  128. offset="1" />
  129. </linearGradient>
  130. <linearGradient
  131. id="linearGradient3470"
  132. y2="27"
  133. gradientUnits="userSpaceOnUse"
  134. x2="21.5"
  135. gradientTransform="translate(-8.0000004,15.967633)"
  136. y1="27"
  137. x1="16">
  138. <stop
  139. id="stop3444"
  140. stop-color="#000"
  141. offset="0" />
  142. <stop
  143. id="stop3446"
  144. stop-color="#000"
  145. stop-opacity="0"
  146. offset="1" />
  147. </linearGradient>
  148. <linearGradient
  149. id="linearGradient3516"
  150. y2="6.0247002"
  151. xlink:href="#linearGradient2804"
  152. gradientUnits="userSpaceOnUse"
  153. x2="7.9835"
  154. gradientTransform="translate(191,23.999997)"
  155. y1="3"
  156. x1="8.0108004" />
  157. <linearGradient
  158. id="linearGradient3518"
  159. y2="-0.4375"
  160. xlink:href="#linearGradient2791"
  161. gradientUnits="userSpaceOnUse"
  162. x2="6"
  163. gradientTransform="translate(191,23.999997)"
  164. y1="7"
  165. x1="6" />
  166. <linearGradient
  167. id="linearGradient3521"
  168. y2="6.0247002"
  169. xlink:href="#linearGradient2804"
  170. gradientUnits="userSpaceOnUse"
  171. x2="7.9835"
  172. gradientTransform="translate(188,23.999997)"
  173. y1="3"
  174. x1="8.0108004" />
  175. <linearGradient
  176. id="linearGradient3523"
  177. y2="-0.4375"
  178. xlink:href="#linearGradient2791"
  179. gradientUnits="userSpaceOnUse"
  180. x2="6"
  181. gradientTransform="translate(188,23.999997)"
  182. y1="7"
  183. x1="6" />
  184. <linearGradient
  185. id="linearGradient3526"
  186. y2="6.0247002"
  187. xlink:href="#linearGradient2804"
  188. gradientUnits="userSpaceOnUse"
  189. x2="7.9835"
  190. gradientTransform="translate(185,23.999997)"
  191. y1="3"
  192. x1="8.0108004" />
  193. <linearGradient
  194. id="linearGradient3528"
  195. y2="-0.4375"
  196. xlink:href="#linearGradient2791"
  197. gradientUnits="userSpaceOnUse"
  198. x2="6"
  199. gradientTransform="translate(185,23.999997)"
  200. y1="7"
  201. x1="6" />
  202. <linearGradient
  203. id="linearGradient3532"
  204. y2="6.0247002"
  205. xlink:href="#linearGradient2804"
  206. gradientUnits="userSpaceOnUse"
  207. x2="7.9835"
  208. gradientTransform="translate(182,23.999997)"
  209. y1="3"
  210. x1="8.0108004" />
  211. <linearGradient
  212. id="linearGradient3534"
  213. y2="-0.4375"
  214. xlink:href="#linearGradient2791"
  215. gradientUnits="userSpaceOnUse"
  216. x2="6"
  217. gradientTransform="translate(182,23.999997)"
  218. y1="7"
  219. x1="6" />
  220. <linearGradient
  221. id="linearGradient3537"
  222. y2="6.0247002"
  223. xlink:href="#linearGradient2804"
  224. gradientUnits="userSpaceOnUse"
  225. x2="7.9835"
  226. gradientTransform="translate(179,23.999997)"
  227. y1="3"
  228. x1="8.0108004" />
  229. <linearGradient
  230. id="linearGradient3539"
  231. y2="-0.4375"
  232. xlink:href="#linearGradient2791"
  233. gradientUnits="userSpaceOnUse"
  234. x2="6"
  235. gradientTransform="translate(179,23.999997)"
  236. y1="7"
  237. x1="6" />
  238. <linearGradient
  239. id="linearGradient3573"
  240. y2="18.183001"
  241. gradientUnits="userSpaceOnUse"
  242. x2="18.962"
  243. gradientTransform="matrix(0.8894737,0,0,0.7284713,174.77812,27.754332)"
  244. y1="12"
  245. x1="11">
  246. <stop
  247. id="stop4769"
  248. stop-color="#729fcf"
  249. offset="0" />
  250. <stop
  251. id="stop4771"
  252. stop-color="#3465a4"
  253. offset="1" />
  254. </linearGradient>
  255. <radialGradient
  256. id="radialGradient3581"
  257. gradientUnits="userSpaceOnUse"
  258. cy="14.19"
  259. cx="18"
  260. gradientTransform="matrix(0.7756645,0,0,0.1405889,190.07986,39.819423)"
  261. r="5.5054998">
  262. <stop
  263. id="stop3454"
  264. stop-color="#FFF"
  265. offset="0" />
  266. <stop
  267. id="stop3456"
  268. stop-color="#FFF"
  269. stop-opacity="0"
  270. offset="1" />
  271. </radialGradient>
  272. <linearGradient
  273. id="linearGradient3584"
  274. y2="18.312"
  275. xlink:href="#linearGradient3198"
  276. gradientUnits="userSpaceOnUse"
  277. x2="23"
  278. gradientTransform="matrix(0.7756645,0,0,0.7646744,184.54755,26.108893)"
  279. y1="18.312"
  280. x1="17.605" />
  281. <linearGradient
  282. id="linearGradient3587"
  283. y2="19"
  284. xlink:href="#linearGradient3198"
  285. gradientUnits="userSpaceOnUse"
  286. x2="22"
  287. gradientTransform="matrix(0.7719782,0,0,0.7714112,183.99862,26.657021)"
  288. y1="25.27"
  289. x1="30.375999" />
  290. <radialGradient
  291. id="radialGradient3590"
  292. gradientUnits="userSpaceOnUse"
  293. cy="13.192"
  294. cx="25.017"
  295. gradientTransform="matrix(0.9613848,0,0,0.34890721,180.38815,37.309033)"
  296. r="9.7512999">
  297. <stop
  298. id="stop3173"
  299. stop-color="#fd0000"
  300. offset="0" />
  301. <stop
  302. id="stop3175"
  303. stop-color="#6a0000"
  304. offset="1" />
  305. </radialGradient>
  306. <linearGradient
  307. id="linearGradient3592"
  308. y2="7.1352"
  309. gradientUnits="userSpaceOnUse"
  310. x2="22.035999"
  311. gradientTransform="matrix(0.9613848,0,0,0.7048595,180.38815,33.393554)"
  312. y1="15.984"
  313. x1="27.216999">
  314. <stop
  315. id="stop4404"
  316. stop-color="#e80000"
  317. offset="0" />
  318. <stop
  319. id="stop4406"
  320. stop-color="#490000"
  321. offset="1" />
  322. </linearGradient>
  323. <radialGradient
  324. id="radialGradient3595"
  325. gradientUnits="userSpaceOnUse"
  326. cy="26.577"
  327. cx="26.625"
  328. gradientTransform="matrix(0.73586,-0.2418113,0.0892014,0.2638127,182.57311,45.114043)"
  329. r="12.5">
  330. <stop
  331. id="stop3191"
  332. stop-color="#e40000"
  333. offset="0" />
  334. <stop
  335. id="stop3193"
  336. stop-color="#490000"
  337. offset="1" />
  338. </radialGradient>
  339. <linearGradient
  340. id="linearGradient3598"
  341. y2="27"
  342. gradientUnits="userSpaceOnUse"
  343. x2="19"
  344. gradientTransform="matrix(0.7756645,0,0,0.7646745,183.88405,26.618461)"
  345. y1="33"
  346. x1="29">
  347. <stop
  348. id="stop3222"
  349. stop-color="#373737"
  350. offset="0" />
  351. <stop
  352. id="stop3224"
  353. stop-color="#FFF"
  354. offset="1" />
  355. </linearGradient>
  356. <linearGradient
  357. id="linearGradient3602"
  358. y2="5.0353999"
  359. xlink:href="#linearGradient3198"
  360. gradientUnits="userSpaceOnUse"
  361. x2="17.799"
  362. gradientTransform="matrix(0.9670244,0,0,0.5702668,180.48644,47.727063)"
  363. y1="12.038"
  364. x1="25.268999" />
  365. <linearGradient
  366. id="linearGradient3605"
  367. y2="9.2770004"
  368. gradientUnits="userSpaceOnUse"
  369. x2="21.440001"
  370. gradientTransform="matrix(1.012819,0,0,0.6841522,179.43901,46.474323)"
  371. y1="19.122"
  372. x1="29.455">
  373. <stop
  374. id="stop3230"
  375. stop-color="#373737"
  376. offset="0" />
  377. <stop
  378. id="stop3232"
  379. stop-color="#cfcfcf"
  380. stop-opacity="0.67826086"
  381. offset="1" />
  382. </linearGradient>
  383. <radialGradient
  384. id="radialGradient3609"
  385. gradientUnits="userSpaceOnUse"
  386. cy="22.614"
  387. cx="27.5"
  388. gradientTransform="matrix(1.1933298,-0.058821,0.07448995,1.468693,170.71373,13.374742)"
  389. r="6.5">
  390. <stop
  391. id="stop3348"
  392. stop-color="#737373"
  393. offset="0" />
  394. <stop
  395. id="stop3350"
  396. stop-color="#000"
  397. stop-opacity="0"
  398. offset="1" />
  399. </radialGradient>
  400. <radialGradient
  401. id="radialGradient3612"
  402. gradientUnits="userSpaceOnUse"
  403. cy="33.188"
  404. cx="37.375"
  405. gradientTransform="matrix(0.3155237,0,0,0.07812973,190.19969,40.509653)"
  406. r="14.625">
  407. <stop
  408. id="stop4335"
  409. stop-color="#000"
  410. offset="0" />
  411. <stop
  412. id="stop4337"
  413. stop-color="#000"
  414. stop-opacity="0"
  415. offset="1" />
  416. </radialGradient>
  417. <linearGradient
  418. id="linearGradient3615"
  419. y2="6.0247002"
  420. xlink:href="#linearGradient2804"
  421. gradientUnits="userSpaceOnUse"
  422. x2="7.9835"
  423. gradientTransform="translate(176,23.999997)"
  424. y1="3"
  425. x1="8.0108004" />
  426. <linearGradient
  427. id="linearGradient3617"
  428. y2="-0.4375"
  429. xlink:href="#linearGradient2791"
  430. gradientUnits="userSpaceOnUse"
  431. x2="6"
  432. gradientTransform="translate(176,23.999997)"
  433. y1="7"
  434. x1="6" />
  435. <linearGradient
  436. id="linearGradient3621"
  437. y2="7.5625"
  438. gradientUnits="userSpaceOnUse"
  439. x2="40.984001"
  440. gradientTransform="matrix(0.670988,0,0,0.815295,175.24717,23.745139)"
  441. y1="7.5625"
  442. x1="6">
  443. <stop
  444. id="stop2921"
  445. stop-color="#a3a4a0"
  446. offset="0" />
  447. <stop
  448. id="stop2923"
  449. stop-color="#888a85"
  450. offset="1" />
  451. </linearGradient>
  452. <linearGradient
  453. id="linearGradient3626"
  454. y2="6.8333998"
  455. gradientUnits="userSpaceOnUse"
  456. x2="14.284"
  457. gradientTransform="matrix(0.763497,0,0,0.668488,173.46175,24.479175)"
  458. y1="42.833"
  459. x1="21.042999">
  460. <stop
  461. id="stop2857"
  462. stop-color="#dfdfdf"
  463. offset="0" />
  464. <stop
  465. id="stop2859"
  466. stop-color="#FFF"
  467. offset="1" />
  468. </linearGradient>
  469. <linearGradient
  470. id="linearGradient3628"
  471. y2="42.833"
  472. gradientUnits="userSpaceOnUse"
  473. x2="26.228001"
  474. gradientTransform="matrix(0.670988,0,0,0.668488,175.24717,24.479175)"
  475. y1="28.083"
  476. x1="26.612">
  477. <stop
  478. id="stop2875"
  479. stop-color="#939393"
  480. offset="0" />
  481. <stop
  482. id="stop2877"
  483. stop-color="#424242"
  484. offset="1" />
  485. </linearGradient>
  486. <radialGradient
  487. id="radialGradient3631"
  488. xlink:href="#linearGradient5060"
  489. gradientUnits="userSpaceOnUse"
  490. cy="486.64999"
  491. cx="605.71002"
  492. gradientTransform="matrix(-0.04471505,0,0,0.02740202,207.59635,38.625713)"
  493. r="117.14" />
  494. <radialGradient
  495. id="radialGradient3634"
  496. xlink:href="#linearGradient5060"
  497. gradientUnits="userSpaceOnUse"
  498. cy="486.64999"
  499. cx="605.71002"
  500. gradientTransform="matrix(0.04471505,0,0,0.02740202,175.29135,38.625713)"
  501. r="117.14" />
  502. <linearGradient
  503. id="linearGradient3637"
  504. y2="609.51001"
  505. gradientUnits="userSpaceOnUse"
  506. x2="302.85999"
  507. gradientTransform="matrix(0.04471505,0,0,0.02740202,175.28255,38.625713)"
  508. y1="366.64999"
  509. x1="302.85999">
  510. <stop
  511. id="stop5050"
  512. stop-color="#000"
  513. stop-opacity="0"
  514. offset="0" />
  515. <stop
  516. id="stop5056"
  517. stop-color="#000"
  518. offset="0.5" />
  519. <stop
  520. id="stop5052"
  521. stop-color="#000"
  522. stop-opacity="0"
  523. offset="1" />
  524. </linearGradient>
  525. <filter
  526. id="filter3391-8"
  527. height="1.336"
  528. width="1.1344"
  529. color-interpolation-filters="sRGB"
  530. y="-0.168"
  531. x="-0.067199998">
  532. <feGaussianBlur
  533. id="feGaussianBlur3393-1"
  534. stdDeviation="0.14" />
  535. </filter>
  536. <filter
  537. id="filter3436-4"
  538. height="1.2801698"
  539. width="1.1580106"
  540. color-interpolation-filters="sRGB"
  541. y="-0.14008497"
  542. x="-0.079005308">
  543. <feGaussianBlur
  544. id="feGaussianBlur3438-7"
  545. stdDeviation="0.3190069" />
  546. </filter>
  547. <radialGradient
  548. id="radialGradient5014"
  549. xlink:href="#linearGradient2804"
  550. gradientUnits="userSpaceOnUse"
  551. cy="11.669"
  552. cx="12.322"
  553. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-103.68635,-0.914852)"
  554. r="1.5" />
  555. <linearGradient
  556. id="linearGradient5016"
  557. y2="14.663"
  558. xlink:href="#linearGradient2791"
  559. gradientUnits="userSpaceOnUse"
  560. x2="11.581"
  561. gradientTransform="translate(5.007851,1.000004)"
  562. y1="6.7284002"
  563. x1="11.669" />
  564. <radialGradient
  565. id="radialGradient5029"
  566. gradientUnits="userSpaceOnUse"
  567. cy="14.19"
  568. cx="18"
  569. gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
  570. r="5.5054998">
  571. <stop
  572. id="stop3454-8"
  573. stop-color="#FFF"
  574. offset="0" />
  575. <stop
  576. id="stop3456-9"
  577. stop-color="#FFF"
  578. stop-opacity="0"
  579. offset="1" />
  580. </radialGradient>
  581. <linearGradient
  582. id="linearGradient5034"
  583. y2="18.312"
  584. xlink:href="#linearGradient3198"
  585. gradientUnits="userSpaceOnUse"
  586. x2="23"
  587. gradientTransform="matrix(1.0342194,0,0,1.019566,24.571252,15.42453)"
  588. y1="18.312"
  589. x1="17.605" />
  590. <linearGradient
  591. id="linearGradient5037"
  592. y2="19"
  593. xlink:href="#linearGradient3198"
  594. gradientUnits="userSpaceOnUse"
  595. x2="22"
  596. gradientTransform="matrix(1.0293043,0,0,1.0285483,23.839351,16.155369)"
  597. y1="25.27"
  598. x1="30.375999" />
  599. <radialGradient
  600. id="radialGradient5040"
  601. gradientUnits="userSpaceOnUse"
  602. cy="13.192"
  603. cx="25.017"
  604. gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
  605. r="9.7512999">
  606. <stop
  607. id="stop3173-1"
  608. stop-color="#fd0000"
  609. offset="0" />
  610. <stop
  611. id="stop3175-0"
  612. stop-color="#6a0000"
  613. offset="1" />
  614. </radialGradient>
  615. <linearGradient
  616. id="linearGradient5042"
  617. y2="7.1352"
  618. gradientUnits="userSpaceOnUse"
  619. x2="22.035999"
  620. gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
  621. y1="15.984"
  622. x1="27.216999">
  623. <stop
  624. id="stop4404-11"
  625. stop-color="#e80000"
  626. offset="0" />
  627. <stop
  628. id="stop4406-0"
  629. stop-color="#490000"
  630. offset="1" />
  631. </linearGradient>
  632. <radialGradient
  633. id="radialGradient5045"
  634. gradientUnits="userSpaceOnUse"
  635. cy="26.577"
  636. cx="26.625"
  637. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
  638. r="12.5">
  639. <stop
  640. id="stop3191-5"
  641. stop-color="#e40000"
  642. offset="0" />
  643. <stop
  644. id="stop3193-0"
  645. stop-color="#490000"
  646. offset="1" />
  647. </radialGradient>
  648. <linearGradient
  649. id="linearGradient5049"
  650. y2="27"
  651. gradientUnits="userSpaceOnUse"
  652. x2="19"
  653. gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
  654. y1="33"
  655. x1="29">
  656. <stop
  657. id="stop3222-4"
  658. stop-color="#373737"
  659. offset="0" />
  660. <stop
  661. id="stop3224-6"
  662. stop-color="#FFF"
  663. offset="1" />
  664. </linearGradient>
  665. <linearGradient
  666. id="linearGradient5052"
  667. y2="5.0353999"
  668. xlink:href="#linearGradient3198"
  669. gradientUnits="userSpaceOnUse"
  670. x2="17.799"
  671. gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025385,42.174275)"
  672. y1="12.038"
  673. x1="25.268999" />
  674. <linearGradient
  675. id="linearGradient5055"
  676. y2="9.2770004"
  677. gradientUnits="userSpaceOnUse"
  678. x2="21.440001"
  679. gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
  680. y1="14.243"
  681. x1="27.681">
  682. <stop
  683. id="stop3230-5"
  684. stop-color="#373737"
  685. offset="0" />
  686. <stop
  687. id="stop3232-8"
  688. stop-color="#cfcfcf"
  689. stop-opacity="0.67826086"
  690. offset="1" />
  691. </linearGradient>
  692. <radialGradient
  693. id="radialGradient5058"
  694. gradientUnits="userSpaceOnUse"
  695. cy="22.614"
  696. cx="27.5"
  697. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
  698. r="6.5">
  699. <stop
  700. id="stop3348-2"
  701. stop-color="#737373"
  702. offset="0" />
  703. <stop
  704. id="stop3350-8"
  705. stop-color="#000"
  706. stop-opacity="0"
  707. offset="1" />
  708. </radialGradient>
  709. <radialGradient
  710. id="radialGradient5062"
  711. gradientUnits="userSpaceOnUse"
  712. cy="33.188"
  713. cx="37.375"
  714. gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
  715. r="14.625">
  716. <stop
  717. id="stop4335-4"
  718. stop-color="#000"
  719. offset="0" />
  720. <stop
  721. id="stop4337-0"
  722. stop-color="#000"
  723. stop-opacity="0"
  724. offset="1" />
  725. </radialGradient>
  726. <linearGradient
  727. id="linearGradient5066"
  728. y2="7.5625"
  729. gradientUnits="userSpaceOnUse"
  730. x2="40.984001"
  731. gradientTransform="translate(8.018485,8.000004)"
  732. y1="7.5625"
  733. x1="6">
  734. <stop
  735. id="stop2921-2"
  736. stop-color="#a3a4a0"
  737. offset="0" />
  738. <stop
  739. id="stop2923-9"
  740. stop-color="#888a85"
  741. offset="1" />
  742. </linearGradient>
  743. <linearGradient
  744. id="linearGradient5080"
  745. y2="18.183001"
  746. gradientUnits="userSpaceOnUse"
  747. x2="18.962"
  748. gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
  749. y1="12"
  750. x1="11">
  751. <stop
  752. id="stop4769-8"
  753. stop-color="#729fcf"
  754. offset="0" />
  755. <stop
  756. id="stop4771-1"
  757. stop-color="#3465a4"
  758. offset="1" />
  759. </linearGradient>
  760. <linearGradient
  761. id="linearGradient5116"
  762. y2="6.8333998"
  763. gradientUnits="userSpaceOnUse"
  764. x2="14.284"
  765. gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
  766. y1="42.833"
  767. x1="21.042999">
  768. <stop
  769. id="stop2857-1"
  770. stop-color="#dfdfdf"
  771. offset="0" />
  772. <stop
  773. id="stop2859-1"
  774. stop-color="#FFF"
  775. offset="1" />
  776. </linearGradient>
  777. <linearGradient
  778. id="linearGradient5118"
  779. y2="42.833"
  780. gradientUnits="userSpaceOnUse"
  781. x2="26.228001"
  782. gradientTransform="translate(8.018485,8.000004)"
  783. y1="28.083"
  784. x1="26.612">
  785. <stop
  786. id="stop2875-3"
  787. stop-color="#939393"
  788. offset="0" />
  789. <stop
  790. id="stop2877-40"
  791. stop-color="#424242"
  792. offset="1" />
  793. </linearGradient>
  794. <radialGradient
  795. id="radialGradient5121"
  796. xlink:href="#linearGradient5060"
  797. gradientUnits="userSpaceOnUse"
  798. cy="486.64999"
  799. cx="605.71002"
  800. gradientTransform="matrix(-0.06707255,0,0,0.041103,55.872233,29.938595)"
  801. r="117.14" />
  802. <radialGradient
  803. id="radialGradient5124"
  804. xlink:href="#linearGradient5060"
  805. gradientUnits="userSpaceOnUse"
  806. cy="486.64999"
  807. cx="605.71002"
  808. gradientTransform="matrix(0.06707255,0,0,0.041103,7.414755,29.938595)"
  809. r="117.14" />
  810. <linearGradient
  811. id="linearGradient5127"
  812. y2="609.51001"
  813. gradientUnits="userSpaceOnUse"
  814. x2="302.85999"
  815. gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
  816. y1="366.64999"
  817. x1="302.85999">
  818. <stop
  819. id="stop5050-3"
  820. stop-color="#000"
  821. stop-opacity="0"
  822. offset="0" />
  823. <stop
  824. id="stop5056-38"
  825. stop-color="#000"
  826. offset="0.5" />
  827. <stop
  828. id="stop5052-0"
  829. stop-color="#000"
  830. stop-opacity="0"
  831. offset="1" />
  832. </linearGradient>
  833. <radialGradient
  834. id="radialGradient5131"
  835. xlink:href="#linearGradient2804"
  836. gradientUnits="userSpaceOnUse"
  837. cy="11.669"
  838. cx="12.322"
  839. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  840. r="1.5" />
  841. <linearGradient
  842. id="linearGradient5133"
  843. y2="14.663"
  844. xlink:href="#linearGradient2791"
  845. gradientUnits="userSpaceOnUse"
  846. x2="11.581"
  847. y1="6.7284002"
  848. x1="11.669" />
  849. <linearGradient
  850. inkscape:collect="always"
  851. xlink:href="#linearGradient5127"
  852. id="linearGradient3483"
  853. gradientUnits="userSpaceOnUse"
  854. gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
  855. x1="302.85999"
  856. y1="366.64999"
  857. x2="302.85999"
  858. y2="609.51001" />
  859. <radialGradient
  860. inkscape:collect="always"
  861. xlink:href="#linearGradient5060"
  862. id="radialGradient3485"
  863. gradientUnits="userSpaceOnUse"
  864. gradientTransform="matrix(0.06707255,0,0,0.041103,7.414755,29.938595)"
  865. cx="605.71002"
  866. cy="486.64999"
  867. r="117.14" />
  868. <radialGradient
  869. inkscape:collect="always"
  870. xlink:href="#linearGradient5060"
  871. id="radialGradient3487"
  872. gradientUnits="userSpaceOnUse"
  873. gradientTransform="matrix(-0.06707255,0,0,0.041103,55.872233,29.938595)"
  874. cx="605.71002"
  875. cy="486.64999"
  876. r="117.14" />
  877. <linearGradient
  878. inkscape:collect="always"
  879. xlink:href="#linearGradient5116"
  880. id="linearGradient3489"
  881. gradientUnits="userSpaceOnUse"
  882. gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
  883. x1="21.042999"
  884. y1="42.833"
  885. x2="14.284"
  886. y2="6.8333998" />
  887. <linearGradient
  888. inkscape:collect="always"
  889. xlink:href="#linearGradient5118"
  890. id="linearGradient3491"
  891. gradientUnits="userSpaceOnUse"
  892. gradientTransform="translate(8.018485,8.000004)"
  893. x1="26.612"
  894. y1="28.083"
  895. x2="26.228001"
  896. y2="42.833" />
  897. <linearGradient
  898. inkscape:collect="always"
  899. xlink:href="#linearGradient5080"
  900. id="linearGradient3493"
  901. gradientUnits="userSpaceOnUse"
  902. gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
  903. x1="11"
  904. y1="12"
  905. x2="18.962"
  906. y2="18.183001" />
  907. <linearGradient
  908. inkscape:collect="always"
  909. xlink:href="#linearGradient5066"
  910. id="linearGradient3495"
  911. gradientUnits="userSpaceOnUse"
  912. gradientTransform="translate(8.018485,8.000004)"
  913. x1="6"
  914. y1="7.5625"
  915. x2="40.984001"
  916. y2="7.5625" />
  917. <radialGradient
  918. inkscape:collect="always"
  919. xlink:href="#radialGradient5062"
  920. id="radialGradient3497"
  921. gradientUnits="userSpaceOnUse"
  922. gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
  923. cx="37.375"
  924. cy="33.188"
  925. r="14.625" />
  926. <radialGradient
  927. inkscape:collect="always"
  928. xlink:href="#radialGradient5058"
  929. id="radialGradient3499"
  930. gradientUnits="userSpaceOnUse"
  931. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
  932. cx="27.5"
  933. cy="22.614"
  934. r="6.5" />
  935. <linearGradient
  936. inkscape:collect="always"
  937. xlink:href="#linearGradient5055"
  938. id="linearGradient3501"
  939. gradientUnits="userSpaceOnUse"
  940. gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
  941. x1="27.681"
  942. y1="14.243"
  943. x2="21.440001"
  944. y2="9.2770004" />
  945. <linearGradient
  946. inkscape:collect="always"
  947. xlink:href="#linearGradient3198"
  948. id="linearGradient3503"
  949. gradientUnits="userSpaceOnUse"
  950. gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025385,42.174275)"
  951. x1="25.268999"
  952. y1="12.038"
  953. x2="17.799"
  954. y2="5.0353999" />
  955. <linearGradient
  956. inkscape:collect="always"
  957. xlink:href="#linearGradient5049"
  958. id="linearGradient3505"
  959. gradientUnits="userSpaceOnUse"
  960. gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
  961. x1="29"
  962. y1="33"
  963. x2="19"
  964. y2="27" />
  965. <radialGradient
  966. inkscape:collect="always"
  967. xlink:href="#radialGradient5045"
  968. id="radialGradient3507"
  969. gradientUnits="userSpaceOnUse"
  970. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
  971. cx="26.625"
  972. cy="26.577"
  973. r="12.5" />
  974. <radialGradient
  975. inkscape:collect="always"
  976. xlink:href="#radialGradient5040"
  977. id="radialGradient3509"
  978. gradientUnits="userSpaceOnUse"
  979. gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
  980. cx="25.017"
  981. cy="13.192"
  982. r="9.7512999" />
  983. <linearGradient
  984. inkscape:collect="always"
  985. xlink:href="#linearGradient5042"
  986. id="linearGradient3511"
  987. gradientUnits="userSpaceOnUse"
  988. gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
  989. x1="27.216999"
  990. y1="15.984"
  991. x2="22.035999"
  992. y2="7.1352" />
  993. <linearGradient
  994. inkscape:collect="always"
  995. xlink:href="#linearGradient3198"
  996. id="linearGradient3513"
  997. gradientUnits="userSpaceOnUse"
  998. gradientTransform="matrix(1.0293043,0,0,1.0285483,23.839351,16.155369)"
  999. x1="30.375999"
  1000. y1="25.27"
  1001. x2="22"
  1002. y2="19" />
  1003. <linearGradient
  1004. inkscape:collect="always"
  1005. xlink:href="#linearGradient3198"
  1006. id="linearGradient3515"
  1007. gradientUnits="userSpaceOnUse"
  1008. gradientTransform="matrix(1.0342194,0,0,1.019566,24.571252,15.42453)"
  1009. x1="17.605"
  1010. y1="18.312"
  1011. x2="23"
  1012. y2="18.312" />
  1013. <radialGradient
  1014. inkscape:collect="always"
  1015. xlink:href="#radialGradient5029"
  1016. id="radialGradient3517"
  1017. gradientUnits="userSpaceOnUse"
  1018. gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
  1019. cx="18"
  1020. cy="14.19"
  1021. r="5.5054998" />
  1022. <linearGradient
  1023. inkscape:collect="always"
  1024. xlink:href="#linearGradient3468"
  1025. id="linearGradient3519"
  1026. gradientUnits="userSpaceOnUse"
  1027. gradientTransform="translate(-8.0000004,15.967633)"
  1028. x1="16"
  1029. y1="27.5"
  1030. x2="20.5"
  1031. y2="25.5" />
  1032. <linearGradient
  1033. inkscape:collect="always"
  1034. xlink:href="#linearGradient3470"
  1035. id="linearGradient3522"
  1036. gradientUnits="userSpaceOnUse"
  1037. gradientTransform="translate(-8.0000004,15.967633)"
  1038. x1="16"
  1039. y1="27"
  1040. x2="21.5"
  1041. y2="27" />
  1042. <radialGradient
  1043. inkscape:collect="always"
  1044. xlink:href="#linearGradient2804"
  1045. id="radialGradient3524"
  1046. gradientUnits="userSpaceOnUse"
  1047. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-103.68635,-0.914852)"
  1048. cx="12.322"
  1049. cy="11.669"
  1050. r="1.5" />
  1051. <linearGradient
  1052. inkscape:collect="always"
  1053. xlink:href="#linearGradient2791"
  1054. id="linearGradient3527"
  1055. gradientUnits="userSpaceOnUse"
  1056. gradientTransform="translate(5.007851,1.000004)"
  1057. x1="11.669"
  1058. y1="6.7284002"
  1059. x2="11.581"
  1060. y2="14.663" />
  1061. <radialGradient
  1062. inkscape:collect="always"
  1063. xlink:href="#linearGradient2804"
  1064. id="radialGradient3529"
  1065. gradientUnits="userSpaceOnUse"
  1066. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1067. cx="12.322"
  1068. cy="11.669"
  1069. r="1.5" />
  1070. <linearGradient
  1071. inkscape:collect="always"
  1072. xlink:href="#linearGradient2791"
  1073. id="linearGradient3531"
  1074. gradientUnits="userSpaceOnUse"
  1075. x1="11.669"
  1076. y1="6.7284002"
  1077. x2="11.581"
  1078. y2="14.663" />
  1079. <radialGradient
  1080. inkscape:collect="always"
  1081. xlink:href="#linearGradient2804"
  1082. id="radialGradient3533"
  1083. gradientUnits="userSpaceOnUse"
  1084. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1085. cx="12.322"
  1086. cy="11.669"
  1087. r="1.5" />
  1088. <linearGradient
  1089. inkscape:collect="always"
  1090. xlink:href="#linearGradient2791"
  1091. id="linearGradient3535"
  1092. gradientUnits="userSpaceOnUse"
  1093. x1="11.669"
  1094. y1="6.7284002"
  1095. x2="11.581"
  1096. y2="14.663" />
  1097. <radialGradient
  1098. inkscape:collect="always"
  1099. xlink:href="#linearGradient2804"
  1100. id="radialGradient3537"
  1101. gradientUnits="userSpaceOnUse"
  1102. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1103. cx="12.322"
  1104. cy="11.669"
  1105. r="1.5" />
  1106. <linearGradient
  1107. inkscape:collect="always"
  1108. xlink:href="#linearGradient2791"
  1109. id="linearGradient3540"
  1110. gradientUnits="userSpaceOnUse"
  1111. x1="11.669"
  1112. y1="6.7284002"
  1113. x2="11.581"
  1114. y2="14.663" />
  1115. <radialGradient
  1116. inkscape:collect="always"
  1117. xlink:href="#linearGradient2804"
  1118. id="radialGradient3542"
  1119. gradientUnits="userSpaceOnUse"
  1120. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1121. cx="12.322"
  1122. cy="11.669"
  1123. r="1.5" />
  1124. <linearGradient
  1125. inkscape:collect="always"
  1126. xlink:href="#linearGradient2791"
  1127. id="linearGradient3544"
  1128. gradientUnits="userSpaceOnUse"
  1129. x1="11.669"
  1130. y1="6.7284002"
  1131. x2="11.581"
  1132. y2="14.663" />
  1133. <radialGradient
  1134. inkscape:collect="always"
  1135. xlink:href="#linearGradient2804"
  1136. id="radialGradient3546"
  1137. gradientUnits="userSpaceOnUse"
  1138. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1139. cx="12.322"
  1140. cy="11.669"
  1141. r="1.5" />
  1142. <linearGradient
  1143. inkscape:collect="always"
  1144. xlink:href="#linearGradient2791"
  1145. id="linearGradient3548"
  1146. gradientUnits="userSpaceOnUse"
  1147. x1="11.669"
  1148. y1="6.7284002"
  1149. x2="11.581"
  1150. y2="14.663" />
  1151. <radialGradient
  1152. inkscape:collect="always"
  1153. xlink:href="#linearGradient2804"
  1154. id="radialGradient3550"
  1155. gradientUnits="userSpaceOnUse"
  1156. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1157. cx="12.322"
  1158. cy="11.669"
  1159. r="1.5" />
  1160. <linearGradient
  1161. inkscape:collect="always"
  1162. xlink:href="#linearGradient2791"
  1163. id="linearGradient3552"
  1164. gradientUnits="userSpaceOnUse"
  1165. x1="11.669"
  1166. y1="6.7284002"
  1167. x2="11.581"
  1168. y2="14.663" />
  1169. <radialGradient
  1170. inkscape:collect="always"
  1171. xlink:href="#linearGradient2804"
  1172. id="radialGradient3554"
  1173. gradientUnits="userSpaceOnUse"
  1174. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1175. cx="12.322"
  1176. cy="11.669"
  1177. r="1.5" />
  1178. <linearGradient
  1179. inkscape:collect="always"
  1180. xlink:href="#linearGradient2791"
  1181. id="linearGradient3556"
  1182. gradientUnits="userSpaceOnUse"
  1183. x1="11.669"
  1184. y1="6.7284002"
  1185. x2="11.581"
  1186. y2="14.663" />
  1187. <linearGradient
  1188. inkscape:collect="always"
  1189. xlink:href="#linearGradient3468"
  1190. id="linearGradient3558"
  1191. gradientUnits="userSpaceOnUse"
  1192. gradientTransform="translate(-8.0000004,15.967633)"
  1193. x1="16"
  1194. y1="27.5"
  1195. x2="20.5"
  1196. y2="25.5" />
  1197. <linearGradient
  1198. inkscape:collect="always"
  1199. xlink:href="#linearGradient3470"
  1200. id="linearGradient3560"
  1201. gradientUnits="userSpaceOnUse"
  1202. gradientTransform="translate(-8.0000004,15.967633)"
  1203. x1="16"
  1204. y1="27"
  1205. x2="21.5"
  1206. y2="27" />
  1207. <linearGradient
  1208. inkscape:collect="always"
  1209. xlink:href="#linearGradient2804"
  1210. id="linearGradient3562"
  1211. gradientUnits="userSpaceOnUse"
  1212. gradientTransform="translate(179,23.999997)"
  1213. x1="8.0108004"
  1214. y1="3"
  1215. x2="7.9835"
  1216. y2="6.0247002" />
  1217. <linearGradient
  1218. inkscape:collect="always"
  1219. xlink:href="#linearGradient2791"
  1220. id="linearGradient3564"
  1221. gradientUnits="userSpaceOnUse"
  1222. gradientTransform="translate(179,23.999997)"
  1223. x1="6"
  1224. y1="7"
  1225. x2="6"
  1226. y2="-0.4375" />
  1227. <linearGradient
  1228. inkscape:collect="always"
  1229. xlink:href="#linearGradient5127"
  1230. id="linearGradient3566"
  1231. gradientUnits="userSpaceOnUse"
  1232. gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
  1233. x1="302.85999"
  1234. y1="366.64999"
  1235. x2="302.85999"
  1236. y2="609.51001" />
  1237. <linearGradient
  1238. inkscape:collect="always"
  1239. xlink:href="#linearGradient5116"
  1240. id="linearGradient3568"
  1241. gradientUnits="userSpaceOnUse"
  1242. gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
  1243. x1="21.042999"
  1244. y1="42.833"
  1245. x2="14.284"
  1246. y2="6.8333998" />
  1247. <linearGradient
  1248. inkscape:collect="always"
  1249. xlink:href="#linearGradient5118"
  1250. id="linearGradient3570"
  1251. gradientUnits="userSpaceOnUse"
  1252. gradientTransform="translate(8.018485,8.000004)"
  1253. x1="26.612"
  1254. y1="28.083"
  1255. x2="26.228001"
  1256. y2="42.833" />
  1257. <linearGradient
  1258. inkscape:collect="always"
  1259. xlink:href="#linearGradient5080"
  1260. id="linearGradient3572"
  1261. gradientUnits="userSpaceOnUse"
  1262. gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
  1263. x1="11"
  1264. y1="12"
  1265. x2="18.962"
  1266. y2="18.183001" />
  1267. <linearGradient
  1268. inkscape:collect="always"
  1269. xlink:href="#linearGradient5066"
  1270. id="linearGradient3574"
  1271. gradientUnits="userSpaceOnUse"
  1272. gradientTransform="translate(8.018485,8.000004)"
  1273. x1="6"
  1274. y1="7.5625"
  1275. x2="40.984001"
  1276. y2="7.5625" />
  1277. <radialGradient
  1278. inkscape:collect="always"
  1279. xlink:href="#radialGradient5062"
  1280. id="radialGradient3576"
  1281. gradientUnits="userSpaceOnUse"
  1282. gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
  1283. cx="37.375"
  1284. cy="33.188"
  1285. r="14.625" />
  1286. <radialGradient
  1287. inkscape:collect="always"
  1288. xlink:href="#radialGradient5058"
  1289. id="radialGradient3578"
  1290. gradientUnits="userSpaceOnUse"
  1291. gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
  1292. cx="27.5"
  1293. cy="22.614"
  1294. r="6.5" />
  1295. <linearGradient
  1296. inkscape:collect="always"
  1297. xlink:href="#linearGradient5055"
  1298. id="linearGradient3580"
  1299. gradientUnits="userSpaceOnUse"
  1300. gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
  1301. x1="27.681"
  1302. y1="14.243"
  1303. x2="21.440001"
  1304. y2="9.2770004" />
  1305. <linearGradient
  1306. inkscape:collect="always"
  1307. xlink:href="#linearGradient5049"
  1308. id="linearGradient3582"
  1309. gradientUnits="userSpaceOnUse"
  1310. gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
  1311. x1="29"
  1312. y1="33"
  1313. x2="19"
  1314. y2="27" />
  1315. <radialGradient
  1316. inkscape:collect="always"
  1317. xlink:href="#radialGradient5045"
  1318. id="radialGradient3584"
  1319. gradientUnits="userSpaceOnUse"
  1320. gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
  1321. cx="26.625"
  1322. cy="26.577"
  1323. r="12.5" />
  1324. <radialGradient
  1325. inkscape:collect="always"
  1326. xlink:href="#radialGradient5040"
  1327. id="radialGradient3586"
  1328. gradientUnits="userSpaceOnUse"
  1329. gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
  1330. cx="25.017"
  1331. cy="13.192"
  1332. r="9.7512999" />
  1333. <linearGradient
  1334. inkscape:collect="always"
  1335. xlink:href="#linearGradient5042"
  1336. id="linearGradient3588"
  1337. gradientUnits="userSpaceOnUse"
  1338. gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
  1339. x1="27.216999"
  1340. y1="15.984"
  1341. x2="22.035999"
  1342. y2="7.1352" />
  1343. <radialGradient
  1344. inkscape:collect="always"
  1345. xlink:href="#radialGradient5029"
  1346. id="radialGradient3591"
  1347. gradientUnits="userSpaceOnUse"
  1348. gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
  1349. cx="18"
  1350. cy="14.19"
  1351. r="5.5054998" />
  1352. <linearGradient
  1353. inkscape:collect="always"
  1354. xlink:href="#linearGradient3468"
  1355. id="linearGradient3593"
  1356. gradientUnits="userSpaceOnUse"
  1357. gradientTransform="translate(-8.0000004,15.967633)"
  1358. x1="16"
  1359. y1="27.5"
  1360. x2="20.5"
  1361. y2="25.5" />
  1362. <linearGradient
  1363. inkscape:collect="always"
  1364. xlink:href="#linearGradient3470"
  1365. id="linearGradient3595"
  1366. gradientUnits="userSpaceOnUse"
  1367. gradientTransform="translate(-8.0000004,15.967633)"
  1368. x1="16"
  1369. y1="27"
  1370. x2="21.5"
  1371. y2="27" />
  1372. <radialGradient
  1373. inkscape:collect="always"
  1374. xlink:href="#linearGradient2804"
  1375. id="radialGradient3597"
  1376. gradientUnits="userSpaceOnUse"
  1377. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1378. cx="12.322"
  1379. cy="11.669"
  1380. r="1.5" />
  1381. <linearGradient
  1382. inkscape:collect="always"
  1383. xlink:href="#linearGradient2791"
  1384. id="linearGradient3599"
  1385. gradientUnits="userSpaceOnUse"
  1386. x1="11.669"
  1387. y1="6.7284002"
  1388. x2="11.581"
  1389. y2="14.663" />
  1390. <radialGradient
  1391. inkscape:collect="always"
  1392. xlink:href="#linearGradient2804"
  1393. id="radialGradient3601"
  1394. gradientUnits="userSpaceOnUse"
  1395. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1396. cx="12.322"
  1397. cy="11.669"
  1398. r="1.5" />
  1399. <linearGradient
  1400. inkscape:collect="always"
  1401. xlink:href="#linearGradient2791"
  1402. id="linearGradient3603"
  1403. gradientUnits="userSpaceOnUse"
  1404. x1="11.669"
  1405. y1="6.7284002"
  1406. x2="11.581"
  1407. y2="14.663" />
  1408. <radialGradient
  1409. inkscape:collect="always"
  1410. xlink:href="#linearGradient2804"
  1411. id="radialGradient3605"
  1412. gradientUnits="userSpaceOnUse"
  1413. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1414. cx="12.322"
  1415. cy="11.669"
  1416. r="1.5" />
  1417. <linearGradient
  1418. inkscape:collect="always"
  1419. xlink:href="#linearGradient2791"
  1420. id="linearGradient3607"
  1421. gradientUnits="userSpaceOnUse"
  1422. x1="11.669"
  1423. y1="6.7284002"
  1424. x2="11.581"
  1425. y2="14.663" />
  1426. <radialGradient
  1427. inkscape:collect="always"
  1428. xlink:href="#linearGradient2804"
  1429. id="radialGradient3610"
  1430. gradientUnits="userSpaceOnUse"
  1431. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1432. cx="12.322"
  1433. cy="11.669"
  1434. r="1.5" />
  1435. <linearGradient
  1436. inkscape:collect="always"
  1437. xlink:href="#linearGradient2791"
  1438. id="linearGradient3612"
  1439. gradientUnits="userSpaceOnUse"
  1440. x1="11.669"
  1441. y1="6.7284002"
  1442. x2="11.581"
  1443. y2="14.663" />
  1444. <radialGradient
  1445. inkscape:collect="always"
  1446. xlink:href="#linearGradient2804"
  1447. id="radialGradient3614"
  1448. gradientUnits="userSpaceOnUse"
  1449. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1450. cx="12.322"
  1451. cy="11.669"
  1452. r="1.5" />
  1453. <linearGradient
  1454. inkscape:collect="always"
  1455. xlink:href="#linearGradient2791"
  1456. id="linearGradient3616"
  1457. gradientUnits="userSpaceOnUse"
  1458. x1="11.669"
  1459. y1="6.7284002"
  1460. x2="11.581"
  1461. y2="14.663" />
  1462. <radialGradient
  1463. inkscape:collect="always"
  1464. xlink:href="#linearGradient2804"
  1465. id="radialGradient3618"
  1466. gradientUnits="userSpaceOnUse"
  1467. gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
  1468. cx="12.322"
  1469. cy="11.669"
  1470. r="1.5" />
  1471. <linearGradient
  1472. inkscape:collect="always"
  1473. xlink:href="#linearGradient2791"
  1474. id="linearGradient3620"
  1475. gradientUnits="userSpaceOnUse"
  1476. x1="11.669"
  1477. y1="6.7284002"
  1478. x2="11.581"
  1479. y2="14.663" />
  1480. </defs>
  1481. <image
  1482. id="icon:16-4"
  1483. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAAXNSR0IArs4c6QAAADBQTFRFAAAA AAB/AH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////D6xy1wAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwaCigtFqTK tAAAAEFJREFUCNdjYIADDhAAMdpBoAEoAGZ0ABk/QKACyPgPAhDGRwyGvDwa46OgIJQBhGCG4P+P 8ijmfC8HAhCjAwwYADFTPDeCcuc6AAAAAElFTkSuQmCC "
  1484. height="16"
  1485. width="16"
  1486. y="248"
  1487. x="344" />
  1488. <image
  1489. id="icon:16-8"
  1490. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAAXNSR0IArs4c6QAAAHVQTFRFAAAA UX62gICAYIq9iIqFcJrIgqXMf6fRk6vKsbGxsrKymbbXo7rUuLi4obzapb7ZvLy8qsLcsMbdtMje tcjetsjdtMnevc7hv8/hzNjk0trk0tvl1tzk3+Po5+jq5+nq6Onq6+vr6+zs7Ozs7u7u+fn5//// +VQj9AAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJ TUUH2QwaCiUU/A888QAAAGJJREFUGNN1zscSgCAMRdGIHXvvBaP+/yc6A4ro6H2rnFUAPiJy573J 8dsgTM7gwEhMAj4qYMcrBZbwBY3dPSGrvAcM9WgOKpR5YfkKTCliq883JBFirzn498dKRS49QQ3g AMNqDhCiPYbhAAAAAElFTkSuQmCC "
  1491. height="16"
  1492. width="16"
  1493. y="248"
  1494. x="320" />
  1495. <image
  1496. id="icon:16-32"
  1497. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEANsA 2wDbl7skugAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9kJFRI6BdlTf3MAAAFNSURBVDjL pZO/SwJhGMc/VwcVQklIRIOTEDiJmDlIQ9TeH9Dk0KL0N7gI4n5EP3Bya26qlgobcwmJIExCiqTL s9SrO9+WjjrvRK1n+T7PA++H5/u+zwv/DMlKEonEmt/vP65Wq+uDNJ/Pn9go2VxmK51OC13XxTD6 ++zYt+4CaJrGMJrNZUQvgGQyiaIoxONxFEUhFou5ajgctk0vW4nP5yOVSgEQCoUAiEQiDi0Wi7hZ cIQAjkovA1+hL+C+3uHuuU1N1f8GeHz9YGXRy+WtNjqg2TbwTIwTXJii/NCg2Tb67pEr4LrWoqWb XFWazHpkLsr1fksoHIBPs4thCpYD00QDM2wszXNaesIwu2737LRwfqPx3vkZWR6DxpvO4VnF1b7c 210Nem31nHeS/e2om4WuDaCqqmNJbPMKgSRJjr4FKOwd7GyO8IsLVvIFtJ+uymSq+GkAAAAASUVO RK5CYII= "
  1498. height="16"
  1499. width="16"
  1500. y="248"
  1501. x="296" />
  1502. <image
  1503. id="icon:32-4"
  1504. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAAXNSR0IArs4c6QAAADBQTFRFAH8A AAAAAAB/AH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////z4nl5wAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaFQozXGNV ugAAAMBJREFUKM+NkTEShCAMRS09BxfgEhQW3ufT4c44QzqvtcWexoZ0bAKisrOFPzR5/GRIGIYn QtORU0Cqh0o+5hPkpYJIvp4GqKmBSw3s9g8AEk5gTbnXNgK2CpD8lhMvCvbahHMuLxFgjBXHBeTa VAeCgt2Ixyawzlcch7bonGMBMpZEwKrgfXOs5ObPpA5oAH4Sx3KbjSWfFdT1BakpLW7Tsxq6dRD9 AN6eAVzysQe+NB3OT6CIF3V/HBG4A6OWfAF4VxLbpI0CzwAAAABJRU5ErkJggg== "
  1505. height="32"
  1506. width="32"
  1507. y="232"
  1508. x="256" />
  1509. <image
  1510. id="icon:32-8"
  1511. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IArs4c6QAAArVQTFRFdwAA awACfgABeQIAggAAiAABgwIAhAMAhAQHlAABVxMVpAEAowIEYRQVpQQFtwAAsAMApgYAngwJnQwQ ygsBayUkQUJAQ0VCREZDjTc5SkxKgD89bkdGxTIwUVNQmEZFV1lW4zMzXF5bX2Fe3EA/nVpcaGln k11gdmVnaGpn7EdIaWtoamxp6UtIbG5rwlhZRHi0pWdmim9upmhndHZztWhnd3l2zmJifXh3eXt4 enx5e316fH57fX98foB9gIJ/k357gYOAW4m6goSBXYu9hIaDnIB/ioWEhoiFrn19iIqHk4eHoISD iYuIlIiIsoCAioyJlYmJkYuKa5G/nYiFkoyLl4uLwYB+k42MjY+MjpCNlI+NaZbJj5GOkJKPkZOQ kpSRk5WSmZSSlJaTlZeUm5aUdZzJlpiVl5mWeJ7MmJqXmpuYm52ZoZybnJ6bnZ+co56dfqTSnqCd n6GeoKKftJ6boqSho6WigavSpKajr6OjgqzTpaekpqilp6mmqKqnka3QwaSjqauoqqypk6/Tq62q rK6rs66srrCtsLKusbOv0KussrSxs7WylrrdtLaztbe0tri1t7m2uLq3qbzVubu4ury5u726q7/Y qMDfvL67vb+8vsG9pcXiwMK+wcO/wsTBxMbDtcjhxcfExsjFsMzkt8rkzcfGx8nGyMrHycvIuc3m vs3hyszJus7nv8/iy87Kzc/LvdHqztDM0dHIz9HO0NLP0dPQ0tTR09XS1NbTydjs1dfU1tjV2NrW 2tzZ1d3m3N7b3d/c3uDd3+He4OLf1+Px2uPr4eTg3eXu4+Xh5Obj5efk5ujl5Ons5+nm5ert6Orn 6evo6uzp6+7q6e7w6u/y7e/r6/Dz7vDt7PH07/Hu8PLv8fPw8vTx8/Xy8Pb49Pfz8/j79vj09/n2 +Pr3+fv4IlcaWQAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4 AAAAB3RJTUUH2QwaCw07C0HFNQAAAodJREFUOMtjYKASmNo/dXL/ZCAJR8iyecmJC28vREOxsdkw +bbJq1ZVXqpEQ7NnNbVBFTTN7y/x2OKBhgIqu5qgCuoW95Q46tibaJrYadvaattYa1tbaVsGlPTX QRXU7nl4FwTugMBtELgJBNfv7KyBKqg8+wwENu1+9uwpCDwBgcePn5wohyoouQSUfvqguuIRUOLS ggWbN1/cPH/++cfnS6AK8m+CdK07Vrjm8ePHD0Hg/v0TJYlxsbHx6WAFGfeABt6a+3BR2q2H98/O 33x23ry1cbGT9l1MqUmIBSlIAWlbevzGhZgZ94AA5N7DxTfP71y4/cT5FLAJT+/fv9a3etGiBqdz d8/O2XB2w9mmYqBBh+NK8sGhWfLk3t2ZJ4H6rjo1QP06deH9ixvnWAVEZoN80vT47prM9UCpA8EG U06cWjV79omStlmzq0I0LJyzgUb0dt5HDqCb14GgQL07XFiQT0jYOImBoWvqvVOzV91cNXvViVmz Vp6YdWTFrOlR0qX+sopauir6ocDInH8XrOsKCFwGgUuXUrkaDZnZ2VmYVCMYGOqX3Dkya9aKw9On A/GhJdOBeFq5jJEDLyMzK6dnLtATG26DdV26dBEEzoPAzghRSQ5OQQH9CFAwbL5+aNqSQ9OmHVwM xAsXAuXPnl3sJ8/DL2IeBgqGqF1XzsPBWRhYHuhm6uMNjgrXfReRZc6egoBZvkHuHmAFZkfOo0qd OnUCBOISY63ACtQwpMDgSH58th5YgcLDJ5gAmDI6AlqVwAqkNpdjBSlezXJgBeIr1mKClfVFyV7J HvlgFRJiGEDcvmveRC8F5Y4aXHk1cf6O7UUL952vxZmby7KLysvygKkBAEsv5LzZWy5DAAAAAElF TkSuQmCC "
  1512. height="32"
  1513. width="32"
  1514. y="232"
  1515. x="216" />
  1516. <image
  1517. id="icon:48-4"
  1518. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAAXNSR0IArs4c6QAAADBQTFRFAH8A AAAAAAB/AH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////z4nl5wAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaFQoVjm7Q RwAAATJJREFUOMutlD1uwCAMhbM1R+icC3AJhgw5TDezkUqR8MalMuY0WWCjNgQaCK3Un+eIgS/P xsHKMPxKL00UwVsdeR+1qmNN+2OwjXwGxtZRANo6Cmj1N3CK74ADgACg72CavnBEQA5Ny91xikl0 HWdgwDXAI2L6WJYzhTMXMZRNFSAicHQmT8cCvV7gnEipiOflE3A2EWsQcA4y4PxXEXboAkQCToOz ZHCgEoj5p9S8ZYNW+VRJ1DTYoKgRXwMugWaTUsYWbQCXvio5lITlOA65PhwS2HGB+D7ENpQ0N3DX NhNY5lScDsNPLLPJTS4RNLPAifa9AzyBJZZopwflsmN3rDY5+y7w1/A+BxHDvwNohekCW8D3hB2g THh/TaOItXRQBtbnX2I0dC2qA4axDPUP9QHwA2UrgrWlsAAAAABJRU5ErkJggg== "
  1519. height="48"
  1520. width="48"
  1521. y="216"
  1522. x="120" />
  1523. <image
  1524. id="icon:48-8"
  1525. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAv1QTFRFpAEA SwAAXwAAWgIASwcKaQAAZQMAbQEAdAABdwAAfgABUg0KWgwIiAABWQ0PhAMAjQEAkwABfAgJoQAC mQQGrAABVRgVrwAApQQApQQFuwIBzAAClRAMaBwa0QAAxwQA2wAC0gMHkBcX3gMFdyIetxMYciYn yg8UqBweOjs5bzAvP0A+fzExoCktqystuygpkDk2SkxKTU9Myy4tkEA+UVNQb1BRpERDskJDWlxZ XV9dbltY4jw6xkVHYGJftUxNY2Vix01KaGlnbW9sQnazkmhmdHZzUHuzf3R0omtt2V5fd3l2m3Fv VoC5enx5T4S7mHZ3qXJ0hH9+kXx5y21sgIJ/i4CAVorBgoSB1W5r2m1sm39+hIaDX4y+h4mGpYOE iYuIZJHDloqK3Xd4kYyLnomGjI6LpIiHaJXHlI+Oj5GOoI2PkJKPkZOQk5WSsI2OlpWNyIeFdJrI b5vOlJaT2oODvouLlZeUm5aUe5vEuo6MlpiVcp7Rl5mWmpmRcaHNeZ/NmZuYyY+Rm52ZrpiVnJ6b nZ+c2I+QnqCdd6fTpJ+eoKKfhabPeanVoaOghqfQxpqX5ZKQo6WiqaSjpaekg63Upqilraemja3W qKqnka3Qqauoh7HYqqypyKSlq62qra+ss66s6p+grrCtsLKumrXZsbOwxq+soLfWlrrd36qqtLaz tri1nb3at7m2wra21bGynr7bubu45bCvury51La1u726wby6osLfvL67vb+8vsG9wMK+wcO/wsTB w8XCtcjhxcfDxsjFx8nGsc3lyMrHuMzlycvIv8/iy87Kzc/Lu9LkztDMz9HO0NLPx9PhxdXp0tXR 1NbTzdnn19nV2tzZ4tzb3N7b3d/c1+Do3+He1uLw4OLf4eTg3OXt4+Xh4ebp5Obj5efk5ujl4Onx 5Onr5+nm6Orn4uvz6evo6uzp6+7q6e7x7e/r7vDt7/Hu7fL18PLv8fPw8vTx8/Xy8Pb49Pfz9vj0 9/n29fr9+Pr3+fv4+vz59/3//P76eIq0SwAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBI WXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaCjU3FKpf0gAABEtJREFUSMe9lmlwGmUcxuMR76tN 1VqrVut937UesdqaqNXWK1q1pakiFlyiNmha09hqTSRioq4JNqISLa7VICrimgUWEjBW4s7UHYnB OFucwYIQjrAgYIgZ3z2ATdKQjB/8MQ/w4Xme97/7vjuzJSX/G4b3DUU1BcLjLKpJKOXEWFdRKSf4 2+x9dVQ9IweQnZcNyApkATLr24QBlatzjZ79dAmECIWphIEml2ZHeaMeqEsghJeOEdYkDDS42hAb ButwVNWJm5Ra3NiosRpeVFsNdWqr/hnYoleYG4SBmsA4zxhHdgKjgGiNMFCft/7z9xQrIJPJZOsm XPR4rvXH7ilWhnQ6O+G+anIz/NW87U/OGbPbbDaXu5f22QFkarRDGEDG+Nbvmrd+WmgFpNKpBCCV yuwS+HUmfoKRln3btv7GWsEKOEE4gDWE4ziZzBiQQkBrz3KlPT3p7tp20MuR5GCWSKStWsEluLJs a7hlJBXetPEnxhqxgWIrgAwyX3TSqSkEOshRtrX7e2Dt3rB9hG9NJGiGSGeDHJLJZIUD2DaQYQb4 owU4k+GN63qANQB6/UF8gHaaoBo94qEJVYcc4gMwxY77efvOne1vvL7poQ1hOk88TrSpWrV6yy5F Q1Njbt/8zAj7mjnf/nWrd9N00OruJfotRJxQo/6ALxgMDHgpHX/Gm4bBsCPv9fClu+9e/XscEONQ u+l0IuAhJRqdlj+BDXEQ+KF2PzMA4NfKyi0xv8Udc9hCbjNWYyI9/UbCUaVsQuT8YU3S4a+21378 M9u6993KFSu27I0CIoBBZSQZo/os6EoI0iq4gCJdGCDKEfGZMcwVITCsU+PzkJgS0S0XiWB+JGVK aOUY5giFLMZA/JcvHr3tnhtuv69eyR1BdTIa7beFBjAMc0cifeAH8/owFN0TIlBU9dTF3zy/ZN78 snkLF17ySisb6ExMamUJ+hkCm8+99Ovnrjrj9EWLFy8682UpG+iih4edGGYf9uMowOwLUia038P8 R3ulx1z+5bPX3fTI4w/fctkpb7IBjZHOt3IEONglNp909CfrTzv4sNLS0sPnfsAGYEs8NATKvKDT RAQcJhNGeUwAh99PGluvPeiu9RceUnrEUceecPPTb7Mb7YhOas3j8/lI6aHH3XH1kcfPKZt/zmeP cdvQHzmglQd58Oy5Z80pO3nBeW89wd0kCRk6sJXB6/V+eP+S809ccOqNHz35Grdva93Baaw834rv feDOV18Qv8Of7lWewHRWBoqiCLFUKhavyT1wy33+aa08yKq1FbqKXKA8VMTKMDTklsGSwVtzgaWx IlYWj6d6R3VoaX6FVHZG5BCULM8HSHhGZCIJsSw/0p6OGZGLIGc+cAXuLIoDgZWQSCa5/qX8ElcW 45qq1l5Ct+yCiypkotm9JLQO9SLwyiqJehyWzyog0bmpQTeVSKLVswuUKCA5g0wh/w8vMf8Cr6Xj LvMp1dsAAAAASUVORK5CYII= "
  1526. height="48"
  1527. width="48"
  1528. y="216"
  1529. x="64" />
  1530. <g
  1531. id="g3639"
  1532. transform="translate(0,208)">
  1533. <rect
  1534. id="rect6709"
  1535. style="opacity:0.40206;color:#000000;fill:url(#linearGradient3637);fill-rule:nonzero"
  1536. height="6.6547999"
  1537. width="21.591"
  1538. y="48.673"
  1539. x="180.64999" />
  1540. <path
  1541. id="path6711"
  1542. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3634);fill-rule:nonzero"
  1543. d="m 202.24,48.673 v 6.6544 c 2.3027,0.0125 5.5668,-1.4909 5.5668,-3.3276 0,-1.8367 -2.5697,-3.3268 -5.5668,-3.3268 z"
  1544. inkscape:connector-curvature="0" />
  1545. <path
  1546. id="path6713"
  1547. style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3631);fill-rule:nonzero"
  1548. d="m 180.65,48.673 v 6.6544 c -2.3027,0.0125 -5.5668,-1.4909 -5.5668,-3.3276 0,-1.8367 2.5697,-3.3268 5.5668,-3.3268 z"
  1549. inkscape:connector-curvature="0" />
  1550. <path
  1551. id="rect1975"
  1552. style="color:#000000;fill:url(#linearGradient3626);fill-rule:evenodd;stroke:url(#linearGradient3628);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0"
  1553. d="m 180.05,27.492 21.907,0 c 0.51168,0 0.92361,0.35594 0.92361,0.79806 0,0 1.6113,22.841 1.6113,22.841 0,0 0.008,1.5694 0.008,1.5694 0,0.44213 -0.41193,0.79807 -0.92361,0.79807 h -25.146 c -0.51168,0 -0.92361,-0.35594 -0.92361,-0.79807 l -0.007,-1.4486 1.6271,-22.962 c 0,-0.44213 0.41193,-0.79806 0.92361,-0.79806 z"
  1554. stroke-miterlimit="4"
  1555. inkscape:connector-curvature="0" />
  1556. <rect
  1557. id="rect2851"
  1558. style="color:#000000;fill:#a4a4a4;fill-rule:evenodd"
  1559. rx="0.45236"
  1560. ry="0.44238001"
  1561. height="2"
  1562. width="26"
  1563. y="51"
  1564. x="178" />
  1565. <path
  1566. id="path2853"
  1567. style="color:#000000;fill:#ffffff;fill-rule:evenodd"
  1568. d="m 178,51.26 c 0,0 0.10039,-0.46305 0.46847,-0.50164 h 24.996 c 0.50193,0 0.53539,0.65599 0.53539,0.65599 0,0 0.0157,-1.4141 -0.85431,-1.4141 h -24.229 c -0.68,0.077 -0.93,0.681 -0.93,1.26 z"
  1569. inkscape:connector-curvature="0" />
  1570. <path
  1571. id="path2915"
  1572. style="color:#000000;fill:url(#linearGradient3621);fill-rule:evenodd"
  1573. d="m 179.44,28.42 -0.16774,3.5797 c 0,0 0.20968,-0.91721 0.67098,-0.91721 h 22.226 c 0.47179,-0.01274 0.49276,0.25478 0.57663,0.67517 0,0 -0.16775,-3.1593 -0.16775,-3.1593 -0.021,-0.44586 -0.14678,-0.77708 -0.52421,-0.77708 h -22.069 c -0.30404,0 -0.51372,0.28026 -0.54518,0.59873 z"
  1574. inkscape:connector-curvature="0" />
  1575. <path
  1576. id="path2917"
  1577. style="opacity:0.43859648;color:#000000;fill:none;stroke:#ffffff;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0"
  1578. d="m 180.71,28.511 20.38,0 c 0.47266,0 0.85318,-0.09906 0.85318,0.30877 0,0 1.4884,21.497 1.4884,21.497 0,0 0.0656,1.7642 0.0656,1.7642 0,0.40783 -0.0912,0.41956 -0.56387,0.41956 h -24.155 c -0.27015,0 -0.27457,-0.0693 -0.27457,-0.33321 l -0.007,-1.7391 1.503,-21.588 c 0,-0.40783 0.23732,-0.32912 0.70998,-0.32912 z"
  1579. stroke-miterlimit="4"
  1580. inkscape:connector-curvature="0" />
  1581. <rect
  1582. id="rect3613"
  1583. style="color:#000000;fill:url(#linearGradient3615);fill-rule:evenodd;stroke:url(#linearGradient3617);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1584. rx="1"
  1585. ry="0.80000001"
  1586. height="4"
  1587. width="2"
  1588. stroke-miterlimit="4"
  1589. y="26.5"
  1590. x="182.5" />
  1591. <path
  1592. id="path4331"
  1593. d="m 206.61,43.103 a 4.61455,1.1426124 0 0 1 -9.2291,0 4.61455,1.1426124 0 1 1 9.2291,0 z"
  1594. inkscape:connector-curvature="0"
  1595. style="opacity:0.07000002;fill:url(#radialGradient3612)" />
  1596. <path
  1597. id="path3159"
  1598. d="m 206.38,34.647 c -0.38783,-0.76467 -7.3688,-0.76467 -7.7566,0 0,1.147 -1.1635,4.588 -1.1635,7.6468 0,3.0587 3.8783,4.9704 5.0418,4.9704 1.1635,0 5.0418,-1.9117 5.0418,-4.9704 0,-3.0587 -1.1635,-6.4997 -1.1635,-7.6468 z"
  1599. inkscape:connector-curvature="0"
  1600. style="fill:url(#radialGradient3609);fill-rule:evenodd" />
  1601. <path
  1602. id="path2385"
  1603. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1604. d="m 206.5,35.531 a 4,1 0 0 1 -8,0 4,1 0 1 1 8,0 z"
  1605. stroke-miterlimit="0"
  1606. inkscape:connector-curvature="0" />
  1607. <path
  1608. id="path3157"
  1609. style="fill:url(#linearGradient3605);stroke:#888a85;stroke-width:1.01121235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1610. d="m 207.23,54 a 4.4944,1.4944 0 0 1 -8.9888,0 4.4944,1.4944 0 1 1 8.9888,0 z"
  1611. stroke-miterlimit="0"
  1612. inkscape:connector-curvature="0" />
  1613. <path
  1614. id="path3236"
  1615. style="fill:none;stroke:url(#linearGradient3602);stroke-width:0.74999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1616. d="m 206.32,54 a 3.5954,0.90458 0 0 1 -7.1908,0 3.5954,0.90458 0 1 1 7.1908,0 z"
  1617. stroke-miterlimit="0"
  1618. inkscape:connector-curvature="0" />
  1619. <path
  1620. id="path3363"
  1621. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  1622. transform="matrix(0.7756645,0,0,0.7646744,196.29468,20.761409)"
  1623. inkscape:connector-curvature="0"
  1624. style="fill:url(#linearGradient3558);fill-rule:evenodd;stroke:url(#linearGradient3560);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
  1625. <path
  1626. id="path3163"
  1627. d="m 200.56,46.5 c 0.77566,0.76468 1.5513,1.9117 1.5513,6.1174 0,0.76467 0.1049,1.147 0.38783,1.147 0.28292,0 0.38783,-0.38234 0.38783,-1.147 0,-4.2057 0.77567,-5.3527 1.5513,-6.1174"
  1628. inkscape:connector-curvature="0"
  1629. style="fill:url(#linearGradient3598);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1630. <path
  1631. id="path3179"
  1632. d="m 197.5,41.05 c 0,4.5 3.8365,6.2147 5,6.2147 1.1635,0 5,-1.7147 5,-6.2147"
  1633. inkscape:connector-curvature="0"
  1634. style="fill:url(#radialGradient3595);fill-rule:evenodd" />
  1635. <path
  1636. id="path5788"
  1637. style="fill:url(#radialGradient3590);stroke:url(#linearGradient3592);stroke-width:0.50549006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  1638. d="m 207.25,41.147 a 4.75,1.147 0 0 1 -9.5,0 4.75,1.147 0 1 1 9.5,0 z"
  1639. stroke-miterlimit="0"
  1640. inkscape:connector-curvature="0" />
  1641. <path
  1642. id="path9912"
  1643. d="m 205.88,36.362 -7.6875,5.0312 c -0.32309,1.5166 0.41911,2.7902 1.4375,3.7188 0.51582,0.4703 1.1023,0.87122 1.625,1.125 0.5227,0.25377 0.99518,0.375 1.25,0.375 0.25483,0 0.73952,-0.14486 1.2812,-0.40625 0.54173,-0.2614 1.1572,-0.62499 1.6875,-1.125 1.0606,-1 1.8238,-2.4185 1.3438,-4.2188 a 0.19227,0.19227 0 0 1 0,-0.0312 c -0.23524,-1.8819 -0.49159,-2.8929 -0.9375,-4.4688 z"
  1644. inkscape:connector-curvature="0"
  1645. style="fill:none;stroke:url(#linearGradient3587);stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:miter" />
  1646. <path
  1647. id="path3266"
  1648. d="m 199.67,36.531 2.327,0 c 0,0 -1.1635,4.1065 -1.1635,6.0182 0,1.147 0.77567,1.9117 0.38783,2.294 -0.38783,0.38234 -2.327,-1.1092 -2.327,-3.0587 0,-0.76467 0.38783,-2.5772 0.77567,-5.2535 z"
  1649. inkscape:connector-curvature="0"
  1650. style="fill:url(#linearGradient3584);fill-rule:evenodd" />
  1651. <path
  1652. id="path3450"
  1653. d="m 207,40.8 c 0,0.42777 -1.75,1 -4.5095,1.025 -2.76,0.025 -4.49,-0.598 -4.49,-1.025"
  1654. stroke-miterlimit="0"
  1655. inkscape:connector-curvature="0"
  1656. style="fill:none;stroke:url(#radialGradient3581);stroke-width:0.50549001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1657. <path
  1658. id="path3358"
  1659. d="m 206.21,36.412 c -0.25,0.25 -1.7308,0.52495 -3.8717,0.52495 -2.1408,0 -3.3783,-0.27495 -3.6283,-0.52495"
  1660. stroke-miterlimit="0"
  1661. inkscape:connector-curvature="0"
  1662. style="fill:none;stroke:#ffffff;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  1663. <path
  1664. id="path3395"
  1665. d="m 201.5,47.52 c 0,0 0.25,0.5 1,0.47942 0.75,-0.0206 1,-0.47942 1,-0.47942"
  1666. inkscape:connector-curvature="0"
  1667. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:round" />
  1668. <path
  1669. id="path3354"
  1670. d="m 206.5,35.531 c -0.35937,-1.3412 -7.6317,-1.3746 -8,0 0,1.147 -1,3.4598 -1,6.5185 0,3.0587 3.8365,5.2147 5,5.2147 1.1635,0 5,-2.156 5,-5.2147 0,-3.0587 -1,-5.3715 -1,-6.5185 z"
  1671. inkscape:connector-curvature="0"
  1672. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  1673. <rect
  1674. id="rect13073"
  1675. rx="0.49739999"
  1676. ry="0.5"
  1677. transform="scale(-1,1)"
  1678. width="2.5"
  1679. y="45"
  1680. x="-183"
  1681. height="1"
  1682. style="opacity:0.47999998;fill:#888a85" />
  1683. <rect
  1684. id="rect2895"
  1685. rx="0.49739999"
  1686. ry="0.5"
  1687. height="1"
  1688. width="3.5"
  1689. y="33"
  1690. x="191.5"
  1691. style="opacity:0.47999998;fill:#888a85" />
  1692. <path
  1693. id="text9976"
  1694. d="m 191.02,39.774 0,0.22552 -3.6957,0 0,-0.22552 c 0.38647,-0.008 0.65217,-0.0396 0.7971,-0.095 0.14492,-0.0554 0.21739,-0.15826 0.2174,-0.3086 -1e-5,-0.18991 -0.0918,-0.455 -0.27537,-0.79525 l -0.5942,-1.1395 h -3.7971 l -0.66667,1.3887 c -0.0773,0.16618 -0.11594,0.32048 -0.11594,0.46291 0,0.32443 0.3285,0.48665 0.98551,0.48665 v 0.22552 h -2.8696 v -0.22552 c 0.35749,-0.0158 0.63285,-0.12661 0.82609,-0.33234 0.2029,-0.21366 0.52657,-0.75174 0.97101,-1.6142 l 3.0145,-5.8279 h 0.28985 l 3.6087,6.7418 c 0.2512,0.44312 0.44926,0.72403 0.5942,0.84273 0.14492,0.11078 0.38163,0.17408 0.71015,0.18991 m -7.1014,-2.8249 3.3478,0 -1.6812,-3.2641 -1.6667,3.2641"
  1695. inkscape:connector-curvature="0"
  1696. style="fill:url(#linearGradient3573)" />
  1697. <rect
  1698. id="rect12163"
  1699. rx="0.49739999"
  1700. ry="0.5"
  1701. height="1"
  1702. width="1.5"
  1703. y="33"
  1704. x="195"
  1705. style="opacity:0.47999998;fill:#888a85" />
  1706. <rect
  1707. id="rect12165"
  1708. rx="0.49739999"
  1709. ry="0.5"
  1710. height="1"
  1711. width="3.5"
  1712. y="33"
  1713. x="197"
  1714. style="opacity:0.47999998;fill:#888a85" />
  1715. <rect
  1716. id="rect12167"
  1717. rx="0.49739999"
  1718. ry="0.5"
  1719. height="1"
  1720. width="3.5"
  1721. y="35"
  1722. x="194.5"
  1723. style="opacity:0.47999998;fill:#888a85" />
  1724. <rect
  1725. id="rect12169"
  1726. rx="0.49739999"
  1727. ry="0.5"
  1728. height="1"
  1729. width="2.5"
  1730. y="35"
  1731. x="191.5"
  1732. style="opacity:0.47999998;fill:#888a85" />
  1733. <rect
  1734. id="rect12171"
  1735. rx="0.49739999"
  1736. ry="0.5"
  1737. height="1"
  1738. width="2"
  1739. y="35"
  1740. x="198.5"
  1741. style="opacity:0.47999998;fill:#888a85" />
  1742. <rect
  1743. id="rect12173"
  1744. rx="0.49739999"
  1745. ry="0.5"
  1746. transform="scale(-1,1)"
  1747. width="4.5"
  1748. y="37"
  1749. x="-201"
  1750. height="1"
  1751. style="opacity:0.47999998;fill:#888a85" />
  1752. <rect
  1753. id="rect12175"
  1754. rx="0.49739999"
  1755. ry="0.5"
  1756. transform="scale(-1,1)"
  1757. width="1.5"
  1758. y="37"
  1759. x="-196"
  1760. height="1"
  1761. style="opacity:0.47999998;fill:#888a85" />
  1762. <rect
  1763. id="rect12177"
  1764. rx="0.49739999"
  1765. ry="0.5"
  1766. transform="scale(-1,1)"
  1767. width="2.5"
  1768. y="37"
  1769. x="-194"
  1770. height="1"
  1771. style="opacity:0.47999998;fill:#888a85" />
  1772. <rect
  1773. id="rect12179"
  1774. rx="0.49739999"
  1775. ry="0.5"
  1776. transform="scale(-1,1)"
  1777. width="3.5"
  1778. y="39"
  1779. x="-196.5"
  1780. height="1"
  1781. style="opacity:0.47999998;fill:#888a85" />
  1782. <rect
  1783. id="rect12181"
  1784. rx="0.49739999"
  1785. ry="0.5"
  1786. transform="scale(-1,1)"
  1787. width="4"
  1788. y="39"
  1789. x="-201"
  1790. height="1"
  1791. style="opacity:0.47999998;fill:#888a85" />
  1792. <rect
  1793. id="rect12183"
  1794. rx="0.49739999"
  1795. ry="0.5"
  1796. transform="scale(-1,1)"
  1797. width="1"
  1798. y="39"
  1799. x="-192.5"
  1800. height="1"
  1801. style="opacity:0.47999998;fill:#888a85" />
  1802. <rect
  1803. id="rect13043"
  1804. rx="0.49739999"
  1805. ry="0.5"
  1806. transform="scale(-1,1)"
  1807. width="3.5"
  1808. y="41"
  1809. x="-197.5"
  1810. height="1"
  1811. style="opacity:0.47999998;fill:#888a85" />
  1812. <rect
  1813. id="rect13045"
  1814. rx="0.49739999"
  1815. ry="0.5"
  1816. transform="scale(-1,1)"
  1817. width="3.5"
  1818. y="41"
  1819. x="-201.5"
  1820. height="1"
  1821. style="opacity:0.47999998;fill:#888a85" />
  1822. <rect
  1823. id="rect13047"
  1824. rx="0.49739999"
  1825. ry="0.5"
  1826. transform="scale(-1,1)"
  1827. width="2"
  1828. y="41"
  1829. x="-193.5"
  1830. height="1"
  1831. style="opacity:0.47999998;fill:#888a85" />
  1832. <rect
  1833. id="rect13055"
  1834. rx="0.49739999"
  1835. ry="0.5"
  1836. transform="scale(-1,1)"
  1837. width="3.5"
  1838. y="41"
  1839. x="-191"
  1840. height="1"
  1841. style="opacity:0.47999998;fill:#888a85" />
  1842. <rect
  1843. id="rect13057"
  1844. rx="0.49739999"
  1845. ry="0.5"
  1846. transform="scale(-1,1)"
  1847. width="3"
  1848. y="41"
  1849. x="-187"
  1850. height="1"
  1851. style="opacity:0.47999998;fill:#888a85" />
  1852. <rect
  1853. id="rect13059"
  1854. rx="0.49739999"
  1855. ry="0.5"
  1856. transform="scale(-1,1)"
  1857. width="2.5"
  1858. y="41"
  1859. x="-183"
  1860. height="1"
  1861. style="opacity:0.47999998;fill:#888a85" />
  1862. <rect
  1863. id="rect13067"
  1864. rx="0.49739999"
  1865. ry="0.5"
  1866. transform="scale(-1,1)"
  1867. width="2"
  1868. y="45"
  1869. x="-193"
  1870. height="1"
  1871. style="opacity:0.47999998;fill:#888a85" />
  1872. <rect
  1873. id="rect13069"
  1874. rx="0.49739999"
  1875. ry="0.5"
  1876. transform="scale(-1,1)"
  1877. width="3.5"
  1878. y="45"
  1879. x="-190.5"
  1880. height="1"
  1881. style="opacity:0.47999998;fill:#888a85" />
  1882. <rect
  1883. id="rect13071"
  1884. rx="0.49739999"
  1885. ry="0.5"
  1886. transform="scale(-1,1)"
  1887. width="3"
  1888. y="45"
  1889. x="-186.5"
  1890. height="1"
  1891. style="opacity:0.47999998;fill:#888a85" />
  1892. <rect
  1893. id="rect13141"
  1894. rx="0.49739999"
  1895. ry="0.5"
  1896. height="1"
  1897. width="3.5"
  1898. y="43"
  1899. x="184.5"
  1900. style="opacity:0.47999998;fill:#888a85" />
  1901. <rect
  1902. id="rect13143"
  1903. rx="0.49739999"
  1904. ry="0.5"
  1905. height="1"
  1906. width="3.5"
  1907. y="43"
  1908. x="180.5"
  1909. style="opacity:0.47999998;fill:#888a85" />
  1910. <rect
  1911. id="rect13145"
  1912. rx="0.49739999"
  1913. ry="0.5"
  1914. height="1"
  1915. width="2"
  1916. y="43"
  1917. x="188.5"
  1918. style="opacity:0.47999998;fill:#888a85" />
  1919. <rect
  1920. id="rect13147"
  1921. rx="0.49739999"
  1922. ry="0.5"
  1923. height="1"
  1924. width="3.5"
  1925. y="43"
  1926. x="191"
  1927. style="opacity:0.47999998;fill:#888a85" />
  1928. <rect
  1929. id="rect13149"
  1930. rx="0.49739999"
  1931. ry="0.5"
  1932. height="1"
  1933. width="3"
  1934. y="43"
  1935. x="195"
  1936. style="opacity:0.47999998;fill:#888a85" />
  1937. <rect
  1938. id="rect13151"
  1939. rx="0.49739999"
  1940. ry="0.5"
  1941. height="1"
  1942. width="2.5"
  1943. y="43"
  1944. x="199"
  1945. style="opacity:0.47999998;fill:#888a85" />
  1946. <rect
  1947. id="rect11947"
  1948. style="fill:url(#linearGradient3562);fill-rule:evenodd;stroke:url(#linearGradient3564);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1949. rx="1"
  1950. ry="0.80000001"
  1951. height="4"
  1952. width="2"
  1953. stroke-miterlimit="4"
  1954. y="26.5"
  1955. x="185.5" />
  1956. <rect
  1957. id="rect11953"
  1958. style="fill:url(#linearGradient3537);fill-rule:evenodd;stroke:url(#linearGradient3539);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1959. rx="1"
  1960. ry="0.80000001"
  1961. height="4"
  1962. width="2"
  1963. stroke-miterlimit="4"
  1964. y="26.5"
  1965. x="185.5" />
  1966. <rect
  1967. id="rect11955"
  1968. style="fill:url(#linearGradient3532);fill-rule:evenodd;stroke:url(#linearGradient3534);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1969. rx="1"
  1970. ry="0.80000001"
  1971. height="4"
  1972. width="2"
  1973. stroke-miterlimit="4"
  1974. y="26.5"
  1975. x="188.5" />
  1976. <rect
  1977. id="rect11961"
  1978. style="fill:url(#linearGradient3526);fill-rule:evenodd;stroke:url(#linearGradient3528);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1979. rx="1"
  1980. ry="0.80000001"
  1981. height="4"
  1982. width="2"
  1983. stroke-miterlimit="4"
  1984. y="26.5"
  1985. x="191.5" />
  1986. <rect
  1987. id="rect11967"
  1988. style="fill:url(#linearGradient3521);fill-rule:evenodd;stroke:url(#linearGradient3523);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1989. rx="1"
  1990. ry="0.80000001"
  1991. height="4"
  1992. width="2"
  1993. stroke-miterlimit="4"
  1994. y="26.5"
  1995. x="194.5" />
  1996. <rect
  1997. id="rect11973"
  1998. style="fill:url(#linearGradient3516);fill-rule:evenodd;stroke:url(#linearGradient3518);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
  1999. rx="1"
  2000. ry="0.80000001"
  2001. height="4"
  2002. width="2"
  2003. stroke-miterlimit="4"
  2004. y="26.5"
  2005. x="197.5" />
  2006. </g>
  2007. <rect
  2008. id="icon:32-32"
  2009. height="32"
  2010. width="32"
  2011. y="232"
  2012. x="176"
  2013. style="fill:none" />
  2014. <g
  2015. id="g5163"
  2016. transform="translate(0,208)">
  2017. <rect
  2018. id="rect6709-5"
  2019. height="9.9821997"
  2020. width="32.386002"
  2021. y="45.008999"
  2022. x="15.45"
  2023. style="opacity:0.40206;fill:url(#linearGradient3566);fill-rule:nonzero" />
  2024. <path
  2025. id="path6711-6"
  2026. d="m 47.837,45.009 v 9.9816 c 3.4541,0.0188 8.3503,-2.2364 8.3503,-4.9914 0,-2.7551 -3.8545,-4.9902 -8.3503,-4.9902 z"
  2027. inkscape:connector-curvature="0"
  2028. style="opacity:0.40206185;fill:url(#radialGradient5124);fill-rule:nonzero" />
  2029. <path
  2030. id="path6713-6"
  2031. d="m 15.45,45.009 v 9.9816 c -3.454,0.019 -8.35,-2.236 -8.35,-4.992 0,-2.7551 3.8545,-4.9902 8.3503,-4.9902 z"
  2032. inkscape:connector-curvature="0"
  2033. style="opacity:0.40206185;fill:url(#radialGradient5121);fill-rule:nonzero" />
  2034. <path
  2035. id="rect1975-4"
  2036. d="m 15.182,12.506 32.649,0 c 0.76258,0 1.3765,0.53245 1.3765,1.1938 0,0 2.4013,34.169 2.4013,34.169 0,0 0.01246,2.3476 0.01246,2.3476 0,0.66138 -0.61392,1.1938 -1.3765,1.1938 h -37.477 c -0.76258,0 -1.3765,-0.53245 -1.3765,-1.1938 l -0.01117,-2.1669 2.425,-34.349 c 0,-0.66139 0.61392,-1.1938 1.3765,-1.1938 z"
  2037. stroke-miterlimit="4"
  2038. inkscape:connector-curvature="0"
  2039. style="fill:url(#linearGradient3568);fill-rule:evenodd;stroke:url(#linearGradient3570);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0" />
  2040. <rect
  2041. id="rect3297"
  2042. rx="0.5521"
  2043. ry="0.5"
  2044. height="1"
  2045. width="5.5209999"
  2046. y="20.023001"
  2047. x="41.435001"
  2048. style="opacity:0.47999998;fill:#888a85" />
  2049. <rect
  2050. id="rect3305"
  2051. rx="0.5521"
  2052. ry="0.5"
  2053. height="1"
  2054. width="2.3464"
  2055. y="30"
  2056. x="35.914001"
  2057. style="opacity:0.47999998;fill:#888a85" />
  2058. <rect
  2059. id="rect3287"
  2060. rx="0.50889999"
  2061. ry="0.5"
  2062. height="1"
  2063. width="4.085"
  2064. y="36"
  2065. x="16.007999"
  2066. style="opacity:0.47999998;fill:#888a85" />
  2067. <rect
  2068. id="rect3307"
  2069. rx="0.5521"
  2070. ry="0.5"
  2071. height="1"
  2072. width="9.2649002"
  2073. y="24"
  2074. x="32.601002"
  2075. style="opacity:0.47999998;fill:#888a85" />
  2076. <rect
  2077. id="rect3309"
  2078. rx="0.54680002"
  2079. ry="0.5"
  2080. height="1"
  2081. width="3.8819001"
  2082. y="26"
  2083. x="32.584"
  2084. style="opacity:0.47999998;fill:#888a85" />
  2085. <rect
  2086. id="rect3313"
  2087. rx="0.5521"
  2088. ry="0.5"
  2089. height="1"
  2090. width="4.4168"
  2091. y="34"
  2092. x="43.643002"
  2093. style="opacity:0.47999998;fill:#888a85" />
  2094. <rect
  2095. id="rect2940"
  2096. rx="0.5521"
  2097. ry="0.5"
  2098. height="1"
  2099. width="3.3125999"
  2100. y="36"
  2101. x="30.583"
  2102. style="opacity:0.47999998;fill:#888a85" />
  2103. <rect
  2104. id="rect2915"
  2105. rx="0.59887999"
  2106. ry="0.5"
  2107. height="1"
  2108. width="5.5209999"
  2109. y="30"
  2110. x="42.539001"
  2111. style="opacity:0.47999998;fill:#888a85" />
  2112. <rect
  2113. id="rect2885"
  2114. rx="0.5521"
  2115. ry="0.5"
  2116. height="1"
  2117. width="2.9158001"
  2118. y="28"
  2119. x="37.018002"
  2120. style="opacity:0.47999998;fill:#888a85" />
  2121. <rect
  2122. id="rect2893"
  2123. rx="0.5521"
  2124. ry="0.5"
  2125. height="1"
  2126. width="6.6251998"
  2127. y="35.977001"
  2128. x="34.446999"
  2129. style="opacity:0.47999998;fill:#888a85" />
  2130. <rect
  2131. id="rect2895-0"
  2132. rx="0.5521"
  2133. ry="0.5"
  2134. height="1"
  2135. width="5.5209999"
  2136. y="20"
  2137. x="32.601002"
  2138. style="opacity:0.47999998;fill:#888a85" />
  2139. <rect
  2140. id="rect2897"
  2141. rx="0.5521"
  2142. ry="0.5"
  2143. height="1"
  2144. width="2.2084"
  2145. y="20.023001"
  2146. x="38.122002"
  2147. style="opacity:0.47999998;fill:#888a85" />
  2148. <rect
  2149. id="rect10425"
  2150. rx="0.5521"
  2151. ry="0.5"
  2152. height="1"
  2153. width="2.2084"
  2154. y="35.977001"
  2155. x="42.176998"
  2156. style="opacity:0.47999998;fill:#888a85" />
  2157. <rect
  2158. id="rect10427"
  2159. rx="0.5521"
  2160. ry="0.5"
  2161. height="1"
  2162. width="2.2084"
  2163. y="36"
  2164. x="45.852001"
  2165. style="opacity:0.47999998;fill:#888a85" />
  2166. <rect
  2167. id="rect10429"
  2168. rx="0.59887999"
  2169. ry="0.5"
  2170. height="1"
  2171. width="4.4168"
  2172. y="22"
  2173. x="42.539001"
  2174. style="opacity:0.47999998;fill:#888a85" />
  2175. <rect
  2176. id="rect10431"
  2177. rx="0.59887999"
  2178. ry="0.5"
  2179. height="1"
  2180. width="2.2084"
  2181. y="22"
  2182. x="37.018002"
  2183. style="opacity:0.47999998;fill:#888a85" />
  2184. <rect
  2185. id="rect10433"
  2186. rx="0.59887999"
  2187. ry="0.5"
  2188. height="1"
  2189. width="4.4168"
  2190. y="22"
  2191. x="32.601002"
  2192. style="opacity:0.47999998;fill:#888a85" />
  2193. <rect
  2194. id="rect10435"
  2195. rx="0.59887999"
  2196. ry="0.5"
  2197. height="1"
  2198. width="4.4168"
  2199. y="24"
  2200. x="42.539001"
  2201. style="opacity:0.47999998;fill:#888a85" />
  2202. <rect
  2203. id="rect10437"
  2204. rx="0.59887999"
  2205. ry="0.5"
  2206. height="1"
  2207. width="2.2084"
  2208. y="28"
  2209. x="34.810001"
  2210. style="opacity:0.47999998;fill:#888a85" />
  2211. <rect
  2212. id="rect10439"
  2213. rx="0.59887999"
  2214. ry="0.5"
  2215. height="1"
  2216. width="3.3125999"
  2217. y="30"
  2218. x="39.226002"
  2219. style="opacity:0.47999998;fill:#888a85" />
  2220. <rect
  2221. id="rect2919"
  2222. rx="0.59887999"
  2223. ry="0.5"
  2224. height="1"
  2225. width="2.2084"
  2226. y="26"
  2227. x="37.57"
  2228. style="opacity:0.47999998;fill:#888a85" />
  2229. <rect
  2230. id="rect2921"
  2231. rx="0.59887999"
  2232. ry="0.5"
  2233. height="1"
  2234. width="4.4168"
  2235. y="26"
  2236. x="40.882999"
  2237. style="opacity:0.47999998;fill:#888a85" />
  2238. <rect
  2239. id="rect2923"
  2240. rx="0.59887999"
  2241. ry="0.5"
  2242. height="1"
  2243. width="2.2084"
  2244. y="26"
  2245. x="45.299"
  2246. style="opacity:0.47999998;fill:#888a85" />
  2247. <rect
  2248. id="rect2925"
  2249. rx="0.59887999"
  2250. ry="0.5"
  2251. height="1"
  2252. width="2.2084"
  2253. y="28"
  2254. x="32.601002"
  2255. style="opacity:0.47999998;fill:#888a85" />
  2256. <rect
  2257. id="rect2931"
  2258. rx="0.59887999"
  2259. ry="0.5"
  2260. height="1"
  2261. width="2.2084"
  2262. y="28"
  2263. x="41.037998"
  2264. style="opacity:0.47999998;fill:#888a85" />
  2265. <rect
  2266. id="rect2933"
  2267. rx="0.59887999"
  2268. ry="0.5"
  2269. height="1"
  2270. width="4.4168"
  2271. y="28"
  2272. x="43.245998"
  2273. style="opacity:0.47999998;fill:#888a85" />
  2274. <rect
  2275. id="rect2935"
  2276. rx="0.59887999"
  2277. ry="0.5"
  2278. height="1"
  2279. width="2.2084"
  2280. y="30"
  2281. x="32.601002"
  2282. style="opacity:0.47999998;fill:#888a85" />
  2283. <rect
  2284. id="rect2938"
  2285. rx="0.59887999"
  2286. ry="0.5"
  2287. height="1"
  2288. width="6.6251998"
  2289. y="36"
  2290. x="21.749001"
  2291. style="opacity:0.47999998;fill:#888a85" />
  2292. <rect
  2293. id="rect2942"
  2294. rx="0.5521"
  2295. ry="0.5"
  2296. height="1"
  2297. width="2.2084"
  2298. y="34"
  2299. x="16.038"
  2300. style="opacity:0.47999998;fill:#888a85" />
  2301. <rect
  2302. id="rect2945"
  2303. rx="0.59887999"
  2304. ry="0.5"
  2305. height="1"
  2306. width="4.4168"
  2307. y="34"
  2308. x="19.351"
  2309. style="opacity:0.47999998;fill:#888a85" />
  2310. <rect
  2311. id="rect2947"
  2312. rx="0.59887999"
  2313. ry="0.5"
  2314. height="1"
  2315. width="5.5209999"
  2316. y="34"
  2317. x="25.976"
  2318. style="opacity:0.47999998;fill:#888a85" />
  2319. <rect
  2320. id="rect2949"
  2321. rx="0.59887999"
  2322. ry="0.5"
  2323. height="1"
  2324. width="4.4168"
  2325. y="34"
  2326. x="32.601002"
  2327. style="opacity:0.47999998;fill:#888a85" />
  2328. <rect
  2329. id="rect2951"
  2330. rx="0.59887999"
  2331. ry="0.5"
  2332. height="1"
  2333. width="4.4168"
  2334. y="34.004002"
  2335. x="38.131001"
  2336. style="opacity:0.47999998;fill:#888a85" />
  2337. <path
  2338. id="text9976-0"
  2339. d="m 32.465,31.632 0,0.36804 -6.1235,0 0,-0.36804 c 0.64036,-0.0129 1.0806,-0.0646 1.3208,-0.15496 0.24013,-0.0904 0.3602,-0.25827 0.36021,-0.50362 -1.1e-5,-0.30993 -0.1521,-0.74253 -0.45626,-1.2978 l -0.98456,-1.8595 h -6.2916 l -1.1046,2.2663 c -0.12808,0.27118 -0.19211,0.52299 -0.19211,0.75543 -3e-6,0.52946 0.54431,0.79418 1.6329,0.79418 v 0.36804 h -4.7547 v -0.36804 c 0.59234,-0.0258 1.0486,-0.20661 1.3688,-0.54236 0.33619,-0.34867 0.8725,-1.2268 1.6089,-2.6344 l 4.9949,-9.5108 h 0.48028 l 5.9794,11.002 c 0.41622,0.72316 0.74441,1.1816 0.98456,1.3753 0.24012,0.18079 0.63235,0.2841 1.1767,0.30992 m -11.767,-4.6101 5.5472,0 -2.7856,-5.3268 -2.7616,5.3268"
  2340. inkscape:connector-curvature="0"
  2341. style="fill:url(#linearGradient3572)" />
  2342. <rect
  2343. id="rect10463"
  2344. rx="0.5521"
  2345. ry="0.5"
  2346. height="1"
  2347. width="4.4168"
  2348. y="31.996"
  2349. x="43.634998"
  2350. style="opacity:0.47999998;fill:#888a85" />
  2351. <rect
  2352. id="rect10465"
  2353. rx="0.59887999"
  2354. ry="0.5"
  2355. height="1"
  2356. width="4.4168"
  2357. y="31.996"
  2358. x="32.592999"
  2359. style="opacity:0.47999998;fill:#888a85" />
  2360. <rect
  2361. id="rect10441"
  2362. rx="0.59887999"
  2363. ry="0.5"
  2364. height="1"
  2365. width="4.4168"
  2366. y="32"
  2367. x="38.122002"
  2368. style="opacity:0.47999998;fill:#888a85" />
  2369. <rect
  2370. id="rect10445"
  2371. transform="scale(-1,1)"
  2372. rx="0.5521"
  2373. ry="0.47170001"
  2374. height="1"
  2375. width="3.8517001"
  2376. y="37.995998"
  2377. x="-19.360001"
  2378. style="opacity:0.47999998;fill:#888a85" />
  2379. <rect
  2380. id="rect10457"
  2381. transform="scale(-1,1)"
  2382. rx="0.5521"
  2383. ry="0.5"
  2384. height="1"
  2385. width="2.2084"
  2386. y="38"
  2387. x="-47.507999"
  2388. style="opacity:0.47999998;fill:#888a85" />
  2389. <rect
  2390. id="rect10459"
  2391. transform="scale(-1,1)"
  2392. rx="0.59887999"
  2393. ry="0.5"
  2394. height="1"
  2395. width="4.4168"
  2396. y="37.995998"
  2397. x="-43.652"
  2398. style="opacity:0.47999998;fill:#888a85" />
  2399. <rect
  2400. id="rect10461"
  2401. transform="scale(-1,1)"
  2402. rx="0.59887999"
  2403. ry="0.5"
  2404. height="1"
  2405. width="5.5209999"
  2406. y="37.995998"
  2407. x="-37.027"
  2408. style="opacity:0.47999998;fill:#888a85" />
  2409. <rect
  2410. id="rect10472"
  2411. transform="scale(-1,1)"
  2412. rx="0.59887999"
  2413. ry="0.5"
  2414. height="1"
  2415. width="4.4168"
  2416. y="37.995998"
  2417. x="-30.402"
  2418. style="opacity:0.47999998;fill:#888a85" />
  2419. <rect
  2420. id="rect10474"
  2421. transform="scale(-1,1)"
  2422. rx="0.59887999"
  2423. ry="0.5"
  2424. height="1"
  2425. width="4.4168"
  2426. y="38"
  2427. x="-24.872"
  2428. style="opacity:0.47999998;fill:#888a85" />
  2429. <rect
  2430. id="rect2851-4"
  2431. rx="0.67938"
  2432. ry="0.67938"
  2433. height="3.0715001"
  2434. width="39.048"
  2435. y="47.868"
  2436. x="11.996"
  2437. style="fill:#a4a4a4;fill-rule:evenodd" />
  2438. <path
  2439. id="path2853-6"
  2440. d="m 11.945,48.443 c 0,0 0.15086,-0.53033 0.70402,-0.57452 h 37.565 c 0.75431,0 0.8046,0.7513 0.8046,0.7513 0,0 0.0236,-1.6196 -1.2839,-1.6196 h -36.412 c -1.0057,0.0884 -1.3775,0.77988 -1.3775,1.4428 z"
  2441. inkscape:connector-curvature="0"
  2442. style="fill:#ffffff;fill-rule:evenodd" />
  2443. <path
  2444. id="path2915-2"
  2445. d="m 14.268,13.734 -0.25,4.3906 c 0,0 0.3125,-1.125 1,-1.125 h 33.125 c 0.70312,-0.01563 0.73438,0.3125 0.85938,0.82812 0,0 -0.25,-3.875 -0.25,-3.875 -0.03125,-0.54688 -0.21875,-0.95312 -0.78125,-0.95312 h -32.891 c -0.45312,0 -0.76562,0.34375 -0.8125,0.73438 z"
  2446. inkscape:connector-curvature="0"
  2447. style="fill:url(#linearGradient3574);fill-rule:evenodd" />
  2448. <path
  2449. id="path2917-6"
  2450. d="m 15.831,13.54 31.132,0 c 0.72204,0 1.3033,-0.1521 1.3033,0.47412 0,0 2.2737,33.009 2.2737,33.009 0,0 0.10018,2.709 0.10018,2.709 0,0.62623 -0.13934,0.64424 -0.86137,0.64424 h -36.899 c -0.41268,0 -0.41943,-0.1064 -0.41943,-0.51166 l -0.01058,-2.6704 2.296,-33.148 c 0,-0.62623 0.36253,-0.50537 1.0846,-0.50537 z"
  2451. stroke-miterlimit="4"
  2452. inkscape:connector-curvature="0"
  2453. style="opacity:0.43859648;fill:none;stroke:#ffffff;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0" />
  2454. <path
  2455. id="path4331-7"
  2456. d="m 53.984,38.083 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  2457. inkscape:connector-curvature="0"
  2458. style="opacity:0.07000002;fill:url(#radialGradient3576)" />
  2459. <path
  2460. id="path3420"
  2461. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436-4)"
  2462. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  2463. transform="matrix(1.2818465,0,0,0.9398128,19.025384,42.993515)"
  2464. stroke-miterlimit="0"
  2465. inkscape:connector-curvature="0" />
  2466. <path
  2467. id="path3159-5"
  2468. d="m 53.679,26.809 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5294 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  2469. inkscape:connector-curvature="0"
  2470. style="fill:url(#radialGradient3578);fill-rule:evenodd" />
  2471. <path
  2472. id="path3157-6"
  2473. style="fill:url(#linearGradient3580);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2474. d="m 53.986,52.512 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  2475. stroke-miterlimit="0"
  2476. inkscape:connector-curvature="0" />
  2477. <path
  2478. id="path3236-9"
  2479. style="fill:none;stroke:url(#linearGradient5052);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2480. d="m 53.008,52.512 a 4.5,1.2723 0 0 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  2481. stroke-miterlimit="0"
  2482. inkscape:connector-curvature="0" />
  2483. <path
  2484. id="path3163-8"
  2485. d="m 45.922,42.612 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5294 0.51711,1.5294 0.37723,0 0.51711,-0.50978 0.51711,-1.5294 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  2486. inkscape:connector-curvature="0"
  2487. style="fill:url(#linearGradient3582);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2488. <path
  2489. id="path3179-7"
  2490. d="m 41.508,35.512 c 0,6 5.4487,8.1197 7,8.1197 1.5513,0 7,-2.1197 7,-8.1197"
  2491. inkscape:connector-curvature="0"
  2492. style="fill:url(#radialGradient3584);fill-rule:evenodd" />
  2493. <path
  2494. id="path5788-2"
  2495. style="fill:url(#radialGradient3586);stroke:url(#linearGradient3588);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2496. d="m 54.841,35.475 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  2497. stroke-miterlimit="0"
  2498. inkscape:connector-curvature="0" />
  2499. <path
  2500. id="path10032"
  2501. d="m 53.102,28.825 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.6393 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20766 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.0312 c -0.32628,-2.6102 -0.67143,-3.938 -1.3125,-6.1875 z"
  2502. inkscape:connector-curvature="0"
  2503. style="fill:none;stroke:url(#linearGradient5037);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2504. <path
  2505. id="path3266-8"
  2506. d="m 44.739,28.679 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5294 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6468 z"
  2507. inkscape:connector-curvature="0"
  2508. style="fill:url(#linearGradient5034);fill-rule:evenodd" />
  2509. <path
  2510. id="path2385-2"
  2511. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  2512. d="m 53.692,26.739 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.0215"
  2513. stroke-miterlimit="0"
  2514. inkscape:connector-curvature="0" />
  2515. <path
  2516. id="path3358-9"
  2517. d="m 53.508,27.977 c -0.33333,0.33334 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
  2518. stroke-miterlimit="0"
  2519. inkscape:connector-curvature="0"
  2520. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2521. <path
  2522. id="path3450-9"
  2523. d="m 54.508,35.012 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 C 44.816,36.4119 42.508,35.58236 42.508,35.012"
  2524. stroke-miterlimit="0"
  2525. inkscape:connector-curvature="0"
  2526. style="fill:none;stroke:url(#radialGradient3591);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  2527. <path
  2528. id="path3395-6"
  2529. d="m 47.175,44.012 c 0,0 0.33333,0.66666 1.3333,0.63922 1,-0.0274 1.3333,-0.63922 1.3333,-0.63922"
  2530. inkscape:connector-curvature="0"
  2531. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  2532. <path
  2533. id="path3363-0"
  2534. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  2535. transform="matrix(1.0342194,0,0,1.019566,40.2341,7.694102)"
  2536. inkscape:connector-curvature="0"
  2537. style="fill:url(#linearGradient3593);fill-rule:evenodd;stroke:url(#linearGradient3595);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-8)" />
  2538. <path
  2539. id="path3354-2"
  2540. d="m 53.679,26.809 c -0.6711,-1.7968 -9.6711,-1.7968 -10.342,0 0,1.5294 -1.8289,6.1249 -1.8289,10.203 0,4.0783 5.4487,6.6197 7,6.6197 1.5513,0 7,-2.5414 7,-6.6197 0,-4.0783 -1.8289,-8.6738 -1.8289,-10.203 z"
  2541. inkscape:connector-curvature="0"
  2542. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  2543. <path
  2544. id="path2878"
  2545. d="m 19.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2546. inkscape:connector-curvature="0"
  2547. style="fill:#cbcbc9" />
  2548. <path
  2549. id="path2880"
  2550. d="m 23.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2551. inkscape:connector-curvature="0"
  2552. style="fill:#cbcbc9" />
  2553. <path
  2554. id="path2882"
  2555. d="m 27.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2556. inkscape:connector-curvature="0"
  2557. style="fill:#cbcbc9" />
  2558. <path
  2559. id="path2884"
  2560. d="m 31.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2561. inkscape:connector-curvature="0"
  2562. style="fill:#cbcbc9" />
  2563. <path
  2564. id="path2886"
  2565. d="m 35.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2566. inkscape:connector-curvature="0"
  2567. style="fill:#cbcbc9" />
  2568. <path
  2569. id="path2888"
  2570. d="m 39.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2571. inkscape:connector-curvature="0"
  2572. style="fill:#cbcbc9" />
  2573. <path
  2574. id="path2890"
  2575. d="m 43.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2576. inkscape:connector-curvature="0"
  2577. style="fill:#cbcbc9" />
  2578. <rect
  2579. id="rect2776"
  2580. style="fill:url(#radialGradient5014);stroke:url(#linearGradient5016);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2581. rx="0.99900001"
  2582. ry="1.5072"
  2583. height="5.0440001"
  2584. width="1.998"
  2585. stroke-miterlimit="4"
  2586. y="10.501"
  2587. x="16.509001" />
  2588. <path
  2589. id="path2812"
  2590. d="m 17.508,12.148 a 0.59375,0.64844 0 0 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2591. inkscape:connector-curvature="0"
  2592. style="fill:#ffffff" />
  2593. <g
  2594. id="use4712"
  2595. transform="translate(9.007851,1.000004)">
  2596. <rect
  2597. id="rect3952"
  2598. style="fill:url(#radialGradient3597);stroke:url(#linearGradient3599);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2599. rx="0.99900001"
  2600. ry="1.5072"
  2601. height="5.0440001"
  2602. width="1.998"
  2603. stroke-miterlimit="4"
  2604. y="9.5010004"
  2605. x="11.501" />
  2606. <path
  2607. id="path3954"
  2608. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2609. transform="translate(-0.21875,-0.109374)"
  2610. inkscape:connector-curvature="0"
  2611. style="fill:#ffffff" />
  2612. </g>
  2613. <g
  2614. id="use4714"
  2615. transform="translate(13.007851,1.000004)">
  2616. <rect
  2617. id="rect3942"
  2618. style="fill:url(#radialGradient3601);stroke:url(#linearGradient3603);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2619. rx="0.99900001"
  2620. ry="1.5072"
  2621. height="5.0440001"
  2622. width="1.998"
  2623. stroke-miterlimit="4"
  2624. y="9.5010004"
  2625. x="11.501" />
  2626. <path
  2627. id="path3944"
  2628. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2629. transform="translate(-0.21875,-0.109374)"
  2630. inkscape:connector-curvature="0"
  2631. style="fill:#ffffff" />
  2632. </g>
  2633. <g
  2634. id="use4716"
  2635. transform="translate(17.007851,1.000004)">
  2636. <rect
  2637. id="rect3932"
  2638. style="fill:url(#radialGradient3605);stroke:url(#linearGradient3607);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2639. rx="0.99900001"
  2640. ry="1.5072"
  2641. height="5.0440001"
  2642. width="1.998"
  2643. stroke-miterlimit="4"
  2644. y="9.5010004"
  2645. x="11.501" />
  2646. <path
  2647. id="path3934"
  2648. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2649. transform="translate(-0.21875,-0.109374)"
  2650. inkscape:connector-curvature="0"
  2651. style="fill:#ffffff" />
  2652. </g>
  2653. <g
  2654. id="use4718"
  2655. transform="translate(21.007851,1.000004)">
  2656. <rect
  2657. id="rect3922"
  2658. style="fill:url(#radialGradient3610);stroke:url(#linearGradient3612);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2659. rx="0.99900001"
  2660. ry="1.5072"
  2661. height="5.0440001"
  2662. width="1.998"
  2663. stroke-miterlimit="4"
  2664. y="9.5010004"
  2665. x="11.501" />
  2666. <path
  2667. id="path3924"
  2668. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2669. transform="translate(-0.21875,-0.109374)"
  2670. inkscape:connector-curvature="0"
  2671. style="fill:#ffffff" />
  2672. </g>
  2673. <g
  2674. id="use4720"
  2675. transform="translate(25.007851,1.000004)">
  2676. <rect
  2677. id="rect3912"
  2678. style="fill:url(#radialGradient3614);stroke:url(#linearGradient3616);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2679. rx="0.99900001"
  2680. ry="1.5072"
  2681. height="5.0440001"
  2682. width="1.998"
  2683. stroke-miterlimit="4"
  2684. y="9.5010004"
  2685. x="11.501" />
  2686. <path
  2687. id="path3914"
  2688. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2689. transform="translate(-0.21875,-0.109374)"
  2690. inkscape:connector-curvature="0"
  2691. style="fill:#ffffff" />
  2692. </g>
  2693. <g
  2694. id="use4722"
  2695. transform="translate(29.007851,1.000004)">
  2696. <rect
  2697. id="rect3902"
  2698. style="fill:url(#radialGradient3618);stroke:url(#linearGradient3620);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2699. rx="0.99900001"
  2700. ry="1.5072"
  2701. height="5.0440001"
  2702. width="1.998"
  2703. stroke-miterlimit="4"
  2704. y="9.5010004"
  2705. x="11.501" />
  2706. <path
  2707. id="path3904"
  2708. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2709. transform="translate(-0.21875,-0.109374)"
  2710. inkscape:connector-curvature="0"
  2711. style="fill:#ffffff" />
  2712. </g>
  2713. <path
  2714. id="path11649"
  2715. d="m 47.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  2716. inkscape:connector-curvature="0"
  2717. style="fill:#cbcbc9" />
  2718. <g
  2719. id="use11651"
  2720. transform="translate(33.007854,1.000004)">
  2721. <rect
  2722. id="rect3892"
  2723. style="fill:url(#radialGradient5131);stroke:url(#linearGradient5133);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  2724. rx="0.99900001"
  2725. ry="1.5072"
  2726. height="5.0440001"
  2727. width="1.998"
  2728. stroke-miterlimit="4"
  2729. y="9.5010004"
  2730. x="11.501" />
  2731. <path
  2732. id="path3894"
  2733. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  2734. transform="translate(-0.21875,-0.109374)"
  2735. inkscape:connector-curvature="0"
  2736. style="fill:#ffffff" />
  2737. </g>
  2738. </g>
  2739. <rect
  2740. id="icon:48-32"
  2741. height="48"
  2742. width="48"
  2743. y="216"
  2744. x="8.1870003"
  2745. style="fill:none" />
  2746. <g
  2747. id="g3283"
  2748. transform="matrix(5.1744545,0,0,5.174453,332.26137,-36.050363)">
  2749. <rect
  2750. x="15.45"
  2751. y="45.008999"
  2752. width="32.386002"
  2753. height="9.9821997"
  2754. id="rect3285"
  2755. style="opacity:0.40206;fill:url(#linearGradient3483);fill-rule:nonzero" />
  2756. <path
  2757. d="m 47.837,45.009 v 9.9816 c 3.4541,0.0188 8.3503,-2.2364 8.3503,-4.9914 0,-2.7551 -3.8545,-4.9902 -8.3503,-4.9902 z"
  2758. id="path3287"
  2759. style="opacity:0.40206185;fill:url(#radialGradient3485);fill-rule:nonzero"
  2760. inkscape:connector-curvature="0" />
  2761. <path
  2762. d="m 15.45,45.009 v 9.9816 c -3.454,0.019 -8.35,-2.236 -8.35,-4.992 0,-2.7551 3.8545,-4.9902 8.3503,-4.9902 z"
  2763. id="path3289"
  2764. style="opacity:0.40206185;fill:url(#radialGradient3487);fill-rule:nonzero"
  2765. inkscape:connector-curvature="0" />
  2766. <path
  2767. stroke-miterlimit="4"
  2768. d="m 15.182,12.506 32.649,0 c 0.76258,0 1.3765,0.53245 1.3765,1.1938 0,0 2.4013,34.169 2.4013,34.169 0,0 0.01246,2.3476 0.01246,2.3476 0,0.66138 -0.61392,1.1938 -1.3765,1.1938 h -37.477 c -0.76258,0 -1.3765,-0.53245 -1.3765,-1.1938 l -0.01117,-2.1669 2.425,-34.349 c 0,-0.66139 0.61392,-1.1938 1.3765,-1.1938 z"
  2769. id="path3291"
  2770. style="fill:url(#linearGradient3489);fill-rule:evenodd;stroke:url(#linearGradient3491);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0"
  2771. inkscape:connector-curvature="0" />
  2772. <rect
  2773. x="41.435001"
  2774. y="20.023001"
  2775. width="5.5209999"
  2776. height="1"
  2777. ry="0.5"
  2778. rx="0.5521"
  2779. id="rect3293"
  2780. style="opacity:0.47999998;fill:#888a85" />
  2781. <rect
  2782. x="35.914001"
  2783. y="30"
  2784. width="2.3464"
  2785. height="1"
  2786. ry="0.5"
  2787. rx="0.5521"
  2788. id="rect3295"
  2789. style="opacity:0.47999998;fill:#888a85" />
  2790. <rect
  2791. x="16.007999"
  2792. y="36"
  2793. width="4.085"
  2794. height="1"
  2795. ry="0.5"
  2796. rx="0.50889999"
  2797. id="rect3298"
  2798. style="opacity:0.47999998;fill:#888a85" />
  2799. <rect
  2800. x="32.601002"
  2801. y="24"
  2802. width="9.2649002"
  2803. height="1"
  2804. ry="0.5"
  2805. rx="0.5521"
  2806. id="rect3300"
  2807. style="opacity:0.47999998;fill:#888a85" />
  2808. <rect
  2809. x="32.584"
  2810. y="26"
  2811. width="3.8819001"
  2812. height="1"
  2813. ry="0.5"
  2814. rx="0.54680002"
  2815. id="rect3302"
  2816. style="opacity:0.47999998;fill:#888a85" />
  2817. <rect
  2818. x="43.643002"
  2819. y="34"
  2820. width="4.4168"
  2821. height="1"
  2822. ry="0.5"
  2823. rx="0.5521"
  2824. id="rect3304"
  2825. style="opacity:0.47999998;fill:#888a85" />
  2826. <rect
  2827. x="30.583"
  2828. y="36"
  2829. width="3.3125999"
  2830. height="1"
  2831. ry="0.5"
  2832. rx="0.5521"
  2833. id="rect3306"
  2834. style="opacity:0.47999998;fill:#888a85" />
  2835. <rect
  2836. x="42.539001"
  2837. y="30"
  2838. width="5.5209999"
  2839. height="1"
  2840. ry="0.5"
  2841. rx="0.59887999"
  2842. id="rect3308"
  2843. style="opacity:0.47999998;fill:#888a85" />
  2844. <rect
  2845. x="37.018002"
  2846. y="28"
  2847. width="2.9158001"
  2848. height="1"
  2849. ry="0.5"
  2850. rx="0.5521"
  2851. id="rect3310"
  2852. style="opacity:0.47999998;fill:#888a85" />
  2853. <rect
  2854. x="34.446999"
  2855. y="35.977001"
  2856. width="6.6251998"
  2857. height="1"
  2858. ry="0.5"
  2859. rx="0.5521"
  2860. id="rect3312"
  2861. style="opacity:0.47999998;fill:#888a85" />
  2862. <rect
  2863. x="32.601002"
  2864. y="20"
  2865. width="5.5209999"
  2866. height="1"
  2867. ry="0.5"
  2868. rx="0.5521"
  2869. id="rect3314"
  2870. style="opacity:0.47999998;fill:#888a85" />
  2871. <rect
  2872. x="38.122002"
  2873. y="20.023001"
  2874. width="2.2084"
  2875. height="1"
  2876. ry="0.5"
  2877. rx="0.5521"
  2878. id="rect3316"
  2879. style="opacity:0.47999998;fill:#888a85" />
  2880. <rect
  2881. x="42.176998"
  2882. y="35.977001"
  2883. width="2.2084"
  2884. height="1"
  2885. ry="0.5"
  2886. rx="0.5521"
  2887. id="rect3318"
  2888. style="opacity:0.47999998;fill:#888a85" />
  2889. <rect
  2890. x="45.852001"
  2891. y="36"
  2892. width="2.2084"
  2893. height="1"
  2894. ry="0.5"
  2895. rx="0.5521"
  2896. id="rect3320"
  2897. style="opacity:0.47999998;fill:#888a85" />
  2898. <rect
  2899. x="42.539001"
  2900. y="22"
  2901. width="4.4168"
  2902. height="1"
  2903. ry="0.5"
  2904. rx="0.59887999"
  2905. id="rect3322"
  2906. style="opacity:0.47999998;fill:#888a85" />
  2907. <rect
  2908. x="37.018002"
  2909. y="22"
  2910. width="2.2084"
  2911. height="1"
  2912. ry="0.5"
  2913. rx="0.59887999"
  2914. id="rect3324"
  2915. style="opacity:0.47999998;fill:#888a85" />
  2916. <rect
  2917. x="32.601002"
  2918. y="22"
  2919. width="4.4168"
  2920. height="1"
  2921. ry="0.5"
  2922. rx="0.59887999"
  2923. id="rect3326"
  2924. style="opacity:0.47999998;fill:#888a85" />
  2925. <rect
  2926. x="42.539001"
  2927. y="24"
  2928. width="4.4168"
  2929. height="1"
  2930. ry="0.5"
  2931. rx="0.59887999"
  2932. id="rect3328"
  2933. style="opacity:0.47999998;fill:#888a85" />
  2934. <rect
  2935. x="34.810001"
  2936. y="28"
  2937. width="2.2084"
  2938. height="1"
  2939. ry="0.5"
  2940. rx="0.59887999"
  2941. id="rect3330"
  2942. style="opacity:0.47999998;fill:#888a85" />
  2943. <rect
  2944. x="39.226002"
  2945. y="30"
  2946. width="3.3125999"
  2947. height="1"
  2948. ry="0.5"
  2949. rx="0.59887999"
  2950. id="rect3332"
  2951. style="opacity:0.47999998;fill:#888a85" />
  2952. <rect
  2953. x="37.57"
  2954. y="26"
  2955. width="2.2084"
  2956. height="1"
  2957. ry="0.5"
  2958. rx="0.59887999"
  2959. id="rect3334"
  2960. style="opacity:0.47999998;fill:#888a85" />
  2961. <rect
  2962. x="40.882999"
  2963. y="26"
  2964. width="4.4168"
  2965. height="1"
  2966. ry="0.5"
  2967. rx="0.59887999"
  2968. id="rect3336"
  2969. style="opacity:0.47999998;fill:#888a85" />
  2970. <rect
  2971. x="45.299"
  2972. y="26"
  2973. width="2.2084"
  2974. height="1"
  2975. ry="0.5"
  2976. rx="0.59887999"
  2977. id="rect3338"
  2978. style="opacity:0.47999998;fill:#888a85" />
  2979. <rect
  2980. x="32.601002"
  2981. y="28"
  2982. width="2.2084"
  2983. height="1"
  2984. ry="0.5"
  2985. rx="0.59887999"
  2986. id="rect3340"
  2987. style="opacity:0.47999998;fill:#888a85" />
  2988. <rect
  2989. x="41.037998"
  2990. y="28"
  2991. width="2.2084"
  2992. height="1"
  2993. ry="0.5"
  2994. rx="0.59887999"
  2995. id="rect3342"
  2996. style="opacity:0.47999998;fill:#888a85" />
  2997. <rect
  2998. x="43.245998"
  2999. y="28"
  3000. width="4.4168"
  3001. height="1"
  3002. ry="0.5"
  3003. rx="0.59887999"
  3004. id="rect3344"
  3005. style="opacity:0.47999998;fill:#888a85" />
  3006. <rect
  3007. x="32.601002"
  3008. y="30"
  3009. width="2.2084"
  3010. height="1"
  3011. ry="0.5"
  3012. rx="0.59887999"
  3013. id="rect3346"
  3014. style="opacity:0.47999998;fill:#888a85" />
  3015. <rect
  3016. x="21.749001"
  3017. y="36"
  3018. width="6.6251998"
  3019. height="1"
  3020. ry="0.5"
  3021. rx="0.59887999"
  3022. id="rect3348"
  3023. style="opacity:0.47999998;fill:#888a85" />
  3024. <rect
  3025. x="16.038"
  3026. y="34"
  3027. width="2.2084"
  3028. height="1"
  3029. ry="0.5"
  3030. rx="0.5521"
  3031. id="rect3350"
  3032. style="opacity:0.47999998;fill:#888a85" />
  3033. <rect
  3034. x="19.351"
  3035. y="34"
  3036. width="4.4168"
  3037. height="1"
  3038. ry="0.5"
  3039. rx="0.59887999"
  3040. id="rect3352"
  3041. style="opacity:0.47999998;fill:#888a85" />
  3042. <rect
  3043. x="25.976"
  3044. y="34"
  3045. width="5.5209999"
  3046. height="1"
  3047. ry="0.5"
  3048. rx="0.59887999"
  3049. id="rect3354"
  3050. style="opacity:0.47999998;fill:#888a85" />
  3051. <rect
  3052. x="32.601002"
  3053. y="34"
  3054. width="4.4168"
  3055. height="1"
  3056. ry="0.5"
  3057. rx="0.59887999"
  3058. id="rect3356"
  3059. style="opacity:0.47999998;fill:#888a85" />
  3060. <rect
  3061. x="38.131001"
  3062. y="34.004002"
  3063. width="4.4168"
  3064. height="1"
  3065. ry="0.5"
  3066. rx="0.59887999"
  3067. id="rect3358"
  3068. style="opacity:0.47999998;fill:#888a85" />
  3069. <path
  3070. d="m 32.465,31.632 0,0.36804 -6.1235,0 0,-0.36804 c 0.64036,-0.0129 1.0806,-0.0646 1.3208,-0.15496 0.24013,-0.0904 0.3602,-0.25827 0.36021,-0.50362 -1.1e-5,-0.30993 -0.1521,-0.74253 -0.45626,-1.2978 l -0.98456,-1.8595 h -6.2916 l -1.1046,2.2663 c -0.12808,0.27118 -0.19211,0.52299 -0.19211,0.75543 -3e-6,0.52946 0.54431,0.79418 1.6329,0.79418 v 0.36804 h -4.7547 v -0.36804 c 0.59234,-0.0258 1.0486,-0.20661 1.3688,-0.54236 0.33619,-0.34867 0.8725,-1.2268 1.6089,-2.6344 l 4.9949,-9.5108 h 0.48028 l 5.9794,11.002 c 0.41622,0.72316 0.74441,1.1816 0.98456,1.3753 0.24012,0.18079 0.63235,0.2841 1.1767,0.30992 m -11.767,-4.6101 5.5472,0 -2.7856,-5.3268 -2.7616,5.3268"
  3071. id="path3360"
  3072. style="fill:url(#linearGradient3493)"
  3073. inkscape:connector-curvature="0" />
  3074. <rect
  3075. x="43.634998"
  3076. y="31.996"
  3077. width="4.4168"
  3078. height="1"
  3079. ry="0.5"
  3080. rx="0.5521"
  3081. id="rect3362"
  3082. style="opacity:0.47999998;fill:#888a85" />
  3083. <rect
  3084. x="32.592999"
  3085. y="31.996"
  3086. width="4.4168"
  3087. height="1"
  3088. ry="0.5"
  3089. rx="0.59887999"
  3090. id="rect3364"
  3091. style="opacity:0.47999998;fill:#888a85" />
  3092. <rect
  3093. x="38.122002"
  3094. y="32"
  3095. width="4.4168"
  3096. height="1"
  3097. ry="0.5"
  3098. rx="0.59887999"
  3099. id="rect3366"
  3100. style="opacity:0.47999998;fill:#888a85" />
  3101. <rect
  3102. x="-19.360001"
  3103. y="37.995998"
  3104. width="3.8517001"
  3105. height="1"
  3106. ry="0.47170001"
  3107. rx="0.5521"
  3108. transform="scale(-1,1)"
  3109. id="rect3368"
  3110. style="opacity:0.47999998;fill:#888a85" />
  3111. <rect
  3112. x="-47.507999"
  3113. y="38"
  3114. width="2.2084"
  3115. height="1"
  3116. ry="0.5"
  3117. rx="0.5521"
  3118. transform="scale(-1,1)"
  3119. id="rect3370"
  3120. style="opacity:0.47999998;fill:#888a85" />
  3121. <rect
  3122. x="-43.652"
  3123. y="37.995998"
  3124. width="4.4168"
  3125. height="1"
  3126. ry="0.5"
  3127. rx="0.59887999"
  3128. transform="scale(-1,1)"
  3129. id="rect3372"
  3130. style="opacity:0.47999998;fill:#888a85" />
  3131. <rect
  3132. x="-37.027"
  3133. y="37.995998"
  3134. width="5.5209999"
  3135. height="1"
  3136. ry="0.5"
  3137. rx="0.59887999"
  3138. transform="scale(-1,1)"
  3139. id="rect3374"
  3140. style="opacity:0.47999998;fill:#888a85" />
  3141. <rect
  3142. x="-30.402"
  3143. y="37.995998"
  3144. width="4.4168"
  3145. height="1"
  3146. ry="0.5"
  3147. rx="0.59887999"
  3148. transform="scale(-1,1)"
  3149. id="rect3376"
  3150. style="opacity:0.47999998;fill:#888a85" />
  3151. <rect
  3152. x="-24.872"
  3153. y="38"
  3154. width="4.4168"
  3155. height="1"
  3156. ry="0.5"
  3157. rx="0.59887999"
  3158. transform="scale(-1,1)"
  3159. id="rect3378"
  3160. style="opacity:0.47999998;fill:#888a85" />
  3161. <rect
  3162. x="11.996"
  3163. y="47.868"
  3164. width="39.048"
  3165. height="3.0715001"
  3166. ry="0.67938"
  3167. rx="0.67938"
  3168. id="rect3380"
  3169. style="fill:#a4a4a4;fill-rule:evenodd" />
  3170. <path
  3171. d="m 11.945,48.443 c 0,0 0.15086,-0.53033 0.70402,-0.57452 h 37.565 c 0.75431,0 0.8046,0.7513 0.8046,0.7513 0,0 0.0236,-1.6196 -1.2839,-1.6196 h -36.412 c -1.0057,0.0884 -1.3775,0.77988 -1.3775,1.4428 z"
  3172. id="path3382"
  3173. inkscape:connector-curvature="0"
  3174. style="fill:#ffffff;fill-rule:evenodd" />
  3175. <path
  3176. d="m 14.268,13.734 -0.25,4.3906 c 0,0 0.3125,-1.125 1,-1.125 h 33.125 c 0.70312,-0.01563 0.73438,0.3125 0.85938,0.82812 0,0 -0.25,-3.875 -0.25,-3.875 -0.03125,-0.54688 -0.21875,-0.95312 -0.78125,-0.95312 h -32.891 c -0.45312,0 -0.76562,0.34375 -0.8125,0.73438 z"
  3177. id="path3384"
  3178. style="fill:url(#linearGradient3495);fill-rule:evenodd"
  3179. inkscape:connector-curvature="0" />
  3180. <path
  3181. stroke-miterlimit="4"
  3182. d="m 15.831,13.54 31.132,0 c 0.72204,0 1.3033,-0.1521 1.3033,0.47412 0,0 2.2737,33.009 2.2737,33.009 0,0 0.10018,2.709 0.10018,2.709 0,0.62623 -0.13934,0.64424 -0.86137,0.64424 h -36.899 c -0.41268,0 -0.41943,-0.1064 -0.41943,-0.51166 l -0.01058,-2.6704 2.296,-33.148 c 0,-0.62623 0.36253,-0.50537 1.0846,-0.50537 z"
  3183. id="path3386"
  3184. inkscape:connector-curvature="0"
  3185. style="opacity:0.43859648;fill:none;stroke:#ffffff;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0" />
  3186. <path
  3187. d="m 53.984,38.083 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
  3188. id="path3388"
  3189. style="opacity:0.07000002;fill:url(#radialGradient3497)"
  3190. inkscape:connector-curvature="0" />
  3191. <path
  3192. stroke-miterlimit="0"
  3193. transform="matrix(1.2818465,0,0,0.9398128,19.025384,42.993515)"
  3194. d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
  3195. style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436-4)"
  3196. id="path3390"
  3197. inkscape:connector-curvature="0" />
  3198. <path
  3199. d="m 53.679,26.809 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5294 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
  3200. id="path3392"
  3201. style="fill:url(#radialGradient3499);fill-rule:evenodd"
  3202. inkscape:connector-curvature="0" />
  3203. <path
  3204. stroke-miterlimit="0"
  3205. d="m 53.986,52.512 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
  3206. style="fill:url(#linearGradient3501);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  3207. id="path3394"
  3208. inkscape:connector-curvature="0" />
  3209. <path
  3210. stroke-miterlimit="0"
  3211. d="m 53.008,52.512 a 4.5,1.2723 0 0 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
  3212. style="fill:none;stroke:url(#linearGradient3503);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  3213. id="path3396"
  3214. inkscape:connector-curvature="0" />
  3215. <path
  3216. d="m 45.922,42.612 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5294 0.51711,1.5294 0.37723,0 0.51711,-0.50978 0.51711,-1.5294 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
  3217. id="path3398"
  3218. style="fill:url(#linearGradient3505);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
  3219. inkscape:connector-curvature="0" />
  3220. <path
  3221. d="m 41.508,35.512 c 0,6 5.4487,8.1197 7,8.1197 1.5513,0 7,-2.1197 7,-8.1197"
  3222. id="path3400"
  3223. style="fill:url(#radialGradient3507);fill-rule:evenodd"
  3224. inkscape:connector-curvature="0" />
  3225. <path
  3226. stroke-miterlimit="0"
  3227. d="m 54.841,35.475 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
  3228. style="fill:url(#radialGradient3509);stroke:url(#linearGradient3511);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  3229. id="path3402"
  3230. inkscape:connector-curvature="0" />
  3231. <path
  3232. d="m 53.102,28.825 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.6393 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20766 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.0312 c -0.32628,-2.6102 -0.67143,-3.938 -1.3125,-6.1875 z"
  3233. id="path3404"
  3234. style="fill:none;stroke:url(#linearGradient3513);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
  3235. inkscape:connector-curvature="0" />
  3236. <path
  3237. d="m 44.739,28.679 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5294 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6468 z"
  3238. id="path3406"
  3239. style="fill:url(#linearGradient3515);fill-rule:evenodd"
  3240. inkscape:connector-curvature="0" />
  3241. <path
  3242. stroke-miterlimit="0"
  3243. d="m 53.692,26.739 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.0215"
  3244. style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
  3245. id="path3408"
  3246. inkscape:connector-curvature="0" />
  3247. <path
  3248. stroke-miterlimit="0"
  3249. d="m 53.508,27.977 c -0.33333,0.33334 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
  3250. id="path3410"
  3251. inkscape:connector-curvature="0"
  3252. style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
  3253. <path
  3254. stroke-miterlimit="0"
  3255. d="m 54.508,35.012 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 C 44.816,36.4119 42.508,35.58236 42.508,35.012"
  3256. id="path3412"
  3257. style="fill:none;stroke:url(#radialGradient3517);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
  3258. inkscape:connector-curvature="0" />
  3259. <path
  3260. d="m 47.175,44.012 c 0,0 0.33333,0.66666 1.3333,0.63922 1,-0.0274 1.3333,-0.63922 1.3333,-0.63922"
  3261. id="path3414"
  3262. inkscape:connector-curvature="0"
  3263. style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
  3264. <path
  3265. transform="matrix(1.0342194,0,0,1.019566,40.2341,7.694102)"
  3266. d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
  3267. id="path3416"
  3268. style="fill:url(#linearGradient3519);fill-rule:evenodd;stroke:url(#linearGradient3522);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-8)"
  3269. inkscape:connector-curvature="0" />
  3270. <path
  3271. d="m 53.679,26.809 c -0.6711,-1.7968 -9.6711,-1.7968 -10.342,0 0,1.5294 -1.8289,6.1249 -1.8289,10.203 0,4.0783 5.4487,6.6197 7,6.6197 1.5513,0 7,-2.5414 7,-6.6197 0,-4.0783 -1.8289,-8.6738 -1.8289,-10.203 z"
  3272. id="path3418"
  3273. inkscape:connector-curvature="0"
  3274. style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
  3275. <path
  3276. d="m 19.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3277. id="path3421"
  3278. inkscape:connector-curvature="0"
  3279. style="fill:#cbcbc9" />
  3280. <path
  3281. d="m 23.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3282. id="path3423"
  3283. inkscape:connector-curvature="0"
  3284. style="fill:#cbcbc9" />
  3285. <path
  3286. d="m 27.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3287. id="path3425"
  3288. inkscape:connector-curvature="0"
  3289. style="fill:#cbcbc9" />
  3290. <path
  3291. d="m 31.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3292. id="path3427"
  3293. inkscape:connector-curvature="0"
  3294. style="fill:#cbcbc9" />
  3295. <path
  3296. d="m 35.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3297. id="path3429"
  3298. inkscape:connector-curvature="0"
  3299. style="fill:#cbcbc9" />
  3300. <path
  3301. d="m 39.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3302. id="path3431"
  3303. inkscape:connector-curvature="0"
  3304. style="fill:#cbcbc9" />
  3305. <path
  3306. d="m 43.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3307. id="path3433"
  3308. inkscape:connector-curvature="0"
  3309. style="fill:#cbcbc9" />
  3310. <rect
  3311. x="16.509001"
  3312. y="10.501"
  3313. stroke-miterlimit="4"
  3314. width="1.998"
  3315. height="5.0440001"
  3316. ry="1.5072"
  3317. rx="0.99900001"
  3318. style="fill:url(#radialGradient3524);stroke:url(#linearGradient3527);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3319. id="rect3435" />
  3320. <path
  3321. d="m 17.508,12.148 a 0.59375,0.64844 0 0 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3322. id="path3437"
  3323. inkscape:connector-curvature="0"
  3324. style="fill:#ffffff" />
  3325. <g
  3326. transform="translate(9.007851,1.000004)"
  3327. id="g3439">
  3328. <rect
  3329. x="11.501"
  3330. y="9.5010004"
  3331. stroke-miterlimit="4"
  3332. width="1.998"
  3333. height="5.0440001"
  3334. ry="1.5072"
  3335. rx="0.99900001"
  3336. style="fill:url(#radialGradient3529);stroke:url(#linearGradient3531);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3337. id="rect3441" />
  3338. <path
  3339. transform="translate(-0.21875,-0.109374)"
  3340. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3341. id="path3443"
  3342. inkscape:connector-curvature="0"
  3343. style="fill:#ffffff" />
  3344. </g>
  3345. <g
  3346. transform="translate(13.007851,1.000004)"
  3347. id="g3445">
  3348. <rect
  3349. x="11.501"
  3350. y="9.5010004"
  3351. stroke-miterlimit="4"
  3352. width="1.998"
  3353. height="5.0440001"
  3354. ry="1.5072"
  3355. rx="0.99900001"
  3356. style="fill:url(#radialGradient3533);stroke:url(#linearGradient3535);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3357. id="rect3447" />
  3358. <path
  3359. transform="translate(-0.21875,-0.109374)"
  3360. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3361. id="path3449"
  3362. inkscape:connector-curvature="0"
  3363. style="fill:#ffffff" />
  3364. </g>
  3365. <g
  3366. transform="translate(17.007851,1.000004)"
  3367. id="g3451">
  3368. <rect
  3369. x="11.501"
  3370. y="9.5010004"
  3371. stroke-miterlimit="4"
  3372. width="1.998"
  3373. height="5.0440001"
  3374. ry="1.5072"
  3375. rx="0.99900001"
  3376. style="fill:url(#radialGradient3537);stroke:url(#linearGradient3540);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3377. id="rect3453" />
  3378. <path
  3379. transform="translate(-0.21875,-0.109374)"
  3380. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3381. id="path3455"
  3382. inkscape:connector-curvature="0"
  3383. style="fill:#ffffff" />
  3384. </g>
  3385. <g
  3386. transform="translate(21.007851,1.000004)"
  3387. id="g3457">
  3388. <rect
  3389. x="11.501"
  3390. y="9.5010004"
  3391. stroke-miterlimit="4"
  3392. width="1.998"
  3393. height="5.0440001"
  3394. ry="1.5072"
  3395. rx="0.99900001"
  3396. style="fill:url(#radialGradient3542);stroke:url(#linearGradient3544);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3397. id="rect3459" />
  3398. <path
  3399. transform="translate(-0.21875,-0.109374)"
  3400. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3401. id="path3461"
  3402. inkscape:connector-curvature="0"
  3403. style="fill:#ffffff" />
  3404. </g>
  3405. <g
  3406. transform="translate(25.007851,1.000004)"
  3407. id="g3463">
  3408. <rect
  3409. x="11.501"
  3410. y="9.5010004"
  3411. stroke-miterlimit="4"
  3412. width="1.998"
  3413. height="5.0440001"
  3414. ry="1.5072"
  3415. rx="0.99900001"
  3416. style="fill:url(#radialGradient3546);stroke:url(#linearGradient3548);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3417. id="rect3465" />
  3418. <path
  3419. transform="translate(-0.21875,-0.109374)"
  3420. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3421. id="path3467"
  3422. inkscape:connector-curvature="0"
  3423. style="fill:#ffffff" />
  3424. </g>
  3425. <g
  3426. transform="translate(29.007851,1.000004)"
  3427. id="g3469">
  3428. <rect
  3429. x="11.501"
  3430. y="9.5010004"
  3431. stroke-miterlimit="4"
  3432. width="1.998"
  3433. height="5.0440001"
  3434. ry="1.5072"
  3435. rx="0.99900001"
  3436. style="fill:url(#radialGradient3550);stroke:url(#linearGradient3552);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3437. id="rect3471" />
  3438. <path
  3439. transform="translate(-0.21875,-0.109374)"
  3440. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3441. id="path3473"
  3442. inkscape:connector-curvature="0"
  3443. style="fill:#ffffff" />
  3444. </g>
  3445. <path
  3446. d="m 47.742,14.997 a 1.9922,2.0026 0 0 1 -3.9844,0 1.9922,2.0026 0 1 1 3.9844,0 z"
  3447. id="path3475"
  3448. inkscape:connector-curvature="0"
  3449. style="fill:#cbcbc9" />
  3450. <g
  3451. transform="translate(33.007854,1.000004)"
  3452. id="g3477">
  3453. <rect
  3454. x="11.501"
  3455. y="9.5010004"
  3456. stroke-miterlimit="4"
  3457. width="1.998"
  3458. height="5.0440001"
  3459. ry="1.5072"
  3460. rx="0.99900001"
  3461. style="fill:url(#radialGradient3554);stroke:url(#linearGradient3556);stroke-width:1.00199997;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057"
  3462. id="rect3479" />
  3463. <path
  3464. transform="translate(-0.21875,-0.109374)"
  3465. d="m 12.719,11.258 a 0.59375,0.64844 0 1 1 -1.1875,0 0.59375,0.64844 0 1 1 1.1875,0 z"
  3466. id="path3481"
  3467. inkscape:connector-curvature="0"
  3468. style="fill:#ffffff" />
  3469. </g>
  3470. </g>
  3471. <rect
  3472. id="icon:256-32"
  3473. height="256"
  3474. width="256"
  3475. y="8"
  3476. x="368"
  3477. style="fill:none" />
  3478. </svg>