123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
- <svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- height="272"
- width="632"
- version="1.1"
- id="svg2"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="wordpad.svg">
- <metadata
- id="metadata306">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1248"
- inkscape:window-height="844"
- id="namedview304"
- showgrid="false"
- inkscape:zoom="1"
- inkscape:cx="184"
- inkscape:cy="32"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:window-maximized="0"
- inkscape:current-layer="svg2" />
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient2804">
- <stop
- id="stop2806"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop2808"
- stop-color="#d3d7cf"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2791">
- <stop
- id="stop2793"
- stop-color="#555753"
- offset="0" />
- <stop
- id="stop2799"
- stop-color="#cccdcb"
- offset="0.5" />
- <stop
- id="stop2795"
- stop-color="#555753"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3198">
- <stop
- id="stop3200"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop3202"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <filter
- id="filter3391"
- height="1.336"
- width="1.1344"
- color-interpolation-filters="sRGB"
- y="-0.168"
- x="-0.067199998">
- <feGaussianBlur
- id="feGaussianBlur3393"
- stdDeviation="0.14" />
- </filter>
- <linearGradient
- id="linearGradient5060">
- <stop
- id="stop5062"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop5064"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3468"
- y2="25.5"
- gradientUnits="userSpaceOnUse"
- x2="20.5"
- gradientTransform="translate(-8.0000004,15.967633)"
- y1="27.5"
- x1="16">
- <stop
- id="stop3375"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop3377"
- stop-color="#373737"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3470"
- y2="27"
- gradientUnits="userSpaceOnUse"
- x2="21.5"
- gradientTransform="translate(-8.0000004,15.967633)"
- y1="27"
- x1="16">
- <stop
- id="stop3444"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop3446"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3516"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(191,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3518"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(191,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3521"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(188,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3523"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(188,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3526"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(185,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3528"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(185,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3532"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(182,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3534"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(182,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3537"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(179,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3539"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(179,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3573"
- y2="18.183001"
- gradientUnits="userSpaceOnUse"
- x2="18.962"
- gradientTransform="matrix(0.8894737,0,0,0.7284713,174.77812,27.754332)"
- y1="12"
- x1="11">
- <stop
- id="stop4769"
- stop-color="#729fcf"
- offset="0" />
- <stop
- id="stop4771"
- stop-color="#3465a4"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3581"
- gradientUnits="userSpaceOnUse"
- cy="14.19"
- cx="18"
- gradientTransform="matrix(0.7756645,0,0,0.1405889,190.07986,39.819423)"
- r="5.5054998">
- <stop
- id="stop3454"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop3456"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient3584"
- y2="18.312"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="23"
- gradientTransform="matrix(0.7756645,0,0,0.7646744,184.54755,26.108893)"
- y1="18.312"
- x1="17.605" />
- <linearGradient
- id="linearGradient3587"
- y2="19"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="22"
- gradientTransform="matrix(0.7719782,0,0,0.7714112,183.99862,26.657021)"
- y1="25.27"
- x1="30.375999" />
- <radialGradient
- id="radialGradient3590"
- gradientUnits="userSpaceOnUse"
- cy="13.192"
- cx="25.017"
- gradientTransform="matrix(0.9613848,0,0,0.34890721,180.38815,37.309033)"
- r="9.7512999">
- <stop
- id="stop3173"
- stop-color="#fd0000"
- offset="0" />
- <stop
- id="stop3175"
- stop-color="#6a0000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient3592"
- y2="7.1352"
- gradientUnits="userSpaceOnUse"
- x2="22.035999"
- gradientTransform="matrix(0.9613848,0,0,0.7048595,180.38815,33.393554)"
- y1="15.984"
- x1="27.216999">
- <stop
- id="stop4404"
- stop-color="#e80000"
- offset="0" />
- <stop
- id="stop4406"
- stop-color="#490000"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3595"
- gradientUnits="userSpaceOnUse"
- cy="26.577"
- cx="26.625"
- gradientTransform="matrix(0.73586,-0.2418113,0.0892014,0.2638127,182.57311,45.114043)"
- r="12.5">
- <stop
- id="stop3191"
- stop-color="#e40000"
- offset="0" />
- <stop
- id="stop3193"
- stop-color="#490000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient3598"
- y2="27"
- gradientUnits="userSpaceOnUse"
- x2="19"
- gradientTransform="matrix(0.7756645,0,0,0.7646745,183.88405,26.618461)"
- y1="33"
- x1="29">
- <stop
- id="stop3222"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3224"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3602"
- y2="5.0353999"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="17.799"
- gradientTransform="matrix(0.9670244,0,0,0.5702668,180.48644,47.727063)"
- y1="12.038"
- x1="25.268999" />
- <linearGradient
- id="linearGradient3605"
- y2="9.2770004"
- gradientUnits="userSpaceOnUse"
- x2="21.440001"
- gradientTransform="matrix(1.012819,0,0,0.6841522,179.43901,46.474323)"
- y1="19.122"
- x1="29.455">
- <stop
- id="stop3230"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3232"
- stop-color="#cfcfcf"
- stop-opacity="0.67826086"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3609"
- gradientUnits="userSpaceOnUse"
- cy="22.614"
- cx="27.5"
- gradientTransform="matrix(1.1933298,-0.058821,0.07448995,1.468693,170.71373,13.374742)"
- r="6.5">
- <stop
- id="stop3348"
- stop-color="#737373"
- offset="0" />
- <stop
- id="stop3350"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3612"
- gradientUnits="userSpaceOnUse"
- cy="33.188"
- cx="37.375"
- gradientTransform="matrix(0.3155237,0,0,0.07812973,190.19969,40.509653)"
- r="14.625">
- <stop
- id="stop4335"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop4337"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient3615"
- y2="6.0247002"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- x2="7.9835"
- gradientTransform="translate(176,23.999997)"
- y1="3"
- x1="8.0108004" />
- <linearGradient
- id="linearGradient3617"
- y2="-0.4375"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="6"
- gradientTransform="translate(176,23.999997)"
- y1="7"
- x1="6" />
- <linearGradient
- id="linearGradient3621"
- y2="7.5625"
- gradientUnits="userSpaceOnUse"
- x2="40.984001"
- gradientTransform="matrix(0.670988,0,0,0.815295,175.24717,23.745139)"
- y1="7.5625"
- x1="6">
- <stop
- id="stop2921"
- stop-color="#a3a4a0"
- offset="0" />
- <stop
- id="stop2923"
- stop-color="#888a85"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3626"
- y2="6.8333998"
- gradientUnits="userSpaceOnUse"
- x2="14.284"
- gradientTransform="matrix(0.763497,0,0,0.668488,173.46175,24.479175)"
- y1="42.833"
- x1="21.042999">
- <stop
- id="stop2857"
- stop-color="#dfdfdf"
- offset="0" />
- <stop
- id="stop2859"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3628"
- y2="42.833"
- gradientUnits="userSpaceOnUse"
- x2="26.228001"
- gradientTransform="matrix(0.670988,0,0,0.668488,175.24717,24.479175)"
- y1="28.083"
- x1="26.612">
- <stop
- id="stop2875"
- stop-color="#939393"
- offset="0" />
- <stop
- id="stop2877"
- stop-color="#424242"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3631"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(-0.04471505,0,0,0.02740202,207.59635,38.625713)"
- r="117.14" />
- <radialGradient
- id="radialGradient3634"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(0.04471505,0,0,0.02740202,175.29135,38.625713)"
- r="117.14" />
- <linearGradient
- id="linearGradient3637"
- y2="609.51001"
- gradientUnits="userSpaceOnUse"
- x2="302.85999"
- gradientTransform="matrix(0.04471505,0,0,0.02740202,175.28255,38.625713)"
- y1="366.64999"
- x1="302.85999">
- <stop
- id="stop5050"
- stop-color="#000"
- stop-opacity="0"
- offset="0" />
- <stop
- id="stop5056"
- stop-color="#000"
- offset="0.5" />
- <stop
- id="stop5052"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <filter
- id="filter3391-8"
- height="1.336"
- width="1.1344"
- color-interpolation-filters="sRGB"
- y="-0.168"
- x="-0.067199998">
- <feGaussianBlur
- id="feGaussianBlur3393-1"
- stdDeviation="0.14" />
- </filter>
- <filter
- id="filter3436-4"
- height="1.2801698"
- width="1.1580106"
- color-interpolation-filters="sRGB"
- y="-0.14008497"
- x="-0.079005308">
- <feGaussianBlur
- id="feGaussianBlur3438-7"
- stdDeviation="0.3190069" />
- </filter>
- <radialGradient
- id="radialGradient5014"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- cy="11.669"
- cx="12.322"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-103.68635,-0.914852)"
- r="1.5" />
- <linearGradient
- id="linearGradient5016"
- y2="14.663"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="11.581"
- gradientTransform="translate(5.007851,1.000004)"
- y1="6.7284002"
- x1="11.669" />
- <radialGradient
- id="radialGradient5029"
- gradientUnits="userSpaceOnUse"
- cy="14.19"
- cx="18"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
- r="5.5054998">
- <stop
- id="stop3454-8"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop3456-9"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient5034"
- y2="18.312"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="23"
- gradientTransform="matrix(1.0342194,0,0,1.019566,24.571252,15.42453)"
- y1="18.312"
- x1="17.605" />
- <linearGradient
- id="linearGradient5037"
- y2="19"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="22"
- gradientTransform="matrix(1.0293043,0,0,1.0285483,23.839351,16.155369)"
- y1="25.27"
- x1="30.375999" />
- <radialGradient
- id="radialGradient5040"
- gradientUnits="userSpaceOnUse"
- cy="13.192"
- cx="25.017"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
- r="9.7512999">
- <stop
- id="stop3173-1"
- stop-color="#fd0000"
- offset="0" />
- <stop
- id="stop3175-0"
- stop-color="#6a0000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient5042"
- y2="7.1352"
- gradientUnits="userSpaceOnUse"
- x2="22.035999"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
- y1="15.984"
- x1="27.216999">
- <stop
- id="stop4404-11"
- stop-color="#e80000"
- offset="0" />
- <stop
- id="stop4406-0"
- stop-color="#490000"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient5045"
- gradientUnits="userSpaceOnUse"
- cy="26.577"
- cx="26.625"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
- r="12.5">
- <stop
- id="stop3191-5"
- stop-color="#e40000"
- offset="0" />
- <stop
- id="stop3193-0"
- stop-color="#490000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient5049"
- y2="27"
- gradientUnits="userSpaceOnUse"
- x2="19"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
- y1="33"
- x1="29">
- <stop
- id="stop3222-4"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3224-6"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient5052"
- y2="5.0353999"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="17.799"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025385,42.174275)"
- y1="12.038"
- x1="25.268999" />
- <linearGradient
- id="linearGradient5055"
- y2="9.2770004"
- gradientUnits="userSpaceOnUse"
- x2="21.440001"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
- y1="14.243"
- x1="27.681">
- <stop
- id="stop3230-5"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3232-8"
- stop-color="#cfcfcf"
- stop-opacity="0.67826086"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient5058"
- gradientUnits="userSpaceOnUse"
- cy="22.614"
- cx="27.5"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
- r="6.5">
- <stop
- id="stop3348-2"
- stop-color="#737373"
- offset="0" />
- <stop
- id="stop3350-8"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient5062"
- gradientUnits="userSpaceOnUse"
- cy="33.188"
- cx="37.375"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
- r="14.625">
- <stop
- id="stop4335-4"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop4337-0"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient5066"
- y2="7.5625"
- gradientUnits="userSpaceOnUse"
- x2="40.984001"
- gradientTransform="translate(8.018485,8.000004)"
- y1="7.5625"
- x1="6">
- <stop
- id="stop2921-2"
- stop-color="#a3a4a0"
- offset="0" />
- <stop
- id="stop2923-9"
- stop-color="#888a85"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient5080"
- y2="18.183001"
- gradientUnits="userSpaceOnUse"
- x2="18.962"
- gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
- y1="12"
- x1="11">
- <stop
- id="stop4769-8"
- stop-color="#729fcf"
- offset="0" />
- <stop
- id="stop4771-1"
- stop-color="#3465a4"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient5116"
- y2="6.8333998"
- gradientUnits="userSpaceOnUse"
- x2="14.284"
- gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
- y1="42.833"
- x1="21.042999">
- <stop
- id="stop2857-1"
- stop-color="#dfdfdf"
- offset="0" />
- <stop
- id="stop2859-1"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient5118"
- y2="42.833"
- gradientUnits="userSpaceOnUse"
- x2="26.228001"
- gradientTransform="translate(8.018485,8.000004)"
- y1="28.083"
- x1="26.612">
- <stop
- id="stop2875-3"
- stop-color="#939393"
- offset="0" />
- <stop
- id="stop2877-40"
- stop-color="#424242"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient5121"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(-0.06707255,0,0,0.041103,55.872233,29.938595)"
- r="117.14" />
- <radialGradient
- id="radialGradient5124"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(0.06707255,0,0,0.041103,7.414755,29.938595)"
- r="117.14" />
- <linearGradient
- id="linearGradient5127"
- y2="609.51001"
- gradientUnits="userSpaceOnUse"
- x2="302.85999"
- gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
- y1="366.64999"
- x1="302.85999">
- <stop
- id="stop5050-3"
- stop-color="#000"
- stop-opacity="0"
- offset="0" />
- <stop
- id="stop5056-38"
- stop-color="#000"
- offset="0.5" />
- <stop
- id="stop5052-0"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient5131"
- xlink:href="#linearGradient2804"
- gradientUnits="userSpaceOnUse"
- cy="11.669"
- cx="12.322"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- r="1.5" />
- <linearGradient
- id="linearGradient5133"
- y2="14.663"
- xlink:href="#linearGradient2791"
- gradientUnits="userSpaceOnUse"
- x2="11.581"
- y1="6.7284002"
- x1="11.669" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5127"
- id="linearGradient3483"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
- x1="302.85999"
- y1="366.64999"
- x2="302.85999"
- y2="609.51001" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3485"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06707255,0,0,0.041103,7.414755,29.938595)"
- cx="605.71002"
- cy="486.64999"
- r="117.14" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3487"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.06707255,0,0,0.041103,55.872233,29.938595)"
- cx="605.71002"
- cy="486.64999"
- r="117.14" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5116"
- id="linearGradient3489"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
- x1="21.042999"
- y1="42.833"
- x2="14.284"
- y2="6.8333998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5118"
- id="linearGradient3491"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(8.018485,8.000004)"
- x1="26.612"
- y1="28.083"
- x2="26.228001"
- y2="42.833" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5080"
- id="linearGradient3493"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
- x1="11"
- y1="12"
- x2="18.962"
- y2="18.183001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5066"
- id="linearGradient3495"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(8.018485,8.000004)"
- x1="6"
- y1="7.5625"
- x2="40.984001"
- y2="7.5625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5062"
- id="radialGradient3497"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
- cx="37.375"
- cy="33.188"
- r="14.625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5058"
- id="radialGradient3499"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
- cx="27.5"
- cy="22.614"
- r="6.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5055"
- id="linearGradient3501"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
- x1="27.681"
- y1="14.243"
- x2="21.440001"
- y2="9.2770004" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3503"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025385,42.174275)"
- x1="25.268999"
- y1="12.038"
- x2="17.799"
- y2="5.0353999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5049"
- id="linearGradient3505"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
- x1="29"
- y1="33"
- x2="19"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5045"
- id="radialGradient3507"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
- cx="26.625"
- cy="26.577"
- r="12.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5040"
- id="radialGradient3509"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
- cx="25.017"
- cy="13.192"
- r="9.7512999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5042"
- id="linearGradient3511"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
- x1="27.216999"
- y1="15.984"
- x2="22.035999"
- y2="7.1352" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3513"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0293043,0,0,1.0285483,23.839351,16.155369)"
- x1="30.375999"
- y1="25.27"
- x2="22"
- y2="19" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3515"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.019566,24.571252,15.42453)"
- x1="17.605"
- y1="18.312"
- x2="23"
- y2="18.312" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5029"
- id="radialGradient3517"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
- cx="18"
- cy="14.19"
- r="5.5054998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3468"
- id="linearGradient3519"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3470"
- id="linearGradient3522"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-103.68635,-0.914852)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3527"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(5.007851,1.000004)"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3529"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3531"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3533"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3535"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3537"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3540"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3542"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3544"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3546"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3548"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3550"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3552"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3554"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3556"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3468"
- id="linearGradient3558"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3470"
- id="linearGradient3560"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="linearGradient3562"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(179,23.999997)"
- x1="8.0108004"
- y1="3"
- x2="7.9835"
- y2="6.0247002" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3564"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(179,23.999997)"
- x1="6"
- y1="7"
- x2="6"
- y2="-0.4375" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5127"
- id="linearGradient3566"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06707255,0,0,0.041103,7.401555,29.938595)"
- x1="302.85999"
- y1="366.64999"
- x2="302.85999"
- y2="609.51001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5116"
- id="linearGradient3568"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.137871,0,0,1,5.357601,8.000004)"
- x1="21.042999"
- y1="42.833"
- x2="14.284"
- y2="6.8333998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5118"
- id="linearGradient3570"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(8.018485,8.000004)"
- x1="26.612"
- y1="28.083"
- x2="26.228001"
- y2="42.833" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5080"
- id="linearGradient3572"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4738147,0,0,1.1888231,5.556046,12.015783)"
- x1="11"
- y1="12"
- x2="18.962"
- y2="18.183001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5066"
- id="linearGradient3574"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(8.018485,8.000004)"
- x1="6"
- y1="7.5625"
- x2="40.984001"
- y2="7.5625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5062"
- id="radialGradient3576"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,32.107439,34.625545)"
- cx="37.375"
- cy="33.188"
- r="14.625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5058"
- id="radialGradient3578"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,6.126162,-1.554338)"
- cx="27.5"
- cy="22.614"
- r="6.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5055"
- id="linearGradient3580"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,19.194924,41.194555)"
- x1="27.681"
- y1="14.243"
- x2="21.440001"
- y2="9.2770004" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5049"
- id="linearGradient3582"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,23.686591,16.1036)"
- x1="29"
- y1="33"
- x2="19"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5045"
- id="radialGradient3584"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,21.938665,40.764725)"
- cx="26.625"
- cy="26.577"
- r="12.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5040"
- id="radialGradient3586"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,19.025384,30.358045)"
- cx="25.017"
- cy="13.192"
- r="9.7512999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5042"
- id="linearGradient3588"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,19.025384,25.137415)"
- x1="27.216999"
- y1="15.984"
- x2="22.035999"
- y2="7.1352" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient5029"
- id="radialGradient3591"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,31.947665,33.705235)"
- cx="18"
- cy="14.19"
- r="5.5054998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3468"
- id="linearGradient3593"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3470"
- id="linearGradient3595"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3597"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3599"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3601"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3603"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3605"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3607"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3610"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3612"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3614"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3616"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2804"
- id="radialGradient3618"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)"
- cx="12.322"
- cy="11.669"
- r="1.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2791"
- id="linearGradient3620"
- gradientUnits="userSpaceOnUse"
- x1="11.669"
- y1="6.7284002"
- x2="11.581"
- y2="14.663" />
- </defs>
- <image
- id="icon:16-4"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAAXNSR0IArs4c6QAAADBQTFRFAAAA AAB/AH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////D6xy1wAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwaCigtFqTK tAAAAEFJREFUCNdjYIADDhAAMdpBoAEoAGZ0ABk/QKACyPgPAhDGRwyGvDwa46OgIJQBhGCG4P+P 8ijmfC8HAhCjAwwYADFTPDeCcuc6AAAAAElFTkSuQmCC "
- height="16"
- width="16"
- y="248"
- x="344" />
- <image
- id="icon:16-8"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAAXNSR0IArs4c6QAAAHVQTFRFAAAA UX62gICAYIq9iIqFcJrIgqXMf6fRk6vKsbGxsrKymbbXo7rUuLi4obzapb7ZvLy8qsLcsMbdtMje tcjetsjdtMnevc7hv8/hzNjk0trk0tvl1tzk3+Po5+jq5+nq6Onq6+vr6+zs7Ozs7u7u+fn5//// +VQj9AAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJ TUUH2QwaCiUU/A888QAAAGJJREFUGNN1zscSgCAMRdGIHXvvBaP+/yc6A4ro6H2rnFUAPiJy573J 8dsgTM7gwEhMAj4qYMcrBZbwBY3dPSGrvAcM9WgOKpR5YfkKTCliq883JBFirzn498dKRS49QQ3g AMNqDhCiPYbhAAAAAElFTkSuQmCC "
- height="16"
- width="16"
- y="248"
- x="320" />
- <image
- id="icon:16-32"
- 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= "
- height="16"
- width="16"
- y="248"
- x="296" />
- <image
- id="icon:32-4"
- 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== "
- height="32"
- width="32"
- y="232"
- x="256" />
- <image
- id="icon:32-8"
- 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 "
- height="32"
- width="32"
- y="232"
- x="216" />
- <image
- id="icon:48-4"
- 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== "
- height="48"
- width="48"
- y="216"
- x="120" />
- <image
- id="icon:48-8"
- 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= "
- height="48"
- width="48"
- y="216"
- x="64" />
- <g
- id="g3639"
- transform="translate(0,208)">
- <rect
- id="rect6709"
- style="opacity:0.40206;color:#000000;fill:url(#linearGradient3637);fill-rule:nonzero"
- height="6.6547999"
- width="21.591"
- y="48.673"
- x="180.64999" />
- <path
- id="path6711"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3634);fill-rule:nonzero"
- 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"
- inkscape:connector-curvature="0" />
- <path
- id="path6713"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3631);fill-rule:nonzero"
- 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"
- inkscape:connector-curvature="0" />
- <path
- id="rect1975"
- 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"
- 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"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <rect
- id="rect2851"
- style="color:#000000;fill:#a4a4a4;fill-rule:evenodd"
- rx="0.45236"
- ry="0.44238001"
- height="2"
- width="26"
- y="51"
- x="178" />
- <path
- id="path2853"
- style="color:#000000;fill:#ffffff;fill-rule:evenodd"
- 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"
- inkscape:connector-curvature="0" />
- <path
- id="path2915"
- style="color:#000000;fill:url(#linearGradient3621);fill-rule:evenodd"
- 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"
- inkscape:connector-curvature="0" />
- <path
- id="path2917"
- 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"
- 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"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <rect
- id="rect3613"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="182.5" />
- <path
- id="path4331"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.07000002;fill:url(#radialGradient3612)" />
- <path
- id="path3159"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3609);fill-rule:evenodd" />
- <path
- id="path2385"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 206.5,35.531 a 4,1 0 0 1 -8,0 4,1 0 1 1 8,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3157"
- style="fill:url(#linearGradient3605);stroke:#888a85;stroke-width:1.01121235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3236"
- style="fill:none;stroke:url(#linearGradient3602);stroke-width:0.74999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3363"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- transform="matrix(0.7756645,0,0,0.7646744,196.29468,20.761409)"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3558);fill-rule:evenodd;stroke:url(#linearGradient3560);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
- <path
- id="path3163"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3598);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3179"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3595);fill-rule:evenodd" />
- <path
- id="path5788"
- style="fill:url(#radialGradient3590);stroke:url(#linearGradient3592);stroke-width:0.50549006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path9912"
- 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"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#linearGradient3587);stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3266"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3584);fill-rule:evenodd" />
- <path
- id="path3450"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#radialGradient3581);stroke-width:0.50549001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3358"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3395"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path3354"
- 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"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <rect
- id="rect13073"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="2.5"
- y="45"
- x="-183"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2895"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="33"
- x="191.5"
- style="opacity:0.47999998;fill:#888a85" />
- <path
- id="text9976"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3573)" />
- <rect
- id="rect12163"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="1.5"
- y="33"
- x="195"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12165"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="33"
- x="197"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12167"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="35"
- x="194.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12169"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="2.5"
- y="35"
- x="191.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12171"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="2"
- y="35"
- x="198.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12173"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="4.5"
- y="37"
- x="-201"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12175"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="1.5"
- y="37"
- x="-196"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12177"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="2.5"
- y="37"
- x="-194"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12179"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3.5"
- y="39"
- x="-196.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12181"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="4"
- y="39"
- x="-201"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect12183"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="1"
- y="39"
- x="-192.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13043"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3.5"
- y="41"
- x="-197.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13045"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3.5"
- y="41"
- x="-201.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13047"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="2"
- y="41"
- x="-193.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13055"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3.5"
- y="41"
- x="-191"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13057"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3"
- y="41"
- x="-187"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13059"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="2.5"
- y="41"
- x="-183"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13067"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="2"
- y="45"
- x="-193"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13069"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3.5"
- y="45"
- x="-190.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13071"
- rx="0.49739999"
- ry="0.5"
- transform="scale(-1,1)"
- width="3"
- y="45"
- x="-186.5"
- height="1"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13141"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="43"
- x="184.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13143"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="43"
- x="180.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13145"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="2"
- y="43"
- x="188.5"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13147"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3.5"
- y="43"
- x="191"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13149"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="3"
- y="43"
- x="195"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect13151"
- rx="0.49739999"
- ry="0.5"
- height="1"
- width="2.5"
- y="43"
- x="199"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect11947"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="185.5" />
- <rect
- id="rect11953"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="185.5" />
- <rect
- id="rect11955"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="188.5" />
- <rect
- id="rect11961"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="191.5" />
- <rect
- id="rect11967"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="194.5" />
- <rect
- id="rect11973"
- 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"
- rx="1"
- ry="0.80000001"
- height="4"
- width="2"
- stroke-miterlimit="4"
- y="26.5"
- x="197.5" />
- </g>
- <rect
- id="icon:32-32"
- height="32"
- width="32"
- y="232"
- x="176"
- style="fill:none" />
- <g
- id="g5163"
- transform="translate(0,208)">
- <rect
- id="rect6709-5"
- height="9.9821997"
- width="32.386002"
- y="45.008999"
- x="15.45"
- style="opacity:0.40206;fill:url(#linearGradient3566);fill-rule:nonzero" />
- <path
- id="path6711-6"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.40206185;fill:url(#radialGradient5124);fill-rule:nonzero" />
- <path
- id="path6713-6"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.40206185;fill:url(#radialGradient5121);fill-rule:nonzero" />
- <path
- id="rect1975-4"
- 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"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0"
- 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" />
- <rect
- id="rect3297"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="5.5209999"
- y="20.023001"
- x="41.435001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect3305"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.3464"
- y="30"
- x="35.914001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect3287"
- rx="0.50889999"
- ry="0.5"
- height="1"
- width="4.085"
- y="36"
- x="16.007999"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect3307"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="9.2649002"
- y="24"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect3309"
- rx="0.54680002"
- ry="0.5"
- height="1"
- width="3.8819001"
- y="26"
- x="32.584"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect3313"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="4.4168"
- y="34"
- x="43.643002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2940"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="3.3125999"
- y="36"
- x="30.583"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2915"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="5.5209999"
- y="30"
- x="42.539001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2885"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.9158001"
- y="28"
- x="37.018002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2893"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="6.6251998"
- y="35.977001"
- x="34.446999"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2895-0"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="5.5209999"
- y="20"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2897"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.2084"
- y="20.023001"
- x="38.122002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10425"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.2084"
- y="35.977001"
- x="42.176998"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10427"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.2084"
- y="36"
- x="45.852001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10429"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="22"
- x="42.539001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10431"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="22"
- x="37.018002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10433"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="22"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10435"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="24"
- x="42.539001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10437"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="28"
- x="34.810001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10439"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="3.3125999"
- y="30"
- x="39.226002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2919"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="26"
- x="37.57"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2921"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="26"
- x="40.882999"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2923"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="26"
- x="45.299"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2925"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="28"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2931"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="28"
- x="41.037998"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2933"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="28"
- x="43.245998"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2935"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="2.2084"
- y="30"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2938"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="6.6251998"
- y="36"
- x="21.749001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2942"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.2084"
- y="34"
- x="16.038"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2945"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="34"
- x="19.351"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2947"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="5.5209999"
- y="34"
- x="25.976"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2949"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="34"
- x="32.601002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2951"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="34.004002"
- x="38.131001"
- style="opacity:0.47999998;fill:#888a85" />
- <path
- id="text9976-0"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3572)" />
- <rect
- id="rect10463"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="4.4168"
- y="31.996"
- x="43.634998"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10465"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="31.996"
- x="32.592999"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10441"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="32"
- x="38.122002"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10445"
- transform="scale(-1,1)"
- rx="0.5521"
- ry="0.47170001"
- height="1"
- width="3.8517001"
- y="37.995998"
- x="-19.360001"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10457"
- transform="scale(-1,1)"
- rx="0.5521"
- ry="0.5"
- height="1"
- width="2.2084"
- y="38"
- x="-47.507999"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10459"
- transform="scale(-1,1)"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="37.995998"
- x="-43.652"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10461"
- transform="scale(-1,1)"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="5.5209999"
- y="37.995998"
- x="-37.027"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10472"
- transform="scale(-1,1)"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="37.995998"
- x="-30.402"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect10474"
- transform="scale(-1,1)"
- rx="0.59887999"
- ry="0.5"
- height="1"
- width="4.4168"
- y="38"
- x="-24.872"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- id="rect2851-4"
- rx="0.67938"
- ry="0.67938"
- height="3.0715001"
- width="39.048"
- y="47.868"
- x="11.996"
- style="fill:#a4a4a4;fill-rule:evenodd" />
- <path
- id="path2853-6"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- id="path2915-2"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3574);fill-rule:evenodd" />
- <path
- id="path2917-6"
- 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"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0"
- style="opacity:0.43859648;fill:none;stroke:#ffffff;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0" />
- <path
- id="path4331-7"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.07000002;fill:url(#radialGradient3576)" />
- <path
- id="path3420"
- 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)"
- 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"
- transform="matrix(1.2818465,0,0,0.9398128,19.025384,42.993515)"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3159-5"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3578);fill-rule:evenodd" />
- <path
- id="path3157-6"
- style="fill:url(#linearGradient3580);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3236-9"
- style="fill:none;stroke:url(#linearGradient5052);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3163-8"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3582);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3179-7"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3584);fill-rule:evenodd" />
- <path
- id="path5788-2"
- style="fill:url(#radialGradient3586);stroke:url(#linearGradient3588);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10032"
- 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"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#linearGradient5037);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3266-8"
- 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"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient5034);fill-rule:evenodd" />
- <path
- id="path2385-2"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 53.692,26.739 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.0215"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3358-9"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3450-9"
- 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"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#radialGradient3591);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3395-6"
- 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"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path3363-0"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- transform="matrix(1.0342194,0,0,1.019566,40.2341,7.694102)"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3593);fill-rule:evenodd;stroke:url(#linearGradient3595);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-8)" />
- <path
- id="path3354-2"
- 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"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path2878"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2880"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2882"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2884"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2886"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2888"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- id="path2890"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <rect
- id="rect2776"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="10.501"
- x="16.509001" />
- <path
- id="path2812"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- <g
- id="use4712"
- transform="translate(9.007851,1.000004)">
- <rect
- id="rect3952"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3954"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- id="use4714"
- transform="translate(13.007851,1.000004)">
- <rect
- id="rect3942"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3944"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- id="use4716"
- transform="translate(17.007851,1.000004)">
- <rect
- id="rect3932"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3934"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- id="use4718"
- transform="translate(21.007851,1.000004)">
- <rect
- id="rect3922"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3924"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- id="use4720"
- transform="translate(25.007851,1.000004)">
- <rect
- id="rect3912"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3914"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- id="use4722"
- transform="translate(29.007851,1.000004)">
- <rect
- id="rect3902"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3904"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <path
- id="path11649"
- 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"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <g
- id="use11651"
- transform="translate(33.007854,1.000004)">
- <rect
- id="rect3892"
- 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"
- rx="0.99900001"
- ry="1.5072"
- height="5.0440001"
- width="1.998"
- stroke-miterlimit="4"
- y="9.5010004"
- x="11.501" />
- <path
- id="path3894"
- 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"
- transform="translate(-0.21875,-0.109374)"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- </g>
- <rect
- id="icon:48-32"
- height="48"
- width="48"
- y="216"
- x="8.1870003"
- style="fill:none" />
- <g
- id="g3283"
- transform="matrix(5.1744545,0,0,5.174453,332.26137,-36.050363)">
- <rect
- x="15.45"
- y="45.008999"
- width="32.386002"
- height="9.9821997"
- id="rect3285"
- style="opacity:0.40206;fill:url(#linearGradient3483);fill-rule:nonzero" />
- <path
- 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"
- id="path3287"
- style="opacity:0.40206185;fill:url(#radialGradient3485);fill-rule:nonzero"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3289"
- style="opacity:0.40206185;fill:url(#radialGradient3487);fill-rule:nonzero"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- 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"
- id="path3291"
- 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"
- inkscape:connector-curvature="0" />
- <rect
- x="41.435001"
- y="20.023001"
- width="5.5209999"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3293"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="35.914001"
- y="30"
- width="2.3464"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3295"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="16.007999"
- y="36"
- width="4.085"
- height="1"
- ry="0.5"
- rx="0.50889999"
- id="rect3298"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="24"
- width="9.2649002"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3300"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.584"
- y="26"
- width="3.8819001"
- height="1"
- ry="0.5"
- rx="0.54680002"
- id="rect3302"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="43.643002"
- y="34"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3304"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="30.583"
- y="36"
- width="3.3125999"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3306"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="42.539001"
- y="30"
- width="5.5209999"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3308"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="37.018002"
- y="28"
- width="2.9158001"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3310"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="34.446999"
- y="35.977001"
- width="6.6251998"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3312"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="20"
- width="5.5209999"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3314"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="38.122002"
- y="20.023001"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3316"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="42.176998"
- y="35.977001"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3318"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="45.852001"
- y="36"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3320"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="42.539001"
- y="22"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3322"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="37.018002"
- y="22"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3324"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="22"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3326"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="42.539001"
- y="24"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3328"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="34.810001"
- y="28"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3330"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="39.226002"
- y="30"
- width="3.3125999"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3332"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="37.57"
- y="26"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3334"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="40.882999"
- y="26"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3336"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="45.299"
- y="26"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3338"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="28"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3340"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="41.037998"
- y="28"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3342"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="43.245998"
- y="28"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3344"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="30"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3346"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="21.749001"
- y="36"
- width="6.6251998"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3348"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="16.038"
- y="34"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3350"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="19.351"
- y="34"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3352"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="25.976"
- y="34"
- width="5.5209999"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3354"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.601002"
- y="34"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3356"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="38.131001"
- y="34.004002"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3358"
- style="opacity:0.47999998;fill:#888a85" />
- <path
- 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"
- id="path3360"
- style="fill:url(#linearGradient3493)"
- inkscape:connector-curvature="0" />
- <rect
- x="43.634998"
- y="31.996"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.5521"
- id="rect3362"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="32.592999"
- y="31.996"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3364"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="38.122002"
- y="32"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- id="rect3366"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-19.360001"
- y="37.995998"
- width="3.8517001"
- height="1"
- ry="0.47170001"
- rx="0.5521"
- transform="scale(-1,1)"
- id="rect3368"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-47.507999"
- y="38"
- width="2.2084"
- height="1"
- ry="0.5"
- rx="0.5521"
- transform="scale(-1,1)"
- id="rect3370"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-43.652"
- y="37.995998"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- transform="scale(-1,1)"
- id="rect3372"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-37.027"
- y="37.995998"
- width="5.5209999"
- height="1"
- ry="0.5"
- rx="0.59887999"
- transform="scale(-1,1)"
- id="rect3374"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-30.402"
- y="37.995998"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- transform="scale(-1,1)"
- id="rect3376"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="-24.872"
- y="38"
- width="4.4168"
- height="1"
- ry="0.5"
- rx="0.59887999"
- transform="scale(-1,1)"
- id="rect3378"
- style="opacity:0.47999998;fill:#888a85" />
- <rect
- x="11.996"
- y="47.868"
- width="39.048"
- height="3.0715001"
- ry="0.67938"
- rx="0.67938"
- id="rect3380"
- style="fill:#a4a4a4;fill-rule:evenodd" />
- <path
- 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"
- id="path3382"
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- 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"
- id="path3384"
- style="fill:url(#linearGradient3495);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- 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"
- id="path3386"
- inkscape:connector-curvature="0"
- style="opacity:0.43859648;fill:none;stroke:#ffffff;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0" />
- <path
- 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"
- id="path3388"
- style="opacity:0.07000002;fill:url(#radialGradient3497)"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- transform="matrix(1.2818465,0,0,0.9398128,19.025384,42.993515)"
- 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"
- 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)"
- id="path3390"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3392"
- style="fill:url(#radialGradient3499);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- 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"
- style="fill:url(#linearGradient3501);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3394"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- 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"
- style="fill:none;stroke:url(#linearGradient3503);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3396"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3398"
- style="fill:url(#linearGradient3505);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3400"
- style="fill:url(#radialGradient3507);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- 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"
- style="fill:url(#radialGradient3509);stroke:url(#linearGradient3511);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3402"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3404"
- style="fill:none;stroke:url(#linearGradient3513);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3406"
- style="fill:url(#linearGradient3515);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 53.692,26.739 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.0215"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3408"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- 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"
- id="path3410"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- stroke-miterlimit="0"
- 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"
- id="path3412"
- style="fill:none;stroke:url(#radialGradient3517);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3414"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- transform="matrix(1.0342194,0,0,1.019566,40.2341,7.694102)"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- id="path3416"
- style="fill:url(#linearGradient3519);fill-rule:evenodd;stroke:url(#linearGradient3522);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-8)"
- inkscape:connector-curvature="0" />
- <path
- 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"
- id="path3418"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- 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"
- id="path3421"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3423"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3425"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3427"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3429"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3431"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <path
- 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"
- id="path3433"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <rect
- x="16.509001"
- y="10.501"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3435" />
- <path
- 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"
- id="path3437"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- <g
- transform="translate(9.007851,1.000004)"
- id="g3439">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3441" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3443"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- transform="translate(13.007851,1.000004)"
- id="g3445">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3447" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3449"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- transform="translate(17.007851,1.000004)"
- id="g3451">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3453" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3455"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- transform="translate(21.007851,1.000004)"
- id="g3457">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3459" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3461"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- transform="translate(25.007851,1.000004)"
- id="g3463">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3465" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3467"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <g
- transform="translate(29.007851,1.000004)"
- id="g3469">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3471" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3473"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- <path
- 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"
- id="path3475"
- inkscape:connector-curvature="0"
- style="fill:#cbcbc9" />
- <g
- transform="translate(33.007854,1.000004)"
- id="g3477">
- <rect
- x="11.501"
- y="9.5010004"
- stroke-miterlimit="4"
- width="1.998"
- height="5.0440001"
- ry="1.5072"
- rx="0.99900001"
- 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"
- id="rect3479" />
- <path
- transform="translate(-0.21875,-0.109374)"
- 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"
- id="path3481"
- inkscape:connector-curvature="0"
- style="fill:#ffffff" />
- </g>
- </g>
- <rect
- id="icon:256-32"
- height="256"
- width="256"
- y="8"
- x="368"
- style="fill:none" />
- </svg>
|