MateriaYaruDark.svg 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:dc="http://purl.org/dc/elements/1.1/"
  4. xmlns:cc="http://creativecommons.org/ns#"
  5. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6. xmlns:svg="http://www.w3.org/2000/svg"
  7. xmlns="http://www.w3.org/2000/svg"
  8. xmlns:xlink="http://www.w3.org/1999/xlink"
  9. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  10. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  11. inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
  12. sodipodi:docname="MateriaYaruDark.svg"
  13. version="1"
  14. height="930"
  15. width="450"
  16. id="svg1500">
  17. <metadata
  18. id="metadata1115">
  19. <rdf:RDF>
  20. <cc:Work
  21. rdf:about="">
  22. <dc:format>image/svg+xml</dc:format>
  23. <dc:type
  24. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  25. </cc:Work>
  26. </rdf:RDF>
  27. </metadata>
  28. <sodipodi:namedview
  29. inkscape:current-layer="svg1500"
  30. inkscape:window-maximized="1"
  31. inkscape:window-y="27"
  32. inkscape:window-x="1920"
  33. inkscape:cy="857.11894"
  34. inkscape:cx="78.391003"
  35. inkscape:zoom="7.2172043"
  36. showgrid="false"
  37. id="namedview1113"
  38. inkscape:window-height="1007"
  39. inkscape:window-width="1920"
  40. inkscape:pageshadow="2"
  41. inkscape:pageopacity="0"
  42. guidetolerance="10"
  43. gridtolerance="10"
  44. objecttolerance="10"
  45. borderopacity="1"
  46. bordercolor="#666666"
  47. pagecolor="#ffffff"
  48. inkscape:document-rotation="0" />
  49. <defs
  50. id="defs92">
  51. <linearGradient
  52. id="linearGradient1939">
  53. <stop
  54. offset="0"
  55. style="stop-color:#000000;stop-opacity:1"
  56. id="stop1934" />
  57. <stop
  58. offset="1"
  59. style="stop-color:#000000;stop-opacity:0"
  60. id="stop1936" />
  61. </linearGradient>
  62. <linearGradient
  63. xlink:href="#linearGradient2243"
  64. gradientUnits="userSpaceOnUse"
  65. gradientTransform="rotate(-90,69,-69)"
  66. y2="41"
  67. y1="35"
  68. x2="-55"
  69. x1="-55"
  70. id="linearGradient2895" />
  71. <linearGradient
  72. id="linearGradient2243">
  73. <stop
  74. offset="0"
  75. style="stop-color:#000000;stop-opacity:0.6"
  76. id="stop30" />
  77. <stop
  78. offset="1"
  79. style="stop-color:#000000;stop-opacity:0"
  80. id="stop32" />
  81. </linearGradient>
  82. <linearGradient
  83. xlink:href="#linearGradient2243"
  84. gradientUnits="userSpaceOnUse"
  85. gradientTransform="rotate(-90,69,-69)"
  86. y2="3"
  87. y1="9"
  88. x2="-56"
  89. x1="-56"
  90. id="linearGradient2893" />
  91. <linearGradient
  92. xlink:href="#linearGradient2243"
  93. gradientUnits="userSpaceOnUse"
  94. gradientTransform="rotate(-90,48,-48)"
  95. y2="41"
  96. y1="35"
  97. x2="-55"
  98. x1="-55"
  99. id="linearGradient2829" />
  100. <linearGradient
  101. xlink:href="#linearGradient2243"
  102. gradientUnits="userSpaceOnUse"
  103. gradientTransform="rotate(-90,48,-48)"
  104. y2="3"
  105. y1="9"
  106. x2="-56"
  107. x1="-56"
  108. id="linearGradient2827" />
  109. <linearGradient
  110. xlink:href="#linearGradient2243"
  111. gradientUnits="userSpaceOnUse"
  112. gradientTransform="rotate(-90,24,-24)"
  113. y2="42"
  114. y1="35"
  115. x2="-55"
  116. x1="-55"
  117. id="linearGradient2315" />
  118. <linearGradient
  119. xlink:href="#linearGradient2243"
  120. gradientUnits="userSpaceOnUse"
  121. gradientTransform="rotate(-90,24,-24)"
  122. y2="2"
  123. y1="9"
  124. x2="-56"
  125. x1="-56"
  126. id="linearGradient2313" />
  127. <linearGradient
  128. xlink:href="#linearGradient2243"
  129. gradientUnits="userSpaceOnUse"
  130. gradientTransform="matrix(1,0,0,0.85714286,48,6)"
  131. y2="35"
  132. y1="42"
  133. x2="22"
  134. x1="22"
  135. id="linearGradient2307" />
  136. <linearGradient
  137. xlink:href="#linearGradient1959"
  138. gradientUnits="userSpaceOnUse"
  139. y2="621"
  140. y1="615"
  141. x2="315"
  142. x1="315"
  143. id="linearGradient2573" />
  144. <linearGradient
  145. id="linearGradient1959">
  146. <stop
  147. offset="0"
  148. style="stop-opacity:0.4;stop-color:#000000"
  149. id="stop72" />
  150. <stop
  151. offset="1"
  152. style="stop-opacity:0"
  153. id="stop74" />
  154. </linearGradient>
  155. <linearGradient
  156. xlink:href="#linearGradient1959"
  157. gradientUnits="userSpaceOnUse"
  158. gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)"
  159. y2="59"
  160. y1="47"
  161. x2="65.8"
  162. x1="65.8"
  163. id="linearGradient2561" />
  164. <linearGradient
  165. xlink:href="#linearGradient1959"
  166. gradientUnits="userSpaceOnUse"
  167. gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)"
  168. y2="59"
  169. y1="47"
  170. x2="65.8"
  171. x1="65.8"
  172. id="linearGradient1948" />
  173. <radialGradient
  174. xlink:href="#linearGradient1939"
  175. gradientUnits="userSpaceOnUse"
  176. gradientTransform="matrix(2.7685254e-7,-1.5000004,2.49999,4.6141892e-7,-1294.9942,758.74959)"
  177. fy="570"
  178. fx="125.833"
  179. r="4"
  180. cy="570"
  181. cx="125.833"
  182. id="radialGradient2027" />
  183. <linearGradient
  184. xlink:href="#linearGradient1939"
  185. gradientUnits="userSpaceOnUse"
  186. gradientTransform="matrix(1,0,0,2.6666667,0,-936.66667)"
  187. y2="562.75"
  188. y1="565"
  189. x2="152"
  190. x1="152"
  191. id="linearGradient2029" />
  192. <radialGradient
  193. xlink:href="#linearGradient1939"
  194. gradientUnits="userSpaceOnUse"
  195. gradientTransform="matrix(2.5,0,0,1.5,-267,-285)"
  196. fy="570"
  197. fx="178"
  198. r="4"
  199. cy="570"
  200. cx="178"
  201. id="radialGradient2031" />
  202. <linearGradient
  203. xlink:href="#linearGradient1939"
  204. gradientUnits="userSpaceOnUse"
  205. y2="589"
  206. y1="589"
  207. x2="120"
  208. x1="130"
  209. id="linearGradient2033" />
  210. <radialGradient
  211. xlink:href="#linearGradient1939"
  212. gradientUnits="userSpaceOnUse"
  213. gradientTransform="matrix(-2.5,0,0,-3,455,2475)"
  214. fy="619"
  215. fx="130"
  216. r="4"
  217. cy="619"
  218. cx="130"
  219. id="radialGradient2035" />
  220. <linearGradient
  221. xlink:href="#linearGradient1939"
  222. gradientUnits="userSpaceOnUse"
  223. gradientTransform="matrix(1,0,0,1.9999994,0,-627.9996)"
  224. y2="629"
  225. y1="623"
  226. x2="152"
  227. x1="152"
  228. id="linearGradient2037" />
  229. <linearGradient
  230. xlink:href="#linearGradient1939"
  231. gradientUnits="userSpaceOnUse"
  232. y2="594"
  233. y1="594"
  234. x2="188"
  235. x1="178"
  236. id="linearGradient2039" />
  237. <radialGradient
  238. xlink:href="#linearGradient1939"
  239. gradientUnits="userSpaceOnUse"
  240. gradientTransform="matrix(0,3,-2.5,0,1725.5,84)"
  241. fy="619"
  242. fx="178"
  243. r="4"
  244. cy="619"
  245. cx="178"
  246. id="radialGradient2041" />
  247. <linearGradient
  248. xlink:href="#linearGradient1959"
  249. gradientUnits="userSpaceOnUse"
  250. gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)"
  251. y2="59"
  252. y1="47"
  253. x2="65.8"
  254. x1="65.8"
  255. id="linearGradient3119" />
  256. <linearGradient
  257. xlink:href="#linearGradient1959"
  258. gradientUnits="userSpaceOnUse"
  259. gradientTransform="matrix(0.625,0,0,0.5,271.875,591.5)"
  260. y2="59"
  261. y1="47"
  262. x2="65.8"
  263. x1="65.8"
  264. id="linearGradient3121" />
  265. <linearGradient
  266. xlink:href="#linearGradient1959"
  267. gradientUnits="userSpaceOnUse"
  268. y2="621"
  269. y1="615"
  270. x2="315"
  271. x1="315"
  272. id="linearGradient3123" />
  273. <radialGradient
  274. xlink:href="#linearGradient2243"
  275. gradientUnits="userSpaceOnUse"
  276. gradientTransform="matrix(1.7142865,1.7298142e-6,-1.605387e-6,1.428569,113.85717,-12.999974)"
  277. fy="38.5"
  278. fx="34.5"
  279. r="3.5"
  280. cy="38.5"
  281. cx="34.5"
  282. id="radialGradient2891-3" />
  283. <radialGradient
  284. xlink:href="#linearGradient2243"
  285. gradientUnits="userSpaceOnUse"
  286. gradientTransform="matrix(9.3199758e-5,-1.4284355,1.7142859,1.1191095e-4,73.410166,47.51848)"
  287. fy="42.927"
  288. fx="3.867"
  289. r="3.5"
  290. cy="42.927"
  291. cx="3.867"
  292. id="radialGradient2889-6" />
  293. <linearGradient
  294. xlink:href="#linearGradient2243"
  295. gradientUnits="userSpaceOnUse"
  296. gradientTransform="matrix(1,0,0,0.85714286,138,6)"
  297. y2="36.167"
  298. y1="42"
  299. x2="22"
  300. x1="22"
  301. id="linearGradient2887-7" />
  302. <radialGradient
  303. xlink:href="#linearGradient2243"
  304. gradientUnits="userSpaceOnUse"
  305. gradientTransform="matrix(4.9548722e-5,1.7144805,-1.7142843,4.9005907e-5,296.78148,10.188642)"
  306. fy="72.207"
  307. fx="33.717"
  308. r="3.5"
  309. cy="72.207"
  310. cx="33.717"
  311. id="radialGradient2885-5" />
  312. <radialGradient
  313. xlink:href="#linearGradient2243"
  314. gradientUnits="userSpaceOnUse"
  315. gradientTransform="matrix(-1.7142857,-3.4226787e-7,3.42268e-7,-1.7142863,162.42855,184.57147)"
  316. fy="68"
  317. fx="9"
  318. r="3.5"
  319. cy="68"
  320. cx="9"
  321. id="radialGradient2883-3" />
  322. <linearGradient
  323. xlink:href="#linearGradient2243"
  324. gradientUnits="userSpaceOnUse"
  325. gradientTransform="matrix(1,0,0,1.4285714,138,-29.142857)"
  326. y2="72.2"
  327. y1="68.017"
  328. x2="22"
  329. x1="22"
  330. id="linearGradient2881-5" />
  331. <radialGradient
  332. xlink:href="#linearGradient2243"
  333. gradientUnits="userSpaceOnUse"
  334. gradientTransform="matrix(1.7142868,0,-1.6387821e-7,1.4285689,71.857106,-12.99991)"
  335. fy="38.5"
  336. fx="34.5"
  337. r="3.5"
  338. cy="38.5"
  339. cx="34.5"
  340. id="radialGradient2825-6" />
  341. <radialGradient
  342. xlink:href="#linearGradient2243"
  343. gradientUnits="userSpaceOnUse"
  344. gradientTransform="matrix(-5.0479473e-8,-1.4284356,1.7141935,0,31.414496,47.523286)"
  345. fy="42.927"
  346. fx="3.867"
  347. r="3.5"
  348. cy="42.927"
  349. cx="3.867"
  350. id="radialGradient2823-2" />
  351. <linearGradient
  352. xlink:href="#linearGradient2243"
  353. gradientUnits="userSpaceOnUse"
  354. gradientTransform="matrix(1,0,0,0.85714286,96,6)"
  355. y2="36.167"
  356. y1="42"
  357. x2="22"
  358. x1="22"
  359. id="linearGradient2821-9" />
  360. <radialGradient
  361. xlink:href="#linearGradient2243"
  362. gradientUnits="userSpaceOnUse"
  363. gradientTransform="matrix(5.0457504e-5,2.2859087,-1.7143359,3.7124805e-5,254.78518,-9.0773418)"
  364. fy="72.207"
  365. fx="33.717"
  366. r="3.5"
  367. cy="72.207"
  368. cx="33.717"
  369. id="radialGradient2819-1" />
  370. <radialGradient
  371. xlink:href="#linearGradient2243"
  372. gradientUnits="userSpaceOnUse"
  373. gradientTransform="matrix(-1.714287,-1.1439041e-6,1.5252037e-6,-2.2857133,120.42848,223.42852)"
  374. fy="68"
  375. fx="9"
  376. r="3.5"
  377. cy="68"
  378. cx="9"
  379. id="radialGradient2817-2" />
  380. <linearGradient
  381. xlink:href="#linearGradient2243"
  382. gradientUnits="userSpaceOnUse"
  383. gradientTransform="matrix(1,0,0,1.4285714,96,-29.142857)"
  384. y2="73.6"
  385. y1="68.017"
  386. x2="22"
  387. x1="22"
  388. id="linearGradient2815-7" />
  389. <radialGradient
  390. xlink:href="#linearGradient2243"
  391. gradientUnits="userSpaceOnUse"
  392. gradientTransform="matrix(2.0000004,1.5950509e-6,-1.6425007e-6,1.7142841,14.000048,-23.999998)"
  393. fy="38.5"
  394. fx="34.5"
  395. r="3.5"
  396. cy="38.5"
  397. cx="34.5"
  398. id="radialGradient2311-0" />
  399. <radialGradient
  400. xlink:href="#linearGradient2243"
  401. gradientUnits="userSpaceOnUse"
  402. gradientTransform="matrix(-1.3986322e-4,-1.7141228,1.9998909,-1.6308144e-4,-28.849155,48.634943)"
  403. fy="42.927"
  404. fx="3.867"
  405. r="3.5"
  406. cy="42.927"
  407. cx="3.867"
  408. id="radialGradient2309-9" />
  409. <radialGradient
  410. xlink:href="#linearGradient2243"
  411. gradientUnits="userSpaceOnUse"
  412. gradientTransform="matrix(5.6842508e-5,2.8574205,-2.0000574,3.8568439e-5,227.41603,-28.347403)"
  413. fy="72.207"
  414. fx="33.717"
  415. r="3.5"
  416. cy="72.207"
  417. cx="33.717"
  418. id="radialGradient2305-3" />
  419. <radialGradient
  420. xlink:href="#linearGradient2243"
  421. gradientUnits="userSpaceOnUse"
  422. gradientTransform="matrix(-1.9999999,-1.2258309e-7,1.7511868e-7,-2.8571434,74.999988,262.28575)"
  423. fy="68"
  424. fx="9"
  425. r="3.5"
  426. cy="68"
  427. cx="9"
  428. id="radialGradient2303-6" />
  429. <linearGradient
  430. xlink:href="#linearGradient2243"
  431. gradientUnits="userSpaceOnUse"
  432. gradientTransform="matrix(1,0,0,1.4285714,48,-29.142857)"
  433. y2="75"
  434. y1="68.017"
  435. x2="22"
  436. x1="22"
  437. id="linearGradient2301-0" />
  438. <linearGradient
  439. xlink:href="#linearGradient2243"
  440. gradientUnits="userSpaceOnUse"
  441. gradientTransform="rotate(-90)"
  442. y2="42"
  443. y1="35"
  444. x2="-55"
  445. x1="-55"
  446. id="linearGradient2247-6" />
  447. <linearGradient
  448. xlink:href="#linearGradient2243"
  449. gradientUnits="userSpaceOnUse"
  450. gradientTransform="rotate(-90)"
  451. y2="2"
  452. y1="9"
  453. x2="-56"
  454. x1="-56"
  455. id="linearGradient2249-2" />
  456. <radialGradient
  457. xlink:href="#linearGradient2243"
  458. gradientUnits="userSpaceOnUse"
  459. gradientTransform="matrix(2.0000013,2.5241975e-6,-2.4389091e-6,1.7142833,-33.999957,-24.000003)"
  460. fy="38.5"
  461. fx="34.5"
  462. r="3.5"
  463. cy="38.5"
  464. cx="34.5"
  465. id="radialGradient2265-6" />
  466. <radialGradient
  467. xlink:href="#linearGradient2243"
  468. gradientUnits="userSpaceOnUse"
  469. gradientTransform="matrix(-1.1672115e-4,-1.7141498,1.9999064,-1.3608017e-4,-76.849855,48.633983)"
  470. fy="42.927"
  471. fx="3.867"
  472. r="3.5"
  473. cy="42.927"
  474. cx="3.867"
  475. id="radialGradient2263-1" />
  476. <linearGradient
  477. xlink:href="#linearGradient2243"
  478. gradientUnits="userSpaceOnUse"
  479. gradientTransform="matrix(1,0,0,0.85714286,0,6)"
  480. y2="35"
  481. y1="42"
  482. x2="22"
  483. x1="22"
  484. id="linearGradient2245-8" />
  485. <radialGradient
  486. xlink:href="#linearGradient2243"
  487. gradientUnits="userSpaceOnUse"
  488. gradientTransform="matrix(-2.2025264e-4,2.2859086,-2.00005,-1.9368434e-4,179.42486,-9.0606708)"
  489. fy="72.207"
  490. fx="33.717"
  491. r="3.5"
  492. cy="72.207"
  493. cx="33.717"
  494. id="radialGradient2259-7" />
  495. <radialGradient
  496. xlink:href="#linearGradient2243"
  497. gradientUnits="userSpaceOnUse"
  498. gradientTransform="matrix(-1.9999999,0,0,-2.285715,26.999999,223.42862)"
  499. fy="68"
  500. fx="9"
  501. r="3.5"
  502. cy="68"
  503. cx="9"
  504. id="radialGradient2261-9" />
  505. <linearGradient
  506. xlink:href="#linearGradient2243"
  507. gradientUnits="userSpaceOnUse"
  508. gradientTransform="matrix(1,0,0,1.4285714,0,-29.142857)"
  509. y2="73.6"
  510. y1="68.017"
  511. x2="22"
  512. x1="22"
  513. id="linearGradient2251-2" />
  514. </defs>
  515. <g
  516. transform="translate(-110,-70)"
  517. id="menu-shadow-left">
  518. <path
  519. d="m 120,570 v 48 h 10 v -48 z"
  520. style="opacity:0.3;fill:url(#linearGradient2033);fill-opacity:1;stroke:none;stroke-width:8.55235863;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  521. id="path2017" />
  522. <path
  523. d="m 125.0002,570 h 5 v 48 h -5 z"
  524. style="fill:#484848;fill-opacity:1"
  525. id="path1993" />
  526. </g>
  527. <g
  528. transform="translate(-110,-70)"
  529. id="menu-shadow-topleft">
  530. <path
  531. d="m 120,560 v 10 h 10 v 0 -10 z"
  532. style="opacity:0.3;fill:url(#radialGradient2027);fill-opacity:1;stroke:none;stroke-width:2.1380899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  533. id="path2011" />
  534. <path
  535. d="m 130.0002,565 c -5,0 -4.9999,5 -4.9999,5 h 5 z"
  536. style="fill:#484848;fill-opacity:1"
  537. id="path1995" />
  538. <path
  539. d="m 130,565 c -5,0 -5,5 -5,5 h 0.12891 c 0.28896,-1.4561 1.29184,-4 4.87109,-4 z"
  540. style="opacity:0.1;fill:#ffffff;fill-opacity:1"
  541. id="path2075" />
  542. </g>
  543. <g
  544. transform="translate(-110,-70)"
  545. id="menu-shadow-top">
  546. <path
  547. d="m 130,560 v 10 h 48 v -10 z"
  548. style="opacity:0.3;fill:url(#linearGradient2029);fill-opacity:1;stroke:none;stroke-width:8.55234146;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  549. id="path2013" />
  550. <path
  551. d="m 178.0005,565 v 5 h -48 v -5 z"
  552. style="fill:#484848;fill-opacity:1"
  553. id="path1997" />
  554. <path
  555. d="m 130,565 v 1 h 48 v -1 z"
  556. style="opacity:0.1;fill:#ffffff;fill-opacity:1"
  557. id="path2077" />
  558. </g>
  559. <g
  560. transform="translate(-110,-70)"
  561. id="menu-shadow-topright">
  562. <path
  563. d="m 178,560 v 10 0 h 10 v -10 z"
  564. style="opacity:0.3;fill:url(#radialGradient2031);fill-opacity:1;stroke:none;stroke-width:2.1380899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  565. id="path2015" />
  566. <path
  567. d="m 183.0002,570 c 0,0 0,-5 -5.0003,-4.9999 v 5 z"
  568. style="fill:#484848;fill-opacity:1"
  569. id="path1999" />
  570. <path
  571. d="m 178,565 v 1 c 3.57947,-7e-5 4.58208,2.5439 4.87109,4 H 183 c 0,0 3e-4,-5.0001 -5,-5 z"
  572. style="opacity:0.1;fill:#ffffff;fill-opacity:1"
  573. id="path2079" />
  574. </g>
  575. <g
  576. transform="translate(-110,-70)"
  577. id="menu-shadow-right">
  578. <path
  579. d="m 178,570 v 48 h 10 v -48 z"
  580. style="opacity:0.3;fill:url(#linearGradient2039);fill-opacity:1;stroke:none;stroke-width:8.55235863;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  581. id="path2023" />
  582. <path
  583. d="m 183,570 h -5 v 48 h 5 z"
  584. style="fill:#484848;fill-opacity:1"
  585. id="path2001" />
  586. </g>
  587. <g
  588. transform="translate(-110,-70)"
  589. id="menu-shadow-bottomright">
  590. <path
  591. d="m 178,618 v 0 12 h 10 v -12 z"
  592. style="opacity:0.3;fill:url(#radialGradient2041);fill-opacity:1;stroke:none;stroke-width:2.39045715;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  593. id="path2025" />
  594. <path
  595. d="m 178,623 c 5.0002,0 4.9999,-5 4.9999,-5 h -5 z"
  596. style="fill:#484848;fill-opacity:1"
  597. id="path2003" />
  598. </g>
  599. <g
  600. transform="translate(-110,-70)"
  601. id="menu-shadow-bottom">
  602. <path
  603. d="m 130,618 v 12 h 48 v -12 z"
  604. style="opacity:0.3;fill:url(#linearGradient2037);fill-opacity:1;stroke:none;stroke-width:8.28075886;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  605. id="path2021" />
  606. <path
  607. d="m 130.00095,623 3e-4,-5 h 48 l -3e-4,5 z"
  608. style="fill:#484848;fill-opacity:1"
  609. id="path2005" />
  610. </g>
  611. <g
  612. transform="translate(-110,-70)"
  613. id="menu-shadow-bottomleft">
  614. <path
  615. d="m 120,618 v 12 h 10 v -12 0 z"
  616. style="opacity:0.3;fill:url(#radialGradient2035);fill-opacity:1;stroke:none;stroke-width:2.39045715;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  617. id="path2019" />
  618. <path
  619. d="m 125.0006,618 c 0,0 -4e-4,5 5.0003,4.9999 v -5 z"
  620. style="fill:#484848;fill-opacity:1"
  621. id="path2007" />
  622. </g>
  623. <g
  624. transform="matrix(1.5,0,0,1,4,-1)"
  625. id="progress-normal">
  626. <rect
  627. y="162"
  628. x="34"
  629. height="8"
  630. width="8"
  631. style="opacity:0.26;fill:#ffffff"
  632. id="rect94" />
  633. </g>
  634. <g
  635. transform="translate(-24,-27)"
  636. id="progress-normal-lefttyry">
  637. <rect
  638. y="162"
  639. x="26"
  640. height="8"
  641. width="8"
  642. style="opacity:0.001"
  643. id="rect97" />
  644. </g>
  645. <rect
  646. y="675"
  647. x="428"
  648. height="15"
  649. width="15"
  650. style="fill:#b45fae"
  651. id="tab-tear" />
  652. <rect
  653. ry="22.5"
  654. rx="22.5"
  655. y="730"
  656. x="25"
  657. height="45"
  658. width="45"
  659. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke-width:1"
  660. id="dial" />
  661. <circle
  662. r="5"
  663. cy="753"
  664. cx="134"
  665. style="fill:#b45fae"
  666. id="dial-handle" />
  667. <path
  668. d="m 399,324 v 30 h 30 v -30 z"
  669. style="fill:#282828"
  670. id="titlebar-normal" />
  671. <g
  672. transform="translate(-370.27778,1.1666667)"
  673. id="button-default-indicator">
  674. <rect
  675. y="87.5"
  676. x="375"
  677. height="25"
  678. width="25"
  679. style="opacity:0;fill:#7b7b7b"
  680. id="rect113" />
  681. <path
  682. d="m 396.25,86.25 -17.5,17.5 h 17.5 z"
  683. style="opacity:0.00100002;fill:#ffffff"
  684. id="path115" />
  685. </g>
  686. <rect
  687. y="870"
  688. x="355"
  689. height="30"
  690. width="30"
  691. style="fill:#2d2d2d"
  692. id="dock-normal" />
  693. <rect
  694. y="870"
  695. x="399.5"
  696. height="30"
  697. width="5"
  698. style="fill:#181818"
  699. id="dock-focused-left" />
  700. <rect
  701. transform="rotate(-90)"
  702. y="407"
  703. x="-867.5"
  704. height="30"
  705. width="5"
  706. style="fill:#181818"
  707. id="dock-focused-top" />
  708. <rect
  709. y="862.5"
  710. x="399.5"
  711. height="5"
  712. width="5"
  713. style="fill:#181818"
  714. id="dock-focused-topleft" />
  715. <rect
  716. y="862.5"
  717. x="439.5"
  718. height="5"
  719. width="5"
  720. style="fill:#181818"
  721. id="dock-focused-topright" />
  722. <rect
  723. y="870"
  724. x="439.5"
  725. height="30"
  726. width="5"
  727. style="fill:#181818"
  728. id="dock-focused-right" />
  729. <rect
  730. transform="rotate(-90)"
  731. y="407"
  732. x="-907.5"
  733. height="30"
  734. width="5"
  735. style="fill:#181818"
  736. id="dock-focused-bottom" />
  737. <rect
  738. y="902.5"
  739. x="439.5"
  740. height="5"
  741. width="5"
  742. style="fill:#181818"
  743. id="dock-focused-bottomright" />
  744. <rect
  745. y="902.5"
  746. x="399.5"
  747. height="5"
  748. width="5"
  749. style="fill:#181818"
  750. id="dock-focused-bottomleft" />
  751. <rect
  752. y="870"
  753. x="347.5"
  754. height="30"
  755. width="5"
  756. style="fill:#141b1e"
  757. id="dock-normal-left" />
  758. <rect
  759. y="862.5"
  760. x="347.5"
  761. height="5"
  762. width="5"
  763. style="fill:#141b1e"
  764. id="dock-normal-topleft" />
  765. <rect
  766. transform="rotate(90)"
  767. y="-385"
  768. x="862.5"
  769. height="30"
  770. width="5"
  771. style="fill:#141b1e"
  772. id="dock-normal-top" />
  773. <rect
  774. y="862.5"
  775. x="387.5"
  776. height="5"
  777. width="5"
  778. style="fill:#141b1e"
  779. id="dock-normal-topright" />
  780. <rect
  781. y="870"
  782. x="387.5"
  783. height="30"
  784. width="5"
  785. style="fill:#141b1e"
  786. id="dock-normal-right" />
  787. <rect
  788. y="902.5"
  789. x="387.5"
  790. height="5"
  791. width="5"
  792. style="fill:#141b1e"
  793. id="dock-normal-bottomright" />
  794. <rect
  795. transform="rotate(-90)"
  796. y="355"
  797. x="-907.5"
  798. height="30"
  799. width="5"
  800. style="fill:#141b1e"
  801. id="dock-normal-bottom" />
  802. <rect
  803. y="902.5"
  804. x="347.5"
  805. height="5"
  806. width="5"
  807. style="fill:#141b1e"
  808. id="dock-normal-bottomleft" />
  809. <path
  810. d="m 245,94 a 5,5 0 0 1 -10,0 5,5 0 1 1 10,0 z"
  811. style="opacity:0.18999999;fill:#ffffff"
  812. id="toolbar-handle" />
  813. <rect
  814. y="870"
  815. x="407"
  816. height="30"
  817. width="30"
  818. style="fill:#2d2d2d"
  819. id="dock-focused" />
  820. <g
  821. transform="translate(-0.5,7)"
  822. id="radio-checked-normal">
  823. <g
  824. id="g143">
  825. <path
  826. d="M 105 207 C 100.59356 207 97 210.59356 97 215 C 97.000005 219.40644 100.59356 223 105 223 C 109.40643 223 113 219.40643 113 215 C 113 210.59357 109.40643 207 105 207 z M 105 209 C 108.32567 209 111 211.67433 111 215 C 111 218.32567 108.32567 221 105 221 C 101.67432 221 99 218.32568 99 215 C 99.000003 211.67432 101.67432 209 105 209 z M 105 212 A 3 3 0 0 0 102 215 A 3 3 0 0 0 105 218 A 3 3 0 0 0 108 215 A 3 3 0 0 0 105 212 z"
  827. transform="translate(0.5,-7)"
  828. style="fill:#b45fae"
  829. id="path141" />
  830. </g>
  831. </g>
  832. <g
  833. transform="translate(101.5,-145.5)"
  834. id="menuitem-tearoff-focused">
  835. <rect
  836. transform="matrix(0,1,-1,0,0,0)"
  837. y="-229.5"
  838. x="686.5"
  839. height="9"
  840. width="7"
  841. style="opacity:0;fill:#141414"
  842. id="rect149" />
  843. <path
  844. d="m 227.2385,689 -2.2462,0 0,2 2.2462,0 z m -4.4924,0 -2.2461,0 0,2 2.2461,0 z"
  845. style="fill:#b45fae"
  846. id="path151" />
  847. </g>
  848. <g
  849. transform="matrix(1.1428571,0,0,1,-38.285716,-300)"
  850. style="opacity:0.01"
  851. id="splitter-grip-normal">
  852. <rect
  853. y="1039"
  854. x="275"
  855. height="32"
  856. width="7"
  857. style="opacity:0"
  858. id="rect154" />
  859. <rect
  860. y="1039"
  861. x="277.63"
  862. height="32"
  863. width="1.75"
  864. style="fill:#acb1bc"
  865. id="splitter-normal0" />
  866. </g>
  867. <g
  868. transform="translate(0,-300)"
  869. style="opacity:0"
  870. id="g160">
  871. <rect
  872. y="1112"
  873. x="350"
  874. height="10"
  875. width="10"
  876. id="grip-focused" />
  877. <rect
  878. y="1112"
  879. x="365"
  880. height="10"
  881. width="10"
  882. id="grip-pressed" />
  883. </g>
  884. <rect
  885. y="769"
  886. x="210"
  887. height="1"
  888. width="5"
  889. style="fill:#ffffff;opacity:0.26"
  890. id="slider-tick-normal" />
  891. <g
  892. transform="translate(-7.5,-63)"
  893. id="resize-grip-normal">
  894. <rect
  895. y="87.5"
  896. x="375"
  897. height="25"
  898. width="25"
  899. style="opacity:0;fill:#7b7b7b"
  900. id="rect163" />
  901. <path
  902. d="m 400,95 -17.5,17.5 17.5,0 z"
  903. style="opacity:0.001;fill:#ffffff"
  904. id="path165" />
  905. </g>
  906. <g
  907. transform="translate(42,-63)"
  908. id="resize-grip-focused">
  909. <rect
  910. y="87.5"
  911. x="375"
  912. height="25"
  913. width="25"
  914. style="opacity:0;fill:#7b7b7b"
  915. id="rect168" />
  916. <path
  917. d="m 398.5859,91.0859 c -7.80469,7.80469 -15.6094,15.6094 -23.4141,23.4141 8.9427,0 17.8854,0 26.8281,0 0,-8.94271 0,-17.8854 0,-26.8281 -1.13802,1.13802 -2.27604,2.27604 -3.41406,3.41406 z"
  918. style="opacity:0.001;fill:#b45fae"
  919. id="path170" />
  920. </g>
  921. <rect
  922. y="888"
  923. x="52"
  924. height="4"
  925. width="8"
  926. style="fill:#e95420;opacity:0.60000005"
  927. id="itemview-pressed-top" />
  928. <rect
  929. y="900"
  930. x="52"
  931. height="4"
  932. width="8"
  933. style="fill:#e95420;opacity:0.60000005"
  934. id="itemview-pressed-bottom" />
  935. <path
  936. d="m 52,892 8,0 0,8 -8,0 z"
  937. style="fill:#e95420;opacity:0.60000005"
  938. id="itemview-pressed" />
  939. <path
  940. d="m 60,888 c 4,0 4,4 4,4 h -4 z"
  941. style="fill:#e95420;opacity:0.60000005"
  942. id="itemview-pressed-topright" />
  943. <path
  944. d="m 60,900 h 4 c 0,0 0,4 -4,4 z"
  945. style="fill:#e95420;opacity:0.60000005"
  946. id="itemview-pressed-bottomright" />
  947. <rect
  948. y="892"
  949. x="60"
  950. height="8"
  951. width="4"
  952. style="fill:#e95420;opacity:0.60000005"
  953. id="itemview-pressed-right" />
  954. <rect
  955. y="892"
  956. x="48"
  957. height="8"
  958. width="4"
  959. style="fill:#e95420;opacity:0.60000005"
  960. id="itemview-pressed-left" />
  961. <path
  962. d="m 52,888 v 4 h -4 c 0,0 0,-4 4,-4 z"
  963. style="fill:#e95420;opacity:0.60000005"
  964. id="itemview-pressed-topleft" />
  965. <path
  966. d="m 48,900 h 4 v 4 c -4,0 -4,-4 -4,-4 z"
  967. style="fill:#e95420;opacity:0.60000005"
  968. id="itemview-pressed-bottomleft" />
  969. <rect
  970. y="888"
  971. x="71"
  972. height="4"
  973. width="8"
  974. style="fill:#e95420;opacity:0.4"
  975. id="itemview-toggled-top" />
  976. <rect
  977. y="900"
  978. x="71"
  979. height="4"
  980. width="8"
  981. style="fill:#e95420;opacity:0.4"
  982. id="itemview-toggled-bottom" />
  983. <path
  984. d="m 71,892 h 8 v 8 h -8 z"
  985. style="fill:#e95420;opacity:0.4"
  986. id="itemview-toggled" />
  987. <rect
  988. y="892"
  989. x="79"
  990. height="8"
  991. width="4"
  992. style="fill:#e95420;opacity:0.4"
  993. id="itemview-toggled-right" />
  994. <path
  995. d="m 79,888 c 4,0 4,4 4,4 h -4 z"
  996. style="fill:#e95420;opacity:0.4"
  997. id="itemview-toggled-topright" />
  998. <path
  999. d="m 79,900 h 4 c 0,0 0,4 -4,4 z"
  1000. style="fill:#e95420;opacity:0.4"
  1001. id="itemview-toggled-bottomright" />
  1002. <rect
  1003. y="892"
  1004. x="67"
  1005. height="8"
  1006. width="4"
  1007. style="fill:#e95420;opacity:0.4"
  1008. id="itemview-toggled-left" />
  1009. <path
  1010. d="m 71,888 v 4 h -4 c 0,0 0,-4 4,-4 z"
  1011. style="fill:#e95420;opacity:0.4"
  1012. id="itemview-toggled-topleft" />
  1013. <path
  1014. d="m 67,900 h 4 v 4 c -4,0 -4,-4 -4,-4 z"
  1015. style="fill:#e95420;opacity:0.4"
  1016. id="itemview-toggled-bottomleft" />
  1017. <path
  1018. d="m 410,147 0,10 10,0 0,-10 -10,0 z"
  1019. id="expand-progress-pattern-normal" />
  1020. <path
  1021. d="m 410,157 0,10 10,0 0,-10 -10,0 z"
  1022. id="expand-progress-normal" />
  1023. <rect
  1024. y="812"
  1025. x="337"
  1026. height="10"
  1027. width="10"
  1028. style="opacity:0"
  1029. id="grip-normal" />
  1030. <g
  1031. transform="translate(-117,123.00005)"
  1032. style="opacity:1"
  1033. id="menuitem-normal-left">
  1034. <path
  1035. d="M 184,504.00005 V 512 h -8 v -8 z"
  1036. style="opacity:0.07;fill:#ffffff"
  1037. id="menuitem-normal-left2" />
  1038. </g>
  1039. <g
  1040. transform="translate(-117,123.00005)"
  1041. style="opacity:1"
  1042. id="menuitem-normal-bottomleft">
  1043. <path
  1044. d="m 184,520 c -8,0 -8,-8 -8,-8 h 8 z"
  1045. style="opacity:0.07;fill:#ffffff"
  1046. id="menuitem-normal-bottomleft2" />
  1047. </g>
  1048. <g
  1049. transform="translate(-117,123.00005)"
  1050. style="opacity:1"
  1051. id="menuitem-normal-topleft">
  1052. <path
  1053. d="m 176,504 c 0,0 0,-8 8,-8 v 8 z"
  1054. style="opacity:0.07;fill:#ffffff"
  1055. id="menuitem-normal-topleft2" />
  1056. </g>
  1057. <g
  1058. transform="translate(-142,123.00005)"
  1059. style="opacity:1"
  1060. id="menuitem-normal-bottom">
  1061. <path
  1062. d="m 209,512 h 7.99995 v 8 h -8 z"
  1063. style="opacity:0.07;fill:#ffffff"
  1064. id="menuitem-normal-bottom2" />
  1065. </g>
  1066. <g
  1067. transform="translate(-142,123.00005)"
  1068. style="opacity:1"
  1069. id="menuitem-normal-top">
  1070. <path
  1071. d="M 216.99995,504 H 209 v -8 h 8 z"
  1072. style="opacity:0.07;fill:#ffffff"
  1073. id="menuitem-normal-top2" />
  1074. </g>
  1075. <path
  1076. d="m 67,635.00005 v -8 h 8 v 8 z"
  1077. style="opacity:0.07;fill:#ffffff"
  1078. id="menuitem-normal" />
  1079. <g
  1080. transform="translate(-117,123.00005)"
  1081. style="opacity:1"
  1082. id="menuitem-normal-right">
  1083. <path
  1084. d="m 192,504 v 7.99995 h 8 v -8 z"
  1085. style="opacity:0.07;fill:#ffffff"
  1086. id="menuitem-normal-right2" />
  1087. </g>
  1088. <g
  1089. transform="translate(-117,123.00005)"
  1090. style="opacity:1"
  1091. id="menuitem-normal-bottomright">
  1092. <path
  1093. d="M 192,519.99989 C 200,520 199.99979,512 199.99979,512 H 192 Z"
  1094. style="opacity:0.07;fill:#ffffff"
  1095. id="menuitem-normal-bottomright2" />
  1096. </g>
  1097. <g
  1098. transform="translate(-117,123.00005)"
  1099. style="opacity:1"
  1100. id="menuitem-normal-topright">
  1101. <path
  1102. d="M 199.99979,503.99989 C 199.99979,503.99989 200,496 192,496 v 7.99978 z"
  1103. style="opacity:0.07;fill:#ffffff"
  1104. id="menuitem-normal-topright2" />
  1105. </g>
  1106. <rect
  1107. y="147"
  1108. x="430"
  1109. height="10"
  1110. width="10"
  1111. id="expand-lineedit-normal" />
  1112. <path
  1113. d="m 285,584 v 32 h 32 v -32 z"
  1114. style="fill:#343434"
  1115. id="tabframe-normal" />
  1116. <g
  1117. transform="matrix(0.8,0,0,0.98461538,264.0002,535.99842)"
  1118. id="tabframe-normal-left">
  1119. <path
  1120. d="M 26.25,81.2514 V 48.7516 h -5 v 32.5 z"
  1121. style="fill:#343434"
  1122. id="path213" />
  1123. <path
  1124. d="m 21.25,48.7516 v 32.5 h 2.49975 v -32.5 z"
  1125. style="fill:#343434"
  1126. id="path215" />
  1127. </g>
  1128. <g
  1129. transform="matrix(0.8,0,0,0.8,264.0002,546.99872)"
  1130. id="tabframe-normal-topleft">
  1131. <path
  1132. d="m 26.25,41.2516 h -5 v 5 h 5 z"
  1133. style="fill:#343434"
  1134. id="path218" />
  1135. <path
  1136. d="m 26.25,41.2516 h -5 v 5 h 2.49987 l -3e-4,-2.5 h 2.50013 z"
  1137. style="fill:#343434"
  1138. id="path220" />
  1139. </g>
  1140. <rect
  1141. y="642"
  1142. x="9"
  1143. height="2"
  1144. width="2"
  1145. style="opacity:0.001;stroke-width:0.2"
  1146. id="tab-normal" />
  1147. <rect
  1148. y="640"
  1149. x="9"
  1150. height="2"
  1151. width="2"
  1152. style="opacity:0.001;stroke-width:0.2"
  1153. id="tab-normal-top" />
  1154. <rect
  1155. y="642"
  1156. x="11"
  1157. height="2"
  1158. width="2"
  1159. style="opacity:0.001;stroke-width:0.2"
  1160. id="tab-normal-right" />
  1161. <rect
  1162. y="640"
  1163. x="11"
  1164. height="2"
  1165. width="2"
  1166. style="opacity:0.001;stroke-width:0.2"
  1167. id="tab-normal-topright" />
  1168. <rect
  1169. y="642"
  1170. x="7"
  1171. height="2"
  1172. width="2"
  1173. style="opacity:0.001;stroke-width:0.2"
  1174. id="tab-normal-left" />
  1175. <rect
  1176. y="640"
  1177. x="7"
  1178. height="2"
  1179. width="2"
  1180. style="opacity:0.001;stroke-width:0.2"
  1181. id="tab-normal-topleft" />
  1182. <rect
  1183. y="644"
  1184. x="9"
  1185. height="2"
  1186. width="2"
  1187. style="opacity:0.001;stroke-width:0.2"
  1188. id="tab-normal-bottom" />
  1189. <rect
  1190. y="644"
  1191. x="11"
  1192. height="2"
  1193. width="2"
  1194. style="opacity:0.001;stroke-width:0.2"
  1195. id="tab-normal-bottomright" />
  1196. <rect
  1197. y="644"
  1198. x="7"
  1199. height="2"
  1200. width="2"
  1201. style="opacity:0.001;stroke-width:0.2"
  1202. id="tab-normal-bottomleft" />
  1203. <path
  1204. d="m 97.0002,500 h 5 v 48 h -5 z"
  1205. style="fill:#484848;fill-opacity:1"
  1206. id="menu-normal-left" />
  1207. <path
  1208. d="m 102.0002,495 c -5,0 -4.9999,5 -4.9999,5 h 5 z"
  1209. style="fill:#484848;fill-opacity:1"
  1210. id="menu-normal-topleft" />
  1211. <path
  1212. d="m 150.0005,495 v 5 h -48 v -5 z"
  1213. style="fill:#484848;fill-opacity:1"
  1214. id="menu-normal-top" />
  1215. <path
  1216. d="m 155.0002,500 c 0,0 0,-5 -5.0003,-4.9999 v 5 z"
  1217. style="fill:#484848;fill-opacity:1"
  1218. id="menu-normal-topright" />
  1219. <path
  1220. d="m 155,500 h -5 v 48 h 5 z"
  1221. style="fill:#484848;fill-opacity:1"
  1222. id="menu-normal-right" />
  1223. <path
  1224. d="m 150,553 c 5.0002,0 4.9999,-5 4.9999,-5 h -5 z"
  1225. style="fill:#484848;fill-opacity:1"
  1226. id="menu-normal-bottomright" />
  1227. <path
  1228. d="m 102.00095,553 3e-4,-5 h 48 l -3e-4,5 z"
  1229. style="fill:#484848;fill-opacity:1"
  1230. id="menu-normal-bottom" />
  1231. <path
  1232. d="m 97.0006,548 c 0,0 -4e-4,5 5.0003,4.9999 v -5 z"
  1233. style="fill:#484848;fill-opacity:1"
  1234. id="menu-normal-bottomleft" />
  1235. <rect
  1236. y="500"
  1237. x="102"
  1238. height="48"
  1239. width="48"
  1240. style="fill:#484848;fill-opacity:1"
  1241. id="menu-normal" />
  1242. <g
  1243. transform="matrix(1.1428571,0,0,1,-10.285716,-300)"
  1244. style="opacity:0.01"
  1245. id="splitter-grip-focused">
  1246. <rect
  1247. y="1039"
  1248. x="275"
  1249. height="32"
  1250. width="7"
  1251. style="opacity:0"
  1252. id="rect255" />
  1253. <rect
  1254. y="1039"
  1255. x="277.63"
  1256. height="32"
  1257. width="1.75"
  1258. style="fill:#e4e5e8"
  1259. id="rect257" />
  1260. </g>
  1261. <use
  1262. xlink:href="#splitter-grip-focused"
  1263. transform="translate(30,0)"
  1264. y="0"
  1265. x="0"
  1266. height="100%"
  1267. width="100%"
  1268. id="splitter-grip-pressed" />
  1269. <path
  1270. d="m 90,104 h -6 v 6 h 6 z"
  1271. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1272. id="header-normal-bottom" />
  1273. <path
  1274. d="m 84,104 h -6 v 6 h 6 z"
  1275. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1276. id="header-normal-bottomleft" />
  1277. <path
  1278. d="m 96,104 h -6 v 6 h 6 z"
  1279. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1280. id="header-normal-bottomright" />
  1281. <path
  1282. d="M 84,104 V 97.999996 H 78 V 104 Z"
  1283. style="opacity:0.00100002"
  1284. id="header-normal-left" />
  1285. <path
  1286. d="M 96,104 V 97.999996 H 90 V 104 Z"
  1287. style="opacity:0.00100002"
  1288. id="header-normal-right" />
  1289. <path
  1290. d="m 90,91.999996 h -6 v 6 h 6 z"
  1291. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1292. id="header-normal-top" />
  1293. <path
  1294. d="m 96,91.999996 h -6 v 6 h 6 z"
  1295. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1296. id="header-normal-topright" />
  1297. <path
  1298. d="m 84,91.999996 h -6 v 6 h 6 z"
  1299. style="opacity:0.12000002;fill:#ffffff;fill-opacity:1"
  1300. id="header-normal-topleft" />
  1301. <path
  1302. d="M 90,104 V 97.999996 H 84 V 104 Z"
  1303. style="fill:#343434"
  1304. id="header-normal" />
  1305. <path
  1306. d="m 116,92 h -6 v 6 h 6 z"
  1307. style="opacity:0.24;fill:#b45fae;fill-opacity:1"
  1308. id="header-pressed" />
  1309. <rect
  1310. y="157"
  1311. x="420"
  1312. height="10"
  1313. width="10"
  1314. id="expand-combo-normal" />
  1315. <g
  1316. transform="matrix(0,-1,0.66666667,0,-575.33334,816.0001)"
  1317. id="tabBarFrame-normal-bottom">
  1318. <path
  1319. d="m 174,921.5 h -4 l 1.3e-4,-6 H 174 Z"
  1320. style="opacity:0"
  1321. id="path272" />
  1322. <path
  1323. d="m 172,921.5 h -2 l 1e-4,-6 h 2 z"
  1324. style="fill:#3e3e3e;fill-opacity:1;opacity:0.12"
  1325. id="path274" />
  1326. </g>
  1327. <path
  1328. d="m 358,598 h 8 v 8 h -8 z"
  1329. style="fill:#616161;stroke-width:0.51639777;fill-opacity:1;opacity:0.9"
  1330. id="tooltip-normal-left" />
  1331. <path
  1332. d="m 366.00024,589.99951 c 0,0 -8.00024,4.9e-4 -8.00024,8.00048 h 8 z"
  1333. style="fill:#616161;stroke-width:1.60000002;fill-opacity:1;opacity:0.9"
  1334. id="tooltip-normal-topleft" />
  1335. <path
  1336. d="m 374.00024,589.99951 v 8 h -8 v -8 z"
  1337. style="fill:#616161;stroke-width:0.51639777;fill-opacity:1;opacity:0.9"
  1338. id="tooltip-normal-top" />
  1339. <path
  1340. d="m 382.00024,597.99975 c 0,0 -2.4e-4,-7.99975 -8,-8.00024 v 8 z"
  1341. style="fill:#616161;stroke-width:1.59995198;fill-opacity:1;opacity:0.9"
  1342. id="tooltip-normal-topright" />
  1343. <path
  1344. d="m 382.00024,597.99951 h -8 v 8 l 8,-5e-5 z"
  1345. style="fill:#616161;stroke-width:0.51639777;fill-opacity:1;opacity:0.9"
  1346. id="tooltip-normal-right" />
  1347. <path
  1348. d="m 374,613.99951 c 8,4.9e-4 8,-7.99951 8.00024,-8 h -8 z"
  1349. style="fill:#616161;stroke-width:1.59995198;fill-opacity:1;opacity:0.9"
  1350. id="tooltip-normal-bottomright" />
  1351. <path
  1352. d="m 366.00024,613.99951 5e-5,-8 h 7.99995 l -5e-5,8 z"
  1353. style="fill:#616161;stroke-width:0.51639616;fill-opacity:1;opacity:0.9"
  1354. id="tooltip-normal-bottom" />
  1355. <path
  1356. d="M 358,605.99976 C 358,614 366,614 366,614 v -8 z"
  1357. style="fill:#616161;stroke-width:1.59995198;fill-opacity:1;opacity:0.9"
  1358. id="tooltip-normal-bottomleft" />
  1359. <rect
  1360. y="598"
  1361. x="366"
  1362. height="8"
  1363. width="8"
  1364. style="fill:#616161;stroke-width:0.16666667;fill-opacity:1;opacity:0.9"
  1365. id="tooltip-normal" />
  1366. <rect
  1367. y="642"
  1368. x="17"
  1369. height="2"
  1370. width="2"
  1371. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  1372. id="tab-toggled" />
  1373. <rect
  1374. y="640"
  1375. x="17"
  1376. height="2"
  1377. width="2"
  1378. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  1379. id="tab-toggled-top" />
  1380. <rect
  1381. y="644"
  1382. x="17"
  1383. height="2"
  1384. width="2"
  1385. style="fill:#e95420;stroke-width:0.2"
  1386. id="tab-toggled-bottom" />
  1387. <rect
  1388. y="644"
  1389. x="19"
  1390. height="2"
  1391. width="2"
  1392. style="fill:#e95420;stroke-width:0.2"
  1393. id="tab-toggled-bottomright" />
  1394. <rect
  1395. y="644"
  1396. x="15"
  1397. height="2"
  1398. width="2"
  1399. style="fill:#e95420;stroke-width:0.19999999"
  1400. id="tab-toggled-bottomleft" />
  1401. <use
  1402. xlink:href="#tabframe-normal-left"
  1403. transform="matrix(-1,0,0,1,602,0)"
  1404. y="0"
  1405. x="0"
  1406. height="100%"
  1407. width="100%"
  1408. id="tabframe-normal-right" />
  1409. <use
  1410. xlink:href="#tabframe-normal-topleft"
  1411. transform="matrix(-1,0,0,1,602,0)"
  1412. y="0"
  1413. x="0"
  1414. height="100%"
  1415. width="100%"
  1416. id="tabframe-normal-topright" />
  1417. <use
  1418. xlink:href="#tabframe-normal-left"
  1419. transform="rotate(90,301.00003,599.99987)"
  1420. y="0"
  1421. x="0"
  1422. height="100%"
  1423. width="100%"
  1424. id="tabframe-normal-top" />
  1425. <use
  1426. xlink:href="#tabframe-normal-left"
  1427. transform="rotate(-90,301,600)"
  1428. y="0"
  1429. x="0"
  1430. height="100%"
  1431. width="100%"
  1432. id="tabframe-normal-bottom" />
  1433. <use
  1434. xlink:href="#tabframe-normal-topleft"
  1435. transform="rotate(-90,301.0001,600.0001)"
  1436. y="0"
  1437. x="0"
  1438. height="100%"
  1439. width="100%"
  1440. id="tabframe-normal-bottomleft" />
  1441. <use
  1442. xlink:href="#tabframe-normal-topleft"
  1443. transform="rotate(180,301.0001,600)"
  1444. y="0"
  1445. x="0"
  1446. height="100%"
  1447. width="100%"
  1448. id="tabframe-normal-bottomright" />
  1449. <use
  1450. xlink:href="#tabBarFrame-normal-bottom"
  1451. transform="translate(4.0000007)"
  1452. y="0"
  1453. x="0"
  1454. height="100%"
  1455. width="100%"
  1456. id="tabBarFrame-normal-bottomright" />
  1457. <use
  1458. xlink:href="#tabBarFrame-normal-bottom"
  1459. transform="translate(-3.9999993)"
  1460. y="0"
  1461. x="0"
  1462. height="100%"
  1463. width="100%"
  1464. id="tabBarFrame-normal-bottomleft" />
  1465. <path
  1466. d="m 124,92 h -6 v 6 h 6 z"
  1467. style="fill:#b45fae"
  1468. id="header-toggled" />
  1469. <path
  1470. d="m 108,92 h -6 v 6 h 6 z"
  1471. style="opacity:0.08;fill:#ffffff"
  1472. id="header-focused" />
  1473. <g
  1474. transform="translate(-0.5,7)"
  1475. id="radio-normal">
  1476. <path
  1477. d="m 30.5,200 c -4.40644,0 -8,3.59356 -8,8 0,4.40644 3.59356,8 8,8 4.40643,0 8,-3.59357 8,-8 0,-4.40643 -3.59357,-8 -8,-8 z m 0,2 c 3.32567,0 6,2.67433 6,6 0,3.32567 -2.67433,6 -6,6 -3.32568,0 -6,-2.67432 -6,-6 0,-3.32568 2.67432,-6 6,-6 z"
  1478. style="opacity:0.4;fill:#ffffff"
  1479. id="path372" />
  1480. </g>
  1481. <g
  1482. transform="translate(37.5,7)"
  1483. id="radio-focused">
  1484. <path
  1485. d="m 68.5,200 c -4.40644,0 -8,3.59356 -8,8 0,4.40644 3.59356,8 8,8 4.40643,0 8,-3.59357 8,-8 0,-4.40643 -3.59357,-8 -8,-8 z m 0,2 c 3.32567,0 6,2.67433 6,6 0,3.32567 -2.67433,6 -6,6 -3.32568,0 -6,-2.67432 -6,-6 0,-3.32568 2.67432,-6 6,-6 z"
  1486. transform="translate(-38)"
  1487. style="opacity:0.4;fill:#ffffff"
  1488. id="path375" />
  1489. </g>
  1490. <g
  1491. transform="translate(115.5,-145.5)"
  1492. id="menuitem-tearoff-normal">
  1493. <rect
  1494. transform="matrix(0,1,-1,0,0,0)"
  1495. y="-229.5"
  1496. x="686.5"
  1497. height="9"
  1498. width="7"
  1499. style="opacity:0;fill:#141414"
  1500. id="rect379" />
  1501. <path
  1502. d="m 227.2385,689 -2.2462,0 0,2 2.2462,0 z m -4.4924,0 -2.2461,0 0,2 2.2461,0 z"
  1503. style="fill:#646464"
  1504. id="path381" />
  1505. </g>
  1506. <g
  1507. transform="translate(-19.999996,-99.03)"
  1508. id="mdi-close-normal">
  1509. <rect
  1510. y="428.03"
  1511. x="54"
  1512. height="16"
  1513. width="16"
  1514. style="opacity:0.001"
  1515. id="rect384" />
  1516. <path
  1517. d="m 65.002415,432.02406 a 1,1 0 0 0 -0.70703,0.29297 l -2.29297,2.29297 -2.2832,-2.2832 a 1,1 0 0 0 -0.01,-0.01 1,1 0 0 0 -0.70117,-0.28906 l -0.01,0.0137 a 1,1 0 0 0 -1,1 1,1 0 0 0 0.29297,0.70703 l 2.29297,2.29297 -2.29297,2.29297 a 1,1 0 0 0 -0.28906,0.69922 1,1 0 0 0 1,1 1,1 0 0 0 0.70703,-0.29297 l 2.29297,-2.29297 2.2832,2.2832 a 1,1 0 0 0 0.7168,0.30274 1,1 0 0 0 1,-1 1,1 0 0 0 -0.29297,-0.70703 l -2.30078,-2.29883 2.2832,-2.2832 a 1,1 0 0 0 0.31055,-0.72071 1,1 0 0 0 -1,-1 z"
  1518. style="fill:#dfdfdf"
  1519. id="path386" />
  1520. </g>
  1521. <g
  1522. transform="translate(-19.999996,-99.03)"
  1523. id="mdi-minimize-normal">
  1524. <rect
  1525. y="428.03"
  1526. x="72"
  1527. height="16"
  1528. width="16"
  1529. style="opacity:0.001"
  1530. id="rect389" />
  1531. <rect
  1532. ry="1"
  1533. rx="1"
  1534. y="435.03"
  1535. x="76"
  1536. height="2"
  1537. width="8"
  1538. style="fill:#dfdfdf"
  1539. id="rect391" />
  1540. </g>
  1541. <g
  1542. transform="translate(-19.999996,-99.03)"
  1543. id="mdi-maximize-normal">
  1544. <rect
  1545. y="428.03"
  1546. x="90"
  1547. height="16"
  1548. width="16"
  1549. style="opacity:0.001"
  1550. id="rect394" />
  1551. <path
  1552. d="m 98,432.0293 c -0.554,0 -1,0.446 -1,1 l 0,2 -2,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 0,2 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-2 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 0,-2 c 0,-0.554 -0.446,-1 -1,-1 z"
  1553. style="fill:#dfdfdf"
  1554. id="path396" />
  1555. </g>
  1556. <g
  1557. transform="translate(-19.999996,-99.03)"
  1558. id="mdi-restore-normal">
  1559. <rect
  1560. y="428.03"
  1561. x="108"
  1562. height="16"
  1563. width="16"
  1564. style="opacity:0.001"
  1565. id="rect399" />
  1566. <path
  1567. d="m 116,432.0293 a 4,4 0 0 0 -4,4 4,4 0 0 0 4,4 4,4 0 0 0 4,-4 4,4 0 0 0 -4,-4 z m 0,2 a 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 z"
  1568. style="fill:#dfdfdf"
  1569. id="path401" />
  1570. </g>
  1571. <g
  1572. transform="translate(-19.999996,-82.03001)"
  1573. id="mdi-close-focused">
  1574. <rect
  1575. y="428.03"
  1576. x="54"
  1577. height="16"
  1578. width="16"
  1579. style="opacity:0.001"
  1580. id="rect404" />
  1581. <path
  1582. d="m 65.002415,432.02406 a 1,1 0 0 0 -0.70703,0.29297 l -2.29297,2.29297 -2.2832,-2.2832 a 1,1 0 0 0 -0.01,-0.01 1,1 0 0 0 -0.70117,-0.28906 l -0.01,0.0137 a 1,1 0 0 0 -1,1 1,1 0 0 0 0.29297,0.70703 l 2.29297,2.29297 -2.29297,2.29297 a 1,1 0 0 0 -0.28906,0.69922 1,1 0 0 0 1,1 1,1 0 0 0 0.70703,-0.29297 l 2.29297,-2.29297 2.2832,2.2832 a 1,1 0 0 0 0.7168,0.30274 1,1 0 0 0 1,-1 1,1 0 0 0 -0.29297,-0.70703 l -2.30078,-2.29883 2.2832,-2.2832 a 1,1 0 0 0 0.31055,-0.72071 1,1 0 0 0 -1,-1 z"
  1583. style="fill:#f04a50"
  1584. id="path406" />
  1585. </g>
  1586. <g
  1587. transform="translate(-19.999996,-82.03001)"
  1588. id="mdi-minimize-focused">
  1589. <rect
  1590. y="428.03"
  1591. x="72"
  1592. height="16"
  1593. width="16"
  1594. style="opacity:0.001"
  1595. id="rect409" />
  1596. <rect
  1597. ry="1"
  1598. rx="1"
  1599. y="435.03"
  1600. x="76"
  1601. height="2"
  1602. width="8"
  1603. style="fill:#f04a50"
  1604. id="rect411" />
  1605. </g>
  1606. <g
  1607. transform="translate(-19.999996,-82.03001)"
  1608. id="mdi-maximize-focused">
  1609. <rect
  1610. y="428.03"
  1611. x="90"
  1612. height="16"
  1613. width="16"
  1614. style="opacity:0.001"
  1615. id="rect414" />
  1616. <path
  1617. d="m 98,432.0293 c -0.554,0 -1,0.446 -1,1 l 0,2 -2,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 0,2 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-2 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 0,-2 c 0,-0.554 -0.446,-1 -1,-1 z"
  1618. style="fill:#f04a50"
  1619. id="path416" />
  1620. </g>
  1621. <g
  1622. transform="translate(-19.999996,-82.03001)"
  1623. id="mdi-restore-focused">
  1624. <rect
  1625. y="428.03"
  1626. x="108"
  1627. height="16"
  1628. width="16"
  1629. style="opacity:0.001"
  1630. id="rect419" />
  1631. <path
  1632. d="m 116,432.0293 a 4,4 0 0 0 -4,4 4,4 0 0 0 4,4 4,4 0 0 0 4,-4 4,4 0 0 0 -4,-4 z m 0,2 a 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 z"
  1633. style="fill:#f04a50"
  1634. id="path421" />
  1635. </g>
  1636. <g
  1637. transform="translate(-19.999996,-65.03)"
  1638. id="mdi-close-pressed">
  1639. <rect
  1640. y="428.03"
  1641. x="54"
  1642. height="16"
  1643. width="16"
  1644. style="opacity:0.001"
  1645. id="rect424" />
  1646. <path
  1647. d="m 65.002415,432.02406 a 1,1 0 0 0 -0.70703,0.29297 l -2.29297,2.29297 -2.2832,-2.2832 a 1,1 0 0 0 -0.01,-0.01 1,1 0 0 0 -0.70117,-0.28906 l -0.01,0.0137 a 1,1 0 0 0 -1,1 1,1 0 0 0 0.29297,0.70703 l 2.29297,2.29297 -2.29297,2.29297 a 1,1 0 0 0 -0.28906,0.69922 1,1 0 0 0 1,1 1,1 0 0 0 0.70703,-0.29297 l 2.29297,-2.29297 2.2832,2.2832 a 1,1 0 0 0 0.7168,0.30274 1,1 0 0 0 1,-1 1,1 0 0 0 -0.29297,-0.70703 l -2.30078,-2.29883 2.2832,-2.2832 a 1,1 0 0 0 0.31055,-0.72071 1,1 0 0 0 -1,-1 z"
  1648. style="fill:#b45fae"
  1649. id="path426" />
  1650. </g>
  1651. <g
  1652. transform="translate(-19.999996,-65.03)"
  1653. id="mdi-minimize-pressed">
  1654. <rect
  1655. y="428.03"
  1656. x="72"
  1657. height="16"
  1658. width="16"
  1659. style="opacity:0.001"
  1660. id="rect429" />
  1661. <rect
  1662. ry="1"
  1663. rx="1"
  1664. y="435.03"
  1665. x="76"
  1666. height="2"
  1667. width="8"
  1668. style="fill:#b45fae"
  1669. id="rect431" />
  1670. </g>
  1671. <g
  1672. transform="translate(-19.999996,-65.03)"
  1673. id="mdi-maximize-pressed">
  1674. <rect
  1675. y="428.03"
  1676. x="90"
  1677. height="16"
  1678. width="16"
  1679. style="opacity:0.001"
  1680. id="rect434" />
  1681. <path
  1682. d="m 98,432.0293 c -0.554,0 -1,0.446 -1,1 l 0,2 -2,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 0,2 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-2 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 0,-2 c 0,-0.554 -0.446,-1 -1,-1 z"
  1683. style="fill:#b45fae"
  1684. id="path436" />
  1685. </g>
  1686. <g
  1687. transform="translate(-19.999996,-65.03)"
  1688. id="mdi-restore-pressed">
  1689. <rect
  1690. y="428.03"
  1691. x="108"
  1692. height="16"
  1693. width="16"
  1694. style="opacity:0.001"
  1695. id="rect439" />
  1696. <path
  1697. d="m 116,432.0293 a 4,4 0 0 0 -4,4 4,4 0 0 0 4,4 4,4 0 0 0 4,-4 4,4 0 0 0 -4,-4 z m 0,2 a 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 z"
  1698. style="fill:#b45fae"
  1699. id="path441" />
  1700. </g>
  1701. <g
  1702. transform="translate(-19.999996,-48.03)"
  1703. id="mdi-close-disabled">
  1704. <rect
  1705. y="428.03"
  1706. x="54"
  1707. height="16"
  1708. width="16"
  1709. style="opacity:0.001"
  1710. id="rect444" />
  1711. <path
  1712. d="m 65.002415,432.02406 a 1,1 0 0 0 -0.70703,0.29297 l -2.29297,2.29297 -2.2832,-2.2832 a 1,1 0 0 0 -0.01,-0.01 1,1 0 0 0 -0.70117,-0.28906 l -0.01,0.0137 a 1,1 0 0 0 -1,1 1,1 0 0 0 0.29297,0.70703 l 2.29297,2.29297 -2.29297,2.29297 a 1,1 0 0 0 -0.28906,0.69922 1,1 0 0 0 1,1 1,1 0 0 0 0.70703,-0.29297 l 2.29297,-2.29297 2.2832,2.2832 a 1,1 0 0 0 0.7168,0.30274 1,1 0 0 0 1,-1 1,1 0 0 0 -0.29297,-0.70703 l -2.30078,-2.29883 2.2832,-2.2832 a 1,1 0 0 0 0.31055,-0.72071 1,1 0 0 0 -1,-1 z"
  1713. style="opacity:0.3;fill:#dfdfdf"
  1714. id="path446" />
  1715. </g>
  1716. <g
  1717. transform="translate(-19.999996,-48.03)"
  1718. id="mdi-minimize-disabled">
  1719. <rect
  1720. y="428.03"
  1721. x="72"
  1722. height="16"
  1723. width="16"
  1724. style="opacity:0.001"
  1725. id="rect449" />
  1726. <rect
  1727. ry="1"
  1728. rx="1"
  1729. y="435.03"
  1730. x="76"
  1731. height="2"
  1732. width="8"
  1733. style="opacity:0.3;fill:#dfdfdf"
  1734. id="rect451" />
  1735. </g>
  1736. <g
  1737. transform="translate(-19.999996,-48.03)"
  1738. id="mdi-maximize-disabled">
  1739. <rect
  1740. y="428.03"
  1741. x="90"
  1742. height="16"
  1743. width="16"
  1744. style="opacity:0.001"
  1745. id="rect454" />
  1746. <path
  1747. d="m 98,432.0293 c -0.554,0 -1,0.446 -1,1 l 0,2 -2,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 0,2 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-2 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 0,-2 c 0,-0.554 -0.446,-1 -1,-1 z"
  1748. style="opacity:0.3;fill:#dfdfdf"
  1749. id="path456" />
  1750. </g>
  1751. <g
  1752. transform="translate(-19.999996,-48.03)"
  1753. id="mdi-restore-disabled">
  1754. <rect
  1755. y="428.03"
  1756. x="108"
  1757. height="16"
  1758. width="16"
  1759. style="opacity:0.001"
  1760. id="rect459" />
  1761. <path
  1762. d="m 116,432.0293 a 4,4 0 0 0 -4,4 4,4 0 0 0 4,4 4,4 0 0 0 4,-4 4,4 0 0 0 -4,-4 z m 0,2 a 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 z"
  1763. style="opacity:0.3;fill:#dfdfdf"
  1764. id="path461" />
  1765. </g>
  1766. <g
  1767. transform="translate(-19.999996,-99.03)"
  1768. id="mdi-menu-normal">
  1769. <rect
  1770. y="428.03"
  1771. x="135"
  1772. height="16"
  1773. width="16"
  1774. style="opacity:0.001"
  1775. id="rect464" />
  1776. <path
  1777. d="m 140,432.0293 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -6,0 z m 0,3 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -6,0 z m 0,3 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -6,0 z"
  1778. style="fill:#dfdfdf"
  1779. id="path466" />
  1780. </g>
  1781. <g
  1782. transform="translate(-164,-269.99994)"
  1783. id="tarrow-right-normal">
  1784. <rect
  1785. y="529"
  1786. x="186"
  1787. height="8"
  1788. width="8"
  1789. style="opacity:0.001"
  1790. id="rect469" />
  1791. <path
  1792. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1793. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1794. style="fill:#dfdfdf"
  1795. id="path471" />
  1796. </g>
  1797. <g
  1798. transform="translate(-154,-269.99994)"
  1799. id="tarrow-right-focused">
  1800. <rect
  1801. y="529"
  1802. x="186"
  1803. height="8"
  1804. width="8"
  1805. style="opacity:0.001"
  1806. id="rect474" />
  1807. <path
  1808. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1809. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1810. style="fill:#ffffff"
  1811. id="path476" />
  1812. </g>
  1813. <g
  1814. transform="translate(-144,-269.99994)"
  1815. id="tarrow-right-pressed">
  1816. <rect
  1817. y="529"
  1818. x="186"
  1819. height="8"
  1820. width="8"
  1821. style="opacity:0.001"
  1822. id="rect479" />
  1823. <path
  1824. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1825. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1826. style="fill:#ffffff"
  1827. id="path481" />
  1828. </g>
  1829. <g
  1830. transform="translate(-134,-269.99994)"
  1831. id="tarrow-right-toggled">
  1832. <rect
  1833. y="529"
  1834. x="186"
  1835. height="8"
  1836. width="8"
  1837. style="opacity:0.001"
  1838. id="rect484" />
  1839. <path
  1840. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1841. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1842. style="fill:#ffffff"
  1843. id="path486" />
  1844. </g>
  1845. <g
  1846. transform="translate(-124,-269.99994)"
  1847. id="tarrow-right-disabled">
  1848. <rect
  1849. y="529"
  1850. x="186"
  1851. height="8"
  1852. width="8"
  1853. style="opacity:0.001"
  1854. id="rect489" />
  1855. <path
  1856. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1857. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1858. style="opacity:0.3;fill:#dfdfdf"
  1859. id="path491" />
  1860. </g>
  1861. <g
  1862. transform="matrix(-1,0,0,-1,216,807)"
  1863. id="tarrow-left-normal">
  1864. <rect
  1865. y="529"
  1866. x="186"
  1867. height="8"
  1868. width="8"
  1869. style="opacity:0.001"
  1870. id="rect494" />
  1871. <path
  1872. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1873. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1874. style="fill:#dfdfdf"
  1875. id="path496" />
  1876. </g>
  1877. <g
  1878. transform="matrix(-1,0,0,-1,226,807)"
  1879. id="tarrow-left-focused">
  1880. <rect
  1881. y="529"
  1882. x="186"
  1883. height="8"
  1884. width="8"
  1885. style="opacity:0.001"
  1886. id="rect499" />
  1887. <path
  1888. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1889. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1890. style="fill:#ffffff"
  1891. id="path501" />
  1892. </g>
  1893. <g
  1894. transform="matrix(-1,0,0,-1,236,807)"
  1895. id="tarrow-left-pressed">
  1896. <rect
  1897. y="529"
  1898. x="186"
  1899. height="8"
  1900. width="8"
  1901. style="opacity:0.001"
  1902. id="rect504" />
  1903. <path
  1904. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1905. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1906. style="fill:#ffffff"
  1907. id="path506" />
  1908. </g>
  1909. <g
  1910. transform="matrix(-1,0,0,-1,246,807)"
  1911. id="tarrow-left-toggled">
  1912. <rect
  1913. y="529"
  1914. x="186"
  1915. height="8"
  1916. width="8"
  1917. style="opacity:0.001"
  1918. id="rect509" />
  1919. <path
  1920. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1921. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1922. style="fill:#ffffff"
  1923. id="path511" />
  1924. </g>
  1925. <g
  1926. transform="matrix(-1,0,0,-1,256,807)"
  1927. id="tarrow-left-disabled">
  1928. <rect
  1929. y="529"
  1930. x="186"
  1931. height="8"
  1932. width="8"
  1933. style="opacity:0.001"
  1934. id="rect514" />
  1935. <path
  1936. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1937. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1938. style="opacity:0.3;fill:#dfdfdf"
  1939. id="path516" />
  1940. </g>
  1941. <g
  1942. transform="matrix(0,-1,1,0,-507,475.00006)"
  1943. id="tarrow-up-normal">
  1944. <rect
  1945. y="529"
  1946. x="186"
  1947. height="8"
  1948. width="8"
  1949. style="opacity:0.001"
  1950. id="rect519" />
  1951. <path
  1952. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1953. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1954. style="fill:#dfdfdf"
  1955. id="path521" />
  1956. </g>
  1957. <g
  1958. transform="matrix(0,-1,1,0,-497,475.00006)"
  1959. id="tarrow-up-focused">
  1960. <rect
  1961. y="529"
  1962. x="186"
  1963. height="8"
  1964. width="8"
  1965. style="opacity:0.001"
  1966. id="rect524" />
  1967. <path
  1968. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1969. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1970. style="fill:#ffffff"
  1971. id="path526" />
  1972. </g>
  1973. <g
  1974. transform="matrix(0,-1,1,0,-487,475.00006)"
  1975. id="tarrow-up-pressed">
  1976. <rect
  1977. y="529"
  1978. x="186"
  1979. height="8"
  1980. width="8"
  1981. style="opacity:0.001"
  1982. id="rect529" />
  1983. <path
  1984. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  1985. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  1986. style="fill:#ffffff"
  1987. id="path531" />
  1988. </g>
  1989. <g
  1990. transform="matrix(0,-1,1,0,-477,475.00006)"
  1991. id="tarrow-up-toggled">
  1992. <rect
  1993. y="529"
  1994. x="186"
  1995. height="8"
  1996. width="8"
  1997. style="opacity:0.001"
  1998. id="rect534" />
  1999. <path
  2000. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2001. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2002. style="fill:#ffffff"
  2003. id="path536" />
  2004. </g>
  2005. <g
  2006. transform="matrix(0,-1,1,0,-467,475.00006)"
  2007. id="tarrow-up-disabled">
  2008. <rect
  2009. y="529"
  2010. x="186"
  2011. height="8"
  2012. width="8"
  2013. style="opacity:0.001"
  2014. id="rect539" />
  2015. <path
  2016. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2017. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2018. style="opacity:0.3;fill:#dfdfdf"
  2019. id="path541" />
  2020. </g>
  2021. <g
  2022. transform="matrix(0,1,-1,0,559,105.00006)"
  2023. id="tarrow-down-normal">
  2024. <rect
  2025. y="529"
  2026. x="186"
  2027. height="8"
  2028. width="8"
  2029. style="opacity:0.001"
  2030. id="rect544" />
  2031. <path
  2032. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2033. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2034. style="fill:#dfdfdf"
  2035. id="path546" />
  2036. </g>
  2037. <g
  2038. transform="matrix(0,1,-1,0,569,105.00006)"
  2039. id="tarrow-down-focused">
  2040. <rect
  2041. y="529"
  2042. x="186"
  2043. height="8"
  2044. width="8"
  2045. style="opacity:0.001"
  2046. id="rect549" />
  2047. <path
  2048. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2049. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2050. style="fill:#ffffff"
  2051. id="path551" />
  2052. </g>
  2053. <g
  2054. transform="matrix(0,1,-1,0,579,105.00006)"
  2055. id="tarrow-down-pressed">
  2056. <rect
  2057. y="529"
  2058. x="186"
  2059. height="8"
  2060. width="8"
  2061. style="opacity:0.001"
  2062. id="rect554" />
  2063. <path
  2064. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2065. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2066. style="fill:#ffffff"
  2067. id="path556" />
  2068. </g>
  2069. <g
  2070. transform="matrix(0,1,-1,0,589,105.00006)"
  2071. id="tarrow-down-toggled">
  2072. <rect
  2073. y="529"
  2074. x="186"
  2075. height="8"
  2076. width="8"
  2077. style="opacity:0.001"
  2078. id="rect559" />
  2079. <path
  2080. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2081. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2082. style="fill:#ffffff"
  2083. id="path561" />
  2084. </g>
  2085. <g
  2086. transform="matrix(0,1,-1,0,599,105.00006)"
  2087. id="tarrow-down-disabled">
  2088. <rect
  2089. y="529"
  2090. x="186"
  2091. height="8"
  2092. width="8"
  2093. style="opacity:0.001"
  2094. id="rect564" />
  2095. <path
  2096. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2097. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2098. style="opacity:0.3;fill:#dfdfdf"
  2099. id="path566" />
  2100. </g>
  2101. <g
  2102. transform="translate(-109,-269.99994)"
  2103. id="arrow-right-normal">
  2104. <rect
  2105. y="529"
  2106. x="186"
  2107. height="8"
  2108. width="8"
  2109. style="opacity:0.001"
  2110. id="rect569" />
  2111. <path
  2112. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2113. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2114. style="fill:#dfdfdf"
  2115. id="path571" />
  2116. </g>
  2117. <g
  2118. transform="translate(-98.999996,-269.99994)"
  2119. id="arrow-right-focused">
  2120. <rect
  2121. y="529"
  2122. x="186"
  2123. height="8"
  2124. width="8"
  2125. style="opacity:0.001"
  2126. id="rect574" />
  2127. <path
  2128. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2129. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2130. style="fill:#dfdfdf"
  2131. id="path576" />
  2132. </g>
  2133. <g
  2134. transform="translate(-88.999996,-269.99994)"
  2135. id="arrow-right-pressed">
  2136. <rect
  2137. y="529"
  2138. x="186"
  2139. height="8"
  2140. width="8"
  2141. style="opacity:0.001"
  2142. id="rect579" />
  2143. <path
  2144. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2145. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2146. style="fill:#dfdfdf"
  2147. id="path581" />
  2148. </g>
  2149. <g
  2150. transform="translate(-78.999986,-269.99994)"
  2151. id="arrow-right-toggled">
  2152. <rect
  2153. y="529"
  2154. x="186"
  2155. height="8"
  2156. width="8"
  2157. style="opacity:0.001"
  2158. id="rect584" />
  2159. <path
  2160. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2161. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2162. style="fill:#dfdfdf"
  2163. id="path586" />
  2164. </g>
  2165. <g
  2166. transform="translate(-68.999986,-269.99994)"
  2167. id="arrow-right-disabled">
  2168. <rect
  2169. y="529"
  2170. x="186"
  2171. height="8"
  2172. width="8"
  2173. style="opacity:0.001"
  2174. id="rect589" />
  2175. <path
  2176. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2177. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2178. style="opacity:0.3;fill:#dfdfdf"
  2179. id="path591" />
  2180. </g>
  2181. <g
  2182. transform="matrix(-1,0,0,-1,271,807)"
  2183. id="arrow-left-normal">
  2184. <rect
  2185. y="529"
  2186. x="186"
  2187. height="8"
  2188. width="8"
  2189. style="opacity:0.001"
  2190. id="rect594" />
  2191. <path
  2192. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2193. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2194. style="fill:#dfdfdf"
  2195. id="path596" />
  2196. </g>
  2197. <g
  2198. transform="matrix(-1,0,0,-1,281,807)"
  2199. id="arrow-left-focused">
  2200. <rect
  2201. y="529"
  2202. x="186"
  2203. height="8"
  2204. width="8"
  2205. style="opacity:0.001"
  2206. id="rect599" />
  2207. <path
  2208. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2209. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2210. style="fill:#dfdfdf"
  2211. id="path601" />
  2212. </g>
  2213. <g
  2214. transform="matrix(-1,0,0,-1,291,807)"
  2215. id="arrow-left-pressed">
  2216. <rect
  2217. y="529"
  2218. x="186"
  2219. height="8"
  2220. width="8"
  2221. style="opacity:0.001"
  2222. id="rect604" />
  2223. <path
  2224. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2225. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2226. style="fill:#dfdfdf"
  2227. id="path606" />
  2228. </g>
  2229. <g
  2230. transform="matrix(-1,0,0,-1,301,807)"
  2231. id="arrow-left-toggled">
  2232. <rect
  2233. y="529"
  2234. x="186"
  2235. height="8"
  2236. width="8"
  2237. style="opacity:0.001"
  2238. id="rect609" />
  2239. <path
  2240. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2241. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2242. style="fill:#dfdfdf"
  2243. id="path611" />
  2244. </g>
  2245. <g
  2246. transform="matrix(-1,0,0,-1,311,807)"
  2247. id="arrow-left-disabled">
  2248. <rect
  2249. y="529"
  2250. x="186"
  2251. height="8"
  2252. width="8"
  2253. style="opacity:0.001"
  2254. id="rect614" />
  2255. <path
  2256. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2257. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2258. style="opacity:0.3;fill:#dfdfdf"
  2259. id="path616" />
  2260. </g>
  2261. <g
  2262. transform="matrix(0,-1,1,0,-452,475.00006)"
  2263. id="arrow-up-normal">
  2264. <rect
  2265. y="529"
  2266. x="186"
  2267. height="8"
  2268. width="8"
  2269. style="opacity:0.001"
  2270. id="rect619" />
  2271. <path
  2272. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2273. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2274. style="fill:#dfdfdf"
  2275. id="path621" />
  2276. </g>
  2277. <g
  2278. transform="matrix(0,-1,1,0,-442,475.00006)"
  2279. id="arrow-up-focused">
  2280. <rect
  2281. y="529"
  2282. x="186"
  2283. height="8"
  2284. width="8"
  2285. style="opacity:0.001"
  2286. id="rect624" />
  2287. <path
  2288. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2289. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2290. style="fill:#dfdfdf"
  2291. id="path626" />
  2292. </g>
  2293. <g
  2294. transform="matrix(0,-1,1,0,-432,475.00006)"
  2295. id="arrow-up-pressed">
  2296. <rect
  2297. y="529"
  2298. x="186"
  2299. height="8"
  2300. width="8"
  2301. style="opacity:0.001"
  2302. id="rect629" />
  2303. <path
  2304. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2305. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2306. style="fill:#dfdfdf"
  2307. id="path631" />
  2308. </g>
  2309. <g
  2310. transform="matrix(0,-1,1,0,-422,475.00006)"
  2311. id="arrow-up-toggled">
  2312. <rect
  2313. y="529"
  2314. x="186"
  2315. height="8"
  2316. width="8"
  2317. style="opacity:0.001"
  2318. id="rect634" />
  2319. <path
  2320. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2321. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2322. style="fill:#dfdfdf"
  2323. id="path636" />
  2324. </g>
  2325. <g
  2326. transform="matrix(0,-1,1,0,-412,475.00006)"
  2327. id="arrow-up-disabled">
  2328. <rect
  2329. y="529"
  2330. x="186"
  2331. height="8"
  2332. width="8"
  2333. style="opacity:0.001"
  2334. id="rect639" />
  2335. <path
  2336. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2337. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2338. style="opacity:0.3;fill:#dfdfdf"
  2339. id="path641" />
  2340. </g>
  2341. <g
  2342. transform="matrix(0,1,-1,0,614,105.00006)"
  2343. id="arrow-down-normal">
  2344. <rect
  2345. y="529"
  2346. x="186"
  2347. height="8"
  2348. width="8"
  2349. style="opacity:0.001"
  2350. id="rect644" />
  2351. <path
  2352. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2353. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2354. style="fill:#dfdfdf"
  2355. id="path646" />
  2356. </g>
  2357. <g
  2358. transform="matrix(0,1,-1,0,624,105.00006)"
  2359. id="arrow-down-focused">
  2360. <rect
  2361. y="529"
  2362. x="186"
  2363. height="8"
  2364. width="8"
  2365. style="opacity:0.001"
  2366. id="rect649" />
  2367. <path
  2368. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2369. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2370. style="fill:#dfdfdf"
  2371. id="path651" />
  2372. </g>
  2373. <g
  2374. transform="matrix(0,1,-1,0,634,105.00006)"
  2375. id="arrow-down-pressed">
  2376. <rect
  2377. y="529"
  2378. x="186"
  2379. height="8"
  2380. width="8"
  2381. style="opacity:0.001"
  2382. id="rect654" />
  2383. <path
  2384. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2385. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2386. style="fill:#dfdfdf"
  2387. id="path656" />
  2388. </g>
  2389. <g
  2390. transform="matrix(0,1,-1,0,644,105.00006)"
  2391. id="arrow-down-toggled">
  2392. <rect
  2393. y="529"
  2394. x="186"
  2395. height="8"
  2396. width="8"
  2397. style="opacity:0.001"
  2398. id="rect659" />
  2399. <path
  2400. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2401. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2402. style="fill:#dfdfdf"
  2403. id="path661" />
  2404. </g>
  2405. <g
  2406. transform="matrix(0,1,-1,0,654,105.00006)"
  2407. id="arrow-down-disabled">
  2408. <rect
  2409. y="529"
  2410. x="186"
  2411. height="8"
  2412. width="8"
  2413. style="opacity:0.001"
  2414. id="rect664" />
  2415. <path
  2416. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2417. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2418. style="opacity:0.3;fill:#dfdfdf"
  2419. id="path666" />
  2420. </g>
  2421. <g
  2422. transform="translate(116,-57.99994)"
  2423. id="arrow-plus-normal">
  2424. <rect
  2425. y="317"
  2426. x="15"
  2427. height="8"
  2428. width="8"
  2429. style="opacity:0.001"
  2430. id="rect669" />
  2431. <path
  2432. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  2433. style="fill:#dfdfdf"
  2434. id="path671" />
  2435. </g>
  2436. <g
  2437. transform="translate(106,-46.99994)"
  2438. id="arrow-minus-normal">
  2439. <rect
  2440. y="317"
  2441. x="25"
  2442. height="8"
  2443. width="8"
  2444. style="opacity:0.001"
  2445. id="rect674" />
  2446. <rect
  2447. transform="matrix(0,1,-1,0,0,0)"
  2448. y="-33"
  2449. x="320"
  2450. height="8"
  2451. width="2"
  2452. style="fill:#dfdfdf"
  2453. id="rect676" />
  2454. </g>
  2455. <g
  2456. transform="translate(126,-57.99994)"
  2457. id="arrow-plus-focused">
  2458. <rect
  2459. y="317"
  2460. x="15"
  2461. height="8"
  2462. width="8"
  2463. style="opacity:0.001"
  2464. id="rect679" />
  2465. <path
  2466. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  2467. style="fill:#dfdfdf"
  2468. id="path681" />
  2469. </g>
  2470. <g
  2471. transform="translate(116.00001,-46.99994)"
  2472. id="arrow-minus-focused">
  2473. <rect
  2474. y="317"
  2475. x="25"
  2476. height="8"
  2477. width="8"
  2478. style="opacity:0.001"
  2479. id="rect684" />
  2480. <rect
  2481. transform="matrix(0,1,-1,0,0,0)"
  2482. y="-33"
  2483. x="320"
  2484. height="8"
  2485. width="2"
  2486. style="fill:#dfdfdf"
  2487. id="rect686" />
  2488. </g>
  2489. <g
  2490. transform="translate(136,-57.99994)"
  2491. id="arrow-plus-pressed">
  2492. <rect
  2493. y="317"
  2494. x="15"
  2495. height="8"
  2496. width="8"
  2497. style="opacity:0.001"
  2498. id="rect689" />
  2499. <path
  2500. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  2501. style="fill:#dfdfdf"
  2502. id="path691" />
  2503. </g>
  2504. <g
  2505. transform="translate(126,-46.99994)"
  2506. id="arrow-minus-pressed">
  2507. <rect
  2508. y="317"
  2509. x="25"
  2510. height="8"
  2511. width="8"
  2512. style="opacity:0.001"
  2513. id="rect694" />
  2514. <rect
  2515. transform="matrix(0,1,-1,0,0,0)"
  2516. y="-33"
  2517. x="320"
  2518. height="8"
  2519. width="2"
  2520. style="fill:#dfdfdf"
  2521. id="rect696" />
  2522. </g>
  2523. <g
  2524. transform="translate(146,-57.99994)"
  2525. id="arrow-plus-toggled">
  2526. <rect
  2527. y="317"
  2528. x="15"
  2529. height="8"
  2530. width="8"
  2531. style="opacity:0.001"
  2532. id="rect699" />
  2533. <path
  2534. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  2535. style="fill:#dfdfdf"
  2536. id="path701" />
  2537. </g>
  2538. <g
  2539. transform="translate(136,-46.99994)"
  2540. id="arrow-minus-toggled">
  2541. <rect
  2542. y="317"
  2543. x="25"
  2544. height="8"
  2545. width="8"
  2546. style="opacity:0.001"
  2547. id="rect704" />
  2548. <rect
  2549. transform="matrix(0,1,-1,0,0,0)"
  2550. y="-33"
  2551. x="320"
  2552. height="8"
  2553. width="2"
  2554. style="fill:#dfdfdf"
  2555. id="rect706" />
  2556. </g>
  2557. <g
  2558. transform="translate(156,-57.99994)"
  2559. id="arrow-plus-disabled">
  2560. <rect
  2561. y="317"
  2562. x="15"
  2563. height="8"
  2564. width="8"
  2565. style="opacity:0.001"
  2566. id="rect709" />
  2567. <path
  2568. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  2569. style="opacity:0.3;fill:#dfdfdf"
  2570. id="path711" />
  2571. </g>
  2572. <g
  2573. transform="translate(146,-46.99994)"
  2574. id="arrow-minus-disabled">
  2575. <rect
  2576. y="317"
  2577. x="25"
  2578. height="8"
  2579. width="8"
  2580. style="opacity:0.001"
  2581. id="rect714" />
  2582. <rect
  2583. transform="matrix(0,1,-1,0,0,0)"
  2584. y="-33"
  2585. x="320"
  2586. height="8"
  2587. width="2"
  2588. style="opacity:0.3;fill:#dfdfdf"
  2589. id="rect716" />
  2590. </g>
  2591. <g
  2592. transform="translate(-54.999996,-247.99994)"
  2593. id="tree-plus-normal">
  2594. <rect
  2595. y="529"
  2596. x="186"
  2597. height="8"
  2598. width="8"
  2599. style="opacity:0.001"
  2600. id="rect719" />
  2601. <path
  2602. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2603. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2604. style="fill:#dfdfdf"
  2605. id="path721" />
  2606. </g>
  2607. <g
  2608. transform="translate(-44.999996,-247.99994)"
  2609. id="tree-plus-focused">
  2610. <rect
  2611. y="529"
  2612. x="186"
  2613. height="8"
  2614. width="8"
  2615. style="opacity:0.001"
  2616. id="rect724" />
  2617. <path
  2618. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2619. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2620. style="fill:#dfdfdf"
  2621. id="path726" />
  2622. </g>
  2623. <g
  2624. transform="translate(-34.999996,-247.99994)"
  2625. id="tree-plus-pressed">
  2626. <rect
  2627. y="529"
  2628. x="186"
  2629. height="8"
  2630. width="8"
  2631. style="opacity:0.001"
  2632. id="rect729" />
  2633. <path
  2634. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2635. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2636. style="fill:#dfdfdf"
  2637. id="path731" />
  2638. </g>
  2639. <g
  2640. transform="translate(-24.999986,-247.99994)"
  2641. id="tree-plus-toggled">
  2642. <rect
  2643. y="529"
  2644. x="186"
  2645. height="8"
  2646. width="8"
  2647. style="opacity:0.001"
  2648. id="rect734" />
  2649. <path
  2650. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2651. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2652. style="fill:#dfdfdf"
  2653. id="path736" />
  2654. </g>
  2655. <g
  2656. transform="translate(-14.999989,-247.99994)"
  2657. id="tree-plus-disabled">
  2658. <rect
  2659. y="529"
  2660. x="186"
  2661. height="8"
  2662. width="8"
  2663. style="opacity:0.001"
  2664. id="rect739" />
  2665. <path
  2666. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2667. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2668. style="opacity:0.3;fill:#dfdfdf"
  2669. id="path741" />
  2670. </g>
  2671. <g
  2672. transform="matrix(0,1,-1,0,668,105.00006)"
  2673. id="tree-minus-normal">
  2674. <rect
  2675. y="529"
  2676. x="186"
  2677. height="8"
  2678. width="8"
  2679. style="opacity:0.001"
  2680. id="rect744" />
  2681. <path
  2682. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2683. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2684. style="fill:#dfdfdf"
  2685. id="path746" />
  2686. </g>
  2687. <g
  2688. transform="matrix(0,1,-1,0,678,105.00006)"
  2689. id="tree-minus-focused">
  2690. <rect
  2691. y="529"
  2692. x="186"
  2693. height="8"
  2694. width="8"
  2695. style="opacity:0.001"
  2696. id="rect749" />
  2697. <path
  2698. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2699. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2700. style="fill:#dfdfdf"
  2701. id="path751" />
  2702. </g>
  2703. <g
  2704. transform="matrix(0,1,-1,0,688,105.00006)"
  2705. id="tree-minus-pressed">
  2706. <rect
  2707. y="529"
  2708. x="186"
  2709. height="8"
  2710. width="8"
  2711. style="opacity:0.001"
  2712. id="rect754" />
  2713. <path
  2714. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2715. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2716. style="fill:#dfdfdf"
  2717. id="path756" />
  2718. </g>
  2719. <g
  2720. transform="matrix(0,1,-1,0,698,105.00006)"
  2721. id="tree-minus-toggled">
  2722. <rect
  2723. y="529"
  2724. x="186"
  2725. height="8"
  2726. width="8"
  2727. style="opacity:0.001"
  2728. id="rect759" />
  2729. <path
  2730. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2731. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2732. style="fill:#dfdfdf"
  2733. id="path761" />
  2734. </g>
  2735. <g
  2736. transform="matrix(0,1,-1,0,708,105.00006)"
  2737. id="tree-minus-disabled">
  2738. <rect
  2739. y="529"
  2740. x="186"
  2741. height="8"
  2742. width="8"
  2743. style="opacity:0.001"
  2744. id="rect764" />
  2745. <path
  2746. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2747. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2748. style="opacity:0.3;fill:#dfdfdf"
  2749. id="path766" />
  2750. </g>
  2751. <g
  2752. transform="matrix(0,1,-1,0,723,72.00006)"
  2753. id="flat-arrow-down-normal">
  2754. <rect
  2755. y="529"
  2756. x="186"
  2757. height="8"
  2758. width="8"
  2759. style="opacity:0.001"
  2760. id="rect769" />
  2761. <path
  2762. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2763. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2764. style="fill:#dfdfdf"
  2765. id="path771" />
  2766. </g>
  2767. <g
  2768. transform="matrix(0,1,-1,0,733,72.00006)"
  2769. id="flat-arrow-down-focused">
  2770. <rect
  2771. y="529"
  2772. x="186"
  2773. height="8"
  2774. width="8"
  2775. style="opacity:0.001"
  2776. id="rect774" />
  2777. <path
  2778. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2779. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2780. style="fill:#dfdfdf"
  2781. id="path776" />
  2782. </g>
  2783. <g
  2784. transform="matrix(0,1,-1,0,743,72.00006)"
  2785. id="flat-arrow-down-disabled">
  2786. <rect
  2787. y="529"
  2788. x="186"
  2789. height="8"
  2790. width="8"
  2791. style="opacity:0.001"
  2792. id="rect779" />
  2793. <path
  2794. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2795. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2796. style="opacity:0.3;fill:#dfdfdf"
  2797. id="path781" />
  2798. </g>
  2799. <g
  2800. transform="matrix(0,1,-1,0,668,117.00012)"
  2801. id="carrow-normal">
  2802. <rect
  2803. y="529"
  2804. x="186"
  2805. height="8"
  2806. width="8"
  2807. style="opacity:0.001"
  2808. id="rect784" />
  2809. <path
  2810. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2811. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2812. style="fill:#dfdfdf"
  2813. id="path786" />
  2814. </g>
  2815. <g
  2816. transform="matrix(0,1,-1,0,678,117.00012)"
  2817. id="carrow-focused">
  2818. <rect
  2819. y="529"
  2820. x="186"
  2821. height="8"
  2822. width="8"
  2823. style="opacity:0.001"
  2824. id="rect789" />
  2825. <path
  2826. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2827. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2828. style="fill:#dfdfdf"
  2829. id="path791" />
  2830. </g>
  2831. <g
  2832. transform="matrix(0,1,-1,0,688,117.00012)"
  2833. id="carrow-pressed">
  2834. <rect
  2835. y="529"
  2836. x="186"
  2837. height="8"
  2838. width="8"
  2839. style="opacity:0.001"
  2840. id="rect794" />
  2841. <path
  2842. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2843. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2844. style="fill:#dfdfdf"
  2845. id="path796" />
  2846. </g>
  2847. <g
  2848. transform="matrix(0,1,-1,0,698,117.00012)"
  2849. id="carrow-toggled">
  2850. <rect
  2851. y="529"
  2852. x="186"
  2853. height="8"
  2854. width="8"
  2855. style="opacity:0.001"
  2856. id="rect799" />
  2857. <path
  2858. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2859. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2860. style="fill:#dfdfdf"
  2861. id="path801" />
  2862. </g>
  2863. <g
  2864. transform="matrix(0,1,-1,0,708,117.00012)"
  2865. id="carrow-disabled">
  2866. <rect
  2867. y="529"
  2868. x="186"
  2869. height="8"
  2870. width="8"
  2871. style="opacity:0.001"
  2872. id="rect804" />
  2873. <path
  2874. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2875. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2876. style="opacity:0.3;fill:#dfdfdf"
  2877. id="path806" />
  2878. </g>
  2879. <g
  2880. transform="matrix(0,-1,-1,0,723,463.00012)"
  2881. id="flat-arrow-up-normal">
  2882. <rect
  2883. y="529"
  2884. x="186"
  2885. height="8"
  2886. width="8"
  2887. style="opacity:0.001"
  2888. id="rect809" />
  2889. <path
  2890. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2891. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2892. style="fill:#dfdfdf"
  2893. id="path811" />
  2894. </g>
  2895. <g
  2896. transform="matrix(0,-1,-1,0,733,463.00012)"
  2897. id="flat-arrow-up-focused">
  2898. <rect
  2899. y="529"
  2900. x="186"
  2901. height="8"
  2902. width="8"
  2903. style="opacity:0.001"
  2904. id="rect814" />
  2905. <path
  2906. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2907. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2908. style="fill:#dfdfdf"
  2909. id="path816" />
  2910. </g>
  2911. <g
  2912. transform="matrix(0,-1,-1,0,743,463.00012)"
  2913. id="flat-arrow-up-disabled">
  2914. <rect
  2915. y="529"
  2916. x="186"
  2917. height="8"
  2918. width="8"
  2919. style="opacity:0.001"
  2920. id="rect819" />
  2921. <path
  2922. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2923. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2924. style="opacity:0.3;fill:#dfdfdf"
  2925. id="path821" />
  2926. </g>
  2927. <g
  2928. transform="matrix(-1,0,0,-1,380,817.0001)"
  2929. id="flat-arrow-left-normal">
  2930. <rect
  2931. y="529"
  2932. x="186"
  2933. height="8"
  2934. width="8"
  2935. style="opacity:0.001"
  2936. id="rect824" />
  2937. <path
  2938. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2939. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2940. style="fill:#dfdfdf"
  2941. id="path826" />
  2942. </g>
  2943. <g
  2944. transform="matrix(-1,0,0,-1,390,817.0001)"
  2945. id="flat-arrow-left-focused">
  2946. <rect
  2947. y="529"
  2948. x="186"
  2949. height="8"
  2950. width="8"
  2951. style="opacity:0.001"
  2952. id="rect829" />
  2953. <path
  2954. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2955. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2956. style="fill:#dfdfdf"
  2957. id="path831" />
  2958. </g>
  2959. <g
  2960. transform="matrix(-1,0,0,-1,400,817.0001)"
  2961. id="flat-arrow-left-disabled">
  2962. <rect
  2963. y="529"
  2964. x="186"
  2965. height="8"
  2966. width="8"
  2967. style="opacity:0.001"
  2968. id="rect834" />
  2969. <path
  2970. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2971. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2972. style="opacity:0.3;fill:#dfdfdf"
  2973. id="path836" />
  2974. </g>
  2975. <g
  2976. transform="matrix(1,0,0,-1,7.06e-6,828.0001)"
  2977. id="flat-arrow-right-normal">
  2978. <rect
  2979. y="529"
  2980. x="186"
  2981. height="8"
  2982. width="8"
  2983. style="opacity:0.001"
  2984. id="rect839" />
  2985. <path
  2986. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  2987. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  2988. style="fill:#dfdfdf"
  2989. id="path841" />
  2990. </g>
  2991. <g
  2992. transform="matrix(1,0,0,-1,10.000007,828.0001)"
  2993. id="flat-arrow-right-focused">
  2994. <rect
  2995. y="529"
  2996. x="186"
  2997. height="8"
  2998. width="8"
  2999. style="opacity:0.001"
  3000. id="rect844" />
  3001. <path
  3002. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  3003. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  3004. style="fill:#dfdfdf"
  3005. id="path846" />
  3006. </g>
  3007. <g
  3008. transform="matrix(1,0,0,-1,20.000007,828.0001)"
  3009. id="flat-arrow-right-disabled">
  3010. <rect
  3011. y="529"
  3012. x="186"
  3013. height="8"
  3014. width="8"
  3015. style="opacity:0.001"
  3016. id="rect849" />
  3017. <path
  3018. d="m 194.45572,532.57465 -3.46411,2 -3.4641,2 0,-4 0,-4 3.4641,2 z"
  3019. transform="matrix(0.72168782,0,0,1,52.663678,0.42535408)"
  3020. style="opacity:0.3;fill:#dfdfdf"
  3021. id="path851" />
  3022. </g>
  3023. <g
  3024. transform="translate(204,-57.99994)"
  3025. id="spin-plus-normal">
  3026. <rect
  3027. y="317"
  3028. x="15"
  3029. height="8"
  3030. width="8"
  3031. style="opacity:0.001"
  3032. id="rect854" />
  3033. <path
  3034. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3035. style="fill:#dfdfdf"
  3036. id="path856" />
  3037. </g>
  3038. <g
  3039. transform="translate(194,-46.99994)"
  3040. id="spin-minus-normal">
  3041. <rect
  3042. y="317"
  3043. x="25"
  3044. height="8"
  3045. width="8"
  3046. style="opacity:0.001"
  3047. id="rect859" />
  3048. <rect
  3049. transform="matrix(0,1,-1,0,0,0)"
  3050. y="-33"
  3051. x="320"
  3052. height="8"
  3053. width="2"
  3054. style="fill:#dfdfdf"
  3055. id="rect861" />
  3056. </g>
  3057. <g
  3058. transform="translate(214,-57.99994)"
  3059. id="spin-plus-focused">
  3060. <rect
  3061. y="317"
  3062. x="15"
  3063. height="8"
  3064. width="8"
  3065. style="opacity:0.001"
  3066. id="rect864" />
  3067. <path
  3068. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3069. style="fill:#dfdfdf"
  3070. id="path866" />
  3071. </g>
  3072. <g
  3073. transform="translate(204,-46.99994)"
  3074. id="spin-minus-focused">
  3075. <rect
  3076. y="317"
  3077. x="25"
  3078. height="8"
  3079. width="8"
  3080. style="opacity:0.001"
  3081. id="rect869" />
  3082. <rect
  3083. transform="matrix(0,1,-1,0,0,0)"
  3084. y="-33"
  3085. x="320"
  3086. height="8"
  3087. width="2"
  3088. style="fill:#dfdfdf"
  3089. id="rect871" />
  3090. </g>
  3091. <g
  3092. transform="translate(224,-57.99994)"
  3093. id="spin-plus-pressed">
  3094. <rect
  3095. y="317"
  3096. x="15"
  3097. height="8"
  3098. width="8"
  3099. style="opacity:0.001"
  3100. id="rect874" />
  3101. <path
  3102. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3103. style="fill:#dfdfdf"
  3104. id="path876" />
  3105. </g>
  3106. <g
  3107. transform="translate(214,-46.99994)"
  3108. id="spin-minus-pressed">
  3109. <rect
  3110. y="317"
  3111. x="25"
  3112. height="8"
  3113. width="8"
  3114. style="opacity:0.001"
  3115. id="rect879" />
  3116. <rect
  3117. transform="matrix(0,1,-1,0,0,0)"
  3118. y="-33"
  3119. x="320"
  3120. height="8"
  3121. width="2"
  3122. style="fill:#dfdfdf"
  3123. id="rect881" />
  3124. </g>
  3125. <g
  3126. transform="translate(234,-57.99994)"
  3127. id="spin-plus-disabled">
  3128. <rect
  3129. y="317"
  3130. x="15"
  3131. height="8"
  3132. width="8"
  3133. style="opacity:0.001"
  3134. id="rect884" />
  3135. <path
  3136. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3137. style="opacity:0.3;fill:#dfdfdf"
  3138. id="path886" />
  3139. </g>
  3140. <g
  3141. transform="translate(224,-46.99994)"
  3142. id="spin-minus-disabled">
  3143. <rect
  3144. y="317"
  3145. x="25"
  3146. height="8"
  3147. width="8"
  3148. style="opacity:0.001"
  3149. id="rect889" />
  3150. <rect
  3151. transform="matrix(0,1,-1,0,0,0)"
  3152. y="-33"
  3153. x="320"
  3154. height="8"
  3155. width="2"
  3156. style="opacity:0.3;fill:#dfdfdf"
  3157. id="rect891" />
  3158. </g>
  3159. <g
  3160. transform="translate(204,-36.99988)"
  3161. id="spin-up-normal">
  3162. <rect
  3163. y="317"
  3164. x="15"
  3165. height="8"
  3166. width="8"
  3167. style="opacity:0.001"
  3168. id="rect894" />
  3169. <path
  3170. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3171. style="fill:#dfdfdf"
  3172. id="path896" />
  3173. </g>
  3174. <g
  3175. transform="translate(194,-25.99988)"
  3176. id="spin-down-normal">
  3177. <rect
  3178. y="317"
  3179. x="25"
  3180. height="8"
  3181. width="8"
  3182. style="opacity:0.001"
  3183. id="rect899" />
  3184. <rect
  3185. transform="matrix(0,1,-1,0,0,0)"
  3186. y="-33"
  3187. x="320"
  3188. height="8"
  3189. width="2"
  3190. style="fill:#dfdfdf"
  3191. id="rect901" />
  3192. </g>
  3193. <g
  3194. transform="translate(214,-36.99988)"
  3195. id="spin-up-focused">
  3196. <rect
  3197. y="317"
  3198. x="15"
  3199. height="8"
  3200. width="8"
  3201. style="opacity:0.001"
  3202. id="rect904" />
  3203. <path
  3204. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3205. style="fill:#dfdfdf"
  3206. id="path906" />
  3207. </g>
  3208. <g
  3209. transform="translate(204,-25.99988)"
  3210. id="spin-down-focused">
  3211. <rect
  3212. y="317"
  3213. x="25"
  3214. height="8"
  3215. width="8"
  3216. style="opacity:0.001"
  3217. id="rect909" />
  3218. <rect
  3219. transform="matrix(0,1,-1,0,0,0)"
  3220. y="-33"
  3221. x="320"
  3222. height="8"
  3223. width="2"
  3224. style="fill:#dfdfdf"
  3225. id="rect911" />
  3226. </g>
  3227. <g
  3228. transform="translate(224,-36.99988)"
  3229. id="spin-up-pressed">
  3230. <rect
  3231. y="317"
  3232. x="15"
  3233. height="8"
  3234. width="8"
  3235. style="opacity:0.001"
  3236. id="rect914" />
  3237. <path
  3238. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3239. style="fill:#dfdfdf"
  3240. id="path916" />
  3241. </g>
  3242. <g
  3243. transform="translate(214,-25.99988)"
  3244. id="spin-down-pressed">
  3245. <rect
  3246. y="317"
  3247. x="25"
  3248. height="8"
  3249. width="8"
  3250. style="opacity:0.001"
  3251. id="rect919" />
  3252. <rect
  3253. transform="matrix(0,1,-1,0,0,0)"
  3254. y="-33"
  3255. x="320"
  3256. height="8"
  3257. width="2"
  3258. style="fill:#dfdfdf"
  3259. id="rect921" />
  3260. </g>
  3261. <g
  3262. transform="translate(234,-36.99988)"
  3263. id="spin-up-disabled">
  3264. <rect
  3265. y="317"
  3266. x="15"
  3267. height="8"
  3268. width="8"
  3269. style="opacity:0.001"
  3270. id="rect924" />
  3271. <path
  3272. d="m 18,317 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 -2,0 z"
  3273. style="opacity:0.3;fill:#dfdfdf"
  3274. id="path926" />
  3275. </g>
  3276. <g
  3277. transform="translate(224,-25.99988)"
  3278. id="spin-down-disabled">
  3279. <rect
  3280. y="317"
  3281. x="25"
  3282. height="8"
  3283. width="8"
  3284. style="opacity:0.001"
  3285. id="rect929" />
  3286. <rect
  3287. transform="matrix(0,1,-1,0,0,0)"
  3288. y="-33"
  3289. x="320"
  3290. height="8"
  3291. width="2"
  3292. style="opacity:0.3;fill:#dfdfdf"
  3293. id="rect931" />
  3294. </g>
  3295. <path
  3296. d="m 124.76923,898.2306 0,-18.4614 -5.76923,0 3.5e-4,18.4615 z"
  3297. style="opacity:0.08;fill:#ffffff"
  3298. id="menubaritem-focused-left" />
  3299. <path
  3300. d="m 124.76917,874 c -3.17301,-10e-5 -5.76916,2.5961 -5.76915,5.7691 l 5.76918,0 z"
  3301. style="opacity:0.08;fill:#ffffff"
  3302. id="menubaritem-focused-topleft" />
  3303. <path
  3304. d="m 124.76923,879.7692 0,18.4615 18.46154,0 0,-18.4615 -18.46154,0 z"
  3305. style="opacity:0.08;fill:#ffffff"
  3306. id="menubaritem-focused" />
  3307. <path
  3308. d="m 143.23077,898.2306 0,-18.4614 5.76923,0 -3.6e-4,18.4615 z"
  3309. style="opacity:0.08;fill:#ffffff"
  3310. id="menubaritem-focused-right" />
  3311. <path
  3312. d="m 143.23083,874 c 3.17301,-10e-5 5.76916,2.5961 5.76915,5.7691 l -5.76918,0 z"
  3313. style="opacity:0.08;fill:#ffffff"
  3314. id="menubaritem-focused-topright" />
  3315. <path
  3316. d="m 124.76929,879.7692 18.46142,0 0,-5.7692 -18.46154,0 z"
  3317. style="opacity:0.08;fill:#ffffff"
  3318. id="menubaritem-focused-top" />
  3319. <path
  3320. d="m 143.23065,898.2307 -18.46142,0 0,5.7693 18.46154,0 z"
  3321. style="opacity:0.08;fill:#ffffff"
  3322. id="menubaritem-focused-bottom" />
  3323. <path
  3324. d="m 124.76923,904 c -3.17305,0 -5.7692,-2.5962 -5.76918,-5.7692 l 5.76917,-1e-4 z"
  3325. style="opacity:0.08;fill:#ffffff"
  3326. id="menubaritem-focused-bottomleft" />
  3327. <path
  3328. d="m 143.23075,904 c 3.17305,0 5.7692,-2.5962 5.76919,-5.7692 l -5.76917,-1e-4 z"
  3329. style="opacity:0.08;fill:#ffffff"
  3330. id="menubaritem-focused-bottomright" />
  3331. <path
  3332. d="m 162.76923,898.2306 0,-18.4614 -5.76923,0 3.5e-4,18.4615 z"
  3333. style="opacity:0.08;fill:#ffffff"
  3334. id="menubaritem-toggled-left" />
  3335. <path
  3336. d="m 162.76917,874 c -3.17301,-10e-5 -5.76916,2.5961 -5.76915,5.7691 l 5.76918,0 z"
  3337. style="opacity:0.08;fill:#ffffff"
  3338. id="menubaritem-toggled-topleft" />
  3339. <path
  3340. d="m 162.76923,879.7692 0,18.4615 18.46154,0 0,-18.4615 -18.46154,0 z"
  3341. style="opacity:0.08;fill:#ffffff"
  3342. id="menubaritem-toggled" />
  3343. <path
  3344. d="m 181.23077,898.2306 0,-18.4614 5.76923,0 -3.6e-4,18.4615 z"
  3345. style="opacity:0.08;fill:#ffffff"
  3346. id="menubaritem-toggled-right" />
  3347. <path
  3348. d="m 181.23083,874 c 3.17301,-10e-5 5.76916,2.5961 5.76915,5.7691 l -5.76918,0 z"
  3349. style="opacity:0.08;fill:#ffffff"
  3350. id="menubaritem-toggled-topright" />
  3351. <path
  3352. d="m 162.76929,879.7692 18.46142,0 0,-5.7692 -18.46154,0 z"
  3353. style="opacity:0.08;fill:#ffffff"
  3354. id="menubaritem-toggled-top" />
  3355. <path
  3356. d="m 181.23065,898.2307 -18.46142,0 0,5.7693 18.46154,0 z"
  3357. style="opacity:0.08;fill:#ffffff"
  3358. id="menubaritem-toggled-bottom" />
  3359. <path
  3360. d="m 162.76923,904 c -3.17305,0 -5.7692,-2.5962 -5.76918,-5.7692 l 5.76917,-1e-4 z"
  3361. style="opacity:0.08;fill:#ffffff"
  3362. id="menubaritem-toggled-bottomleft" />
  3363. <path
  3364. d="m 181.23075,904 c 3.17305,0 5.7692,-2.5962 5.76919,-5.7692 l -5.76917,-1e-4 z"
  3365. style="opacity:0.08;fill:#ffffff"
  3366. id="menubaritem-toggled-bottomright" />
  3367. <path
  3368. d="m 199.76923,898.2306 0,-18.4614 -5.76923,0 3.5e-4,18.4615 z"
  3369. style="opacity:0.001;fill:#ffffff"
  3370. id="menubaritem-pressed-left" />
  3371. <path
  3372. d="m 199.76917,874 c -3.17301,-10e-5 -5.76916,2.5961 -5.76915,5.7691 l 5.76918,0 z"
  3373. style="opacity:0.001;fill:#ffffff"
  3374. id="menubaritem-pressed-topleft" />
  3375. <path
  3376. d="m 199.76923,879.7692 0,18.4615 18.46154,0 0,-18.4615 -18.46154,0 z"
  3377. style="opacity:0.001;fill:#ffffff"
  3378. id="menubaritem-pressed" />
  3379. <path
  3380. d="m 218.23077,898.2306 0,-18.4614 5.76923,0 -3.6e-4,18.4615 z"
  3381. style="opacity:0.001;fill:#ffffff"
  3382. id="menubaritem-pressed-right" />
  3383. <path
  3384. d="m 218.23083,874 c 3.17301,-10e-5 5.76916,2.5961 5.76915,5.7691 l -5.76918,0 z"
  3385. style="opacity:0.001;fill:#ffffff"
  3386. id="menubaritem-pressed-topright" />
  3387. <path
  3388. d="m 199.76929,879.7692 18.46142,0 0,-5.7692 -18.46154,0 z"
  3389. style="opacity:0.001;fill:#ffffff"
  3390. id="menubaritem-pressed-top" />
  3391. <g
  3392. transform="translate(-173,479.99991)"
  3393. id="menubaritem-pressed-bottom">
  3394. <path
  3395. d="m 391.23065,418.23077 -18.46142,0 0,5.76923 18.46154,0 z"
  3396. style="opacity:0.001;fill:#ffffff"
  3397. id="menubaritem-pressed-bottom2" />
  3398. <path
  3399. d="m 391.23065,418.231 -18.46142,0 0,5.769 18.46154,0 z"
  3400. style="fill:#dfdfdf"
  3401. id="path959" />
  3402. </g>
  3403. <g
  3404. transform="translate(-173,479.99991)"
  3405. id="menubaritem-pressed-bottomleft">
  3406. <path
  3407. d="m 372.76923,424 c -3.17305,0 -5.7692,-2.59615 -5.76918,-5.7692 l 5.76917,-5e-5 z"
  3408. style="opacity:0.001;fill:#ffffff"
  3409. id="menubaritem-pressed-bottomleft2" />
  3410. <rect
  3411. y="418.23"
  3412. x="367"
  3413. height="5.769"
  3414. width="5.769"
  3415. style="fill:#dfdfdf"
  3416. id="rect963" />
  3417. </g>
  3418. <g
  3419. transform="matrix(-1,0,0,1,591.00023,479.99991)"
  3420. id="menubaritem-pressed-bottomright">
  3421. <path
  3422. d="m 372.76923,424 c -3.17305,0 -5.7692,-2.59615 -5.76918,-5.7692 l 5.76917,-5e-5 z"
  3423. style="opacity:0.001;fill:#ffffff"
  3424. id="path966" />
  3425. <rect
  3426. y="418.23"
  3427. x="367"
  3428. height="5.769"
  3429. width="5.769"
  3430. style="fill:#dfdfdf"
  3431. id="rect968" />
  3432. </g>
  3433. <rect
  3434. y="888"
  3435. x="33"
  3436. height="4"
  3437. width="8"
  3438. style="opacity:0.08;fill:#ffffff"
  3439. id="itemview-focused-top" />
  3440. <rect
  3441. y="900"
  3442. x="33"
  3443. height="4"
  3444. width="8"
  3445. style="opacity:0.08;fill:#ffffff"
  3446. id="itemview-focused-bottom" />
  3447. <path
  3448. d="m 33,892 h 8 v 8 h -8 z"
  3449. style="opacity:0.08;fill:#ffffff"
  3450. id="itemview-focused" />
  3451. <rect
  3452. y="892"
  3453. x="41"
  3454. height="8"
  3455. width="4"
  3456. style="opacity:0.08;fill:#ffffff"
  3457. id="itemview-focused-right" />
  3458. <path
  3459. d="m 41,888 c 4,0 4,4 4,4 h -4 z"
  3460. style="opacity:0.08;fill:#ffffff"
  3461. id="itemview-focused-topright" />
  3462. <path
  3463. d="m 41,900 h 4 c 0,0 0,4 -4,4 z"
  3464. style="opacity:0.08;fill:#ffffff"
  3465. id="itemview-focused-bottomright" />
  3466. <rect
  3467. y="892"
  3468. x="29"
  3469. height="8"
  3470. width="4"
  3471. style="opacity:0.08;fill:#ffffff"
  3472. id="itemview-focused-left" />
  3473. <path
  3474. d="m 33,888 v 4 h -4 c 0,0 0,-4 4,-4 z"
  3475. style="opacity:0.08;fill:#ffffff"
  3476. id="itemview-focused-topleft" />
  3477. <path
  3478. d="m 29,900 h 4 v 4 c -4,0 -4,-4 -4,-4 z"
  3479. style="opacity:0.08;fill:#ffffff"
  3480. id="itemview-focused-bottomleft" />
  3481. <rect
  3482. y="149"
  3483. x="16"
  3484. height="12"
  3485. width="12"
  3486. style="fill:#b45fae"
  3487. id="progress-pattern-normal-top" />
  3488. <rect
  3489. y="169"
  3490. x="16"
  3491. height="12"
  3492. width="12"
  3493. style="fill:#b45fae"
  3494. id="progress-pattern-normal-bottom" />
  3495. <rect
  3496. y="149"
  3497. x="4"
  3498. height="12"
  3499. width="12"
  3500. style="fill:#b45fae"
  3501. id="progress-pattern-normal-topleft" />
  3502. <rect
  3503. y="149"
  3504. x="28"
  3505. height="12"
  3506. width="12"
  3507. style="fill:#b45fae"
  3508. id="progress-pattern-normal-topright" />
  3509. <rect
  3510. y="169"
  3511. x="4"
  3512. height="12"
  3513. width="12"
  3514. style="fill:#b45fae"
  3515. id="progress-pattern-normal-bottomleft" />
  3516. <rect
  3517. y="169"
  3518. x="28"
  3519. height="12"
  3520. width="12"
  3521. style="fill:#b45fae"
  3522. id="progress-pattern-normal-bottomright" />
  3523. <rect
  3524. y="149"
  3525. x="55"
  3526. height="12"
  3527. width="12"
  3528. style="opacity:0.26;fill:#ffffff"
  3529. id="progress-normal-top" />
  3530. <rect
  3531. y="169"
  3532. x="55"
  3533. height="12"
  3534. width="12"
  3535. style="opacity:0.26;fill:#ffffff"
  3536. id="progress-normal-bottom" />
  3537. <rect
  3538. y="149"
  3539. x="43"
  3540. height="12"
  3541. width="12"
  3542. style="opacity:0.26;fill:#ffffff"
  3543. id="progress-normal-topleft" />
  3544. <rect
  3545. y="149"
  3546. x="67"
  3547. height="12"
  3548. width="12"
  3549. style="opacity:0.26;fill:#ffffff"
  3550. id="progress-normal-topright" />
  3551. <rect
  3552. y="169"
  3553. x="43"
  3554. height="12"
  3555. width="12"
  3556. style="opacity:0.26;fill:#ffffff"
  3557. id="progress-normal-bottomleft" />
  3558. <rect
  3559. y="169"
  3560. x="67"
  3561. height="12"
  3562. width="12"
  3563. style="opacity:0.26;fill:#ffffff"
  3564. id="progress-normal-bottomright" />
  3565. <rect
  3566. y="149"
  3567. x="94"
  3568. height="12"
  3569. width="12"
  3570. style="opacity:0.26;fill:#ffffff"
  3571. id="progress-pattern-disabled-top" />
  3572. <rect
  3573. y="169"
  3574. x="94"
  3575. height="12"
  3576. width="12"
  3577. style="opacity:0.26;fill:#ffffff"
  3578. id="progress-pattern-disabled-bottom" />
  3579. <rect
  3580. y="149"
  3581. x="82"
  3582. height="12"
  3583. width="12"
  3584. style="opacity:0.26;fill:#ffffff"
  3585. id="progress-pattern-disabled-topleft" />
  3586. <rect
  3587. y="149"
  3588. x="106"
  3589. height="12"
  3590. width="12"
  3591. style="opacity:0.26;fill:#ffffff"
  3592. id="progress-pattern-disabled-topright" />
  3593. <rect
  3594. y="169"
  3595. x="82"
  3596. height="12"
  3597. width="12"
  3598. style="opacity:0.26;fill:#ffffff"
  3599. id="progress-pattern-disabled-bottomleft" />
  3600. <rect
  3601. y="169"
  3602. x="106"
  3603. height="12"
  3604. width="12"
  3605. style="opacity:0.26;fill:#ffffff"
  3606. id="progress-pattern-disabled-bottomright" />
  3607. <g
  3608. transform="matrix(1.5,0,0,1,-35,-1)"
  3609. id="progress-pattern-normal">
  3610. <rect
  3611. y="162"
  3612. x="34"
  3613. height="8"
  3614. width="8"
  3615. style="fill:#b45fae"
  3616. id="progress-pattern-normal22" />
  3617. </g>
  3618. <g
  3619. transform="matrix(1.5,0,0,1,-47,-1)"
  3620. id="progress-pattern-normal-left">
  3621. <rect
  3622. y="162"
  3623. x="34"
  3624. height="8"
  3625. width="8"
  3626. style="fill:#b45fae"
  3627. id="rect1000" />
  3628. </g>
  3629. <g
  3630. transform="matrix(1.5,0,0,1,-23,-1)"
  3631. id="progress-pattern-normal-right">
  3632. <rect
  3633. y="162"
  3634. x="34"
  3635. height="8"
  3636. width="8"
  3637. style="fill:#b45fae"
  3638. id="rect1003" />
  3639. </g>
  3640. <g
  3641. transform="matrix(1.5,0,0,1,-8,-1)"
  3642. id="progress-normal-left">
  3643. <rect
  3644. y="162"
  3645. x="34"
  3646. height="8"
  3647. width="8"
  3648. style="opacity:0.26;fill:#ffffff"
  3649. id="rect1006" />
  3650. </g>
  3651. <g
  3652. transform="matrix(1.5,0,0,1,16,-1)"
  3653. id="progress-normal-right">
  3654. <rect
  3655. y="162"
  3656. x="34"
  3657. height="8"
  3658. width="8"
  3659. style="opacity:0.26;fill:#ffffff"
  3660. id="rect1009" />
  3661. </g>
  3662. <g
  3663. transform="matrix(1.5,0,0,1,31,-1)"
  3664. id="progress-pattern-disabled-left">
  3665. <rect
  3666. y="162"
  3667. x="34"
  3668. height="8"
  3669. width="8"
  3670. style="opacity:0.26;fill:#ffffff"
  3671. id="rect1012" />
  3672. </g>
  3673. <g
  3674. transform="matrix(1.5,0,0,1,43,-1)"
  3675. id="progress-pattern-disabled">
  3676. <rect
  3677. y="162"
  3678. x="34"
  3679. height="8"
  3680. width="8"
  3681. style="opacity:0.26;fill:#ffffff"
  3682. id="rect1015" />
  3683. </g>
  3684. <g
  3685. transform="matrix(1.5,0,0,1,55,-1)"
  3686. id="progress-pattern-disabled-right">
  3687. <rect
  3688. y="162"
  3689. x="34"
  3690. height="8"
  3691. width="8"
  3692. style="opacity:0.26;fill:#ffffff"
  3693. id="rect1018" />
  3694. </g>
  3695. <path
  3696. d="m 397,287 v 30 h 30 v -30 z"
  3697. style="fill:#282828"
  3698. id="titlebar-focused" />
  3699. <g
  3700. transform="translate(-132,-289)"
  3701. id="scrollbarslider-normal-topleft">
  3702. <path
  3703. d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z"
  3704. style="fill:#969696;opacity:0"
  3705. id="scrollbarslider-normal-topleft0-9" />
  3706. <path
  3707. d="m 155,1090 c -2.5,0 -4.5,1.638 -4.5,3.638 V 1101 h 4.5 z"
  3708. style="fill:#989898"
  3709. id="path1023" />
  3710. </g>
  3711. <g
  3712. transform="matrix(0.99999979,0,0,1.3939056,-131.99997,-722.69007)"
  3713. id="scrollbarslider-normal-left">
  3714. <path
  3715. d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z"
  3716. style="fill:#969696;opacity:0"
  3717. id="scrollbarslider-normal-left0-1" />
  3718. <path
  3719. d="m 150.5,1101 v 16.4064 0.094 h 4.5 v -16.5 h -4.5 z"
  3720. style="fill:#989898"
  3721. id="path1027" />
  3722. </g>
  3723. <g
  3724. transform="matrix(1,0,0,1.3788159,-172,-125.52637)"
  3725. id="scrollbarslider-focused-topright">
  3726. <rect
  3727. y="669.8"
  3728. x="225"
  3729. height="8.703"
  3730. width="12"
  3731. style="opacity:0"
  3732. id="rect1030" />
  3733. <path
  3734. d="M 225,671.24725 V 678.5 h 9.5 c 0,-4.35156 -3.78571,-7.25278 -9.5,-7.25276 z"
  3735. style="fill:#c1c1c1"
  3736. id="path1032" />
  3737. </g>
  3738. <g
  3739. transform="matrix(1,0,0,1.3788175,-172,-125.52741)"
  3740. id="scrollbarslider-focused-topleft">
  3741. <rect
  3742. y="669.8"
  3743. x="213"
  3744. height="8.703"
  3745. width="12"
  3746. style="opacity:0"
  3747. id="rect1035" />
  3748. <path
  3749. d="m 225,671.24722 c -5.71429,0 -9.5,2.90118 -9.5,7.25268 h 9.5 z"
  3750. style="fill:#c1c1c1"
  3751. id="path1037" />
  3752. </g>
  3753. <g
  3754. transform="translate(-172,131.50012)"
  3755. id="scrollbarslider-focused-left">
  3756. <rect
  3757. y="678.5"
  3758. x="213"
  3759. height="23"
  3760. width="12"
  3761. style="opacity:0"
  3762. id="rect1040" />
  3763. <path
  3764. d="m 215.5,678.5004 v 22.8687 0.131 h 9.5 v -23 h -9.5 z"
  3765. style="fill:#c1c1c1"
  3766. id="path1042" />
  3767. </g>
  3768. <g
  3769. transform="translate(-172,131.50012)"
  3770. id="scrollbarslider-focused-right">
  3771. <rect
  3772. y="678.5"
  3773. x="225"
  3774. height="22.994"
  3775. width="12"
  3776. style="opacity:0"
  3777. id="rect1045" />
  3778. <path
  3779. d="m 225,678.5005 v 23 h 9.5 v -0.131 -22.8686 H 225 Z"
  3780. style="fill:#c1c1c1"
  3781. id="path1047" />
  3782. </g>
  3783. <g
  3784. transform="matrix(1,0,0,1.3788159,-139,-125.52637)"
  3785. id="scrollbarslider-pressed-topright">
  3786. <rect
  3787. y="669.8"
  3788. x="225"
  3789. height="8.703"
  3790. width="12"
  3791. style="opacity:0"
  3792. id="rect1050" />
  3793. <path
  3794. d="M 225,671.24725 V 678.5 h 9.5 c 0,-4.35156 -3.78571,-7.25278 -9.5,-7.25276 z"
  3795. style="fill:#dfdfdf"
  3796. id="path1052" />
  3797. </g>
  3798. <g
  3799. transform="matrix(1,0,0,1.3788175,-139,-125.52741)"
  3800. id="scrollbarslider-pressed-topleft">
  3801. <rect
  3802. y="669.8"
  3803. x="213"
  3804. height="8.703"
  3805. width="12"
  3806. style="opacity:0"
  3807. id="rect1055" />
  3808. <path
  3809. d="m 225,671.24722 c -5.71429,0 -9.5,2.90118 -9.5,7.25268 h 9.5 z"
  3810. style="fill:#dfdfdf"
  3811. id="path1057" />
  3812. </g>
  3813. <g
  3814. transform="translate(-139,131.50012)"
  3815. id="scrollbarslider-pressed-left">
  3816. <rect
  3817. y="678.5"
  3818. x="213"
  3819. height="23"
  3820. width="12"
  3821. style="opacity:0"
  3822. id="rect1060" />
  3823. <path
  3824. d="m 215.5,678.5004 v 22.8687 0.131 h 9.5 v -23 h -9.5 z"
  3825. style="fill:#dfdfdf"
  3826. id="path1062" />
  3827. </g>
  3828. <g
  3829. transform="translate(-139,131.50012)"
  3830. id="scrollbarslider-pressed-right">
  3831. <rect
  3832. y="678.5"
  3833. x="225"
  3834. height="22.994"
  3835. width="12"
  3836. style="opacity:0"
  3837. id="rect1065" />
  3838. <path
  3839. d="m 225,678.5005 v 23 h 9.5 v -0.131 -22.8686 H 225 Z"
  3840. style="fill:#dfdfdf"
  3841. id="path1067" />
  3842. </g>
  3843. <g
  3844. transform="matrix(1,0,0,-1.3788159,-139,1768.5266)"
  3845. id="scrollbarslider-pressed-bottomright">
  3846. <rect
  3847. y="669.8"
  3848. x="225"
  3849. height="8.703"
  3850. width="12"
  3851. style="opacity:0"
  3852. id="rect1070" />
  3853. <path
  3854. d="M 225,671.24725 V 678.5 h 9.5 c 0,-4.35156 -3.78571,-7.25278 -9.5,-7.25276 z"
  3855. style="fill:#dfdfdf"
  3856. id="path1072" />
  3857. </g>
  3858. <g
  3859. transform="matrix(1,0,0,-1.3788175,-139,1768.5277)"
  3860. id="scrollbarslider-pressed-bottomleft">
  3861. <rect
  3862. y="669.8"
  3863. x="213"
  3864. height="8.703"
  3865. width="12"
  3866. style="opacity:0"
  3867. id="rect1075" />
  3868. <path
  3869. d="m 225,671.24722 c -5.71429,0 -9.5,2.90118 -9.5,7.25268 h 9.5 z"
  3870. style="fill:#dfdfdf"
  3871. id="path1077" />
  3872. </g>
  3873. <g
  3874. transform="matrix(1,0,0,-1.3788159,-172,1768.5264)"
  3875. id="scrollbarslider-focused-bottomright">
  3876. <rect
  3877. y="669.8"
  3878. x="225"
  3879. height="8.703"
  3880. width="12"
  3881. style="opacity:0"
  3882. id="rect1080" />
  3883. <path
  3884. d="M 225,671.24725 V 678.5 h 9.5 c 0,-4.35156 -3.78571,-7.25278 -9.5,-7.25276 z"
  3885. style="fill:#c1c1c1"
  3886. id="path1082" />
  3887. </g>
  3888. <g
  3889. transform="matrix(1,0,0,-1.3788175,-172,1768.5275)"
  3890. id="scrollbarslider-focused-bottomleft">
  3891. <rect
  3892. y="669.8"
  3893. x="213"
  3894. height="8.703"
  3895. width="12"
  3896. style="opacity:0"
  3897. id="rect1085" />
  3898. <path
  3899. d="m 225,671.24722 c -5.71429,0 -9.5,2.90118 -9.5,7.25268 h 9.5 z"
  3900. style="fill:#c1c1c1"
  3901. id="path1087" />
  3902. </g>
  3903. <g
  3904. transform="matrix(-1,0,0,1,178,-289)"
  3905. id="scrollbarslider-normal-topright">
  3906. <path
  3907. d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z"
  3908. style="fill:#969696;opacity:0"
  3909. id="path1090" />
  3910. <path
  3911. d="m 155,1090 c -2.5,0 -4.47284,1.6382 -4.5,3.638 V 1101 h 4.5 z"
  3912. style="fill:#989898"
  3913. id="path1092" />
  3914. </g>
  3915. <g
  3916. transform="matrix(-0.99999979,0,0,1.3939056,177.99997,-722.69007)"
  3917. id="scrollbarslider-normal-right">
  3918. <path
  3919. d="m 143,1101 v 16.4064 0.094 h 12 v -16.5 h -12 z"
  3920. style="fill:#969696;opacity:0"
  3921. id="path1095" />
  3922. <path
  3923. d="m 150.5,1101 v 16.4064 0.094 h 4.5 v -16.5 h -4.5 z"
  3924. style="fill:#989898"
  3925. id="path1097" />
  3926. </g>
  3927. <g
  3928. transform="matrix(1,0,0,-1,-132,1936)"
  3929. id="scrollbarslider-normal-bottomleft">
  3930. <path
  3931. d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z"
  3932. style="fill:#969696;opacity:0"
  3933. id="path1100" />
  3934. <path
  3935. d="m 155,1090 c -2.5,0 -4.5,1.638 -4.5,3.638 V 1101 h 4.5 z"
  3936. style="fill:#989898"
  3937. id="path1102" />
  3938. </g>
  3939. <g
  3940. transform="rotate(-180,89,968)"
  3941. id="scrollbarslider-normal-bottomright">
  3942. <path
  3943. d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z"
  3944. style="fill:#969696;opacity:0"
  3945. id="path1105" />
  3946. <path
  3947. d="m 155,1090 c -2.5,0 -4.5,1.638 -4.5,3.638 V 1101 h 4.5 z"
  3948. style="fill:#989898"
  3949. id="path1107" />
  3950. </g>
  3951. <g
  3952. transform="translate(-353,493.97125)"
  3953. id="common-normal-top">
  3954. <path
  3955. d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"
  3956. transform="scale(1,-1)"
  3957. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  3958. id="path1110" />
  3959. </g>
  3960. <rect
  3961. transform="scale(1,-1)"
  3962. y="-904"
  3963. x="257"
  3964. height="40"
  3965. width="40"
  3966. style="opacity:0.001"
  3967. id="common-normal" />
  3968. <g
  3969. transform="translate(-353,493.97125)"
  3970. id="common-normal-topleft">
  3971. <path
  3972. d="m 609,368.0314 c -1.10167,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z"
  3973. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  3974. id="path1114" />
  3975. </g>
  3976. <g
  3977. transform="translate(-353,493.97125)"
  3978. id="common-normal-topright">
  3979. <path
  3980. d="m 650.99998,368.03139 c 1.10161,0 0.99736,-0.10427 0.99736,0.99736 h -0.99736 z"
  3981. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  3982. id="path1117" />
  3983. </g>
  3984. <g
  3985. transform="translate(-353,493.97125)"
  3986. id="common-normal-left">
  3987. <path
  3988. d="m -410.02869,-608.99998 h 40 V -608 h -40 z"
  3989. transform="matrix(0,-1,-1,0,0,0)"
  3990. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  3991. id="path1120" />
  3992. </g>
  3993. <g
  3994. transform="translate(-353,493.97125)"
  3995. id="common-normal-right">
  3996. <path
  3997. d="m 370.02878,651.00002 h 40 v 1.00004 h -40 z"
  3998. transform="matrix(0,1,1,0,0,0)"
  3999. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  4000. id="path1123" />
  4001. </g>
  4002. <g
  4003. transform="translate(-353,493.97125)"
  4004. id="common-normal-bottom">
  4005. <path
  4006. d="m 610.00043,411.02889 h 40 v 0.99986 h -40 z"
  4007. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  4008. id="path1126" />
  4009. </g>
  4010. <g
  4011. transform="translate(-353,493.97125)"
  4012. id="common-normal-bottomleft">
  4013. <path
  4014. d="m 609,412.02609 c -1.10167,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z"
  4015. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  4016. id="path1129" />
  4017. </g>
  4018. <g
  4019. transform="translate(-353,493.97125)"
  4020. id="common-normal-bottomright">
  4021. <path
  4022. d="m 650.99998,412.02609 c 1.10161,0 0.99736,0.10447 0.99736,-0.99735 h -0.99736 z"
  4023. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  4024. id="path1132" />
  4025. </g>
  4026. <path
  4027. d="m 72,92 h -6 v 6 h 6 z"
  4028. style="fill:#ffffff;fill-opacity:1;opacity:0.12"
  4029. id="header-separator" />
  4030. <g
  4031. transform="translate(267,689)"
  4032. style="enable-background:new"
  4033. id="tab-close-normal">
  4034. <rect
  4035. y="0"
  4036. x="0"
  4037. height="22"
  4038. width="22"
  4039. style="opacity:0.001"
  4040. id="rect1136" />
  4041. <g
  4042. transform="matrix(0.99960695,0,0,0.99997077,-56.9717,-514.98451)"
  4043. style="fill:#dfdfdf"
  4044. id="g1142">
  4045. <g
  4046. transform="translate(19,-242)"
  4047. style="fill:#dfdfdf"
  4048. id="g1140">
  4049. <path
  4050. d="m 45,764 h 1 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 h 1 v 1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 v 1 h -1 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 h -1 v -1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 Z"
  4051. style="fill:#dfdfdf"
  4052. id="path1138" />
  4053. </g>
  4054. </g>
  4055. </g>
  4056. <g
  4057. transform="translate(267,689)"
  4058. style="enable-background:new"
  4059. id="tab-close-pressed">
  4060. <rect
  4061. y="0"
  4062. x="46"
  4063. height="22"
  4064. width="22"
  4065. style="opacity:0.001"
  4066. id="rect1145" />
  4067. <circle
  4068. r="11"
  4069. cy="11"
  4070. cx="57"
  4071. style="opacity:0.19;fill:#ffffff"
  4072. id="circle1147" />
  4073. <path
  4074. d="m 53.003145,7.0002283 h 0.999607 c 0.01037,-1.2e-4 0.02078,-4.6e-4 0.03124,0 0.25485,0.0112 0.509669,0.1285762 0.687229,0.3124908 l 2.280354,2.2811834 2.311591,-2.2811834 c 0.26552,-0.2304932 0.446496,-0.305491 0.68723,-0.3124908 H 61 V 8.000199 c 0,0.2864617 -0.03433,0.550634 -0.249901,0.7499781 l -2.280354,2.2811829 2.249116,2.249935 C 60.906975,13.469459 60.999992,13.734731 61,14.000024 v 0.99997 h -0.999606 c -0.265197,-10e-6 -0.530378,-0.0931 -0.718468,-0.281241 l -2.280353,-2.281184 -2.280354,2.281184 c -0.18809,0.188184 -0.453281,0.281241 -0.718467,0.281241 h -0.999607 v -0.99997 c -3e-6,-0.265283 0.09302,-0.530565 0.281139,-0.718729 L 55.564638,11.03136 53.284284,8.7501771 C 53.073625,8.5555528 52.981243,8.2809408 53.003145,8.000199 Z"
  4075. style="fill:#dfdfdf"
  4076. id="path1149" />
  4077. </g>
  4078. <g
  4079. transform="translate(336,689)"
  4080. style="enable-background:new"
  4081. id="tab-close-disabled">
  4082. <rect
  4083. y="0"
  4084. x="0"
  4085. height="22"
  4086. width="22"
  4087. style="opacity:0.001"
  4088. id="rect1152" />
  4089. <g
  4090. transform="matrix(0.99960695,0,0,0.99997077,-56.9717,-514.98451)"
  4091. style="fill:#dfdfdf"
  4092. id="g1158">
  4093. <g
  4094. transform="translate(19,-242)"
  4095. style="fill:#dfdfdf"
  4096. id="g1156">
  4097. <path
  4098. d="m 45,764 h 1 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 h 1 v 1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 v 1 h -1 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 h -1 v -1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 Z"
  4099. style="opacity:0.3;fill:#dfdfdf"
  4100. id="path1154" />
  4101. </g>
  4102. </g>
  4103. </g>
  4104. <g
  4105. transform="translate(267,689)"
  4106. style="enable-background:new"
  4107. id="tab-close-focused">
  4108. <rect
  4109. y="0"
  4110. x="23"
  4111. height="22"
  4112. width="22"
  4113. style="opacity:0.001"
  4114. id="rect1161" />
  4115. <circle
  4116. r="11"
  4117. cy="11"
  4118. cx="34"
  4119. style="opacity:0.08;fill:#ffffff"
  4120. id="circle1163" />
  4121. <g
  4122. transform="matrix(0.99960695,0,0,0.99997077,-14.979168,-756.97744)"
  4123. style="fill:#ffffff"
  4124. id="g1167">
  4125. <path
  4126. d="m 45,764 h 1 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 h 1 v 1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 v 1 h -1 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 h -1 v -1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 Z"
  4127. style="fill:#dfdfdf"
  4128. id="path1165" />
  4129. </g>
  4130. </g>
  4131. <g
  4132. transform="translate(237.00001,260.99998)"
  4133. id="slider-normal-right">
  4134. <rect
  4135. y="162"
  4136. x="34"
  4137. height="8"
  4138. width="8"
  4139. style="opacity:0.26;fill:#ffffff"
  4140. id="rect1388" />
  4141. </g>
  4142. <rect
  4143. y="415"
  4144. x="251"
  4145. height="8"
  4146. width="8"
  4147. style="fill:#e95420"
  4148. id="slider-toggled-topright" />
  4149. <rect
  4150. y="431"
  4151. x="251"
  4152. height="8"
  4153. width="8"
  4154. style="fill:#e95420"
  4155. id="slider-toggled-bottomright" />
  4156. <rect
  4157. y="415"
  4158. x="243"
  4159. height="8"
  4160. width="8"
  4161. style="fill:#e95420"
  4162. id="slider-toggled-topleft" />
  4163. <rect
  4164. y="431"
  4165. x="243"
  4166. height="8"
  4167. width="8"
  4168. style="fill:#e95420"
  4169. id="slider-toggled-bottomleft" />
  4170. <rect
  4171. y="415"
  4172. x="271"
  4173. height="8"
  4174. width="8"
  4175. style="opacity:0.26;fill:#ffffff"
  4176. id="slider-normal-topright" />
  4177. <rect
  4178. y="431"
  4179. x="271"
  4180. height="8"
  4181. width="8"
  4182. style="opacity:0.26;fill:#ffffff"
  4183. id="slider-normal-bottomright" />
  4184. <rect
  4185. y="415"
  4186. x="263"
  4187. height="8"
  4188. width="8"
  4189. style="opacity:0.26;fill:#ffffff"
  4190. id="slider-normal-topleft" />
  4191. <rect
  4192. y="431"
  4193. x="263"
  4194. height="8"
  4195. width="8"
  4196. style="opacity:0.26;fill:#ffffff"
  4197. id="slider-normal-bottomleft" />
  4198. <g
  4199. transform="translate(217.00001,260.99998)"
  4200. id="slider-toggled-right">
  4201. <rect
  4202. y="162"
  4203. x="34"
  4204. height="8"
  4205. width="8"
  4206. style="fill:#e95420"
  4207. id="rect1399" />
  4208. </g>
  4209. <g
  4210. transform="translate(209.00001,260.99998)"
  4211. id="slider-toggled-left">
  4212. <rect
  4213. y="162"
  4214. x="34"
  4215. height="8"
  4216. width="8"
  4217. style="fill:#e95420"
  4218. id="rect1402" />
  4219. </g>
  4220. <g
  4221. transform="translate(229.00001,260.99998)"
  4222. id="slider-normal-left">
  4223. <rect
  4224. y="162"
  4225. x="34"
  4226. height="8"
  4227. width="8"
  4228. style="opacity:0.26;fill:#ffffff"
  4229. id="rect1405" />
  4230. </g>
  4231. <rect
  4232. y="58"
  4233. x="202"
  4234. height="8"
  4235. width="8"
  4236. style="opacity:0.08;fill:#ffffff"
  4237. id="tbutton-normal-bottom" />
  4238. <rect
  4239. y="50"
  4240. x="202"
  4241. height="8"
  4242. width="8"
  4243. style="opacity:0.08;fill:#ffffff"
  4244. id="tbutton-normal" />
  4245. <rect
  4246. y="42"
  4247. x="202"
  4248. height="8"
  4249. width="8"
  4250. style="opacity:0.08;fill:#ffffff"
  4251. id="tbutton-normal-top" />
  4252. <path
  4253. d="m 194,50 h 8 v -8 c -8,0 -8,8 -8,8 z"
  4254. style="opacity:0.08;fill:#ffffff"
  4255. id="tbutton-normal-topleft" />
  4256. <path
  4257. d="m 194,58 h 8 v 8 c -8,0 -8,-8 -8,-8 z"
  4258. style="opacity:0.08;fill:#ffffff"
  4259. id="tbutton-normal-bottomleft" />
  4260. <rect
  4261. y="50"
  4262. x="194"
  4263. height="8"
  4264. width="8"
  4265. style="opacity:0.08;fill:#ffffff"
  4266. id="tbutton-normal-left" />
  4267. <path
  4268. d="m 218,50 h -8 v -8 c 8,0 8,8 8,8 z"
  4269. style="opacity:0.08;fill:#ffffff"
  4270. id="tbutton-normal-topright" />
  4271. <path
  4272. d="m 218,58 h -8 v 8 c 8,0 8,-8 8,-8 z"
  4273. style="opacity:0.08;fill:#ffffff"
  4274. id="tbutton-normal-bottomright" />
  4275. <rect
  4276. transform="scale(-1,1)"
  4277. y="50"
  4278. x="-218"
  4279. height="8"
  4280. width="8"
  4281. style="opacity:0.08;fill:#ffffff"
  4282. id="tbutton-normal-right" />
  4283. <rect
  4284. y="58"
  4285. x="231"
  4286. height="8"
  4287. width="8"
  4288. style="opacity:0.19;fill:#ffffff"
  4289. id="tbutton-pressed-bottom" />
  4290. <rect
  4291. y="50"
  4292. x="231"
  4293. height="8"
  4294. width="8"
  4295. style="opacity:0.19;fill:#ffffff"
  4296. id="tbutton-pressed" />
  4297. <rect
  4298. y="42"
  4299. x="231"
  4300. height="8"
  4301. width="8"
  4302. style="opacity:0.19;fill:#ffffff"
  4303. id="tbutton-pressed-top" />
  4304. <path
  4305. d="m 223,50 h 8 v -8 c -8,0 -8,8 -8,8 z"
  4306. style="opacity:0.19;fill:#ffffff"
  4307. id="tbutton-pressed-topleft" />
  4308. <path
  4309. d="m 223,58 h 8 v 8 c -8,0 -8,-8 -8,-8 z"
  4310. style="opacity:0.19;fill:#ffffff"
  4311. id="tbutton-pressed-bottomleft" />
  4312. <rect
  4313. y="50"
  4314. x="223"
  4315. height="8"
  4316. width="8"
  4317. style="opacity:0.19;fill:#ffffff"
  4318. id="tbutton-pressed-left" />
  4319. <path
  4320. d="m 247,50 h -8 v -8 c 8,0 8,8 8,8 z"
  4321. style="opacity:0.19;fill:#ffffff"
  4322. id="tbutton-pressed-topright" />
  4323. <path
  4324. d="m 247,58 h -8 v 8 c 8,0 8,-8 8,-8 z"
  4325. style="opacity:0.19;fill:#ffffff"
  4326. id="tbutton-pressed-bottomright" />
  4327. <rect
  4328. transform="scale(-1,1)"
  4329. y="50"
  4330. x="-247"
  4331. height="8"
  4332. width="8"
  4333. style="opacity:0.19;fill:#ffffff"
  4334. id="tbutton-pressed-right" />
  4335. <rect
  4336. y="147"
  4337. x="420"
  4338. height="10"
  4339. width="10"
  4340. style="stroke-width:1.25"
  4341. id="expand-tbutton-normal" />
  4342. <rect
  4343. y="50"
  4344. x="260"
  4345. height="8"
  4346. width="8"
  4347. style="opacity:0.001"
  4348. id="tbutton-toggled" />
  4349. <rect
  4350. y="42"
  4351. x="260"
  4352. height="8"
  4353. width="8"
  4354. style="opacity:0.001"
  4355. id="tbutton-toggled-top" />
  4356. <rect
  4357. y="50"
  4358. x="252"
  4359. height="8"
  4360. width="8"
  4361. style="opacity:0.001"
  4362. id="tbutton-toggled-left" />
  4363. <rect
  4364. transform="scale(-1,1)"
  4365. y="50"
  4366. x="-276"
  4367. height="8"
  4368. width="8"
  4369. style="opacity:0.001"
  4370. id="tbutton-toggled-right" />
  4371. <rect
  4372. y="42"
  4373. x="252"
  4374. height="8"
  4375. width="8"
  4376. style="opacity:0.001"
  4377. id="tbutton-toggled-topleft" />
  4378. <rect
  4379. y="42"
  4380. x="268"
  4381. height="8"
  4382. width="8"
  4383. style="opacity:0.001"
  4384. id="tbutton-toggled-topright" />
  4385. <g
  4386. transform="translate(4.0000027,-1.0000004)"
  4387. id="tbutton-toggled-bottomleft">
  4388. <rect
  4389. y="59"
  4390. x="248"
  4391. height="8"
  4392. width="8"
  4393. style="opacity:0.001"
  4394. id="rect1433" />
  4395. <path
  4396. d="m 248,63.7 h 8 v 0.95 h -8 z"
  4397. style="fill:#b45fae"
  4398. id="path1435" />
  4399. </g>
  4400. <g
  4401. transform="translate(4.0000027,-1.0000004)"
  4402. id="tbutton-toggled-bottom">
  4403. <rect
  4404. y="59"
  4405. x="256"
  4406. height="8"
  4407. width="8"
  4408. style="opacity:0.001"
  4409. id="rect1438" />
  4410. <path
  4411. d="m 256,63.7 h 8 v 0.95 h -8 z"
  4412. style="fill:#b45fae"
  4413. id="path1440" />
  4414. </g>
  4415. <g
  4416. transform="translate(4.0000027,-1.0000004)"
  4417. id="tbutton-toggled-bottomright">
  4418. <rect
  4419. y="59"
  4420. x="264"
  4421. height="8"
  4422. width="8"
  4423. style="opacity:0.001"
  4424. id="rect1443" />
  4425. <path
  4426. d="m 264,63.7 h 8 v 0.95 h -8 z"
  4427. style="fill:#b45fae"
  4428. id="path1445" />
  4429. </g>
  4430. <rect
  4431. y="506"
  4432. x="305"
  4433. height="20"
  4434. width="20"
  4435. style="fill:#4c4c4c"
  4436. id="menubar-normal" />
  4437. <rect
  4438. transform="rotate(90)"
  4439. y="-305"
  4440. x="506"
  4441. height="5"
  4442. width="20"
  4443. style="fill:#4c4c4c"
  4444. id="menubar-normal-left" />
  4445. <rect
  4446. transform="rotate(90)"
  4447. y="-305"
  4448. x="501"
  4449. height="5"
  4450. width="5"
  4451. style="fill:#4c4c4c"
  4452. id="menubar-normal-topleft" />
  4453. <rect
  4454. y="501"
  4455. x="305"
  4456. height="5"
  4457. width="20"
  4458. style="fill:#4c4c4c"
  4459. id="menubar-normal-top" />
  4460. <rect
  4461. transform="rotate(90)"
  4462. y="-330"
  4463. x="506"
  4464. height="5"
  4465. width="20"
  4466. style="fill:#4c4c4c"
  4467. id="menubar-normal-right" />
  4468. <rect
  4469. transform="rotate(90)"
  4470. y="-330"
  4471. x="501"
  4472. height="5"
  4473. width="5"
  4474. style="fill:#4c4c4c"
  4475. id="menubar-normal-topright" />
  4476. <g
  4477. transform="translate(4.2167968e-6,-91)"
  4478. id="menubar-normal-bottomleft">
  4479. <rect
  4480. y="617"
  4481. x="300"
  4482. height="1"
  4483. width="5"
  4484. style="fill:#4c4c4c"
  4485. id="rect1454" />
  4486. <g
  4487. transform="matrix(0.25,0,0,1,223.75,0)"
  4488. id="menubar-normal-bottomleft2">
  4489. <path
  4490. d="m 305,621 h 20 v -3 h -20 z"
  4491. style="fill:url(#linearGradient1948)"
  4492. id="path1456" />
  4493. </g>
  4494. </g>
  4495. <g
  4496. transform="translate(4.2167968e-6,-91)"
  4497. id="menubar-normal-bottomright">
  4498. <rect
  4499. y="617"
  4500. x="325"
  4501. height="1"
  4502. width="5"
  4503. style="fill:#4c4c4c"
  4504. id="rect1460" />
  4505. <g
  4506. transform="matrix(0.25,0,0,1,248.75,0)"
  4507. style="fill:#b6b6b6"
  4508. id="menubar-normal-bottomright2">
  4509. <path
  4510. d="m 305,621 h 20 v -3 h -20 z"
  4511. style="fill:url(#linearGradient2561)"
  4512. id="path1462" />
  4513. </g>
  4514. </g>
  4515. <g
  4516. transform="translate(4.2167968e-6,-91)"
  4517. id="menubar-normal-bottom">
  4518. <rect
  4519. y="617"
  4520. x="305"
  4521. height="1"
  4522. width="20"
  4523. style="fill:#4c4c4c"
  4524. id="rect1466" />
  4525. <rect
  4526. y="618"
  4527. x="305"
  4528. height="3"
  4529. width="20"
  4530. style="fill:url(#linearGradient2573)"
  4531. id="rect1468" />
  4532. </g>
  4533. <g
  4534. transform="translate(0,-33)"
  4535. id="focus-left">
  4536. <path
  4537. d="m 183,121 v 10 h 2 v -10 z"
  4538. style="opacity:0.12;fill:#ffffff"
  4539. id="path1484" />
  4540. </g>
  4541. <g
  4542. transform="translate(-2,-33)"
  4543. id="focus-right">
  4544. <path
  4545. d="m 197,121 v 10 h 2 v -10 z"
  4546. style="opacity:0.12;fill:#ffffff"
  4547. id="path1487" />
  4548. </g>
  4549. <g
  4550. transform="translate(-1,-32)"
  4551. id="focus-top">
  4552. <path
  4553. d="m 186,118 v 2 h 10 v -2 z"
  4554. style="opacity:0.12;fill:#ffffff"
  4555. id="path1490" />
  4556. </g>
  4557. <g
  4558. transform="translate(-1,-34)"
  4559. id="focus-bottom">
  4560. <path
  4561. d="m 186,132 v 2 h 10 v -2 z"
  4562. style="opacity:0.12;fill:#ffffff"
  4563. id="path1493" />
  4564. </g>
  4565. <path
  4566. d="m 183,98 h 2 v 2 c -2,0 -2,-2 -2,-2 z"
  4567. style="opacity:0.12;fill:#ffffff"
  4568. id="focus-bottomleft" />
  4569. <path
  4570. d="m 197,98 h -2 v 2 c 2,0 2,-2 2,-2 z"
  4571. style="opacity:0.12;fill:#ffffff"
  4572. id="focus-bottomright" />
  4573. <path
  4574. d="m 183,88 h 2 v -2 c -2,0 -2,2 -2,2 z"
  4575. style="opacity:0.12;fill:#ffffff"
  4576. id="focus-topleft" />
  4577. <path
  4578. d="m 197,88 h -2 v -2 c 2,0 2,2 2,2 z"
  4579. style="opacity:0.12;fill:#ffffff"
  4580. id="focus-topright" />
  4581. <path
  4582. d="M 193.86719,223 C 192.29635,223 191,221.70365 191,220.13281 V 209.86719 C 191,208.29636 192.29634,207 193.86719,207 h 10.26562 c 1.57084,0 2.86719,1.29635 2.86719,2.86719 v 10.26562 C 207,221.70366 205.70364,223 204.13281,223 Z m 0,-2 h 10.26562 C 204.63024,221 205,220.63025 205,220.13281 V 209.86719 C 205,209.36977 204.63023,209 204.13281,209 H 193.86719 C 193.36975,209 193,209.36976 193,209.86719 v 10.26562 c 0,0.49745 0.36974,0.86719 0.86719,0.86719 z"
  4583. style="opacity:0.4;fill:#ffffff"
  4584. id="checkbox-normal" />
  4585. <path
  4586. d="M 231.86719,223 C 230.29635,223 229,221.70365 229,220.13281 V 209.86719 C 229,208.29636 230.29634,207 231.86719,207 h 10.26562 c 1.57084,0 2.86719,1.29635 2.86719,2.86719 v 10.26562 C 245,221.70366 243.70364,223 242.13281,223 Z m 0,-2 h 10.26562 C 242.63024,221 243,220.63025 243,220.13281 V 209.86719 C 243,209.36977 242.63023,209 242.13281,209 H 231.86719 C 231.36975,209 231,209.36976 231,209.86719 v 10.26562 c 0,0.49745 0.36974,0.86719 0.86719,0.86719 z"
  4587. style="opacity:0.4;fill:#ffffff"
  4588. id="checkbox-focused" />
  4589. <path
  4590. d="m 349,207 c -1.108,0 -2,0.892 -2,2 v 12 c 0,1.108 0.892,2 2,2 h 12 c 1.108,0 2,-0.892 2,-2 v -12 c 0,-1.108 -0.892,-2 -2,-2 z m 2.59961,7 h 6.80078 c 0.8864,0 1.59961,0.169 1.59961,1 0,0.831 -0.71321,1 -1.59961,1 h -6.80078 C 350.71321,216 350,215.831 350,215 c 0,-0.831 0.71321,-1 1.59961,-1 z"
  4591. style="fill:#b45fae"
  4592. id="checkbox-tristate-normal" />
  4593. <g
  4594. transform="translate(-0.500005,6.999997)"
  4595. id="checkbox-checked-normal">
  4596. <path
  4597. d="m 274,207 c -1.108,0 -2,0.892 -2,2 v 12 c 0,1.108 0.892,2 2,2 h 12 c 1.108,0 2,-0.892 2,-2 v -12 c 0,-1.108 -0.892,-2 -2,-2 z m 10.05078,3.99023 a 1.0001,1.0001 0 0 1 0.67578,1.69532 l -5.61914,5.95703 -3.7168,-2.84961 a 1.0001,1.0001 0 1 1 1.21876,-1.58594 l 2.2832,1.75 4.38086,-4.64258 a 1.0001,1.0001 0 0 1 0.77734,-0.32422 z"
  4598. transform="translate(0.5,-7)"
  4599. style="fill:#b45fae"
  4600. id="path1560" />
  4601. </g>
  4602. <g
  4603. transform="translate(39.499995,9.499997)"
  4604. id="checkbox-tristate-focused">
  4605. <path
  4606. d="m 389.5,207 c -1.108,0 -2,0.892 -2,2 v 12 c 0,1.108 0.892,2 2,2 h 12 c 1.108,0 2,-0.892 2,-2 v -12 c 0,-1.108 -0.892,-2 -2,-2 z m 2.59961,7 h 6.80078 c 0.8864,0 1.59961,0.169 1.59961,1 0,0.831 -0.71321,1 -1.59961,1 h -6.80078 c -0.8864,0 -1.59961,-0.169 -1.59961,-1 0,-0.831 0.71321,-1 1.59961,-1 z"
  4607. transform="translate(-40,-9.5)"
  4608. style="fill:#b45fae"
  4609. id="path1563" />
  4610. </g>
  4611. <g
  4612. transform="translate(35.499995,6.999997)"
  4613. id="checkbox-checked-focused">
  4614. <path
  4615. d="m 274,207 c -1.108,0 -2,0.892 -2,2 v 12 c 0,1.108 0.892,2 2,2 h 12 c 1.108,0 2,-0.892 2,-2 v -12 c 0,-1.108 -0.892,-2 -2,-2 z m 10.05078,3.99023 a 1.0001,1.0001 0 0 1 0.67578,1.69532 l -5.61914,5.95703 -3.7168,-2.84961 a 1.0001,1.0001 0 1 1 1.21876,-1.58594 l 2.2832,1.75 4.38086,-4.64258 a 1.0001,1.0001 0 0 1 0.77734,-0.32422 z"
  4616. transform="translate(0.5,-7)"
  4617. style="fill:#b45fae"
  4618. id="path2377" />
  4619. </g>
  4620. <rect
  4621. y="490"
  4622. x="43"
  4623. height="5"
  4624. width="2"
  4625. style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:2.58198881;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4626. id="menu-shadow-hint-top" />
  4627. <rect
  4628. transform="rotate(90)"
  4629. y="-15"
  4630. x="523"
  4631. height="5"
  4632. width="2"
  4633. style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:2.58198881;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4634. id="menu-shadow-hint-left" />
  4635. <rect
  4636. transform="rotate(90)"
  4637. y="-78"
  4638. x="523"
  4639. height="5"
  4640. width="2"
  4641. style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:2.58198881;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4642. id="menu-shadow-hint-right" />
  4643. <rect
  4644. transform="scale(-1)"
  4645. y="-560"
  4646. x="-45"
  4647. height="7"
  4648. width="2"
  4649. style="opacity:1;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:3.05505037;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4650. id="menu-shadow-hint-bottom" />
  4651. <rect
  4652. y="642"
  4653. x="25"
  4654. height="2"
  4655. width="2"
  4656. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4657. id="tab-focused" />
  4658. <rect
  4659. y="640"
  4660. x="25"
  4661. height="2"
  4662. width="2"
  4663. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4664. id="tab-focused-top" />
  4665. <rect
  4666. y="642"
  4667. x="27"
  4668. height="2"
  4669. width="2"
  4670. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4671. id="tab-focused-right" />
  4672. <rect
  4673. y="640"
  4674. x="27"
  4675. height="2"
  4676. width="2"
  4677. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4678. id="tab-focused-topright" />
  4679. <rect
  4680. y="642"
  4681. x="23"
  4682. height="2"
  4683. width="2"
  4684. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4685. id="tab-focused-left" />
  4686. <rect
  4687. y="640"
  4688. x="23"
  4689. height="2"
  4690. width="2"
  4691. style="fill:#000000;fill-opacity:1;stroke-width:0.2;opacity:0.001"
  4692. id="tab-focused-topleft" />
  4693. <g
  4694. transform="matrix(0.2,0,0,1,13.4,0)"
  4695. id="tab-focused-bottomleft">
  4696. <rect
  4697. y="644"
  4698. x="48"
  4699. height="2"
  4700. width="10"
  4701. style="opacity:1;fill:#333333;fill-opacity:1;stroke:none;stroke-width:2.82842708;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4702. id="rect1930" />
  4703. </g>
  4704. <g
  4705. transform="matrix(0.2,0,0,1,13.4,0)"
  4706. id="tab-focused-bottom">
  4707. <rect
  4708. y="644"
  4709. x="58"
  4710. height="2"
  4711. width="10"
  4712. style="opacity:1;fill:#333333;fill-opacity:1;stroke:none;stroke-width:2.82842708;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4713. id="rect1932" />
  4714. </g>
  4715. <g
  4716. transform="matrix(0.2,0,0,1,13.4,0)"
  4717. id="tab-focused-bottomright">
  4718. <rect
  4719. y="644"
  4720. x="68"
  4721. height="2"
  4722. width="10"
  4723. style="opacity:1;fill:#333333;fill-opacity:1;stroke:none;stroke-width:2.82842708;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  4724. id="rect1934" />
  4725. </g>
  4726. <g
  4727. transform="matrix(0.2,0,0,0.2,12,515.2)"
  4728. id="tab-toggled-topleft">
  4729. <rect
  4730. y="624"
  4731. x="15"
  4732. height="10"
  4733. width="10"
  4734. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  4735. id="rect1959" />
  4736. </g>
  4737. <g
  4738. transform="matrix(0.2,0,0,0.2,12,515.2)"
  4739. id="tab-toggled-left">
  4740. <rect
  4741. y="634"
  4742. x="15"
  4743. height="10"
  4744. width="10"
  4745. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  4746. id="rect1957" />
  4747. </g>
  4748. <g
  4749. transform="matrix(-0.2,0,0,0.2,24,515.2)"
  4750. id="tab-toggled-topright">
  4751. <rect
  4752. y="624"
  4753. x="15"
  4754. height="10"
  4755. width="10"
  4756. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  4757. id="rect1973" />
  4758. </g>
  4759. <g
  4760. transform="matrix(-0.2,0,0,0.2,24,515.2)"
  4761. id="tab-toggled-right">
  4762. <rect
  4763. y="634"
  4764. x="15"
  4765. height="10"
  4766. width="10"
  4767. style="fill:#e95420;stroke-width:0.2;fill-opacity:0.07"
  4768. id="rect1979" />
  4769. </g>
  4770. <g
  4771. transform="translate(-6,-9)"
  4772. id="slidercursor-tickless-normal">
  4773. <rect
  4774. y="405"
  4775. x="317"
  4776. height="22"
  4777. width="22"
  4778. style="opacity:0.00100002"
  4779. id="rect1170" />
  4780. <circle
  4781. r="5"
  4782. cy="416"
  4783. cx="328"
  4784. style="fill:#b45fae"
  4785. id="circle1172" />
  4786. </g>
  4787. <g
  4788. transform="translate(-6,-9)"
  4789. id="slidercursor-tickless-pressed">
  4790. <rect
  4791. y="405"
  4792. x="361"
  4793. height="22"
  4794. width="22"
  4795. style="opacity:0.00100002"
  4796. id="rect1175" />
  4797. <circle
  4798. r="11"
  4799. cy="416"
  4800. cx="372"
  4801. style="opacity:0.18999999;fill:#b45fae"
  4802. id="circle1177" />
  4803. <circle
  4804. r="5"
  4805. cy="416"
  4806. cx="372"
  4807. style="fill:#b45fae"
  4808. id="circle1179" />
  4809. </g>
  4810. <g
  4811. transform="translate(-6,-9)"
  4812. id="slidercursor-tickless-focused">
  4813. <rect
  4814. y="405"
  4815. x="339"
  4816. height="22"
  4817. width="22"
  4818. style="opacity:0.00100002"
  4819. id="rect1182" />
  4820. <circle
  4821. r="11"
  4822. cy="416"
  4823. cx="350"
  4824. style="opacity:0.07999998;fill:#b45fae"
  4825. id="circle1184" />
  4826. <circle
  4827. r="5"
  4828. cy="416"
  4829. cx="350"
  4830. style="fill:#b45fae"
  4831. id="circle1186" />
  4832. </g>
  4833. <g
  4834. transform="translate(-6,-9)"
  4835. id="slidercursor-tickless-disabled">
  4836. <rect
  4837. y="405"
  4838. x="295"
  4839. height="22"
  4840. width="22"
  4841. style="opacity:0.00100002"
  4842. id="rect1189" />
  4843. <g
  4844. id="g1195">
  4845. <circle
  4846. r="5"
  4847. cy="416"
  4848. cx="306"
  4849. style="fill:#545454;fill-opacity:1"
  4850. id="circle1191" />
  4851. </g>
  4852. </g>
  4853. <g
  4854. transform="translate(-6,-9)"
  4855. id="slidercursor-normal">
  4856. <rect
  4857. y="427"
  4858. x="317"
  4859. height="22"
  4860. width="22"
  4861. style="opacity:0.00100002"
  4862. id="rect1198" />
  4863. <path
  4864. d="m 335,438.00012 -3.39987,-3.47168 c -0.002,-0.002 -0.006,-0.002 -0.008,-0.005 C 330.65048,433.55011 329.35428,433.00038 328,433 c -2.76142,0 -5,2.23858 -5,5 0,2.76142 2.23858,5 5,5 1.34054,-0.002 2.62419,-0.54194 3.56283,-1.49902 0.004,-0.002 0.009,-0.004 0.013,-0.007 z"
  4865. style="fill:#b45fae"
  4866. id="path1200" />
  4867. </g>
  4868. <g
  4869. transform="translate(-6,-9)"
  4870. id="slidercursor-focused">
  4871. <rect
  4872. y="427"
  4873. x="339"
  4874. height="22"
  4875. width="22"
  4876. style="opacity:0.00100002"
  4877. id="rect1203" />
  4878. <circle
  4879. r="11"
  4880. cy="438"
  4881. cx="350"
  4882. style="opacity:0.07999998;fill:#b45fae;fill-opacity:1"
  4883. id="circle1205" />
  4884. <path
  4885. d="m 357,438.00012 -3.39987,-3.47168 c -0.002,-0.002 -0.006,-0.002 -0.008,-0.005 C 352.65048,433.55011 351.35428,433.00038 350,433 c -2.76142,0 -5,2.23858 -5,5 0,2.76142 2.23858,5 5,5 1.34054,-0.002 2.62419,-0.54194 3.56283,-1.49902 0.004,-0.002 0.009,-0.004 0.013,-0.007 z"
  4886. style="fill:#b45fae"
  4887. id="path1207" />
  4888. </g>
  4889. <g
  4890. transform="translate(-6,-9)"
  4891. id="slidercursor-pressed">
  4892. <rect
  4893. y="427"
  4894. x="361"
  4895. height="22"
  4896. width="22"
  4897. style="opacity:0.00100002"
  4898. id="rect1210" />
  4899. <circle
  4900. r="11"
  4901. cy="438"
  4902. cx="372"
  4903. style="opacity:0.18999999;fill:#b45fae;fill-opacity:1"
  4904. id="circle1212" />
  4905. <path
  4906. d="m 379,438.00012 -3.39987,-3.47168 c -0.002,-0.002 -0.006,-0.002 -0.008,-0.005 C 374.65048,433.55011 373.35428,433.00038 372,433 c -2.76142,0 -5,2.23858 -5,5 0,2.76142 2.23858,5 5,5 1.34054,-0.002 2.62419,-0.54194 3.56283,-1.49902 0.004,-0.002 0.009,-0.004 0.013,-0.007 z"
  4907. style="fill:#b45fae"
  4908. id="path1214" />
  4909. </g>
  4910. <g
  4911. transform="translate(-28,-9)"
  4912. id="slidercursor-disabled">
  4913. <rect
  4914. y="427"
  4915. x="317"
  4916. height="22"
  4917. width="22"
  4918. style="opacity:0.00100002"
  4919. id="rect2884" />
  4920. <path
  4921. d="m 335,438.00012 -3.39987,-3.47168 c -0.002,-0.002 -0.006,-0.002 -0.008,-0.005 C 330.65048,433.55011 329.35428,433.00038 328,433 c -2.76142,0 -5,2.23858 -5,5 0,2.76142 2.23858,5 5,5 1.34054,-0.002 2.62419,-0.54194 3.56283,-1.49902 0.004,-0.002 0.009,-0.004 0.013,-0.007 z"
  4922. style="fill:#545454;fill-opacity:1"
  4923. id="path2886" />
  4924. </g>
  4925. <rect
  4926. y="642"
  4927. x="2"
  4928. height="2"
  4929. width="2"
  4930. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1;stroke-width:0.2"
  4931. id="tab-pressed" />
  4932. <rect
  4933. y="640"
  4934. x="2"
  4935. height="2"
  4936. width="2"
  4937. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1;stroke-width:0.2"
  4938. id="tab-pressed-top" />
  4939. <rect
  4940. y="644"
  4941. x="2"
  4942. height="2"
  4943. width="2"
  4944. style="fill:#b45fae;stroke-width:0.2"
  4945. id="tab-pressed-bottom" />
  4946. <rect
  4947. y="644"
  4948. x="4"
  4949. height="2"
  4950. width="2"
  4951. style="fill:#b45fae;stroke-width:0.2"
  4952. id="tab-pressed-bottomright" />
  4953. <rect
  4954. y="644"
  4955. x="0"
  4956. height="2"
  4957. width="2"
  4958. style="fill:#b45fae;stroke-width:0.19999999"
  4959. id="tab-pressed-bottomleft" />
  4960. <g
  4961. transform="matrix(0.2,0,0,0.2,-3,515.2)"
  4962. id="tab-pressed-topleft">
  4963. <rect
  4964. y="624"
  4965. x="15"
  4966. height="10"
  4967. width="10"
  4968. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1"
  4969. id="rect3049" />
  4970. </g>
  4971. <g
  4972. transform="matrix(0.2,0,0,0.2,-3,515.2)"
  4973. id="tab-pressed-left">
  4974. <rect
  4975. y="634"
  4976. x="15"
  4977. height="10"
  4978. width="10"
  4979. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1"
  4980. id="rect3053" />
  4981. </g>
  4982. <g
  4983. transform="matrix(-0.2,0,0,0.2,9,515.2)"
  4984. id="tab-pressed-topright">
  4985. <rect
  4986. y="624"
  4987. x="15"
  4988. height="10"
  4989. width="10"
  4990. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1"
  4991. id="rect3057" />
  4992. </g>
  4993. <g
  4994. transform="matrix(-0.2,0,0,0.2,9,515.2)"
  4995. id="tab-pressed-right">
  4996. <rect
  4997. y="634"
  4998. x="15"
  4999. height="10"
  5000. width="10"
  5001. style="opacity:0.12000002;fill:#b45fae;fill-opacity:1"
  5002. id="rect3061" />
  5003. </g>
  5004. <rect
  5005. y="506"
  5006. x="341"
  5007. height="20"
  5008. width="20"
  5009. style="fill:#3c3c3c;fill-opacity:1"
  5010. id="menubar-normal-inactive" />
  5011. <rect
  5012. transform="rotate(90)"
  5013. y="-341"
  5014. x="506"
  5015. height="5"
  5016. width="20"
  5017. style="fill:#3c3c3c;fill-opacity:1"
  5018. id="menubar-normal-inactive-left" />
  5019. <rect
  5020. transform="rotate(90)"
  5021. y="-341"
  5022. x="501"
  5023. height="5"
  5024. width="5"
  5025. style="fill:#3c3c3c;fill-opacity:1"
  5026. id="menubar-normal-inactive-topleft" />
  5027. <rect
  5028. y="501"
  5029. x="341"
  5030. height="5"
  5031. width="20"
  5032. style="fill:#3c3c3c;fill-opacity:1"
  5033. id="menubar-normal-inactive-top" />
  5034. <rect
  5035. transform="rotate(90)"
  5036. y="-366"
  5037. x="506"
  5038. height="5"
  5039. width="20"
  5040. style="fill:#3c3c3c;fill-opacity:1"
  5041. id="menubar-normal-inactive-right" />
  5042. <rect
  5043. transform="rotate(90)"
  5044. y="-366"
  5045. x="501"
  5046. height="5"
  5047. width="5"
  5048. style="fill:#3c3c3c;fill-opacity:1"
  5049. id="menubar-normal-inactive-topright" />
  5050. <g
  5051. transform="translate(36.000007,-91)"
  5052. id="menubar-normal-inactive-bottomleft">
  5053. <rect
  5054. y="617"
  5055. x="300"
  5056. height="1"
  5057. width="5"
  5058. style="fill:#3c3c3c;fill-opacity:1"
  5059. id="rect3097" />
  5060. <g
  5061. transform="matrix(0.25,0,0,1,223.75,0)"
  5062. id="g3101">
  5063. <path
  5064. d="m 305,621 h 20 v -3 h -20 z"
  5065. style="fill:url(#linearGradient3119)"
  5066. id="path3099" />
  5067. </g>
  5068. </g>
  5069. <g
  5070. transform="translate(36.000007,-91)"
  5071. id="menubar-normal-inactive-bottomright">
  5072. <rect
  5073. y="617"
  5074. x="325"
  5075. height="1"
  5076. width="5"
  5077. style="fill:#3c3c3c;fill-opacity:1"
  5078. id="rect3105" />
  5079. <g
  5080. transform="matrix(0.25,0,0,1,248.75,0)"
  5081. style="fill:#b6b6b6"
  5082. id="g3109">
  5083. <path
  5084. d="m 305,621 h 20 v -3 h -20 z"
  5085. style="fill:url(#linearGradient3121)"
  5086. id="path3107" />
  5087. </g>
  5088. </g>
  5089. <g
  5090. transform="translate(36.000007,-91)"
  5091. id="menubar-normal-inactive-bottom">
  5092. <rect
  5093. y="617"
  5094. x="305"
  5095. height="1"
  5096. width="20"
  5097. style="fill:#3c3c3c;fill-opacity:1"
  5098. id="rect3113" />
  5099. <rect
  5100. y="618"
  5101. x="305"
  5102. height="3"
  5103. width="20"
  5104. style="fill:url(#linearGradient3123)"
  5105. id="rect3115" />
  5106. </g>
  5107. <path
  5108. d="m 389,598 h 8 v 8 h -8 z"
  5109. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:0.51639777"
  5110. id="tooltip-shadow-left" />
  5111. <path
  5112. d="m 397.00024,589.99951 c 0,0 -8.00024,4.9e-4 -8.00024,8.00048 h 8 z"
  5113. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:1.60000002"
  5114. id="tooltip-shadow-topleft" />
  5115. <path
  5116. d="m 405.00024,589.99951 v 8 h -8 v -8 z"
  5117. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:0.51639777"
  5118. id="tooltip-shadow-top" />
  5119. <path
  5120. d="m 413.00024,597.99975 c 0,0 -2.4e-4,-7.99975 -8,-8.00024 v 8 z"
  5121. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:1.59995198"
  5122. id="tooltip-shadow-topright" />
  5123. <path
  5124. d="m 413.00024,597.99951 h -8 v 8 l 8,-5e-5 z"
  5125. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:0.51639777"
  5126. id="tooltip-shadow-right" />
  5127. <path
  5128. d="m 405,613.99951 c 8,4.9e-4 8,-7.99951 8.00024,-8 h -8 z"
  5129. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:1.59995198"
  5130. id="tooltip-shadow-bottomright" />
  5131. <path
  5132. d="m 397.00024,613.99951 5e-5,-8 h 7.99995 l -5e-5,8 z"
  5133. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:0.51639616"
  5134. id="tooltip-shadow-bottom" />
  5135. <path
  5136. d="M 389,605.99976 C 389,614 397,614 397,614 v -8 z"
  5137. style="opacity:0.9;fill:#616161;fill-opacity:1;stroke-width:1.59995198"
  5138. id="tooltip-shadow-bottomleft" />
  5139. <rect
  5140. y="590"
  5141. x="400"
  5142. height="8"
  5143. width="2"
  5144. style="fill:#ff00ff;stroke-width:2"
  5145. id="tooltip-shadow-hint-top" />
  5146. <use
  5147. xlink:href="#menu-shadow-hint-left"
  5148. transform="matrix(1.6,0,0,1,373,78)"
  5149. y="0"
  5150. x="0"
  5151. height="100%"
  5152. width="100%"
  5153. style="fill:#800080"
  5154. id="tooltip-shadow-hint-left" />
  5155. <use
  5156. xlink:href="#menu-shadow-hint-right"
  5157. transform="matrix(1.6,0,0,1,288.2,78)"
  5158. y="0"
  5159. x="0"
  5160. height="100%"
  5161. width="100%"
  5162. style="fill:#800080"
  5163. id="tooltip-shadow-hint-right" />
  5164. <use
  5165. xlink:href="#menu-shadow-hint-bottom"
  5166. transform="matrix(1,0,0,1.1428571,357,-25.999976)"
  5167. y="0"
  5168. x="0"
  5169. height="100%"
  5170. width="100%"
  5171. style="fill:#800080"
  5172. id="tooltip-shadow-hint-bottom" />
  5173. <path
  5174. d="M 100.5 730 C 88.035 730 78 740.035 78 752.5 C 78 764.965 88.035 775 100.5 775 C 112.965 775 123 764.965 123 752.5 C 123 740.035 112.965 730 100.5 730 z M 100.5 731 C 112.411 731 122 740.589 122 752.5 C 122 764.411 112.411 774 100.5 774 C 88.589 774 79 764.411 79 752.5 C 79 740.589 88.589 731 100.5 731 z"
  5175. style="opacity:0.26;fill:#ffffff;stroke-width:0.99999994"
  5176. id="dial-notches" />
  5177. <g
  5178. transform="translate(5,-11)"
  5179. id="button-normal-bottom">
  5180. <path
  5181. d="m 9,73 v 5 h 26 v -5 z"
  5182. style="fill:url(#linearGradient2251-2)"
  5183. id="path1476" />
  5184. <path
  5185. d="m 9,68 v 5 h 26 v -5 z"
  5186. style="fill:#484848;fill-opacity:1"
  5187. id="path1478" />
  5188. </g>
  5189. <g
  5190. transform="translate(5,-11)"
  5191. id="button-normal-bottomleft">
  5192. <path
  5193. d="M 2,68 V 78 H 9 V 73 H 8 C 5.784,73 4,71.216 4,69 v -1 z"
  5194. style="fill:url(#radialGradient2261-9);fill-opacity:1"
  5195. id="path1481" />
  5196. <path
  5197. d="m 4,68 v 1 c 0,2.216 1.784,4 4,4 h 1 v -5 z"
  5198. style="fill:#484848;fill-opacity:1"
  5199. id="path1483" />
  5200. </g>
  5201. <g
  5202. transform="translate(5,-11)"
  5203. id="button-normal-bottomright">
  5204. <path
  5205. d="m 40,68 v 1 c 0,2.216 -1.784,4 -4,4 h -1 v 5 h 7 V 68 Z"
  5206. style="fill:url(#radialGradient2259-7);fill-opacity:1"
  5207. id="path1486" />
  5208. <path
  5209. d="m 35,68 v 5 h 1 c 2.216,0 4,-1.784 4,-4 v -1 z"
  5210. style="fill:#484848;fill-opacity:1"
  5211. id="path1488" />
  5212. </g>
  5213. <g
  5214. transform="translate(5,-11)"
  5215. id="button-normal-top">
  5216. <path
  5217. d="m 9,36 v 1 h 26 v -1 z"
  5218. style="fill:url(#linearGradient2245-8);fill-opacity:1"
  5219. id="path1491" />
  5220. <path
  5221. d="m 9,37 v 5 h 26 v -5 z"
  5222. style="fill:#484848;fill-opacity:1"
  5223. id="path1493-0" />
  5224. </g>
  5225. <g
  5226. transform="translate(5,-11)"
  5227. id="button-normal-topleft">
  5228. <path
  5229. d="m 2,36 v 6 h 2 v -1 c 0,-2.216 1.784,-4 4,-4 h 1 v -1 z"
  5230. style="fill:url(#radialGradient2263-1);fill-opacity:1"
  5231. id="path1496" />
  5232. <path
  5233. d="m 8,37 c -2.216,0 -4,1.784 -4,4 v 1 h 5 v -5 z"
  5234. style="fill:#484848;fill-opacity:1"
  5235. id="path1498" />
  5236. </g>
  5237. <g
  5238. transform="translate(5,-11)"
  5239. id="button-normal-topright">
  5240. <path
  5241. d="m 35,36 v 1 h 1 c 2.216,0 4,1.784 4,4 v 1 h 2 v -6 z"
  5242. style="fill:url(#radialGradient2265-6);fill-opacity:1"
  5243. id="path1501" />
  5244. <path
  5245. d="m 35,37 v 5 h 5 v -1 c 0,-2.216 -1.784,-4 -4,-4 z"
  5246. style="fill:#484848;fill-opacity:1"
  5247. id="path1503" />
  5248. </g>
  5249. <g
  5250. transform="translate(5,-11)"
  5251. id="button-normal-left">
  5252. <path
  5253. d="M 2,42 V 68 H 4 V 42 Z"
  5254. style="fill:url(#linearGradient2249-2);fill-opacity:1"
  5255. id="path1506" />
  5256. <path
  5257. d="M 4,42 V 68 H 9 V 42 Z"
  5258. style="fill:#484848;fill-opacity:1"
  5259. id="path1508" />
  5260. </g>
  5261. <g
  5262. transform="translate(5,-11)"
  5263. id="button-normal-right">
  5264. <path
  5265. d="m 40,42 v 26 h 2 V 42 Z"
  5266. style="fill:url(#linearGradient2247-6);fill-opacity:1"
  5267. id="path1511" />
  5268. <path
  5269. d="m 35,42 v 26 h 5 V 42 Z"
  5270. style="fill:#484848;fill-opacity:1"
  5271. id="path1513" />
  5272. </g>
  5273. <rect
  5274. y="31"
  5275. x="14"
  5276. height="26"
  5277. width="26"
  5278. style="fill:#484848;fill-opacity:1"
  5279. id="button-normal" />
  5280. <g
  5281. transform="translate(5,-11)"
  5282. id="button-focused-bottom">
  5283. <path
  5284. d="m 57,73 v 5 h 26 v -5 z"
  5285. style="fill:url(#linearGradient2301-0);fill-opacity:1"
  5286. id="path1517" />
  5287. <path
  5288. d="m 57,68 v 5 h 26 v -5 z"
  5289. style="fill:#4a4a4a;fill-opacity:1"
  5290. id="path1519" />
  5291. </g>
  5292. <g
  5293. transform="translate(5,-11)"
  5294. id="button-focused-bottomleft">
  5295. <path
  5296. d="m 50,68 v 10 h 7 v -5 h -1 c -2.216,0 -4,-1.784 -4,-4 v -1 z"
  5297. style="fill:url(#radialGradient2303-6);fill-opacity:1"
  5298. id="path1522" />
  5299. <path
  5300. d="m 52,68 v 1 c 0,2.216 1.784,4 4,4 h 1 v -5 z"
  5301. style="fill:#4a4a4a;fill-opacity:1"
  5302. id="path1524" />
  5303. </g>
  5304. <g
  5305. transform="translate(5,-11)"
  5306. id="button-focused-bottomright">
  5307. <path
  5308. d="m 88,68 v 1 c 0,2.216 -1.784,4 -4,4 h -1 v 5 h 7 V 68 Z"
  5309. style="fill:url(#radialGradient2305-3);fill-opacity:1"
  5310. id="path1527" />
  5311. <path
  5312. d="m 83,68 v 5 h 1 c 2.216,0 4,-1.784 4,-4 v -1 z"
  5313. style="fill:#4a4a4a;fill-opacity:1"
  5314. id="path1529" />
  5315. </g>
  5316. <g
  5317. transform="translate(5,-11)"
  5318. id="button-focused-top">
  5319. <path
  5320. d="m 57,36 v 1 h 26 v -1 z"
  5321. style="fill:url(#linearGradient2307);fill-opacity:1"
  5322. id="path1532" />
  5323. <path
  5324. d="m 57,37 v 5 h 26 v -5 z"
  5325. style="fill:#4a4a4a;fill-opacity:1"
  5326. id="path1534" />
  5327. </g>
  5328. <g
  5329. transform="translate(5,-11)"
  5330. id="button-focused-topleft">
  5331. <path
  5332. d="m 50,36 v 6 h 2 v -1 c 0,-2.216 1.784,-4 4,-4 h 1 v -1 z"
  5333. style="fill:url(#radialGradient2309-9);fill-opacity:1"
  5334. id="path1537" />
  5335. <path
  5336. d="m 56,37 c -2.216,0 -4,1.784 -4,4 v 1 h 5 v -5 z"
  5337. style="fill:#4a4a4a;fill-opacity:1"
  5338. id="path1539" />
  5339. </g>
  5340. <g
  5341. transform="translate(5,-11)"
  5342. id="button-focused-topright">
  5343. <path
  5344. d="m 83,36 v 1 h 1 c 2.216,0 4,1.784 4,4 v 1 h 2 v -6 z"
  5345. style="fill:url(#radialGradient2311-0);fill-opacity:1"
  5346. id="path1542" />
  5347. <path
  5348. d="m 83,37 v 5 h 5 v -1 c 0,-2.216 -1.784,-4 -4,-4 z"
  5349. style="fill:#4a4a4a;fill-opacity:1"
  5350. id="path1544" />
  5351. </g>
  5352. <g
  5353. transform="translate(5,-11)"
  5354. id="button-focused-left">
  5355. <path
  5356. d="m 50,42 v 26 h 2 V 42 Z"
  5357. style="fill:url(#linearGradient2313);fill-opacity:1"
  5358. id="path1547" />
  5359. <path
  5360. d="m 52,42 v 26 h 5 V 42 Z"
  5361. style="fill:#4a4a4a;fill-opacity:1"
  5362. id="path1549" />
  5363. </g>
  5364. <g
  5365. transform="translate(5,-11)"
  5366. id="button-focused-right">
  5367. <path
  5368. d="m 88,42 v 26 h 2 V 42 Z"
  5369. style="fill:url(#linearGradient2315);fill-opacity:1"
  5370. id="path1552" />
  5371. <path
  5372. d="m 83,42 v 26 h 5 V 42 Z"
  5373. style="fill:#4a4a4a;fill-opacity:1"
  5374. id="path1554" />
  5375. </g>
  5376. <rect
  5377. y="31"
  5378. x="62"
  5379. height="26"
  5380. width="26"
  5381. style="fill:#4a4a4a;fill-opacity:1"
  5382. id="button-focused" />
  5383. <g
  5384. transform="translate(101,-11)"
  5385. id="button-pressed-bottom">
  5386. <path
  5387. d="m 105,73 v 5 h 26 v -5 z"
  5388. transform="translate(-96)"
  5389. style="fill:url(#linearGradient2815-7);fill-opacity:1"
  5390. id="path1558" />
  5391. <path
  5392. d="m 9,68 v 5 h 26 v -5 z"
  5393. style="fill:#5e5e5e;fill-opacity:1"
  5394. id="path1560-2" />
  5395. </g>
  5396. <g
  5397. transform="translate(101,-11)"
  5398. id="button-pressed-bottomleft">
  5399. <path
  5400. d="m 98,68 v 10 h 7 v -5 h -1 c -2.216,0 -4,-1.784 -4,-4 v -1 z"
  5401. transform="translate(-96)"
  5402. style="fill:url(#radialGradient2817-2);fill-opacity:1"
  5403. id="path1563-3" />
  5404. <path
  5405. d="m 4,68 v 1 c 0,2.216 1.784,4 4,4 h 1 v -5 z"
  5406. style="fill:#5e5e5e;fill-opacity:1"
  5407. id="path1565" />
  5408. </g>
  5409. <g
  5410. transform="translate(101,-11)"
  5411. id="button-pressed-bottomright">
  5412. <path
  5413. d="m 136,68 v 1 c 0,2.216 -1.784,4 -4,4 h -1 v 5 h 7 V 68 Z"
  5414. transform="translate(-96)"
  5415. style="fill:url(#radialGradient2819-1);fill-opacity:1"
  5416. id="path1568" />
  5417. <path
  5418. d="m 35,68 v 5 h 1 c 2.216,0 4,-1.784 4,-4 v -1 z"
  5419. style="fill:#5e5e5e;fill-opacity:1"
  5420. id="path1570" />
  5421. </g>
  5422. <g
  5423. transform="translate(101,-11)"
  5424. id="button-pressed-top">
  5425. <path
  5426. d="m 105,36 v 1 h 26 v -1 z"
  5427. transform="translate(-96)"
  5428. style="fill:url(#linearGradient2821-9);fill-opacity:1"
  5429. id="path1573" />
  5430. <path
  5431. d="m 9,37 v 5 h 26 v -5 z"
  5432. style="fill:#5e5e5e;fill-opacity:1"
  5433. id="path1575" />
  5434. </g>
  5435. <g
  5436. transform="translate(101,-11)"
  5437. id="button-pressed-topleft">
  5438. <path
  5439. d="m 98,36 v 6 h 2 v -1 c 0,-2.216 1.784,-4 4,-4 h 1 v -1 z"
  5440. transform="translate(-96)"
  5441. style="fill:url(#radialGradient2823-2);fill-opacity:1"
  5442. id="path1578" />
  5443. <path
  5444. d="m 8,37 c -2.216,0 -4,1.784 -4,4 v 1 h 5 v -5 z"
  5445. style="fill:#5e5e5e;fill-opacity:1"
  5446. id="path1580" />
  5447. </g>
  5448. <g
  5449. transform="translate(101,-11)"
  5450. id="button-pressed-topright">
  5451. <path
  5452. d="m 131,36 v 1 h 1 c 2.216,0 4,1.784 4,4 v 1 h 2 v -6 z"
  5453. transform="translate(-96)"
  5454. style="fill:url(#radialGradient2825-6);fill-opacity:1"
  5455. id="path1583" />
  5456. <path
  5457. d="m 35,37 v 5 h 5 v -1 c 0,-2.216 -1.784,-4 -4,-4 z"
  5458. style="fill:#5e5e5e;fill-opacity:1"
  5459. id="path1585" />
  5460. </g>
  5461. <g
  5462. transform="translate(101,-11)"
  5463. id="button-pressed-left">
  5464. <path
  5465. d="m 98,42 v 26 h 2 V 42 Z"
  5466. transform="translate(-96)"
  5467. style="fill:url(#linearGradient2827);fill-opacity:1"
  5468. id="path1588" />
  5469. <path
  5470. d="M 4,42 V 68 H 9 V 42 Z"
  5471. style="fill:#5e5e5e;fill-opacity:1"
  5472. id="path1590" />
  5473. </g>
  5474. <g
  5475. transform="translate(101,-11)"
  5476. id="button-pressed-right">
  5477. <path
  5478. d="m 136,42 v 26 h 2 V 42 Z"
  5479. transform="translate(-96)"
  5480. style="fill:url(#linearGradient2829);fill-opacity:1"
  5481. id="path1593" />
  5482. <path
  5483. d="m 35,42 v 26 h 5 V 42 Z"
  5484. style="fill:#5e5e5e;fill-opacity:1"
  5485. id="path1595" />
  5486. </g>
  5487. <rect
  5488. y="31"
  5489. x="110"
  5490. height="26"
  5491. width="26"
  5492. style="fill:#5e5e5e;fill-opacity:1"
  5493. id="button-pressed" />
  5494. <g
  5495. transform="translate(143,-11)"
  5496. id="button-toggled-bottom">
  5497. <path
  5498. d="m 147,73 v 5 h 26 v -5 z"
  5499. transform="translate(-138)"
  5500. style="fill:url(#linearGradient2881-5);fill-opacity:1"
  5501. id="path1599" />
  5502. <path
  5503. d="m 9,68 v 5 h 26 v -5 z"
  5504. style="fill:#624a42;fill-opacity:1"
  5505. id="path1601" />
  5506. </g>
  5507. <g
  5508. transform="translate(143,-11)"
  5509. id="button-toggled-bottomleft">
  5510. <path
  5511. d="m 140,68 v 10 h 7 v -5 h -1 c -2.216,0 -4,-1.784 -4,-4 v -1 z"
  5512. transform="translate(-138)"
  5513. style="fill:url(#radialGradient2883-3);fill-opacity:1"
  5514. id="path1604" />
  5515. <path
  5516. d="m 4,68 v 1 c 0,2.216 1.784,4 4,4 h 1 v -5 z"
  5517. style="fill:#624a42;fill-opacity:1"
  5518. id="path1606" />
  5519. </g>
  5520. <g
  5521. transform="translate(143,-11)"
  5522. id="button-toggled-bottomright">
  5523. <path
  5524. d="m 178,68 v 1 c 0,2.216 -1.784,4 -4,4 h -1 v 5 h 7 V 68 Z"
  5525. transform="translate(-138)"
  5526. style="fill:url(#radialGradient2885-5);fill-opacity:1"
  5527. id="path1609" />
  5528. <path
  5529. d="m 35,68 v 5 h 1 c 2.216,0 4,-1.784 4,-4 v -1 z"
  5530. style="fill:#624a42;fill-opacity:1"
  5531. id="path1611" />
  5532. </g>
  5533. <g
  5534. transform="translate(143,-11)"
  5535. id="button-toggled-top">
  5536. <path
  5537. d="m 147,36 v 1 h 26 v -1 z"
  5538. transform="translate(-138)"
  5539. style="fill:url(#linearGradient2887-7);fill-opacity:1"
  5540. id="path1614" />
  5541. <path
  5542. d="m 9,37 v 5 h 26 v -5 z"
  5543. style="fill:#624a42;fill-opacity:1"
  5544. id="path1616" />
  5545. </g>
  5546. <g
  5547. transform="translate(143,-11)"
  5548. id="button-toggled-topleft">
  5549. <path
  5550. d="m 140,36 v 6 h 2 v -1 c 0,-2.216 1.784,-4 4,-4 h 1 v -1 z"
  5551. transform="translate(-138)"
  5552. style="fill:url(#radialGradient2889-6);fill-opacity:1"
  5553. id="path1619" />
  5554. <path
  5555. d="m 8,37 c -2.216,0 -4,1.784 -4,4 v 1 h 5 v -5 z"
  5556. style="fill:#624a42;fill-opacity:1"
  5557. id="path1621" />
  5558. </g>
  5559. <g
  5560. transform="translate(143,-11)"
  5561. id="button-toggled-topright">
  5562. <path
  5563. d="m 173,36 v 1 h 1 c 2.216,0 4,1.784 4,4 v 1 h 2 v -6 z"
  5564. transform="translate(-138)"
  5565. style="fill:url(#radialGradient2891-3);fill-opacity:1"
  5566. id="path1624" />
  5567. <path
  5568. d="m 35,37 v 5 h 5 v -1 c 0,-2.216 -1.784,-4 -4,-4 z"
  5569. style="fill:#624a42;fill-opacity:1"
  5570. id="path1626" />
  5571. </g>
  5572. <g
  5573. transform="translate(143,-11)"
  5574. id="button-toggled-left">
  5575. <path
  5576. d="m 140,42 v 26 h 2 V 42 Z"
  5577. transform="translate(-138)"
  5578. style="fill:url(#linearGradient2893);fill-opacity:1"
  5579. id="path1629" />
  5580. <path
  5581. d="M 4,42 V 68 H 9 V 42 Z"
  5582. style="fill:#624a42;fill-opacity:1"
  5583. id="path1631" />
  5584. </g>
  5585. <g
  5586. transform="translate(143,-11)"
  5587. id="button-toggled-right">
  5588. <path
  5589. d="m 178,42 v 26 h 2 V 42 Z"
  5590. transform="translate(-138)"
  5591. style="fill:url(#linearGradient2895);fill-opacity:1"
  5592. id="path1634" />
  5593. <path
  5594. d="m 35,42 v 26 h 5 V 42 Z"
  5595. style="fill:#624a42;fill-opacity:1"
  5596. id="path1636" />
  5597. </g>
  5598. <rect
  5599. y="31"
  5600. x="152"
  5601. height="26"
  5602. width="26"
  5603. style="fill:#624a42;fill-opacity:1"
  5604. id="button-toggled" />
  5605. <rect
  5606. y="104"
  5607. x="415"
  5608. height="2"
  5609. width="2"
  5610. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1;stroke-width:0.2"
  5611. id="combo-normal" />
  5612. <g
  5613. transform="translate(8.99999)"
  5614. id="combo-normal-bottomleft">
  5615. <path
  5616. d="m 404,106 v 1 h 2 v -1 z"
  5617. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5618. id="path1902" />
  5619. <rect
  5620. y="107"
  5621. x="404"
  5622. height="1"
  5623. width="2"
  5624. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.70710677"
  5625. id="rect1904" />
  5626. <path
  5627. d="m 402,106 v 2 2 h 2 2 v -2 h -2 v -2 z"
  5628. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5629. id="rect1916" />
  5630. </g>
  5631. <g
  5632. transform="translate(8.99999)"
  5633. id="combo-normal-bottom">
  5634. <path
  5635. d="m 406.00001,106 v 1 h 2 v -1 z"
  5636. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1;stroke-width:0.20412427"
  5637. id="path1890" />
  5638. <path
  5639. d="m 406.00001,108 h 2 v -1 h -2 z"
  5640. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.14433804"
  5641. id="path1892" />
  5642. <rect
  5643. y="108"
  5644. x="406"
  5645. height="2"
  5646. width="2"
  5647. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5648. id="rect1918" />
  5649. </g>
  5650. <g
  5651. transform="translate(8.99999)"
  5652. id="combo-normal-bottomright">
  5653. <path
  5654. d="m 408,106 v 1 h 2 v -1 z"
  5655. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5656. id="path1896" />
  5657. <rect
  5658. y="107"
  5659. x="408"
  5660. height="1"
  5661. width="2"
  5662. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.70710677"
  5663. id="rect1898" />
  5664. <path
  5665. d="m 410,106 v 2 h -2 v 2 h 2 2 v -2 -2 z"
  5666. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5667. id="rect1920" />
  5668. </g>
  5669. <g
  5670. transform="translate(8.99999)"
  5671. id="combo-normal-left">
  5672. <rect
  5673. y="104"
  5674. x="404"
  5675. height="2"
  5676. width="2"
  5677. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5678. id="rect1886" />
  5679. <rect
  5680. y="104"
  5681. x="402"
  5682. height="2"
  5683. width="2"
  5684. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5685. id="rect1926" />
  5686. </g>
  5687. <g
  5688. transform="translate(8.99999)"
  5689. id="combo-normal-topleft">
  5690. <path
  5691. d="m 406.00001,102 v 2 h -2 c 0,0 0,-2 2,-2 z"
  5692. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5693. id="path1880" />
  5694. <path
  5695. d="m 402,100 v 2 2 h 2 v -2 h 2 v -2 h -2 z"
  5696. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5697. id="rect1928" />
  5698. </g>
  5699. <g
  5700. transform="translate(8.99999)"
  5701. id="combo-normal-topright">
  5702. <path
  5703. d="m 408.00001,102 c 2,0 2,2 2,2 h -2 z"
  5704. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5705. id="path1884" />
  5706. <path
  5707. d="m 408,100 v 2 h 2 v 2 h 2 v -2 -2 h -2 z"
  5708. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5709. id="rect1931" />
  5710. </g>
  5711. <g
  5712. transform="translate(8.99999)"
  5713. id="combo-normal-top">
  5714. <rect
  5715. y="102"
  5716. x="406"
  5717. height="2"
  5718. width="2"
  5719. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5720. id="rect1882" />
  5721. <rect
  5722. transform="scale(-1)"
  5723. y="-102"
  5724. x="-408"
  5725. height="2"
  5726. width="2"
  5727. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5728. id="rect1933" />
  5729. </g>
  5730. <g
  5731. transform="translate(8.99999)"
  5732. id="combo-normal-right">
  5733. <rect
  5734. y="104"
  5735. x="408"
  5736. height="2"
  5737. width="2"
  5738. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5739. id="rect1888" />
  5740. <rect
  5741. transform="scale(-1)"
  5742. y="-106"
  5743. x="-412"
  5744. height="2"
  5745. width="2"
  5746. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5747. id="rect1941" />
  5748. </g>
  5749. <rect
  5750. y="104"
  5751. x="403"
  5752. height="2"
  5753. width="2"
  5754. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1;stroke-width:0.2"
  5755. id="lineedit-normal" />
  5756. <g
  5757. transform="translate(-3)"
  5758. id="lineedit-normal-bottomleft">
  5759. <path
  5760. d="m 404,106 v 1 h 2 v -1 z"
  5761. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5762. id="path2006" />
  5763. <rect
  5764. y="107"
  5765. x="404"
  5766. height="1"
  5767. width="2"
  5768. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.70710677"
  5769. id="rect2008" />
  5770. <path
  5771. d="m 402,106 v 2 2 h 2 2 v -2 h -2 v -2 z"
  5772. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5773. id="path2010" />
  5774. </g>
  5775. <g
  5776. transform="translate(-3)"
  5777. id="lineedit-normal-bottom">
  5778. <path
  5779. d="m 406.00001,106 v 1 h 2 v -1 z"
  5780. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1;stroke-width:0.20412427"
  5781. id="path2014" />
  5782. <path
  5783. d="m 406.00001,108 h 2 v -1 h -2 z"
  5784. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.14433804"
  5785. id="path2016" />
  5786. <rect
  5787. y="108"
  5788. x="406"
  5789. height="2"
  5790. width="2"
  5791. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5792. id="rect2018" />
  5793. </g>
  5794. <g
  5795. transform="translate(-3)"
  5796. id="lineedit-normal-bottomright">
  5797. <path
  5798. d="m 408,106 v 1 h 2 v -1 z"
  5799. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5800. id="path2022" />
  5801. <rect
  5802. y="107"
  5803. x="408"
  5804. height="1"
  5805. width="2"
  5806. style="opacity:0.26000001;fill:#ffffff;fill-opacity:1;stroke-width:0.70710677"
  5807. id="rect2024" />
  5808. <path
  5809. d="m 410,106 v 2 h -2 v 2 h 2 2 v -2 -2 z"
  5810. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5811. id="path2026" />
  5812. </g>
  5813. <g
  5814. transform="translate(-3)"
  5815. id="lineedit-normal-left">
  5816. <rect
  5817. y="104"
  5818. x="404"
  5819. height="2"
  5820. width="2"
  5821. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5822. id="rect2030" />
  5823. <rect
  5824. y="104"
  5825. x="402"
  5826. height="2"
  5827. width="2"
  5828. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5829. id="rect2032" />
  5830. </g>
  5831. <g
  5832. transform="translate(-3)"
  5833. id="lineedit-normal-topleft">
  5834. <path
  5835. d="m 406.00001,102 v 2 h -2 c 0,0 0,-2 2,-2 z"
  5836. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5837. id="path2036" />
  5838. <path
  5839. d="m 402,100 v 2 2 h 2 v -2 h 2 v -2 h -2 z"
  5840. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5841. id="path2038" />
  5842. </g>
  5843. <g
  5844. transform="translate(-3)"
  5845. id="lineedit-normal-topright">
  5846. <path
  5847. d="m 408.00001,102 c 2,0 2,2 2,2 h -2 z"
  5848. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5849. id="path2042" />
  5850. <path
  5851. d="m 408,100 v 2 h 2 v 2 h 2 v -2 -2 h -2 z"
  5852. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5853. id="path2044" />
  5854. </g>
  5855. <g
  5856. transform="translate(-3)"
  5857. id="lineedit-normal-top">
  5858. <rect
  5859. y="102"
  5860. x="406"
  5861. height="2"
  5862. width="2"
  5863. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5864. id="rect2048" />
  5865. <rect
  5866. transform="scale(-1)"
  5867. y="-102"
  5868. x="-408"
  5869. height="2"
  5870. width="2"
  5871. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5872. id="rect2050" />
  5873. </g>
  5874. <g
  5875. transform="translate(-3)"
  5876. id="lineedit-normal-right">
  5877. <rect
  5878. y="104"
  5879. x="408"
  5880. height="2"
  5881. width="2"
  5882. style="opacity:0.03999999;fill:#ffffff;fill-opacity:1"
  5883. id="rect2054" />
  5884. <rect
  5885. transform="scale(-1)"
  5886. y="-106"
  5887. x="-412"
  5888. height="2"
  5889. width="2"
  5890. style="opacity:0.00100002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.2214036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5891. id="rect2056" />
  5892. </g>
  5893. <g
  5894. transform="translate(0,2)"
  5895. id="combo-focused-bottomleft">
  5896. <rect
  5897. y="110"
  5898. x="413"
  5899. height="4"
  5900. width="2"
  5901. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5902. id="rect2060" />
  5903. <rect
  5904. y="110"
  5905. x="413"
  5906. height="2"
  5907. width="2"
  5908. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5909. id="rect2062" />
  5910. </g>
  5911. <g
  5912. transform="translate(2,2)"
  5913. id="combo-focused-bottom">
  5914. <rect
  5915. y="110"
  5916. x="413"
  5917. height="4"
  5918. width="2"
  5919. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5920. id="rect2074" />
  5921. <rect
  5922. y="110"
  5923. x="413"
  5924. height="2"
  5925. width="2"
  5926. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5927. id="rect2076" />
  5928. </g>
  5929. <g
  5930. transform="translate(4,2)"
  5931. id="combo-focused-bottomright">
  5932. <rect
  5933. y="110"
  5934. x="413"
  5935. height="4"
  5936. width="2"
  5937. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5938. id="rect2080" />
  5939. <rect
  5940. y="110"
  5941. x="413"
  5942. height="2"
  5943. width="2"
  5944. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5945. id="rect2082" />
  5946. </g>
  5947. <g
  5948. transform="translate(0,8)"
  5949. id="combo-pressed-bottomleft">
  5950. <rect
  5951. y="110"
  5952. x="413"
  5953. height="4"
  5954. width="2"
  5955. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5956. id="rect2086" />
  5957. <rect
  5958. y="110"
  5959. x="413"
  5960. height="2"
  5961. width="2"
  5962. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5963. id="rect2088" />
  5964. </g>
  5965. <g
  5966. transform="translate(2,8)"
  5967. id="combo-pressed-bottom">
  5968. <rect
  5969. y="110"
  5970. x="413"
  5971. height="4"
  5972. width="2"
  5973. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5974. id="rect2092" />
  5975. <rect
  5976. y="110"
  5977. x="413"
  5978. height="2"
  5979. width="2"
  5980. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5981. id="rect2094" />
  5982. </g>
  5983. <g
  5984. transform="translate(4,8)"
  5985. id="combo-pressed-bottomright">
  5986. <rect
  5987. y="110"
  5988. x="413"
  5989. height="4"
  5990. width="2"
  5991. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5992. id="rect2098" />
  5993. <rect
  5994. y="110"
  5995. x="413"
  5996. height="2"
  5997. width="2"
  5998. style="opacity:1;fill:#b45fae;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  5999. id="rect2100" />
  6000. </g>
  6001. <g
  6002. transform="translate(-12,2)"
  6003. id="lineedit-focused-bottomleft">
  6004. <rect
  6005. y="110"
  6006. x="413"
  6007. height="4"
  6008. width="2"
  6009. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6010. id="rect2104" />
  6011. <rect
  6012. y="110"
  6013. x="413"
  6014. height="2"
  6015. width="2"
  6016. style="opacity:1;fill:#e95420;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6017. id="rect2106" />
  6018. </g>
  6019. <g
  6020. transform="translate(-10,2)"
  6021. id="lineedit-focused-bottom">
  6022. <rect
  6023. y="110"
  6024. x="413"
  6025. height="4"
  6026. width="2"
  6027. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6028. id="rect2110" />
  6029. <rect
  6030. y="110"
  6031. x="413"
  6032. height="2"
  6033. width="2"
  6034. style="opacity:1;fill:#e95420;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6035. id="rect2112" />
  6036. </g>
  6037. <g
  6038. transform="translate(-8,2)"
  6039. id="lineedit-focused-bottomright">
  6040. <rect
  6041. y="110"
  6042. x="413"
  6043. height="4"
  6044. width="2"
  6045. style="opacity:0.001;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.26847839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6046. id="rect2116" />
  6047. <rect
  6048. y="110"
  6049. x="413"
  6050. height="2"
  6051. width="2"
  6052. style="opacity:1;fill:#e95420;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  6053. id="rect2118" />
  6054. </g>
  6055. </svg>