123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
- <svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- version="1.1"
- id="svg2"
- xml:space="preserve"
- width="1118.5707"
- height="695.36053"
- viewBox="0 0 1118.5706 695.36053"
- sodipodi:docname="FPKM-by-Peak-Violin-Plots-CROP-C.svg"
- inkscape:version="0.92.2 5c3e80d, 2017-08-06"><metadata
- id="metadata8"><rdf:RDF><cc:Work
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
- id="defs6"><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath20"><path
- d="M 0,0 H 864 V 576 H 0 Z"
- id="path18"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath40"><path
- d="m 47.06,529.97 h 95.37 v 14.38 H 47.06 Z"
- id="path38"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath56"><path
- d="m 146.03,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path54"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath72"><path
- d="m 245,529.97 h 95.37 v 14.38 H 245 Z"
- id="path70"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath88"><path
- d="m 343.97,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path86"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath104"><path
- d="m 442.94,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path102"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath120"><path
- d="m 541.91,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path118"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath136"><path
- d="m 640.88,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path134"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath152"><path
- d="m 739.85,529.97 h 95.37 v 14.38 h -95.37 z"
- id="path150"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath168"><path
- d="m 47.06,368.14 h 95.37 V 529.97 H 47.06 Z"
- id="path166"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath200"><path
- d="m 47.06,202.71 h 95.37 V 364.54 H 47.06 Z"
- id="path198"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath232"><path
- d="m 47.06,37.28 h 95.37 V 199.11 H 47.06 Z"
- id="path230"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath264"><path
- d="M 146.03,368.14 H 241.4 V 529.97 H 146.03 Z"
- id="path262"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath296"><path
- d="M 146.03,202.71 H 241.4 V 364.54 H 146.03 Z"
- id="path294"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath328"><path
- d="M 146.03,37.28 H 241.4 V 199.11 H 146.03 Z"
- id="path326"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath360"><path
- d="m 245,368.14 h 95.37 V 529.97 H 245 Z"
- id="path358"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath392"><path
- d="m 245,202.71 h 95.37 V 364.54 H 245 Z"
- id="path390"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath424"><path
- d="m 245,37.28 h 95.37 V 199.11 H 245 Z"
- id="path422"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath456"><path
- d="m 343.97,368.14 h 95.37 v 161.83 h -95.37 z"
- id="path454"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath488"><path
- d="m 343.97,202.71 h 95.37 v 161.83 h -95.37 z"
- id="path486"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath520"><path
- d="m 343.97,37.28 h 95.37 v 161.83 h -95.37 z"
- id="path518"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath552"><path
- d="m 442.94,368.14 h 95.37 v 161.83 h -95.37 z"
- id="path550"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath584"><path
- d="m 442.94,202.71 h 95.37 v 161.83 h -95.37 z"
- id="path582"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath616"><path
- d="m 442.94,37.28 h 95.37 v 161.83 h -95.37 z"
- id="path614"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath648"><path
- d="m 541.91,368.14 h 95.37 v 161.83 h -95.37 z"
- id="path646"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath680"><path
- d="m 541.91,202.71 h 95.37 v 161.83 h -95.37 z"
- id="path678"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath712"><path
- d="m 541.91,37.28 h 95.37 v 161.83 h -95.37 z"
- id="path710"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath744"><path
- d="m 640.88,368.14 h 95.37 v 161.83 h -95.37 z"
- id="path742"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath776"><path
- d="m 640.88,202.71 h 95.37 v 161.83 h -95.37 z"
- id="path774"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath808"><path
- d="m 640.88,37.28 h 95.37 v 161.83 h -95.37 z"
- id="path806"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath840"><path
- d="m 739.85,368.14 h 95.37 v 161.83 h -95.37 z"
- id="path838"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath872"><path
- d="m 739.85,202.71 h 95.37 v 161.83 h -95.37 z"
- id="path870"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath904"><path
- d="m 739.85,37.28 h 95.37 v 161.83 h -95.37 z"
- id="path902"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath1038"><path
- d="M 835.22,368.14 H 849.6 V 529.97 H 835.22 Z"
- id="path1036"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath1054"><path
- d="M 835.22,202.71 H 849.6 V 364.54 H 835.22 Z"
- id="path1052"
- inkscape:connector-curvature="0" /></clipPath><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath1070"><path
- d="M 835.22,37.28 H 849.6 V 199.11 H 835.22 Z"
- id="path1068"
- inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1920"
- inkscape:window-height="1035"
- id="namedview4"
- showgrid="false"
- inkscape:zoom="0.91189727"
- inkscape:cx="463.04091"
- inkscape:cy="385.16375"
- inkscape:window-x="0"
- inkscape:window-y="1"
- inkscape:window-maximized="1"
- inkscape:current-layer="g10"
- fit-margin-top="0"
- fit-margin-left="0"
- fit-margin-right="0"
- fit-margin-bottom="0" /><g
- id="g10"
- inkscape:groupmode="layer"
- inkscape:label="FPKM-by-Peak-Violin-Plots-CROP"
- transform="matrix(1.3333333,0,0,-1.3333333,-0.89593748,712.46665)"
- style="opacity:0.25"><g
- id="g22"
- transform="translate(-10,-10)"
- style="" /><g
- id="g24"
- transform="translate(-10,-10)"
- style="" /><g
- id="g26"
- transform="translate(-10,-10)"
- style="" /><g
- id="g32"
- transform="translate(-10,-10)"
- style="" /><g
- id="g48"
- transform="translate(-10,-10)"
- style="" /><g
- id="g64"
- transform="translate(-10,-10)"
- style="" /><g
- id="g80"
- transform="translate(-10,-10)"
- style="" /><g
- id="g96"
- transform="translate(-10,-10)"
- style="" /><g
- id="g112"
- transform="translate(-10,-10)"
- style="" /><g
- id="g128"
- transform="translate(-10,-10)"
- style="" /><g
- id="g144"
- transform="translate(-10,-10)"
- style="" /><g
- id="g160"
- transform="translate(-10,-10)"
- style="" /><g
- id="g192"
- transform="translate(-10,-10)"
- style="" /><g
- id="g194"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath200)"
- id="g196"
- style=""><path
- inkscape:connector-curvature="0"
- id="path202"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 47.06,202.71 h 95.37 V 364.54 H 47.06 Z" /><path
- inkscape:connector-curvature="0"
- id="path204"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path206"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path208"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path210"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path212"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path214"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path216"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 73.07,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path218"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 116.42,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path220"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.04,214.89 -0.02,0.63 -0.02,0.63 -0.04,0.64 -0.04,0.63 -0.07,0.63 -0.09,0.63 -0.12,0.64 -0.15,0.63 -0.18,0.63 -0.22,0.63 -0.26,0.63 -0.28,0.64 -0.31,0.63 -0.31,0.63 -0.3,0.63 -0.29,0.64 -0.26,0.63 -0.23,0.63 -0.19,0.63 -0.16,0.63 -0.14,0.64 -0.11,0.63 -0.1,0.63 -0.09,0.63 -0.11,0.64 -0.13,0.63 -0.15,0.63 -0.2,0.63 -0.24,0.63 -0.3,0.64 -0.35,0.63 -0.42,0.63 -0.48,0.63 -0.53,0.64 -0.58,0.63 -0.6,0.63 -0.62,0.63 -0.62,0.63 -0.62,0.64 -0.6,0.63 -0.61,0.63 -0.61,0.63 -0.61,0.64 -0.62,0.63 -0.6,0.63 -0.57,0.63 -0.53,0.63 -0.45,0.64 -0.37,0.63 -0.26,0.63 -0.14,0.63 -0.04,0.63 0.07,0.64 0.14,0.63 0.21,0.63 0.24,0.63 0.27,0.64 0.28,0.63 0.3,0.63 0.3,0.63 0.3,0.63 0.31,0.64 0.32,0.63 0.31,0.63 0.3,0.63 0.3,0.64 0.29,0.63 0.27,0.63 0.26,0.63 0.24,0.63 0.22,0.64 0.23,0.63 0.22,0.63 0.24,0.63 0.25,0.64 0.27,0.63 0.29,0.63 0.3,0.63 0.3,0.63 0.3,0.64 0.28,0.63 0.26,0.63 0.22,0.63 0.19,0.64 0.17,0.63 0.16,0.63 0.16,0.63 0.18,0.63 0.2,0.64 0.21,0.63 0.23,0.63 0.24,0.63 0.22,0.64 0.2,0.63 0.19,0.63 0.17,0.63 0.15,0.63 0.16,0.64 0.15,0.63 0.16,0.63 0.17,0.63 0.18,0.64 0.17,0.63 0.17,0.63 0.17,0.63 0.16,0.63 0.17,0.64 0.16,0.63 0.17,0.63 0.17,0.63 0.17,0.64 0.18,0.63 0.19,0.63 0.18,0.63 0.18,0.63 0.17,0.64 0.17,0.63 0.15,0.63 0.15,0.63 0.13,0.64 0.12,0.63 0.12,0.63 0.1,0.63 0.1,0.63 0.08,0.64 0.07,0.63 0.07,0.63 0.05,0.63 0.05,0.64 0.04,0.63 0.04,0.63 0.04,0.63 0.04,0.63 0.04,0.64 0.04,0.63 0.04,0.63 0.04,0.63 0.03,0.64 0.04,0.63 0.03,0.63 0.02,0.63 0.03,0.63 0.02,0.64 0.02,0.63 0.01,0.63 0.02,0.63 0.01,0.64 v 0.63 l 0.01,0.63 v 0.63 0.63 0.64 0.63 l -0.01,0.63 0.01,0.63 v 0.64 0.63 0.63 l 0.01,0.63 v 0.63 l 0.01,0.64 v 0.63 l 0.01,0.63 v 0.63 0.64 0.63 l 0.01,0.63 v 0.63 0.63 0.64 0.63 0.63 l 0.01,0.63 v 0.63 0.64 h 0.03 v -0.64 -0.63 -0.63 -0.63 -0.63 l 0.01,-0.64 v -0.63 -0.63 -0.63 -0.63 l 0.01,-0.64 v -0.63 -0.63 l 0.01,-0.63 v -0.64 l 0.01,-0.63 v -0.63 -0.63 l 0.01,-0.63 v -0.64 -0.63 -0.63 -0.63 -0.64 -0.63 -0.63 -0.63 l 0.01,-0.63 0.01,-0.64 0.01,-0.63 0.02,-0.63 0.02,-0.63 0.02,-0.64 0.02,-0.63 0.03,-0.63 0.03,-0.63 0.03,-0.63 0.04,-0.64 0.04,-0.63 0.04,-0.63 0.04,-0.63 0.04,-0.64 0.04,-0.63 0.04,-0.63 0.03,-0.63 0.05,-0.63 0.04,-0.64 0.06,-0.63 0.06,-0.63 0.07,-0.63 0.09,-0.64 0.09,-0.63 0.11,-0.63 0.11,-0.63 0.13,-0.63 0.13,-0.64 0.14,-0.63 0.16,-0.63 0.16,-0.63 0.18,-0.64 0.18,-0.63 0.18,-0.63 0.18,-0.63 0.18,-0.63 0.18,-0.64 0.17,-0.63 0.16,-0.63 0.17,-0.63 0.16,-0.64 0.16,-0.63 0.17,-0.63 0.17,-0.63 0.18,-0.63 0.17,-0.64 0.17,-0.63 0.16,-0.63 0.16,-0.63 0.15,-0.64 0.16,-0.63 0.17,-0.63 0.18,-0.63 0.21,-0.63 0.22,-0.64 0.23,-0.63 0.23,-0.63 0.22,-0.63 0.19,-0.64 0.18,-0.63 0.16,-0.63 0.16,-0.63 0.17,-0.63 0.2,-0.64 0.22,-0.63 0.25,-0.63 0.29,-0.63 0.29,-0.64 0.31,-0.63 0.3,-0.63 0.29,-0.63 0.26,-0.63 0.26,-0.64 0.23,-0.63 0.23,-0.63 0.22,-0.63 0.23,-0.64 0.24,-0.63 0.26,-0.63 0.27,-0.63 0.29,-0.63 0.29,-0.64 0.31,-0.63 0.31,-0.63 0.31,-0.63 0.31,-0.64 0.31,-0.63 0.3,-0.63 0.29,-0.63 0.28,-0.63 0.27,-0.64 0.25,-0.63 0.2,-0.63 0.15,-0.63 0.07,-0.64 -0.04,-0.63 -0.15,-0.63 -0.26,-0.63 -0.36,-0.63 -0.46,-0.64 -0.52,-0.63 -0.58,-0.63 -0.6,-0.63 -0.61,-0.63 -0.62,-0.64 -0.61,-0.63 -0.6,-0.63 -0.61,-0.63 -0.61,-0.64 -0.62,-0.63 -0.62,-0.63 -0.61,-0.63 -0.58,-0.63 -0.53,-0.64 -0.48,-0.63 -0.41,-0.63 -0.36,-0.63 -0.29,-0.64 -0.24,-0.63 -0.2,-0.63 -0.16,-0.63 -0.12,-0.63 -0.11,-0.64 -0.1,-0.63 -0.1,-0.63 -0.11,-0.63 -0.13,-0.64 -0.16,-0.63 -0.2,-0.63 -0.23,-0.63 -0.26,-0.63 -0.28,-0.64 -0.31,-0.63 -0.31,-0.63 -0.3,-0.63 -0.28,-0.64 -0.26,-0.63 -0.22,-0.63 -0.19,-0.63 -0.15,-0.63 -0.11,-0.64 -0.09,-0.63 -0.07,-0.63 -0.05,-0.63 -0.03,-0.64 -0.03,-0.63 -0.01,-0.63 z" /><path
- inkscape:connector-curvature="0"
- id="path222"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 116.38,218.87 -0.02,0.68 -0.01,0.68 -0.02,0.68 -0.01,0.68 -0.02,0.68 -0.01,0.68 -0.01,0.68 -0.01,0.68 -0.02,0.68 -0.02,0.68 -0.03,0.68 -0.02,0.68 v 0.68 l 0.01,0.68 0.02,0.68 0.03,0.68 0.02,0.68 0.01,0.68 v 0.68 l -0.01,0.68 -0.02,0.68 -0.02,0.68 -0.01,0.68 -0.02,0.68 -0.02,0.68 -0.04,0.68 -0.04,0.68 -0.06,0.67 -0.07,0.68 -0.07,0.68 -0.07,0.68 -0.07,0.68 -0.06,0.68 -0.07,0.68 -0.09,0.68 -0.1,0.68 -0.13,0.68 -0.15,0.68 -0.13,0.68 -0.12,0.68 -0.1,0.68 -0.11,0.68 -0.13,0.68 -0.14,0.68 -0.14,0.68 -0.12,0.68 -0.11,0.68 -0.1,0.68 -0.08,0.68 -0.1,0.68 -0.1,0.68 -0.12,0.68 -0.12,0.68 -0.14,0.68 -0.16,0.68 -0.17,0.68 -0.2,0.68 -0.21,0.68 -0.23,0.68 -0.25,0.68 -0.26,0.68 -0.29,0.68 -0.3,0.68 -0.32,0.68 -0.35,0.68 -0.38,0.68 -0.4,0.68 -0.38,0.68 -0.35,0.68 -0.3,0.68 -0.31,0.68 -0.37,0.68 -0.45,0.68 -0.56,0.68 -0.64,0.68 -0.68,0.68 -0.69,0.68 -0.69,0.68 -0.7,0.67 -0.73,0.68 -0.76,0.68 -0.75,0.68 -0.72,0.68 -0.67,0.68 -0.63,0.68 -0.6,0.68 -0.55,0.68 -0.49,0.68 -0.39,0.68 -0.28,0.68 -0.14,0.68 -0.03,0.68 0.08,0.68 0.17,0.68 0.27,0.68 0.4,0.68 0.53,0.68 0.62,0.68 0.66,0.68 0.67,0.68 0.68,0.68 0.71,0.68 0.77,0.68 0.84,0.68 0.88,0.68 0.88,0.68 0.81,0.68 0.74,0.68 0.66,0.68 0.62,0.68 0.61,0.68 0.58,0.68 0.57,0.68 0.54,0.68 0.52,0.68 0.5,0.68 0.48,0.68 0.45,0.68 0.42,0.68 0.39,0.68 0.34,0.68 0.31,0.68 0.27,0.68 0.22,0.68 0.19,0.68 0.18,0.68 0.16,0.68 0.16,0.68 0.15,0.68 0.14,0.68 0.14,0.67 0.12,0.68 0.12,0.68 0.1,0.68 0.09,0.68 0.08,0.68 0.08,0.68 0.07,0.68 0.05,0.68 0.05,0.68 0.03,0.68 0.02,0.68 0.02,0.68 0.01,0.68 v 0.68 0.68 l -0.02,0.68 -0.02,0.68 -0.01,0.68 v 0.68 l 0.01,0.68 0.02,0.68 0.03,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.01,0.68 0.02,0.68 0.01,0.68 0.02,0.68 v 0.68 l 0.01,0.68 v 0.68 l -0.01,0.68 v 0.68 l -0.01,0.68 v 0.68 l 0.01,0.68 0.01,0.68 0.01,0.68 0.01,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.01,0.68 0.01,0.68 v 0.68 l 0.01,0.68 0.01,0.67 0.01,0.68 h 0.07 l 0.01,-0.68 0.01,-0.67 v -0.68 l 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.02,-0.68 0.02,-0.68 0.03,-0.68 0.02,-0.68 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.01,-0.68 v -0.68 -0.68 l -0.01,-0.68 v -0.68 -0.68 -0.68 l 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.02,-0.68 0.02,-0.68 0.01,-0.68 0.03,-0.68 0.02,-0.68 0.02,-0.68 0.02,-0.68 0.01,-0.68 v -0.68 l -0.01,-0.68 -0.01,-0.68 -0.02,-0.68 -0.01,-0.68 v -0.68 l 0.01,-0.68 0.02,-0.68 0.03,-0.68 0.03,-0.68 0.04,-0.68 0.06,-0.68 0.07,-0.68 0.07,-0.68 0.08,-0.68 0.09,-0.68 0.1,-0.68 0.12,-0.68 0.13,-0.68 0.13,-0.67 0.15,-0.68 0.15,-0.68 0.15,-0.68 0.17,-0.68 0.17,-0.68 0.19,-0.68 0.23,-0.68 0.26,-0.68 0.31,-0.68 0.35,-0.68 0.39,-0.68 0.41,-0.68 0.45,-0.68 0.48,-0.68 0.5,-0.68 0.52,-0.68 0.55,-0.68 0.56,-0.68 0.59,-0.68 0.6,-0.68 0.62,-0.68 0.67,-0.68 0.73,-0.68 0.82,-0.68 0.87,-0.68 0.89,-0.68 0.84,-0.68 0.77,-0.68 0.7,-0.68 0.68,-0.68 0.67,-0.68 0.67,-0.68 0.62,-0.68 0.52,-0.68 0.4,-0.68 0.28,-0.68 0.17,-0.68 0.07,-0.68 -0.03,-0.68 -0.14,-0.68 -0.27,-0.68 -0.39,-0.68 -0.49,-0.68 -0.56,-0.68 -0.59,-0.68 -0.63,-0.68 -0.67,-0.68 -0.72,-0.68 -0.76,-0.68 -0.76,-0.68 -0.73,-0.68 -0.7,-0.67 -0.68,-0.68 -0.69,-0.68 -0.69,-0.68 -0.64,-0.68 -0.55,-0.68 -0.46,-0.68 -0.36,-0.68 -0.31,-0.68 -0.31,-0.68 -0.34,-0.68 -0.39,-0.68 -0.4,-0.68 -0.38,-0.68 -0.35,-0.68 -0.32,-0.68 -0.3,-0.68 -0.28,-0.68 -0.27,-0.68 -0.25,-0.68 -0.23,-0.68 -0.21,-0.68 -0.19,-0.68 -0.18,-0.68 -0.15,-0.68 -0.14,-0.68 -0.13,-0.68 -0.11,-0.68 -0.11,-0.68 -0.09,-0.68 -0.09,-0.68 -0.09,-0.68 -0.11,-0.68 -0.13,-0.68 -0.14,-0.68 -0.14,-0.68 -0.12,-0.68 -0.11,-0.68 -0.11,-0.68 -0.12,-0.68 -0.13,-0.68 -0.14,-0.68 -0.13,-0.68 -0.11,-0.68 -0.09,-0.68 -0.06,-0.68 -0.07,-0.68 -0.07,-0.68 -0.07,-0.68 -0.07,-0.68 -0.07,-0.68 -0.05,-0.67 -0.05,-0.68 -0.03,-0.68 -0.03,-0.68 -0.01,-0.68 -0.02,-0.68 -0.01,-0.68 -0.02,-0.68 -0.02,-0.68 v -0.68 l 0.01,-0.68 0.03,-0.68 0.03,-0.68 0.02,-0.68 0.01,-0.68 -0.01,-0.68 -0.02,-0.68 -0.02,-0.68 -0.02,-0.68 -0.02,-0.68 -0.02,-0.68 -0.01,-0.68 -0.01,-0.68 -0.01,-0.68 -0.02,-0.68 -0.01,-0.68 -0.02,-0.68 -0.01,-0.68 z" /></g></g><g
- id="g224"
- transform="translate(-10,-10)"
- style="" /><g
- id="g226"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath232)"
- id="g228"
- style=""><path
- inkscape:connector-curvature="0"
- id="path234"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 47.06,37.28 h 95.37 V 199.11 H 47.06 Z" /><path
- inkscape:connector-curvature="0"
- id="path236"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path238"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path240"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path242"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path244"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path246"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path248"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 73.07,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path250"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 116.42,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path252"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.05,49.53 -0.01,0.73 -0.02,0.72 -0.02,0.73 -0.03,0.72 -0.05,0.72 -0.06,0.73 -0.08,0.72 -0.1,0.72 -0.12,0.73 -0.14,0.72 -0.15,0.72 -0.15,0.73 -0.16,0.72 -0.15,0.72 -0.14,0.73 -0.13,0.72 -0.1,0.72 -0.09,0.73 -0.06,0.72 -0.06,0.72 -0.05,0.73 -0.06,0.72 -0.07,0.72 -0.08,0.73 -0.11,0.72 -0.14,0.72 -0.18,0.73 -0.22,0.72 -0.25,0.72 -0.3,0.73 -0.31,0.72 -0.34,0.72 -0.34,0.73 -0.34,0.72 -0.34,0.73 -0.36,0.72 -0.38,0.72 -0.39,0.73 -0.4,0.72 -0.39,0.72 -0.36,0.73 -0.32,0.72 -0.27,0.72 -0.2,0.73 -0.14,0.72 -0.08,0.72 -0.03,0.73 -0.01,0.72 0.01,0.72 0.03,0.73 0.04,0.72 0.04,0.72 0.05,0.73 0.05,0.72 0.05,0.72 0.04,0.73 0.04,0.72 0.02,0.72 v 0.73 l -0.03,0.72 -0.04,0.72 -0.08,0.73 -0.1,0.72 -0.12,0.72 -0.13,0.73 -0.14,0.72 -0.15,0.73 -0.14,0.72 -0.15,0.72 -0.15,0.73 -0.17,0.72 -0.19,0.72 -0.24,0.73 -0.28,0.72 -0.33,0.72 -0.37,0.73 -0.39,0.72 -0.41,0.72 -0.42,0.73 -0.42,0.72 -0.44,0.72 -0.44,0.73 -0.45,0.72 -0.43,0.72 -0.42,0.73 -0.38,0.72 -0.33,0.72 -0.26,0.73 -0.19,0.72 -0.11,0.72 -0.03,0.73 0.07,0.72 0.16,0.72 0.24,0.73 0.33,0.72 0.42,0.72 0.48,0.73 0.55,0.72 0.59,0.73 0.63,0.72 0.65,0.72 0.67,0.73 0.69,0.72 0.69,0.72 0.68,0.73 0.65,0.72 0.63,0.72 0.59,0.73 0.56,0.72 0.52,0.72 0.49,0.73 0.46,0.72 0.44,0.72 0.41,0.73 0.39,0.72 0.37,0.72 0.34,0.73 0.32,0.72 0.29,0.72 0.26,0.73 0.23,0.72 0.21,0.72 0.18,0.73 0.16,0.72 0.15,0.72 0.13,0.73 0.13,0.72 0.11,0.72 0.1,0.73 0.1,0.72 0.08,0.72 0.08,0.73 0.06,0.72 0.06,0.73 0.05,0.72 0.05,0.72 0.03,0.73 0.03,0.72 0.03,0.72 0.02,0.73 0.01,0.72 v 0.72 0.73 0.72 0.72 0.73 0.72 l 0.01,0.72 0.01,0.73 0.02,0.72 0.01,0.72 0.02,0.73 0.01,0.72 0.01,0.72 0.01,0.73 0.01,0.72 v 0.72 l 0.01,0.73 v 0.72 0.72 0.73 l 0.01,0.72 v 0.72 0.73 l 0.01,0.72 0.01,0.73 0.01,0.72 0.02,0.72 0.01,0.73 0.01,0.72 0.02,0.72 0.01,0.73 0.01,0.72 v 0.72 l 0.01,0.73 0.01,0.72 v 0.72 h 0.06 l 0.01,-0.72 v -0.72 l 0.01,-0.73 0.01,-0.72 0.01,-0.72 0.01,-0.73 0.01,-0.72 0.02,-0.72 0.01,-0.73 0.01,-0.72 0.01,-0.72 0.01,-0.73 0.01,-0.72 0.01,-0.73 v -0.72 -0.72 -0.73 -0.72 l 0.01,-0.72 v -0.73 l 0.01,-0.72 v -0.72 l 0.01,-0.73 0.02,-0.72 0.01,-0.72 0.01,-0.73 0.02,-0.72 0.01,-0.72 0.01,-0.73 0.01,-0.72 0.01,-0.72 v -0.73 -0.72 l -0.01,-0.72 v -0.73 l 0.01,-0.72 0.01,-0.72 0.02,-0.73 0.02,-0.72 0.03,-0.72 0.04,-0.73 0.04,-0.72 0.05,-0.72 0.06,-0.73 0.07,-0.72 0.07,-0.73 0.09,-0.72 0.09,-0.72 0.1,-0.73 0.12,-0.72 0.12,-0.72 0.14,-0.73 0.14,-0.72 0.17,-0.72 0.18,-0.73 0.2,-0.72 0.24,-0.72 0.26,-0.73 0.28,-0.72 0.32,-0.72 0.34,-0.73 0.37,-0.72 0.39,-0.72 0.42,-0.73 0.43,-0.72 0.47,-0.72 0.49,-0.73 0.52,-0.72 0.55,-0.72 0.6,-0.73 0.62,-0.72 0.66,-0.72 0.68,-0.73 0.69,-0.72 0.68,-0.72 0.67,-0.73 0.66,-0.72 0.63,-0.72 0.59,-0.73 0.54,-0.72 0.49,-0.73 0.41,-0.72 0.34,-0.72 0.24,-0.73 0.15,-0.72 0.07,-0.72 -0.02,-0.73 -0.11,-0.72 -0.19,-0.72 -0.27,-0.73 -0.33,-0.72 -0.38,-0.72 -0.41,-0.73 -0.44,-0.72 -0.44,-0.72 -0.44,-0.73 -0.44,-0.72 -0.43,-0.72 -0.42,-0.73 -0.41,-0.72 -0.39,-0.72 -0.37,-0.73 -0.32,-0.72 -0.29,-0.72 -0.23,-0.73 -0.2,-0.72 -0.16,-0.72 -0.15,-0.73 -0.15,-0.72 -0.15,-0.72 -0.14,-0.73 -0.14,-0.72 -0.14,-0.73 -0.12,-0.72 -0.1,-0.72 -0.07,-0.73 -0.05,-0.72 -0.02,-0.72 v -0.73 l 0.02,-0.72 0.03,-0.72 0.05,-0.73 0.05,-0.72 0.05,-0.72 0.05,-0.73 0.04,-0.72 0.04,-0.72 0.02,-0.73 0.02,-0.72 -0.01,-0.72 -0.04,-0.73 -0.08,-0.72 -0.14,-0.72 -0.2,-0.73 L 80.65,79.92 80.33,79.2 79.96,78.47 79.57,77.75 79.17,77.03 78.78,76.3 78.41,75.58 78.05,74.86 77.7,74.13 77.36,73.41 77.02,72.68 76.69,71.96 76.37,71.24 76.08,70.51 75.82,69.79 75.6,69.07 75.42,68.34 75.28,67.62 75.17,66.9 75.09,66.17 75.02,65.45 74.97,64.73 74.92,64 74.86,63.28 74.79,62.56 74.7,61.83 74.6,61.11 74.48,60.39 74.34,59.66 74.19,58.94 74.03,58.22 73.87,57.49 73.72,56.77 73.59,56.05 73.47,55.32 73.37,54.6 73.29,53.88 73.23,53.15 73.18,52.43 73.14,51.71 73.12,50.98 73.1,50.26 73.09,49.53 Z" /><path
- inkscape:connector-curvature="0"
- id="path254"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 115.35,53.62 -0.25,0.6 -0.28,0.59 -0.31,0.6 -0.32,0.59 -0.35,0.6 -0.34,0.6 -0.35,0.59 -0.32,0.6 -0.3,0.59 -0.26,0.6 -0.23,0.59 -0.18,0.6 -0.15,0.59 -0.11,0.6 -0.09,0.59 -0.08,0.6 -0.09,0.59 -0.1,0.6 -0.14,0.6 -0.19,0.59 -0.25,0.6 -0.31,0.59 -0.38,0.6 -0.44,0.59 -0.5,0.6 -0.57,0.59 -0.62,0.6 -0.67,0.59 -0.71,0.6 -0.75,0.59 -0.78,0.6 -0.79,0.6 -0.79,0.59 -0.79,0.6 -0.75,0.59 -0.71,0.6 -0.67,0.59 -0.6,0.6 -0.54,0.59 -0.48,0.6 -0.43,0.59 -0.37,0.6 -0.33,0.59 -0.27,0.6 -0.23,0.6 -0.16,0.59 -0.09,0.6 -0.02,0.59 0.08,0.6 0.16,0.59 0.25,0.6 0.33,0.59 0.4,0.6 0.45,0.59 0.48,0.6 0.5,0.59 0.49,0.6 0.47,0.6 0.43,0.59 0.39,0.6 0.34,0.59 0.3,0.6 0.27,0.59 0.23,0.6 0.22,0.59 0.21,0.6 0.23,0.59 0.25,0.6 0.29,0.59 0.32,0.6 0.37,0.6 0.41,0.59 0.44,0.6 0.47,0.59 0.48,0.6 0.49,0.59 0.47,0.6 0.46,0.59 0.42,0.6 0.39,0.59 0.34,0.6 0.31,0.59 0.26,0.6 0.23,0.59 0.21,0.6 0.18,0.6 0.17,0.59 0.17,0.6 0.16,0.59 0.17,0.6 0.18,0.59 0.19,0.6 0.2,0.59 0.22,0.6 0.23,0.59 0.25,0.6 0.25,0.59 0.26,0.6 0.26,0.6 0.25,0.59 0.23,0.6 0.22,0.59 0.2,0.6 0.18,0.59 0.15,0.6 0.12,0.59 0.11,0.6 0.09,0.59 0.07,0.6 0.07,0.59 0.06,0.6 0.07,0.6 0.06,0.59 0.08,0.6 0.08,0.59 0.09,0.6 0.09,0.59 0.1,0.6 0.1,0.59 0.09,0.6 0.09,0.59 0.08,0.6 0.06,0.59 0.06,0.6 0.04,0.6 0.04,0.59 0.03,0.6 0.04,0.59 0.04,0.6 0.04,0.59 0.05,0.6 0.05,0.59 0.06,0.6 0.06,0.59 0.06,0.6 0.06,0.59 0.05,0.6 0.06,0.6 0.04,0.59 0.04,0.6 0.03,0.59 0.03,0.6 0.02,0.59 0.01,0.6 0.01,0.59 0.01,0.6 0.01,0.59 0.01,0.6 0.01,0.59 0.01,0.6 0.01,0.6 0.01,0.59 0.01,0.6 v 0.59 l 0.01,0.6 v 0.59 0.6 l -0.01,0.59 v 0.6 l -0.01,0.59 -0.01,0.6 -0.01,0.59 v 0.6 l -0.01,0.6 v 0.59 h 0.17 l -0.01,-0.59 v -0.6 l -0.01,-0.6 -0.01,-0.59 -0.01,-0.6 v -0.59 l -0.01,-0.6 v -0.59 -0.6 -0.59 -0.6 l 0.01,-0.59 v -0.6 l 0.01,-0.59 0.01,-0.6 0.01,-0.6 0.01,-0.59 0.01,-0.6 0.01,-0.59 0.01,-0.6 0.01,-0.59 0.02,-0.6 0.02,-0.59 0.02,-0.6 0.03,-0.59 0.04,-0.6 0.05,-0.59 0.05,-0.6 0.06,-0.6 0.06,-0.59 0.06,-0.6 0.06,-0.59 0.06,-0.6 0.05,-0.59 0.05,-0.6 0.04,-0.59 0.04,-0.6 0.03,-0.59 0.04,-0.6 0.03,-0.59 0.05,-0.6 0.05,-0.6 0.07,-0.59 0.07,-0.6 0.09,-0.59 0.09,-0.6 0.1,-0.59 0.1,-0.6 0.1,-0.59 0.09,-0.6 0.08,-0.59 0.07,-0.6 0.07,-0.59 0.06,-0.6 0.06,-0.6 0.07,-0.59 0.08,-0.6 0.08,-0.59 0.11,-0.6 0.13,-0.59 0.15,-0.6 0.17,-0.59 0.2,-0.6 0.22,-0.59 0.24,-0.6 0.25,-0.59 0.26,-0.6 0.26,-0.6 0.25,-0.59 0.24,-0.6 0.24,-0.59 0.21,-0.6 0.21,-0.59 0.19,-0.6 0.17,-0.59 0.17,-0.6 0.17,-0.59 0.16,-0.6 0.17,-0.59 0.19,-0.6 0.2,-0.6 0.23,-0.59 0.27,-0.6 0.3,-0.59 0.35,-0.6 0.38,-0.59 0.43,-0.6 0.45,-0.59 0.48,-0.6 0.48,-0.59 0.49,-0.6 0.47,-0.59 0.44,-0.6 0.41,-0.59 0.36,-0.6 0.33,-0.6 0.28,-0.59 0.25,-0.6 0.23,-0.59 0.22,-0.6 0.22,-0.59 0.23,-0.6 0.26,-0.59 0.3,-0.6 0.34,-0.59 0.39,-0.6 0.44,-0.59 0.47,-0.6 0.49,-0.6 0.49,-0.59 0.49,-0.6 0.45,-0.59 0.4,-0.6 0.33,-0.59 0.25,-0.6 0.16,-0.59 0.07,-0.6 -0.01,-0.59 -0.1,-0.6 -0.16,-0.59 -0.22,-0.6 -0.28,-0.6 -0.32,-0.59 -0.37,-0.6 -0.43,-0.59 -0.48,-0.6 -0.55,-0.59 -0.6,-0.6 -0.66,-0.59 -0.71,-0.6 -0.76,-0.59 -0.78,-0.6 -0.8,-0.59 -0.79,-0.6 -0.78,-0.6 -0.75,-0.59 -0.71,-0.6 -0.67,-0.59 -0.62,-0.6 -0.56,-0.59 -0.51,-0.6 -0.44,-0.59 -0.38,-0.6 -0.31,-0.59 -0.24,-0.6 -0.19,-0.59 -0.14,-0.6 -0.11,-0.6 -0.09,-0.59 -0.08,-0.6 -0.08,-0.59 -0.12,-0.6 -0.14,-0.59 -0.19,-0.6 -0.22,-0.59 -0.27,-0.6 -0.29,-0.59 -0.33,-0.6 -0.34,-0.59 -0.35,-0.6 -0.34,-0.6 -0.33,-0.59 -0.31,-0.6 -0.27,-0.59 -0.25,-0.6 z" /></g></g><g
- id="g256"
- transform="translate(-10,-10)"
- style="" /><g
- id="g288"
- transform="translate(-10,-10)"
- style="" /><g
- id="g290"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath296)"
- id="g292"
- style=""><path
- inkscape:connector-curvature="0"
- id="path298"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 146.03,202.71 H 241.4 V 364.54 H 146.03 Z" /><path
- inkscape:connector-curvature="0"
- id="path300"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,241.88 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path302"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,293.62 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path304"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,345.35 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path306"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,216.01 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path308"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,267.75 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path310"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,319.48 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path312"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 172.04,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path314"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 215.39,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path316"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 171.52,210.73 -0.15,0.66 -0.18,0.66 -0.22,0.66 -0.25,0.67 -0.3,0.66 -0.35,0.66 -0.42,0.66 -0.48,0.66 -0.55,0.67 -0.64,0.66 -0.72,0.66 -0.81,0.66 -0.89,0.67 -0.97,0.66 -1.01,0.66 -1.05,0.66 -1.06,0.67 -1.03,0.66 -0.99,0.66 -0.9,0.66 -0.79,0.66 -0.68,0.67 -0.54,0.66 -0.41,0.66 -0.28,0.66 -0.17,0.67 -0.06,0.66 0.03,0.66 0.09,0.66 0.15,0.66 0.17,0.67 0.21,0.66 0.23,0.66 0.25,0.66 0.28,0.67 0.29,0.66 0.31,0.66 0.31,0.66 0.3,0.67 0.28,0.66 0.24,0.66 0.21,0.66 0.15,0.66 0.11,0.67 0.06,0.66 0.01,0.66 -0.02,0.66 -0.06,0.67 -0.08,0.66 -0.1,0.66 -0.13,0.66 -0.14,0.66 -0.16,0.67 -0.17,0.66 -0.17,0.66 -0.16,0.66 -0.15,0.67 -0.12,0.66 -0.07,0.66 -0.01,0.66 0.05,0.67 0.11,0.66 0.18,0.66 0.23,0.66 0.28,0.66 0.31,0.67 0.32,0.66 0.33,0.66 0.33,0.66 0.33,0.67 0.34,0.66 0.33,0.66 0.34,0.66 0.34,0.66 0.35,0.67 0.35,0.66 0.35,0.66 0.35,0.66 0.35,0.67 0.35,0.66 0.34,0.66 0.33,0.66 0.33,0.67 0.31,0.66 0.3,0.66 0.28,0.66 0.28,0.66 0.27,0.67 0.27,0.66 0.26,0.66 0.27,0.66 0.27,0.67 0.27,0.66 0.27,0.66 0.26,0.66 0.25,0.66 0.24,0.67 0.23,0.66 0.21,0.66 0.2,0.66 0.19,0.67 0.19,0.66 0.18,0.66 0.17,0.66 0.17,0.67 0.16,0.66 0.14,0.66 0.13,0.66 0.12,0.66 0.11,0.67 0.09,0.66 0.1,0.66 0.09,0.66 0.1,0.67 0.09,0.66 0.08,0.66 0.09,0.66 0.07,0.66 0.07,0.67 0.06,0.66 0.05,0.66 0.05,0.66 0.04,0.67 0.03,0.66 0.03,0.66 0.03,0.66 0.02,0.67 0.01,0.66 0.01,0.66 v 0.66 0.66 l 0.01,0.67 v 0.66 0.66 0.66 0.67 l 0.01,0.66 v 0.66 l -0.01,0.66 v 0.66 l -0.01,0.67 -0.01,0.66 v 0.66 l -0.01,0.66 v 0.67 0.66 l 0.01,0.66 v 0.66 l 0.01,0.67 0.01,0.66 0.01,0.66 v 0.66 l 0.01,0.66 0.02,0.67 0.01,0.66 0.01,0.66 0.01,0.66 0.01,0.67 0.01,0.66 0.01,0.66 v 0.66 0.66 0.67 0.66 0.66 0.66 0.67 l 0.01,0.66 0.01,0.66 0.01,0.66 0.02,0.67 0.01,0.66 0.02,0.66 h 0.13 l 0.01,-0.66 0.02,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.66 0.01,-0.66 v -0.67 l 0.01,-0.66 -0.01,-0.66 v -0.66 -0.67 -0.66 l 0.01,-0.66 v -0.66 l 0.01,-0.66 0.01,-0.67 0.02,-0.66 0.01,-0.66 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.66 0.01,-0.66 0.01,-0.66 v -0.67 l 0.01,-0.66 v -0.66 l 0.01,-0.66 -0.01,-0.67 v -0.66 l -0.01,-0.66 -0.01,-0.66 v -0.67 l -0.01,-0.66 v -0.66 -0.66 -0.66 -0.67 l 0.01,-0.66 v -0.66 -0.66 -0.67 -0.66 -0.66 l 0.01,-0.66 0.02,-0.66 0.01,-0.67 0.03,-0.66 0.03,-0.66 0.04,-0.66 0.04,-0.67 0.04,-0.66 0.06,-0.66 0.06,-0.66 0.06,-0.67 0.08,-0.66 0.08,-0.66 0.09,-0.66 0.09,-0.66 0.09,-0.67 0.1,-0.66 0.09,-0.66 0.1,-0.66 0.11,-0.67 0.11,-0.66 0.13,-0.66 0.14,-0.66 0.16,-0.66 0.17,-0.67 0.18,-0.66 0.18,-0.66 0.19,-0.66 0.19,-0.67 0.2,-0.66 0.21,-0.66 0.22,-0.66 0.24,-0.67 0.25,-0.66 0.26,-0.66 0.27,-0.66 0.27,-0.66 0.27,-0.67 0.27,-0.66 0.27,-0.66 0.26,-0.66 0.27,-0.67 0.28,-0.66 0.29,-0.66 0.3,-0.66 0.31,-0.66 0.32,-0.67 0.33,-0.66 0.35,-0.66 0.34,-0.66 0.35,-0.67 0.35,-0.66 0.35,-0.66 0.35,-0.66 0.35,-0.67 0.34,-0.66 0.34,-0.66 0.34,-0.66 0.33,-0.66 0.33,-0.67 0.34,-0.66 0.33,-0.66 0.32,-0.66 0.3,-0.67 0.28,-0.66 0.23,-0.66 0.18,-0.66 0.11,-0.66 0.05,-0.67 -0.01,-0.66 -0.07,-0.66 -0.11,-0.66 -0.15,-0.67 -0.17,-0.66 -0.17,-0.66 -0.17,-0.66 -0.16,-0.67 -0.14,-0.66 -0.12,-0.66 -0.11,-0.66 -0.08,-0.66 -0.05,-0.67 -0.03,-0.66 0.02,-0.66 0.06,-0.66 0.1,-0.67 0.16,-0.66 0.2,-0.66 0.25,-0.66 0.28,-0.66 0.3,-0.67 0.31,-0.66 0.3,-0.66 0.3,-0.66 0.27,-0.67 0.25,-0.66 0.23,-0.66 0.21,-0.66 0.18,-0.67 0.14,-0.66 0.09,-0.66 0.03,-0.66 -0.06,-0.66 -0.16,-0.67 -0.29,-0.66 -0.41,-0.66 -0.54,-0.66 -0.67,-0.67 -0.8,-0.66 -0.9,-0.66 -0.98,-0.66 -1.03,-0.66 -1.06,-0.67 -1.05,-0.66 -1.02,-0.66 -0.96,-0.66 -0.89,-0.67 -0.82,-0.66 -0.72,-0.66 -0.63,-0.66 -0.56,-0.67 -0.48,-0.66 -0.41,-0.66 -0.35,-0.66 -0.3,-0.66 -0.26,-0.67 -0.21,-0.66 -0.18,-0.66 -0.16,-0.66 z" /><path
- inkscape:connector-curvature="0"
- id="path318"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 215.34,212.97 -0.02,0.76 -0.02,0.76 -0.03,0.76 -0.04,0.76 -0.03,0.76 -0.04,0.76 -0.04,0.76 -0.03,0.76 -0.04,0.76 -0.05,0.76 -0.04,0.76 -0.05,0.76 -0.04,0.76 -0.05,0.76 -0.05,0.76 -0.06,0.76 -0.06,0.76 -0.07,0.76 -0.07,0.76 -0.07,0.76 -0.05,0.76 -0.05,0.76 -0.04,0.76 -0.04,0.76 -0.04,0.76 -0.05,0.76 -0.07,0.76 -0.08,0.76 -0.1,0.76 -0.1,0.77 -0.11,0.76 -0.1,0.76 -0.09,0.76 -0.09,0.76 -0.09,0.76 -0.1,0.76 -0.11,0.76 -0.12,0.76 -0.12,0.76 -0.11,0.76 -0.12,0.76 -0.11,0.76 -0.11,0.76 -0.13,0.76 -0.15,0.76 -0.2,0.76 -0.25,0.76 -0.31,0.76 -0.34,0.76 -0.34,0.76 -0.31,0.76 -0.24,0.76 -0.16,0.76 -0.1,0.76 -0.07,0.76 -0.05,0.76 -0.06,0.76 -0.07,0.76 -0.09,0.76 -0.12,0.76 -0.16,0.76 -0.21,0.76 -0.25,0.76 -0.31,0.76 -0.35,0.76 -0.39,0.76 -0.42,0.76 -0.45,0.76 -0.46,0.76 -0.48,0.76 -0.47,0.76 -0.47,0.76 -0.46,0.76 -0.47,0.76 -0.48,0.76 -0.51,0.76 -0.53,0.76 -0.57,0.76 -0.59,0.76 -0.58,0.76 -0.56,0.76 -0.52,0.76 -0.48,0.76 -0.44,0.76 -0.44,0.76 -0.45,0.76 -0.47,0.76 -0.45,0.76 -0.41,0.76 -0.35,0.76 -0.25,0.76 -0.14,0.76 0.01,0.77 0.14,0.76 0.24,0.76 0.31,0.76 0.34,0.76 0.36,0.76 0.39,0.76 0.44,0.76 0.52,0.76 0.6,0.76 0.69,0.76 0.74,0.76 0.79,0.76 0.81,0.76 0.81,0.76 0.8,0.76 0.77,0.76 0.75,0.76 0.73,0.76 0.69,0.76 0.65,0.76 0.6,0.76 0.55,0.76 0.52,0.76 0.49,0.76 0.48,0.76 0.46,0.76 0.45,0.76 0.41,0.76 0.38,0.76 0.36,0.76 0.35,0.76 0.35,0.76 0.35,0.76 0.33,0.76 0.29,0.76 0.24,0.76 0.2,0.76 0.16,0.76 0.12,0.76 0.1,0.76 0.08,0.76 0.05,0.76 0.04,0.76 0.01,0.76 v 0.76 0.76 0.76 0.76 l 0.02,0.76 0.02,0.76 0.03,0.76 0.03,0.76 0.02,0.76 0.03,0.76 0.02,0.76 0.03,0.76 0.03,0.76 0.04,0.76 0.05,0.76 0.04,0.76 0.04,0.76 0.04,0.77 0.04,0.76 0.02,0.76 0.02,0.76 0.01,0.76 0.01,0.76 0.01,0.76 v 0.76 0.76 0.76 0.76 0.76 l 0.01,0.76 v 0.76 0.76 0.76 0.76 0.76 0.76 0.76 l -0.01,0.76 v 0.76 0.76 0.76 0.76 0.76 0.76 h 0.02 l 0.01,-0.76 v -0.76 -0.76 l -0.01,-0.76 v -0.76 -0.76 -0.76 -0.76 -0.76 l -0.01,-0.76 v -0.76 -0.76 l 0.01,-0.76 v -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 l 0.01,-0.76 v -0.76 l 0.01,-0.76 0.01,-0.76 0.02,-0.76 0.03,-0.76 0.03,-0.76 0.04,-0.77 0.04,-0.76 0.05,-0.76 0.04,-0.76 0.04,-0.76 0.04,-0.76 0.02,-0.76 0.03,-0.76 0.02,-0.76 0.03,-0.76 0.02,-0.76 0.03,-0.76 0.02,-0.76 0.02,-0.76 0.01,-0.76 v -0.76 l -0.01,-0.76 0.01,-0.76 0.01,-0.76 0.03,-0.76 0.05,-0.76 0.08,-0.76 0.1,-0.76 0.13,-0.76 0.15,-0.76 0.2,-0.76 0.24,-0.76 0.3,-0.76 0.32,-0.76 0.35,-0.76 0.35,-0.76 0.35,-0.76 0.36,-0.76 0.38,-0.76 0.42,-0.76 0.44,-0.76 0.47,-0.76 0.47,-0.76 0.49,-0.76 0.52,-0.76 0.55,-0.76 0.61,-0.76 0.65,-0.76 0.69,-0.76 0.72,-0.76 0.75,-0.76 0.78,-0.76 0.79,-0.76 0.82,-0.76 0.8,-0.76 0.79,-0.76 0.75,-0.76 0.68,-0.76 0.61,-0.76 0.51,-0.76 0.45,-0.76 0.39,-0.76 0.35,-0.76 0.34,-0.76 0.31,-0.76 0.24,-0.76 0.14,-0.76 0.01,-0.77 -0.13,-0.76 -0.25,-0.76 -0.35,-0.76 -0.42,-0.76 -0.45,-0.76 -0.46,-0.76 -0.45,-0.76 -0.44,-0.76 -0.45,-0.76 -0.47,-0.76 -0.52,-0.76 -0.56,-0.76 -0.59,-0.76 -0.59,-0.76 -0.56,-0.76 -0.54,-0.76 -0.5,-0.76 -0.49,-0.76 -0.47,-0.76 -0.46,-0.76 -0.47,-0.76 -0.47,-0.76 -0.47,-0.76 -0.47,-0.76 -0.45,-0.76 -0.42,-0.76 -0.38,-0.76 -0.35,-0.76 -0.31,-0.76 -0.26,-0.76 -0.2,-0.76 -0.16,-0.76 -0.12,-0.76 -0.1,-0.76 -0.07,-0.76 -0.05,-0.76 -0.06,-0.76 -0.06,-0.76 -0.1,-0.76 -0.17,-0.76 -0.24,-0.76 -0.31,-0.76 -0.34,-0.76 -0.34,-0.76 -0.3,-0.76 -0.25,-0.76 -0.2,-0.76 -0.16,-0.76 -0.12,-0.76 -0.12,-0.76 -0.11,-0.76 -0.11,-0.76 -0.12,-0.76 -0.12,-0.76 -0.12,-0.76 -0.11,-0.76 -0.1,-0.76 -0.09,-0.76 -0.09,-0.76 -0.09,-0.76 -0.1,-0.76 -0.1,-0.76 -0.11,-0.77 -0.09,-0.76 -0.09,-0.76 -0.06,-0.76 -0.06,-0.76 -0.04,-0.76 -0.04,-0.76 -0.04,-0.76 -0.04,-0.76 -0.06,-0.76 -0.06,-0.76 -0.07,-0.76 -0.07,-0.76 -0.07,-0.76 -0.06,-0.76 -0.05,-0.76 -0.04,-0.76 -0.05,-0.76 -0.04,-0.76 -0.05,-0.76 -0.04,-0.76 -0.04,-0.76 -0.04,-0.76 -0.04,-0.76 -0.03,-0.76 -0.04,-0.76 -0.03,-0.76 -0.03,-0.76 -0.03,-0.76 -0.02,-0.76 z" /></g></g><g
- id="g320"
- transform="translate(-10,-10)"
- style="" /><g
- id="g322"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath328)"
- id="g324"
- style=""><path
- inkscape:connector-curvature="0"
- id="path330"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 146.03,37.28 H 241.4 V 199.11 H 146.03 Z" /><path
- inkscape:connector-curvature="0"
- id="path332"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,76.45 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path334"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,128.19 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path336"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,179.92 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path338"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,50.58 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path340"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,102.32 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path342"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,154.06 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path344"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 172.04,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path346"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 215.39,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path348"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 171.89,45.28 -0.05,0.79 -0.06,0.79 -0.08,0.8 -0.1,0.79 -0.11,0.79 -0.14,0.79 -0.17,0.79 -0.2,0.8 -0.23,0.79 -0.26,0.79 -0.3,0.79 -0.34,0.79 -0.37,0.8 -0.39,0.79 -0.41,0.79 -0.4,0.79 -0.37,0.79 -0.34,0.8 -0.3,0.79 -0.23,0.79 -0.18,0.79 -0.13,0.8 -0.08,0.79 -0.04,0.79 -0.02,0.79 v 0.79 l 0.02,0.8 0.03,0.79 0.05,0.79 0.06,0.79 0.08,0.79 0.08,0.8 0.09,0.79 0.07,0.79 0.05,0.79 0.03,0.79 -0.01,0.8 -0.04,0.79 -0.08,0.79 -0.1,0.79 -0.12,0.79 -0.14,0.8 -0.17,0.79 -0.19,0.79 -0.23,0.79 -0.25,0.79 -0.29,0.8 -0.32,0.79 -0.32,0.79 -0.3,0.79 -0.27,0.79 -0.2,0.8 -0.15,0.79 -0.07,0.79 -0.03,0.79 0.01,0.79 0.02,0.8 0.01,0.79 v 0.79 l -0.04,0.79 -0.09,0.79 -0.13,0.8 -0.17,0.79 -0.23,0.79 -0.28,0.79 -0.31,0.79 -0.35,0.8 -0.37,0.79 -0.39,0.79 -0.41,0.79 -0.42,0.79 -0.43,0.8 -0.44,0.79 -0.45,0.79 -0.47,0.79 -0.47,0.79 -0.5,0.8 -0.49,0.79 -0.5,0.79 -0.49,0.79 -0.47,0.79 -0.46,0.8 -0.45,0.79 -0.43,0.79 -0.42,0.79 -0.41,0.79 -0.38,0.8 -0.34,0.79 -0.28,0.79 -0.2,0.79 -0.11,0.79 0.01,0.8 0.11,0.79 0.21,0.79 0.28,0.79 0.37,0.79 0.41,0.8 0.48,0.79 0.52,0.79 0.59,0.79 0.64,0.79 0.7,0.8 0.74,0.79 0.77,0.79 0.79,0.79 0.79,0.79 0.79,0.8 0.77,0.79 0.74,0.79 0.71,0.79 0.68,0.79 0.64,0.8 0.61,0.79 0.57,0.79 0.54,0.79 0.51,0.79 0.49,0.8 0.45,0.79 0.43,0.79 0.41,0.79 0.4,0.79 0.37,0.8 0.36,0.79 0.34,0.79 0.31,0.79 0.28,0.79 0.24,0.8 0.21,0.79 0.17,0.79 0.14,0.79 0.1,0.79 0.08,0.8 0.06,0.79 0.04,0.79 0.02,0.79 0.02,0.79 0.01,0.8 0.01,0.79 0.02,0.79 0.02,0.79 0.02,0.79 0.03,0.8 0.03,0.79 0.04,0.79 0.04,0.79 0.03,0.79 0.04,0.8 0.05,0.79 0.04,0.79 0.04,0.79 0.04,0.79 0.04,0.8 0.03,0.79 0.02,0.79 0.02,0.79 0.02,0.79 0.01,0.8 v 0.79 l 0.01,0.79 v 0.79 0.79 0.8 l 0.01,0.79 v 0.79 0.79 0.79 0.8 0.79 0.79 l -0.01,0.79 v 0.79 0.8 0.79 0.79 0.79 0.79 0.8 h 0.02 v -0.8 -0.79 -0.79 -0.79 -0.79 -0.8 -0.79 -0.79 -0.79 -0.79 -0.8 -0.79 -0.79 -0.79 -0.79 -0.8 -0.79 l 0.01,-0.79 v -0.79 l 0.01,-0.79 0.01,-0.8 0.01,-0.79 0.02,-0.79 0.03,-0.79 0.03,-0.79 0.03,-0.8 0.04,-0.79 0.05,-0.79 0.04,-0.79 0.04,-0.79 0.04,-0.8 0.04,-0.79 0.04,-0.79 0.03,-0.79 0.03,-0.79 0.03,-0.8 0.03,-0.79 0.02,-0.79 0.01,-0.79 0.01,-0.79 0.02,-0.8 0.01,-0.79 0.03,-0.79 0.03,-0.79 0.06,-0.79 0.08,-0.8 0.11,-0.79 0.13,-0.79 0.17,-0.79 0.21,-0.79 0.25,-0.8 0.28,-0.79 0.31,-0.79 0.34,-0.79 0.35,-0.79 0.38,-0.8 0.39,-0.79 0.41,-0.79 0.43,-0.79 0.46,-0.79 0.48,-0.8 0.51,-0.79 0.54,-0.79 0.57,-0.79 0.61,-0.79 0.64,-0.8 0.68,-0.79 0.71,-0.79 0.75,-0.79 0.76,-0.79 0.79,-0.8 0.79,-0.79 0.8,-0.79 0.77,-0.79 0.74,-0.79 0.69,-0.8 0.65,-0.79 0.58,-0.79 0.53,-0.79 0.47,-0.79 0.42,-0.8 0.36,-0.79 0.29,-0.79 0.2,-0.79 0.11,-0.79 0.01,-0.8 -0.1,-0.79 -0.2,-0.79 -0.28,-0.79 -0.34,-0.79 -0.38,-0.8 -0.41,-0.79 -0.42,-0.79 -0.44,-0.79 -0.44,-0.79 -0.46,-0.8 -0.48,-0.79 -0.48,-0.79 -0.5,-0.79 -0.5,-0.79 -0.49,-0.8 -0.48,-0.79 -0.46,-0.79 -0.45,-0.79 -0.44,-0.79 -0.43,-0.8 -0.42,-0.79 -0.41,-0.79 -0.4,-0.79 -0.37,-0.79 -0.35,-0.8 -0.31,-0.79 -0.27,-0.79 -0.23,-0.79 -0.18,-0.79 -0.13,-0.8 -0.08,-0.79 -0.04,-0.79 -0.01,-0.79 0.02,-0.79 0.02,-0.8 v -0.79 l -0.02,-0.79 -0.08,-0.79 -0.14,-0.79 -0.21,-0.8 -0.27,-0.79 -0.3,-0.79 -0.32,-0.79 -0.31,-0.79 -0.29,-0.8 -0.26,-0.79 -0.22,-0.79 -0.19,-0.79 -0.17,-0.79 -0.15,-0.8 -0.12,-0.79 -0.1,-0.79 -0.07,-0.79 -0.04,-0.79 -0.01,-0.8 0.02,-0.79 0.06,-0.79 0.07,-0.79 0.08,-0.79 0.09,-0.8 0.07,-0.79 0.06,-0.79 0.05,-0.79 0.03,-0.79 0.02,-0.8 v -0.79 l -0.01,-0.79 -0.05,-0.79 -0.08,-0.79 -0.12,-0.8 -0.18,-0.79 -0.24,-0.79 -0.29,-0.79 -0.34,-0.8 -0.38,-0.79 -0.4,-0.79 -0.4,-0.79 -0.4,-0.79 -0.37,-0.8 -0.34,-0.79 -0.3,-0.79 -0.26,-0.79 -0.23,-0.79 -0.19,-0.8 -0.17,-0.79 -0.14,-0.79 -0.12,-0.79 -0.09,-0.79 -0.08,-0.8 -0.07,-0.79 -0.05,-0.79 z" /><path
- inkscape:connector-curvature="0"
- id="path350"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 213.72,47.68 -0.37,0.65 -0.42,0.65 -0.48,0.65 -0.54,0.65 -0.6,0.65 -0.67,0.65 -0.71,0.65 -0.77,0.65 -0.8,0.65 -0.82,0.65 -0.81,0.65 -0.8,0.65 -0.77,0.65 -0.71,0.65 -0.65,0.65 -0.57,0.65 -0.5,0.65 -0.41,0.65 -0.34,0.65 -0.26,0.65 -0.18,0.65 -0.13,0.65 -0.06,0.65 -0.02,0.65 0.03,0.66 0.05,0.65 0.07,0.65 0.07,0.65 0.05,0.65 0.04,0.65 v 0.65 l -0.05,0.65 -0.08,0.65 -0.14,0.65 -0.17,0.65 -0.22,0.65 -0.24,0.65 -0.26,0.65 -0.28,0.65 -0.28,0.65 -0.29,0.65 -0.27,0.65 -0.26,0.65 -0.25,0.65 -0.23,0.65 -0.21,0.65 -0.19,0.65 -0.17,0.65 -0.14,0.65 -0.13,0.65 -0.11,0.65 -0.08,0.65 -0.05,0.65 -0.04,0.65 -0.02,0.65 v 0.65 l 0.02,0.65 0.03,0.65 0.05,0.65 0.06,0.65 0.08,0.65 0.09,0.65 0.12,0.65 0.14,0.65 0.18,0.65 0.21,0.65 0.24,0.65 0.28,0.65 0.32,0.65 0.37,0.65 0.4,0.65 0.43,0.65 0.46,0.65 0.48,0.65 0.5,0.65 0.5,0.65 0.51,0.65 0.5,0.65 0.48,0.65 0.47,0.65 0.45,0.65 0.43,0.65 0.41,0.65 0.39,0.65 0.38,0.65 0.36,0.65 0.35,0.65 0.33,0.65 0.32,0.65 0.3,0.65 0.29,0.65 0.27,0.65 0.25,0.65 0.23,0.66 0.22,0.65 0.21,0.65 0.2,0.65 0.2,0.65 0.2,0.65 0.2,0.65 0.22,0.65 0.21,0.65 0.21,0.65 0.21,0.65 0.19,0.65 0.18,0.65 0.17,0.65 0.15,0.65 0.13,0.65 0.11,0.65 0.1,0.65 0.1,0.65 0.09,0.65 0.1,0.65 0.1,0.65 0.1,0.65 0.12,0.65 0.13,0.65 0.14,0.65 0.14,0.65 0.15,0.65 0.16,0.65 0.16,0.65 0.15,0.65 0.15,0.65 0.15,0.65 0.13,0.65 0.12,0.65 0.11,0.65 0.1,0.65 0.08,0.65 0.07,0.65 0.06,0.65 0.05,0.65 0.04,0.65 0.04,0.65 0.03,0.65 0.02,0.65 0.03,0.65 0.02,0.65 0.03,0.65 0.02,0.65 0.02,0.65 0.01,0.65 0.02,0.65 0.01,0.65 0.01,0.65 0.01,0.65 v 0.65 l 0.01,0.65 v 0.65 l 0.01,0.65 v 0.65 l 0.01,0.65 0.01,0.65 0.01,0.65 0.01,0.65 0.01,0.65 0.01,0.65 v 0.65 l 0.01,0.65 V 153 l 0.01,0.66 v 0.65 0.65 h 0.1 l 0.01,-0.65 v -0.65 -0.66 -0.65 l 0.01,-0.65 0.01,-0.65 0.01,-0.65 0.01,-0.65 0.01,-0.65 0.01,-0.65 v -0.65 l 0.01,-0.65 0.01,-0.65 v -0.65 l 0.01,-0.65 v -0.65 l 0.01,-0.65 v -0.65 l 0.01,-0.65 0.01,-0.65 0.02,-0.65 0.02,-0.65 0.02,-0.65 0.02,-0.65 0.02,-0.65 0.02,-0.65 0.03,-0.65 0.03,-0.65 0.03,-0.65 0.03,-0.65 0.04,-0.65 0.05,-0.65 0.06,-0.65 0.07,-0.65 0.09,-0.65 0.09,-0.65 0.11,-0.65 0.13,-0.65 0.13,-0.65 0.14,-0.65 0.15,-0.65 0.16,-0.65 0.15,-0.65 0.16,-0.65 0.15,-0.65 0.15,-0.65 0.14,-0.65 0.12,-0.65 0.12,-0.65 0.11,-0.65 0.1,-0.65 0.09,-0.65 0.09,-0.65 0.1,-0.65 0.1,-0.65 0.12,-0.65 0.13,-0.65 0.15,-0.65 0.16,-0.65 0.18,-0.65 0.2,-0.65 0.2,-0.65 0.22,-0.65 0.21,-0.65 0.21,-0.65 0.21,-0.65 0.2,-0.65 0.2,-0.65 0.2,-0.65 0.21,-0.65 0.21,-0.65 0.24,-0.66 0.25,-0.65 0.27,-0.65 0.28,-0.65 0.31,-0.65 0.32,-0.65 0.33,-0.65 0.34,-0.65 0.37,-0.65 0.37,-0.65 0.39,-0.65 0.41,-0.65 0.43,-0.65 0.45,-0.65 0.47,-0.65 0.49,-0.65 0.5,-0.65 0.5,-0.65 0.51,-0.65 0.49,-0.65 0.48,-0.65 0.47,-0.65 0.43,-0.65 0.4,-0.65 0.36,-0.65 0.32,-0.65 0.28,-0.65 0.25,-0.65 0.21,-0.65 0.17,-0.65 0.14,-0.65 0.12,-0.65 0.1,-0.65 0.08,-0.65 0.06,-0.65 0.04,-0.65 0.03,-0.65 0.02,-0.65 v -0.65 l -0.02,-0.65 -0.03,-0.65 -0.06,-0.65 -0.08,-0.65 -0.1,-0.65 -0.13,-0.65 -0.15,-0.65 -0.17,-0.65 -0.19,-0.65 -0.21,-0.65 -0.23,-0.65 -0.25,-0.65 -0.26,-0.65 -0.27,-0.65 -0.28,-0.65 -0.28,-0.65 -0.28,-0.65 -0.27,-0.65 -0.24,-0.65 -0.21,-0.65 -0.18,-0.65 -0.13,-0.65 -0.09,-0.65 -0.04,-0.65 v -0.65 l 0.03,-0.65 0.06,-0.65 0.06,-0.65 0.07,-0.65 0.05,-0.65 0.03,-0.66 -0.01,-0.65 -0.07,-0.65 -0.12,-0.65 -0.19,-0.65 -0.26,-0.65 -0.33,-0.65 -0.42,-0.65 -0.49,-0.65 -0.58,-0.65 -0.65,-0.65 -0.71,-0.65 -0.76,-0.65 -0.8,-0.65 -0.82,-0.65 -0.82,-0.65 -0.8,-0.65 -0.76,-0.65 -0.72,-0.65 -0.66,-0.65 -0.61,-0.65 -0.54,-0.65 -0.48,-0.65 -0.42,-0.65 -0.37,-0.65 z" /></g></g><g
- id="g352"
- transform="translate(-10,-10)"
- style="" /><g
- id="g384"
- transform="translate(-10,-10)"
- style="" /><g
- id="g386"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath392)"
- id="g388"
- style=""><path
- inkscape:connector-curvature="0"
- id="path394"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 245,202.71 h 95.37 V 364.54 H 245 Z" /><path
- inkscape:connector-curvature="0"
- id="path396"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path398"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path400"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path402"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path404"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path406"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path408"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 271.01,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path410"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 314.36,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path412"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 270.61,216.08 -0.14,0.59 -0.18,0.59 -0.23,0.59 -0.27,0.59 -0.34,0.59 -0.38,0.59 -0.44,0.59 -0.49,0.59 -0.52,0.59 -0.55,0.58 -0.57,0.59 -0.57,0.59 -0.57,0.59 -0.55,0.59 -0.53,0.59 -0.51,0.59 -0.49,0.59 -0.46,0.59 -0.44,0.59 -0.43,0.59 -0.42,0.59 -0.43,0.59 -0.43,0.59 -0.45,0.59 -0.47,0.59 -0.46,0.59 -0.46,0.59 -0.42,0.59 -0.36,0.58 -0.3,0.59 -0.22,0.59 -0.16,0.59 -0.11,0.59 -0.1,0.59 -0.1,0.59 -0.14,0.59 -0.19,0.59 -0.25,0.59 -0.29,0.59 -0.32,0.59 -0.31,0.59 -0.3,0.59 -0.27,0.59 -0.22,0.59 -0.18,0.59 -0.15,0.59 -0.11,0.59 -0.1,0.58 -0.09,0.59 -0.06,0.59 -0.05,0.59 v 0.59 l 0.04,0.59 0.1,0.59 0.16,0.59 0.23,0.59 0.29,0.59 0.33,0.59 0.37,0.59 0.38,0.59 0.37,0.59 0.35,0.59 0.34,0.59 0.31,0.59 0.3,0.59 0.29,0.59 0.3,0.58 0.3,0.59 0.31,0.59 0.33,0.59 0.34,0.59 0.36,0.59 0.37,0.59 0.38,0.59 0.39,0.59 0.38,0.59 0.38,0.59 0.37,0.59 0.33,0.59 0.31,0.59 0.26,0.59 0.23,0.59 0.2,0.59 0.17,0.59 0.15,0.59 0.16,0.58 0.16,0.59 0.17,0.59 0.18,0.59 0.2,0.59 0.2,0.59 0.22,0.59 0.22,0.59 0.22,0.59 0.23,0.59 0.24,0.59 0.23,0.59 0.24,0.59 0.23,0.59 0.23,0.59 0.23,0.59 0.22,0.59 0.2,0.59 0.19,0.59 0.17,0.58 0.15,0.59 0.13,0.59 0.1,0.59 0.09,0.59 0.07,0.59 0.06,0.59 0.07,0.59 0.07,0.59 0.09,0.59 0.09,0.59 0.11,0.59 0.12,0.59 0.12,0.59 0.14,0.59 0.13,0.59 0.14,0.59 0.14,0.59 0.14,0.59 0.12,0.58 0.12,0.59 0.1,0.59 0.09,0.59 0.08,0.59 0.06,0.59 0.05,0.59 0.05,0.59 0.04,0.59 0.04,0.59 0.03,0.59 0.04,0.59 0.03,0.59 0.03,0.59 0.02,0.59 0.02,0.59 0.02,0.59 0.02,0.59 0.01,0.59 0.02,0.58 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 v 0.59 l 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 0.01,0.59 v 0.59 l 0.01,0.59 v 0.59 0.59 0.59 0.58 0.59 l 0.01,0.59 v 0.59 0.59 0.59 0.59 0.59 l -0.01,0.59 v 0.59 l 0.01,0.59 v 0.59 h 0.07 v -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.59 -0.58 -0.59 l 0.01,-0.59 v -0.59 -0.59 l 0.01,-0.59 v -0.59 l 0.01,-0.59 0.01,-0.59 0.01,-0.59 0.01,-0.59 0.01,-0.59 0.01,-0.59 0.01,-0.59 v -0.59 l 0.01,-0.59 0.01,-0.59 0.01,-0.59 0.02,-0.59 0.01,-0.58 0.01,-0.59 0.02,-0.59 0.02,-0.59 0.02,-0.59 0.03,-0.59 0.03,-0.59 0.03,-0.59 0.03,-0.59 0.03,-0.59 0.04,-0.59 0.04,-0.59 0.05,-0.59 0.05,-0.59 0.07,-0.59 0.07,-0.59 0.09,-0.59 0.1,-0.59 0.12,-0.59 0.13,-0.58 0.13,-0.59 0.14,-0.59 0.14,-0.59 0.14,-0.59 0.13,-0.59 0.13,-0.59 0.11,-0.59 0.11,-0.59 0.1,-0.59 0.08,-0.59 0.08,-0.59 0.06,-0.59 0.07,-0.59 0.07,-0.59 0.08,-0.59 0.1,-0.59 0.13,-0.59 0.15,-0.59 0.17,-0.58 0.19,-0.59 0.21,-0.59 0.22,-0.59 0.22,-0.59 0.23,-0.59 0.24,-0.59 0.23,-0.59 0.24,-0.59 0.23,-0.59 0.23,-0.59 0.23,-0.59 0.22,-0.59 0.21,-0.59 0.2,-0.59 0.2,-0.59 0.18,-0.59 0.18,-0.59 0.16,-0.59 0.15,-0.58 0.16,-0.59 0.17,-0.59 0.19,-0.59 0.23,-0.59 0.27,-0.59 0.3,-0.59 0.34,-0.59 0.36,-0.59 0.38,-0.59 0.39,-0.59 0.38,-0.59 0.38,-0.59 0.37,-0.59 0.36,-0.59 0.34,-0.59 0.33,-0.59 0.31,-0.59 0.31,-0.59 0.29,-0.58 0.29,-0.59 0.3,-0.59 0.32,-0.59 0.33,-0.59 0.36,-0.59 0.37,-0.59 0.37,-0.59 0.37,-0.59 0.33,-0.59 0.29,-0.59 0.23,-0.59 0.16,-0.59 0.1,-0.59 0.04,-0.59 v -0.59 l -0.04,-0.59 -0.07,-0.59 -0.08,-0.59 -0.1,-0.58 -0.12,-0.59 -0.15,-0.59 -0.18,-0.59 -0.22,-0.59 -0.26,-0.59 -0.3,-0.59 -0.32,-0.59 -0.32,-0.59 -0.29,-0.59 -0.25,-0.59 -0.19,-0.59 -0.14,-0.59 -0.1,-0.59 -0.09,-0.59 -0.11,-0.59 -0.16,-0.59 -0.23,-0.59 -0.29,-0.59 -0.37,-0.58 -0.42,-0.59 -0.45,-0.59 -0.47,-0.59 -0.46,-0.59 -0.45,-0.59 -0.44,-0.59 -0.43,-0.59 -0.42,-0.59 -0.42,-0.59 -0.44,-0.59 -0.47,-0.59 -0.48,-0.59 -0.51,-0.59 -0.54,-0.59 -0.55,-0.59 -0.57,-0.59 -0.57,-0.59 -0.56,-0.59 -0.55,-0.58 -0.53,-0.59 -0.48,-0.59 -0.44,-0.59 -0.39,-0.59 -0.33,-0.59 -0.28,-0.59 -0.23,-0.59 -0.18,-0.59 -0.14,-0.59 z" /><path
- inkscape:connector-curvature="0"
- id="path414"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 314.34,216.06 -0.01,0.67 v 0.68 l -0.01,0.68 -0.01,0.67 -0.02,0.68 -0.02,0.67 -0.03,0.68 -0.02,0.67 -0.01,0.68 -0.02,0.68 -0.02,0.67 -0.01,0.68 -0.02,0.67 -0.02,0.68 -0.01,0.67 -0.02,0.68 -0.02,0.68 -0.03,0.67 -0.02,0.68 -0.04,0.67 -0.03,0.68 -0.04,0.67 -0.04,0.68 -0.03,0.68 -0.03,0.67 -0.03,0.68 -0.03,0.67 -0.04,0.68 -0.06,0.67 -0.06,0.68 -0.08,0.68 -0.09,0.67 -0.09,0.68 -0.1,0.67 -0.1,0.68 -0.11,0.67 -0.12,0.68 -0.14,0.68 -0.16,0.67 -0.18,0.68 -0.17,0.67 -0.16,0.68 -0.14,0.67 -0.12,0.68 -0.09,0.68 -0.09,0.67 -0.1,0.68 -0.11,0.67 -0.12,0.68 -0.16,0.67 -0.18,0.68 -0.2,0.68 -0.21,0.67 -0.2,0.68 -0.19,0.67 -0.19,0.68 -0.17,0.67 -0.17,0.68 -0.17,0.68 -0.16,0.67 -0.16,0.68 -0.15,0.67 -0.17,0.68 -0.19,0.67 -0.21,0.68 -0.25,0.68 -0.28,0.67 -0.28,0.68 -0.28,0.67 -0.27,0.68 -0.25,0.67 -0.26,0.68 -0.28,0.68 -0.33,0.67 -0.4,0.68 -0.46,0.67 -0.55,0.68 -0.61,0.67 -0.67,0.68 -0.7,0.68 -0.69,0.67 -0.64,0.68 -0.58,0.67 -0.5,0.68 -0.44,0.67 -0.42,0.68 -0.45,0.68 -0.5,0.67 -0.54,0.68 -0.57,0.67 -0.53,0.68 -0.46,0.67 -0.34,0.68 -0.26,0.68 -0.19,0.67 -0.15,0.68 -0.15,0.67 -0.14,0.68 -0.11,0.68 -0.06,0.67 0.04,0.68 0.14,0.67 0.24,0.68 0.34,0.67 0.42,0.68 0.54,0.68 0.66,0.67 0.78,0.68 0.86,0.67 0.9,0.68 0.88,0.67 0.82,0.68 0.77,0.68 0.72,0.67 0.67,0.68 0.62,0.67 0.58,0.68 0.55,0.67 0.53,0.68 0.54,0.68 0.54,0.67 0.54,0.68 0.52,0.67 0.48,0.68 0.43,0.67 0.38,0.68 0.35,0.68 0.35,0.67 0.36,0.68 0.38,0.67 0.37,0.68 0.37,0.67 0.32,0.68 0.27,0.68 0.22,0.67 0.18,0.68 0.16,0.67 0.16,0.68 0.15,0.67 0.14,0.68 0.13,0.68 0.1,0.67 0.09,0.68 0.08,0.67 0.08,0.68 0.07,0.67 0.06,0.68 0.06,0.68 0.04,0.67 0.02,0.68 0.01,0.67 -0.01,0.68 v 0.67 l 0.01,0.68 0.03,0.68 0.03,0.67 0.03,0.68 0.04,0.67 0.02,0.68 0.02,0.67 0.01,0.68 0.01,0.68 0.01,0.67 0.02,0.68 0.01,0.67 0.01,0.68 v 0.67 0.68 l -0.01,0.68 v 0.67 l 0.01,0.68 0.01,0.67 0.02,0.68 0.02,0.67 0.03,0.68 0.02,0.68 0.02,0.67 0.01,0.68 0.01,0.67 0.01,0.68 0.01,0.67 h 0.2 l 0.01,-0.67 0.01,-0.68 0.01,-0.67 0.01,-0.68 0.02,-0.67 0.03,-0.68 0.02,-0.68 0.02,-0.67 0.02,-0.68 0.02,-0.67 v -0.68 -0.67 -0.68 l -0.01,-0.68 0.01,-0.67 v -0.68 l 0.01,-0.67 0.02,-0.68 0.01,-0.67 0.01,-0.68 0.01,-0.68 0.02,-0.67 0.03,-0.68 0.03,-0.67 0.04,-0.68 0.03,-0.67 0.02,-0.68 0.01,-0.68 v -0.67 -0.68 -0.67 l 0.03,-0.68 0.04,-0.67 0.05,-0.68 0.07,-0.68 0.07,-0.67 0.07,-0.68 0.08,-0.67 0.09,-0.68 0.11,-0.67 0.12,-0.68 0.14,-0.68 0.15,-0.67 0.16,-0.68 0.16,-0.67 0.18,-0.68 0.22,-0.67 0.28,-0.68 0.32,-0.68 0.36,-0.67 0.38,-0.68 0.37,-0.67 0.36,-0.68 0.35,-0.67 0.36,-0.68 0.38,-0.68 0.42,-0.67 0.48,-0.68 0.52,-0.67 0.54,-0.68 0.54,-0.67 0.54,-0.68 0.53,-0.68 0.55,-0.67 0.58,-0.68 0.63,-0.67 0.67,-0.68 0.71,-0.67 0.77,-0.68 0.83,-0.68 0.87,-0.67 0.9,-0.68 0.87,-0.67 0.77,-0.68 0.66,-0.67 0.54,-0.68 0.42,-0.68 0.34,-0.67 0.24,-0.68 0.14,-0.67 0.04,-0.68 -0.06,-0.67 -0.11,-0.68 -0.14,-0.68 -0.14,-0.67 -0.16,-0.68 -0.19,-0.67 -0.25,-0.68 -0.35,-0.68 -0.46,-0.67 -0.53,-0.68 -0.56,-0.67 -0.55,-0.68 -0.5,-0.67 -0.45,-0.68 -0.42,-0.68 -0.44,-0.67 -0.5,-0.68 -0.57,-0.67 -0.65,-0.68 -0.69,-0.67 -0.7,-0.68 -0.67,-0.68 -0.61,-0.67 -0.54,-0.68 -0.47,-0.67 -0.4,-0.68 -0.33,-0.67 -0.28,-0.68 -0.26,-0.68 -0.25,-0.67 -0.27,-0.68 -0.28,-0.67 -0.28,-0.68 -0.27,-0.67 -0.25,-0.68 -0.22,-0.68 -0.19,-0.67 -0.16,-0.68 -0.16,-0.67 -0.15,-0.68 -0.17,-0.67 -0.16,-0.68 -0.18,-0.68 -0.17,-0.67 -0.18,-0.68 -0.19,-0.67 -0.21,-0.68 -0.21,-0.67 -0.2,-0.68 -0.18,-0.68 -0.15,-0.67 -0.13,-0.68 -0.11,-0.67 -0.09,-0.68 -0.09,-0.67 -0.1,-0.68 -0.11,-0.68 -0.14,-0.67 -0.17,-0.68 -0.17,-0.67 -0.17,-0.68 -0.16,-0.67 -0.14,-0.68 -0.13,-0.68 -0.11,-0.67 -0.1,-0.68 -0.1,-0.67 -0.09,-0.68 -0.08,-0.67 -0.08,-0.68 -0.07,-0.68 -0.05,-0.67 -0.05,-0.68 -0.03,-0.67 -0.03,-0.68 -0.03,-0.67 -0.03,-0.68 -0.04,-0.68 -0.03,-0.67 -0.04,-0.68 -0.03,-0.67 -0.03,-0.68 -0.03,-0.67 -0.02,-0.68 -0.01,-0.68 -0.02,-0.67 -0.02,-0.68 -0.02,-0.67 -0.01,-0.68 -0.02,-0.67 -0.01,-0.68 -0.02,-0.68 -0.02,-0.67 -0.02,-0.68 -0.03,-0.67 -0.01,-0.68 -0.02,-0.67 -0.01,-0.68 v -0.68 -0.67 z" /></g></g><g
- id="g416"
- transform="translate(-10,-10)"
- style="" /><g
- id="g418"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath424)"
- id="g420"
- style=""><path
- inkscape:connector-curvature="0"
- id="path426"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 245,37.28 h 95.37 V 199.11 H 245 Z" /><path
- inkscape:connector-curvature="0"
- id="path428"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path430"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path432"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path434"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path436"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path438"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path440"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 271.01,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path442"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 314.36,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path444"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 270.88,50.59 -0.06,0.7 -0.07,0.7 -0.09,0.7 -0.12,0.7 -0.14,0.7 -0.17,0.69 -0.19,0.7 -0.21,0.7 -0.22,0.7 -0.24,0.7 -0.24,0.7 -0.24,0.7 -0.23,0.7 -0.23,0.7 -0.21,0.7 -0.2,0.7 -0.19,0.7 -0.19,0.7 -0.19,0.7 -0.19,0.7 -0.19,0.7 -0.2,0.69 -0.18,0.7 -0.17,0.7 -0.14,0.7 -0.12,0.7 -0.08,0.7 -0.08,0.7 -0.07,0.7 -0.08,0.7 -0.1,0.7 -0.12,0.7 -0.15,0.7 -0.17,0.7 -0.19,0.7 -0.18,0.7 -0.18,0.69 -0.18,0.7 -0.16,0.7 -0.15,0.7 -0.14,0.7 -0.12,0.7 -0.11,0.7 -0.09,0.7 -0.07,0.7 -0.06,0.7 -0.05,0.7 -0.03,0.7 -0.04,0.7 -0.03,0.7 -0.04,0.7 -0.04,0.7 -0.03,0.69 -0.04,0.7 -0.04,0.7 -0.03,0.7 -0.03,0.7 -0.03,0.7 -0.03,0.7 -0.04,0.7 -0.05,0.7 -0.06,0.7 -0.07,0.7 -0.1,0.7 -0.12,0.7 -0.14,0.7 -0.17,0.7 -0.19,0.7 -0.23,0.69 -0.28,0.7 -0.32,0.7 -0.37,0.7 -0.42,0.7 -0.46,0.7 -0.5,0.7 -0.51,0.7 -0.53,0.7 -0.51,0.7 -0.5,0.7 -0.48,0.7 -0.45,0.7 -0.43,0.7 -0.41,0.7 -0.41,0.7 -0.4,0.69 -0.4,0.7 -0.38,0.7 -0.36,0.7 -0.32,0.7 -0.28,0.7 -0.24,0.7 -0.2,0.7 -0.15,0.7 -0.12,0.7 -0.06,0.7 -0.01,0.7 0.05,0.7 0.14,0.7 0.22,0.7 0.32,0.69 0.42,0.7 0.51,0.7 0.59,0.7 0.68,0.7 0.73,0.7 0.76,0.7 0.77,0.7 0.76,0.7 0.74,0.7 0.7,0.7 0.67,0.7 0.63,0.7 0.6,0.7 0.57,0.7 0.55,0.7 0.53,0.69 0.51,0.7 0.49,0.7 0.46,0.7 0.45,0.7 0.41,0.7 0.4,0.7 0.38,0.7 0.36,0.7 0.35,0.7 0.34,0.7 0.32,0.7 0.3,0.7 0.28,0.7 0.25,0.7 0.21,0.7 0.2,0.69 0.17,0.7 0.15,0.7 0.14,0.7 0.12,0.7 0.11,0.7 0.1,0.7 0.09,0.7 0.07,0.7 0.07,0.7 0.05,0.7 0.05,0.7 0.04,0.7 0.03,0.7 0.02,0.7 0.02,0.7 0.02,0.69 0.01,0.7 0.03,0.7 0.02,0.7 0.02,0.7 0.02,0.7 0.03,0.7 0.01,0.7 0.02,0.7 0.01,0.7 0.02,0.7 0.01,0.7 v 0.7 l 0.01,0.7 v 0.7 l 0.01,0.69 v 0.7 l 0.01,0.7 0.01,0.7 0.01,0.7 0.02,0.7 0.02,0.7 0.01,0.7 0.02,0.7 0.02,0.7 0.01,0.7 0.01,0.7 0.02,0.7 h 0.17 l 0.01,-0.7 0.01,-0.7 0.02,-0.7 0.01,-0.7 0.02,-0.7 0.02,-0.7 0.01,-0.7 0.02,-0.7 0.01,-0.7 0.01,-0.7 0.01,-0.7 0.01,-0.7 v -0.69 l 0.01,-0.7 v -0.7 l 0.01,-0.7 0.01,-0.7 0.01,-0.7 0.01,-0.7 0.02,-0.7 0.02,-0.7 0.02,-0.7 0.02,-0.7 0.03,-0.7 0.02,-0.7 0.02,-0.7 0.02,-0.7 0.02,-0.69 0.02,-0.7 0.02,-0.7 0.03,-0.7 0.03,-0.7 0.05,-0.7 0.06,-0.7 0.06,-0.7 0.08,-0.7 0.08,-0.7 0.1,-0.7 0.11,-0.7 0.12,-0.7 0.14,-0.7 0.15,-0.7 0.17,-0.7 0.2,-0.69 0.22,-0.7 0.25,-0.7 0.27,-0.7 0.3,-0.7 0.32,-0.7 0.34,-0.7 0.35,-0.7 0.36,-0.7 0.38,-0.7 0.4,-0.7 0.42,-0.7 0.44,-0.7 0.47,-0.7 0.49,-0.7 0.5,-0.7 0.53,-0.69 0.55,-0.7 0.57,-0.7 0.6,-0.7 0.63,-0.7 0.67,-0.7 0.7,-0.7 0.74,-0.7 0.76,-0.7 0.78,-0.7 0.76,-0.7 0.73,-0.7 0.67,-0.7 0.6,-0.7 0.51,-0.7 0.41,-0.7 0.32,-0.69 0.22,-0.7 0.14,-0.7 0.06,-0.7 -0.01,-0.7 -0.07,-0.7 -0.11,-0.7 -0.16,-0.7 -0.19,-0.7 -0.24,-0.7 -0.29,-0.7 -0.32,-0.7 -0.36,-0.7 -0.38,-0.7 -0.4,-0.7 -0.4,-0.69 -0.41,-0.7 -0.41,-0.7 -0.43,-0.7 -0.45,-0.7 -0.47,-0.7 -0.5,-0.7 -0.52,-0.7 -0.52,-0.7 -0.52,-0.7 -0.49,-0.7 -0.46,-0.7 -0.42,-0.7 -0.38,-0.7 -0.32,-0.7 -0.27,-0.7 -0.23,-0.69 -0.2,-0.7 -0.16,-0.7 -0.15,-0.7 -0.11,-0.7 -0.1,-0.7 -0.08,-0.7 -0.06,-0.7 -0.05,-0.7 -0.04,-0.7 -0.03,-0.7 -0.03,-0.7 -0.03,-0.7 -0.03,-0.7 -0.04,-0.7 -0.03,-0.7 -0.04,-0.69 -0.04,-0.7 -0.03,-0.7 -0.04,-0.7 -0.03,-0.7 -0.04,-0.7 -0.05,-0.7 -0.05,-0.7 -0.08,-0.7 -0.09,-0.7 -0.11,-0.7 -0.12,-0.7 -0.14,-0.7 -0.15,-0.7 -0.16,-0.7 -0.17,-0.7 -0.18,-0.69 -0.19,-0.7 -0.18,-0.7 -0.17,-0.7 -0.15,-0.7 -0.13,-0.7 -0.1,-0.7 -0.08,-0.7 -0.07,-0.7 -0.07,-0.7 -0.09,-0.7 -0.12,-0.7 -0.14,-0.7 -0.17,-0.7 -0.18,-0.7 -0.19,-0.69 -0.2,-0.7 -0.19,-0.7 -0.19,-0.7 -0.18,-0.7 -0.2,-0.7 -0.2,-0.7 -0.21,-0.7 -0.22,-0.7 -0.24,-0.7 -0.24,-0.7 -0.24,-0.7 -0.23,-0.7 -0.23,-0.7 -0.21,-0.7 -0.19,-0.7 -0.17,-0.69 -0.14,-0.7 -0.12,-0.7 -0.09,-0.7 -0.07,-0.7 -0.05,-0.7 z" /><path
- inkscape:connector-curvature="0"
- id="path446"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 313.34,51.51 -0.24,0.57 -0.27,0.58 -0.3,0.57 -0.32,0.58 -0.35,0.57 -0.36,0.58 -0.36,0.57 -0.37,0.58 -0.35,0.57 -0.35,0.58 -0.33,0.57 -0.32,0.58 -0.3,0.57 -0.3,0.58 -0.28,0.57 -0.28,0.58 -0.29,0.57 -0.29,0.58 -0.31,0.57 -0.32,0.58 -0.34,0.57 -0.35,0.58 -0.36,0.57 -0.37,0.58 -0.38,0.57 -0.37,0.58 -0.38,0.57 -0.38,0.58 -0.37,0.57 -0.37,0.58 -0.38,0.57 -0.39,0.58 -0.41,0.57 -0.42,0.58 -0.44,0.57 -0.46,0.58 -0.48,0.57 -0.5,0.58 -0.49,0.57 -0.5,0.58 -0.49,0.57 -0.47,0.58 -0.45,0.57 -0.42,0.58 -0.39,0.57 -0.36,0.58 -0.33,0.57 -0.29,0.58 -0.26,0.57 -0.21,0.58 -0.17,0.57 -0.12,0.58 -0.08,0.57 -0.02,0.58 0.04,0.57 0.08,0.58 0.12,0.57 0.15,0.58 0.18,0.57 0.18,0.58 0.18,0.57 0.17,0.58 0.15,0.57 0.14,0.58 0.12,0.57 0.12,0.58 0.11,0.57 0.13,0.58 0.14,0.57 0.17,0.58 0.2,0.57 0.23,0.58 0.27,0.57 0.3,0.58 0.32,0.57 0.36,0.58 0.38,0.57 0.4,0.58 0.42,0.57 0.44,0.58 0.44,0.57 0.46,0.58 0.47,0.57 0.47,0.57 0.48,0.58 0.48,0.57 0.47,0.58 0.45,0.57 0.43,0.58 0.41,0.57 0.38,0.58 0.35,0.57 0.32,0.58 0.31,0.57 0.29,0.58 0.29,0.57 0.28,0.58 0.27,0.57 0.28,0.58 0.27,0.57 0.27,0.58 0.26,0.57 0.24,0.58 0.22,0.57 0.2,0.58 0.17,0.57 0.16,0.58 0.14,0.57 0.12,0.58 0.11,0.57 0.12,0.58 0.11,0.57 0.12,0.58 0.12,0.57 0.13,0.58 0.14,0.57 0.15,0.58 0.15,0.57 0.15,0.58 0.16,0.57 0.15,0.58 0.16,0.57 0.15,0.58 0.15,0.57 0.15,0.58 0.15,0.57 0.15,0.58 0.15,0.57 0.15,0.58 0.14,0.57 0.14,0.58 0.12,0.57 0.12,0.58 0.11,0.57 0.1,0.58 0.09,0.57 0.08,0.58 0.08,0.57 0.07,0.58 0.07,0.57 0.06,0.58 0.06,0.57 0.05,0.58 0.05,0.57 0.05,0.58 0.03,0.57 0.04,0.58 0.03,0.57 0.02,0.58 0.02,0.57 0.03,0.58 0.01,0.57 0.02,0.58 0.02,0.57 0.02,0.58 0.02,0.57 0.01,0.58 0.01,0.57 0.02,0.58 0.01,0.57 v 0.58 l 0.01,0.57 0.01,0.58 0.01,0.57 v 0.58 h 0.16 l 0.01,-0.58 v -0.57 l 0.01,-0.58 0.01,-0.57 0.01,-0.58 0.01,-0.57 0.01,-0.58 0.01,-0.57 0.02,-0.58 0.01,-0.57 0.02,-0.58 0.02,-0.57 0.02,-0.58 0.02,-0.57 0.02,-0.58 0.02,-0.57 0.03,-0.58 0.03,-0.57 0.03,-0.58 0.04,-0.57 0.04,-0.58 0.05,-0.57 0.05,-0.58 0.06,-0.57 0.07,-0.58 0.06,-0.57 0.07,-0.58 0.08,-0.57 0.08,-0.58 0.09,-0.57 0.1,-0.58 0.11,-0.57 0.12,-0.58 0.13,-0.57 0.13,-0.58 0.14,-0.57 0.15,-0.58 0.15,-0.57 0.15,-0.58 0.15,-0.57 0.15,-0.58 0.16,-0.57 0.15,-0.58 0.15,-0.57 0.16,-0.58 0.15,-0.57 0.15,-0.58 0.15,-0.57 0.15,-0.58 0.14,-0.57 0.13,-0.58 0.13,-0.57 0.11,-0.58 0.12,-0.57 0.11,-0.58 0.11,-0.57 0.13,-0.58 0.13,-0.57 0.16,-0.58 0.18,-0.57 0.2,-0.58 0.22,-0.57 0.24,-0.58 0.25,-0.57 0.27,-0.58 0.27,-0.57 0.28,-0.58 0.28,-0.57 0.28,-0.58 0.28,-0.57 0.29,-0.58 0.31,-0.57 0.32,-0.58 0.36,-0.57 0.37,-0.58 0.41,-0.57 0.43,-0.58 0.46,-0.57 0.46,-0.58 0.48,-0.57 0.48,-0.58 0.48,-0.57 0.46,-0.57 0.46,-0.58 0.45,-0.57 0.43,-0.58 0.42,-0.57 0.4,-0.58 0.38,-0.57 0.36,-0.58 0.33,-0.57 0.3,-0.58 0.26,-0.57 0.23,-0.58 0.2,-0.57 0.17,-0.58 0.14,-0.57 0.13,-0.58 0.12,-0.57 0.11,-0.58 0.12,-0.57 0.14,-0.58 0.15,-0.57 0.17,-0.58 0.18,-0.57 0.19,-0.58 0.17,-0.57 0.15,-0.58 0.13,-0.57 0.08,-0.58 0.03,-0.57 -0.02,-0.58 -0.07,-0.57 -0.12,-0.58 -0.18,-0.57 -0.21,-0.58 -0.26,-0.57 -0.29,-0.58 -0.33,-0.57 -0.36,-0.58 -0.39,-0.57 -0.42,-0.58 -0.45,-0.57 -0.47,-0.58 -0.49,-0.57 -0.49,-0.58 -0.5,-0.57 -0.49,-0.58 -0.48,-0.57 -0.47,-0.58 -0.44,-0.57 -0.42,-0.58 -0.4,-0.57 -0.39,-0.58 -0.38,-0.57 -0.38,-0.58 -0.37,-0.57 -0.38,-0.58 -0.37,-0.57 -0.38,-0.58 -0.38,-0.57 -0.37,-0.58 -0.36,-0.57 -0.35,-0.58 -0.34,-0.57 -0.32,-0.58 -0.31,-0.57 -0.29,-0.58 -0.29,-0.57 -0.28,-0.58 -0.28,-0.57 -0.29,-0.58 -0.3,-0.57 -0.32,-0.58 -0.33,-0.57 -0.35,-0.58 -0.36,-0.57 -0.37,-0.58 -0.36,-0.57 -0.36,-0.58 -0.34,-0.57 -0.33,-0.58 -0.3,-0.57 -0.27,-0.58 -0.24,-0.57 z" /></g></g><g
- id="g448"
- transform="translate(-10,-10)"
- style="" /><g
- id="g480"
- transform="translate(-10,-10)"
- style="" /><g
- id="g482"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath488)"
- id="g484"
- style=""><path
- inkscape:connector-curvature="0"
- id="path490"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 343.97,202.71 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path492"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path494"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path496"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path498"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path500"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path502"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path504"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 369.98,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path506"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 413.33,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path508"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 369.44,213.17 -0.18,0.75 -0.23,0.74 -0.29,0.74 -0.35,0.75 -0.41,0.74 -0.5,0.74 -0.58,0.75 -0.67,0.74 -0.74,0.74 -0.8,0.75 -0.85,0.74 -0.87,0.74 -0.87,0.75 -0.84,0.74 -0.79,0.74 -0.71,0.75 -0.62,0.74 -0.49,0.74 -0.38,0.75 -0.26,0.74 -0.15,0.74 -0.08,0.75 -0.03,0.74 -0.01,0.74 v 0.75 0.74 l -0.01,0.74 v 0.75 l 0.01,0.74 0.03,0.74 0.07,0.75 0.1,0.74 0.13,0.74 0.16,0.75 0.19,0.74 0.2,0.74 0.2,0.75 0.19,0.74 0.18,0.74 0.15,0.75 0.12,0.74 0.08,0.74 0.04,0.75 v 0.74 l -0.03,0.74 -0.07,0.75 -0.1,0.74 -0.1,0.74 -0.1,0.75 -0.06,0.74 -0.02,0.75 0.05,0.74 0.12,0.74 0.17,0.75 0.22,0.74 0.25,0.74 0.25,0.75 0.26,0.74 0.24,0.74 0.23,0.75 0.23,0.74 0.22,0.74 0.22,0.75 0.22,0.74 0.22,0.74 0.24,0.75 0.24,0.74 0.27,0.74 0.29,0.75 0.32,0.74 0.35,0.74 0.36,0.75 0.36,0.74 0.34,0.74 0.32,0.75 0.28,0.74 0.25,0.74 0.21,0.75 0.19,0.74 0.17,0.74 0.16,0.75 0.15,0.74 0.15,0.74 0.15,0.75 0.15,0.74 0.14,0.74 0.13,0.75 0.13,0.74 0.12,0.74 0.12,0.75 0.13,0.74 0.12,0.74 0.13,0.75 0.14,0.74 0.14,0.74 0.14,0.75 0.14,0.74 0.14,0.74 0.13,0.75 0.13,0.74 0.12,0.74 0.11,0.75 0.09,0.74 0.09,0.74 0.08,0.75 0.07,0.74 0.06,0.74 0.05,0.75 0.04,0.74 0.03,0.74 0.02,0.75 0.01,0.74 v 0.74 0.75 l 0.01,0.74 v 0.74 l 0.01,0.75 0.01,0.74 0.02,0.74 0.02,0.75 0.01,0.74 0.02,0.74 0.01,0.75 0.01,0.74 v 0.74 0.75 0.74 0.75 0.74 0.74 0.75 0.74 0.74 0.75 0.74 0.74 l 0.01,0.75 v 0.74 0.74 0.75 0.74 0.74 0.75 l 0.01,0.74 v 0.74 0.75 0.74 0.74 l 0.01,0.75 v 0.74 0.74 l 0.01,0.75 v 0.74 l 0.01,0.74 0.01,0.75 0.02,0.74 0.01,0.74 0.01,0.75 0.01,0.74 0.02,0.74 0.01,0.75 v 0.74 l 0.01,0.74 v 0.75 0.74 0.74 0.75 0.74 0.74 l -0.01,0.75 v 0.74 0.74 0.75 0.74 0.74 H 370 v -0.74 -0.74 -0.75 -0.74 -0.74 -0.75 -0.74 l -0.01,-0.74 v -0.75 -0.74 -0.74 l 0.01,-0.75 v -0.74 l 0.01,-0.74 0.01,-0.75 0.01,-0.74 0.01,-0.74 0.01,-0.75 0.02,-0.74 0.01,-0.74 0.01,-0.75 0.01,-0.74 0.01,-0.74 v -0.75 l 0.01,-0.74 v -0.74 -0.75 -0.74 -0.74 -0.75 l 0.01,-0.74 v -0.74 -0.75 -0.74 l 0.01,-0.74 v -0.75 -0.74 -0.74 -0.75 -0.74 -0.74 -0.75 l 0.01,-0.74 v -0.74 -0.75 -0.74 -0.74 l -0.01,-0.75 v -0.74 -0.75 l 0.01,-0.74 v -0.74 l 0.02,-0.75 0.01,-0.74 0.02,-0.74 0.01,-0.75 0.02,-0.74 0.01,-0.74 0.01,-0.75 0.01,-0.74 v -0.74 -0.75 l 0.01,-0.74 0.01,-0.74 0.02,-0.75 0.02,-0.74 0.04,-0.74 0.05,-0.75 0.06,-0.74 0.07,-0.74 0.08,-0.75 0.09,-0.74 0.1,-0.74 0.1,-0.75 0.12,-0.74 0.13,-0.74 0.13,-0.75 0.14,-0.74 0.14,-0.74 0.15,-0.75 0.14,-0.74 0.13,-0.74 0.13,-0.75 0.13,-0.74 0.12,-0.74 0.12,-0.75 0.12,-0.74 0.13,-0.74 0.13,-0.75 0.15,-0.74 0.14,-0.74 0.15,-0.75 0.15,-0.74 0.16,-0.74 0.16,-0.75 0.17,-0.74 0.18,-0.74 0.22,-0.75 0.24,-0.74 0.29,-0.74 0.31,-0.75 0.35,-0.74 0.36,-0.74 0.35,-0.75 0.35,-0.74 0.32,-0.74 0.29,-0.75 0.27,-0.74 0.24,-0.74 0.24,-0.75 0.22,-0.74 0.23,-0.74 0.22,-0.75 0.22,-0.74 0.22,-0.74 0.23,-0.75 0.25,-0.74 0.25,-0.74 0.25,-0.75 0.25,-0.74 0.22,-0.74 0.18,-0.75 0.11,-0.74 0.05,-0.74 -0.02,-0.75 -0.06,-0.74 -0.1,-0.75 -0.1,-0.74 -0.09,-0.74 -0.07,-0.75 -0.04,-0.74 v -0.74 l 0.04,-0.75 0.08,-0.74 0.12,-0.74 0.15,-0.75 0.18,-0.74 0.2,-0.74 0.2,-0.75 0.2,-0.74 0.18,-0.74 0.16,-0.75 0.13,-0.74 0.1,-0.74 0.07,-0.75 0.03,-0.74 0.01,-0.74 v -0.75 l -0.01,-0.74 v -0.74 -0.75 l -0.01,-0.74 -0.02,-0.74 -0.08,-0.75 -0.16,-0.74 -0.26,-0.74 -0.37,-0.75 -0.5,-0.74 -0.61,-0.74 -0.71,-0.75 -0.79,-0.74 -0.85,-0.74 -0.86,-0.75 -0.88,-0.74 -0.84,-0.74 -0.81,-0.75 -0.74,-0.74 -0.67,-0.74 -0.58,-0.75 -0.49,-0.74 -0.42,-0.74 -0.35,-0.75 -0.28,-0.74 -0.23,-0.74 -0.19,-0.75 z" /><path
- inkscape:connector-curvature="0"
- id="path510"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 413.32,212.03 v 0.78 0.78 0.78 l -0.01,0.78 -0.01,0.78 -0.01,0.77 -0.01,0.78 -0.01,0.78 -0.02,0.78 -0.03,0.78 -0.03,0.78 -0.04,0.78 -0.04,0.78 -0.04,0.77 -0.05,0.78 -0.05,0.78 -0.03,0.78 -0.02,0.78 v 0.78 0.78 0.78 l -0.01,0.78 -0.02,0.77 -0.02,0.78 -0.04,0.78 -0.04,0.78 -0.05,0.78 -0.04,0.78 -0.05,0.78 -0.05,0.78 -0.05,0.77 -0.04,0.78 -0.04,0.78 -0.03,0.78 -0.03,0.78 -0.04,0.78 -0.06,0.78 -0.09,0.78 -0.09,0.78 -0.11,0.77 -0.11,0.78 -0.1,0.78 -0.1,0.78 -0.08,0.78 -0.07,0.78 -0.09,0.78 -0.11,0.78 -0.16,0.77 -0.19,0.78 -0.22,0.78 -0.21,0.78 -0.15,0.78 -0.08,0.78 -0.02,0.78 -0.01,0.78 -0.04,0.77 -0.07,0.78 -0.11,0.78 -0.14,0.78 -0.18,0.78 -0.23,0.78 -0.27,0.78 -0.28,0.78 -0.26,0.78 -0.22,0.77 -0.18,0.78 -0.17,0.78 -0.22,0.78 -0.29,0.78 -0.4,0.78 -0.47,0.78 -0.52,0.78 -0.52,0.77 -0.54,0.78 -0.59,0.78 -0.69,0.78 -0.8,0.78 -0.91,0.78 -0.94,0.78 -0.9,0.78 -0.83,0.78 -0.77,0.77 -0.76,0.78 -0.81,0.78 -0.85,0.78 -0.85,0.78 -0.74,0.78 -0.56,0.78 -0.3,0.78 -0.09,0.77 0.09,0.78 0.19,0.78 0.25,0.78 0.33,0.78 0.41,0.78 0.51,0.78 0.56,0.78 0.59,0.78 0.61,0.77 0.7,0.78 0.82,0.78 0.96,0.78 1.05,0.78 1.06,0.78 1.02,0.78 0.97,0.78 0.9,0.77 0.83,0.78 0.74,0.78 0.65,0.78 0.57,0.78 0.51,0.78 0.48,0.78 0.44,0.78 0.42,0.78 0.42,0.77 0.43,0.78 0.42,0.78 0.36,0.78 0.3,0.78 0.24,0.78 0.2,0.78 0.17,0.78 0.15,0.77 0.12,0.78 0.09,0.78 0.07,0.78 0.09,0.78 0.09,0.78 0.08,0.78 0.06,0.78 0.03,0.77 v 0.78 l -0.01,0.78 -0.01,0.78 v 0.78 0.78 l 0.02,0.78 0.01,0.78 v 0.78 l -0.01,0.77 v 0.78 0.78 l 0.02,0.78 0.02,0.78 0.04,0.78 0.04,0.78 0.04,0.78 0.05,0.77 0.06,0.78 0.04,0.78 0.04,0.78 0.03,0.78 0.02,0.78 0.02,0.78 0.02,0.78 0.02,0.78 0.01,0.77 0.01,0.78 0.01,0.78 0.01,0.78 0.01,0.78 0.01,0.78 0.01,0.78 v 0.78 0.77 0.78 0.78 0.78 0.78 0.78 0.78 0.78 0.78 0.77 0.78 l -0.01,0.78 v 0.78 0.78 0.78 0.78 0.78 0.77 0.78 0.78 h 0.02 v -0.78 -0.78 -0.77 -0.78 -0.78 -0.78 -0.78 -0.78 -0.78 l -0.01,-0.78 v -0.77 -0.78 -0.78 -0.78 -0.78 -0.78 -0.78 -0.78 -0.78 -0.77 -0.78 l 0.01,-0.78 0.01,-0.78 0.01,-0.78 0.01,-0.78 0.01,-0.78 0.01,-0.78 0.02,-0.77 0.01,-0.78 0.02,-0.78 0.03,-0.78 0.02,-0.78 0.02,-0.78 0.04,-0.78 0.05,-0.78 0.05,-0.78 0.05,-0.77 0.04,-0.78 0.04,-0.78 0.04,-0.78 0.03,-0.78 0.01,-0.78 0.01,-0.78 -0.01,-0.78 v -0.77 -0.78 l 0.01,-0.78 0.01,-0.78 0.01,-0.78 v -0.78 l -0.02,-0.78 -0.01,-0.78 0.01,-0.78 0.03,-0.77 0.06,-0.78 0.08,-0.78 0.09,-0.78 0.08,-0.78 0.08,-0.78 0.09,-0.78 0.11,-0.78 0.15,-0.77 0.17,-0.78 0.2,-0.78 0.24,-0.78 0.3,-0.78 0.37,-0.78 0.41,-0.78 0.43,-0.78 0.42,-0.77 0.42,-0.78 0.44,-0.78 0.48,-0.78 0.52,-0.78 0.57,-0.78 0.65,-0.78 0.73,-0.78 0.83,-0.78 0.9,-0.77 0.97,-0.78 1.02,-0.78 1.07,-0.78 1.05,-0.78 0.95,-0.78 0.83,-0.78 0.69,-0.78 0.62,-0.77 0.59,-0.78 0.56,-0.78 0.5,-0.78 0.42,-0.78 0.32,-0.78 0.25,-0.78 0.19,-0.78 0.09,-0.78 -0.08,-0.77 -0.31,-0.78 -0.55,-0.78 -0.75,-0.78 -0.85,-0.78 -0.85,-0.78 -0.8,-0.78 -0.76,-0.78 -0.77,-0.77 -0.83,-0.78 -0.91,-0.78 -0.94,-0.78 -0.9,-0.78 -0.81,-0.78 -0.69,-0.78 -0.59,-0.78 -0.54,-0.78 -0.52,-0.77 -0.52,-0.78 -0.47,-0.78 -0.4,-0.78 -0.29,-0.78 -0.21,-0.78 -0.18,-0.78 -0.18,-0.78 -0.22,-0.77 -0.25,-0.78 -0.28,-0.78 -0.28,-0.78 -0.23,-0.78 -0.18,-0.78 -0.14,-0.78 -0.11,-0.78 -0.07,-0.78 -0.03,-0.77 -0.02,-0.78 -0.02,-0.78 -0.08,-0.78 -0.15,-0.78 -0.21,-0.78 -0.21,-0.78 -0.2,-0.78 -0.16,-0.77 -0.11,-0.78 -0.08,-0.78 -0.08,-0.78 -0.08,-0.78 -0.1,-0.78 -0.1,-0.78 -0.11,-0.78 -0.1,-0.77 -0.1,-0.78 -0.09,-0.78 -0.06,-0.78 -0.04,-0.78 -0.03,-0.78 -0.03,-0.78 -0.03,-0.78 -0.05,-0.78 -0.05,-0.77 -0.05,-0.78 -0.05,-0.78 -0.04,-0.78 -0.05,-0.78 -0.04,-0.78 -0.03,-0.78 -0.03,-0.78 -0.02,-0.77 -0.01,-0.78 v -0.78 l 0.01,-0.78 -0.01,-0.78 -0.02,-0.78 -0.03,-0.78 -0.05,-0.78 -0.04,-0.78 -0.05,-0.77 -0.04,-0.78 -0.03,-0.78 -0.04,-0.78 -0.02,-0.78 -0.02,-0.78 -0.02,-0.78 -0.01,-0.78 -0.01,-0.77 -0.01,-0.78 -0.01,-0.78 v -0.78 -0.78 -0.78 z" /></g></g><g
- id="g512"
- transform="translate(-10,-10)"
- style="" /><g
- id="g514"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath520)"
- id="g516"
- style=""><path
- inkscape:connector-curvature="0"
- id="path522"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 343.97,37.28 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path524"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path526"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path528"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path530"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path532"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path534"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path536"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 369.98,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path538"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 413.33,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path540"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 369.77,48.97 -0.09,0.8 -0.1,0.8 -0.13,0.8 -0.16,0.8 -0.21,0.8 -0.25,0.8 -0.28,0.8 -0.33,0.8 -0.35,0.8 -0.37,0.8 -0.37,0.8 -0.36,0.8 -0.34,0.8 -0.3,0.8 -0.26,0.8 -0.2,0.8 -0.14,0.8 -0.09,0.8 -0.05,0.8 -0.03,0.8 -0.01,0.8 -0.01,0.8 -0.02,0.8 -0.01,0.8 -0.02,0.8 -0.02,0.8 -0.01,0.8 0.01,0.8 0.02,0.8 0.03,0.8 0.05,0.8 0.05,0.8 0.05,0.8 0.03,0.8 0.01,0.8 -0.02,0.8 -0.05,0.8 -0.07,0.8 -0.11,0.8 -0.13,0.8 -0.16,0.81 -0.19,0.8 -0.2,0.8 -0.21,0.8 -0.2,0.8 -0.17,0.8 -0.14,0.8 -0.09,0.8 -0.05,0.8 -0.03,0.8 -0.02,0.8 -0.02,0.8 -0.05,0.8 -0.08,0.8 -0.1,0.8 -0.13,0.8 -0.15,0.8 -0.16,0.8 -0.16,0.8 -0.16,0.8 -0.15,0.8 -0.16,0.8 -0.17,0.8 -0.19,0.8 -0.24,0.8 -0.28,0.8 -0.34,0.8 -0.41,0.8 -0.49,0.8 -0.56,0.8 -0.63,0.8 -0.7,0.8 -0.74,0.8 -0.78,0.8 -0.8,0.8 -0.79,0.8 -0.79,0.8 -0.76,0.8 -0.74,0.8 -0.69,0.8 -0.61,0.8 -0.5,0.8 -0.37,0.8 -0.23,0.8 -0.07,0.8 0.08,0.8 0.2,0.8 0.32,0.81 0.41,0.8 0.49,0.8 0.57,0.8 0.64,0.8 0.7,0.8 0.78,0.8 0.83,0.8 0.89,0.8 0.94,0.8 0.95,0.8 0.95,0.8 0.93,0.8 0.88,0.8 0.82,0.8 0.76,0.8 0.7,0.8 0.63,0.8 0.58,0.8 0.54,0.8 0.5,0.8 0.47,0.8 0.43,0.8 0.41,0.8 0.37,0.8 0.34,0.8 0.29,0.8 0.26,0.8 0.21,0.8 0.19,0.8 0.16,0.8 0.13,0.8 0.11,0.8 0.1,0.8 0.08,0.8 0.07,0.8 0.06,0.8 0.05,0.8 0.03,0.8 0.02,0.8 0.01,0.8 0.01,0.8 0.01,0.8 v 0.8 l 0.01,0.8 v 0.8 l 0.01,0.8 0.01,0.8 0.01,0.81 0.02,0.8 0.02,0.8 0.03,0.8 0.04,0.8 0.04,0.8 0.05,0.8 0.05,0.8 0.04,0.8 0.04,0.8 0.04,0.8 0.04,0.8 0.03,0.8 0.02,0.8 0.02,0.8 0.02,0.8 0.01,0.8 0.02,0.8 v 0.8 l 0.01,0.8 0.01,0.8 v 0.8 l 0.01,0.8 v 0.8 0.8 0.8 0.8 0.8 0.8 l 0.01,0.8 v 0.8 0.8 0.8 l -0.01,0.8 v 0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 h 0.02 v -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 -0.8 l 0.01,-0.8 v -0.8 -0.8 l 0.01,-0.8 0.01,-0.8 0.01,-0.8 0.01,-0.8 0.01,-0.8 0.02,-0.8 0.02,-0.8 0.03,-0.8 0.02,-0.8 0.04,-0.8 0.04,-0.8 0.04,-0.8 0.05,-0.8 0.04,-0.8 0.05,-0.8 0.04,-0.8 0.04,-0.8 0.03,-0.8 0.03,-0.8 0.02,-0.8 0.01,-0.81 0.01,-0.8 v -0.8 l 0.01,-0.8 v -0.8 l 0.01,-0.8 v -0.8 l 0.01,-0.8 0.01,-0.8 0.02,-0.8 0.04,-0.8 0.04,-0.8 0.06,-0.8 0.07,-0.8 0.09,-0.8 0.09,-0.8 0.12,-0.8 0.13,-0.8 0.15,-0.8 0.19,-0.8 0.22,-0.8 0.25,-0.8 0.3,-0.8 0.33,-0.8 0.37,-0.8 0.41,-0.8 0.44,-0.8 0.46,-0.8 0.5,-0.8 0.54,-0.8 0.58,-0.8 0.64,-0.8 0.69,-0.8 0.76,-0.8 0.82,-0.8 0.88,-0.8 0.93,-0.8 0.95,-0.8 0.95,-0.8 0.94,-0.8 0.89,-0.8 0.84,-0.8 0.77,-0.8 0.7,-0.8 0.64,-0.8 0.57,-0.8 0.49,-0.8 0.42,-0.8 0.31,-0.81 0.21,-0.8 0.07,-0.8 -0.07,-0.8 -0.22,-0.8 -0.38,-0.8 -0.5,-0.8 -0.61,-0.8 -0.69,-0.8 -0.73,-0.8 -0.77,-0.8 -0.79,-0.8 -0.79,-0.8 -0.79,-0.8 -0.78,-0.8 -0.75,-0.8 -0.7,-0.8 -0.63,-0.8 -0.56,-0.8 -0.48,-0.8 -0.42,-0.8 -0.34,-0.8 -0.28,-0.8 -0.24,-0.8 -0.19,-0.8 -0.17,-0.8 -0.16,-0.8 -0.15,-0.8 -0.16,-0.8 -0.16,-0.8 -0.15,-0.8 -0.15,-0.8 -0.13,-0.8 -0.11,-0.8 -0.08,-0.8 -0.05,-0.8 -0.02,-0.8 -0.02,-0.8 -0.02,-0.8 -0.05,-0.8 -0.1,-0.8 -0.13,-0.8 -0.18,-0.8 -0.2,-0.8 -0.21,-0.8 -0.2,-0.8 -0.18,-0.8 -0.16,-0.81 -0.14,-0.8 -0.1,-0.8 -0.08,-0.8 -0.05,-0.8 -0.02,-0.8 0.01,-0.8 0.04,-0.8 0.04,-0.8 0.06,-0.8 0.04,-0.8 0.04,-0.8 0.01,-0.8 0.01,-0.8 -0.01,-0.8 -0.02,-0.8 -0.01,-0.8 -0.02,-0.8 -0.01,-0.8 -0.02,-0.8 -0.01,-0.8 -0.02,-0.8 -0.06,-0.8 -0.09,-0.8 -0.14,-0.8 -0.2,-0.8 -0.25,-0.8 -0.31,-0.8 -0.33,-0.8 -0.37,-0.8 -0.37,-0.8 -0.37,-0.8 -0.35,-0.8 -0.32,-0.8 -0.29,-0.8 -0.25,-0.8 -0.2,-0.8 -0.17,-0.8 -0.13,-0.8 -0.1,-0.8 -0.08,-0.8 z" /><path
- inkscape:connector-curvature="0"
- id="path542"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 412.43,46.71 -0.24,0.64 -0.27,0.63 -0.32,0.64 -0.37,0.63 -0.43,0.64 -0.48,0.64 -0.54,0.63 -0.59,0.64 -0.65,0.64 -0.69,0.63 -0.73,0.64 -0.75,0.63 -0.78,0.64 -0.77,0.64 -0.76,0.63 -0.74,0.64 -0.69,0.64 -0.64,0.63 -0.58,0.64 -0.51,0.63 -0.44,0.64 -0.36,0.64 -0.29,0.63 -0.23,0.64 -0.18,0.64 -0.14,0.63 -0.11,0.64 -0.1,0.63 -0.1,0.64 -0.1,0.64 -0.1,0.63 -0.11,0.64 -0.11,0.64 -0.1,0.63 -0.09,0.64 -0.08,0.64 -0.06,0.63 -0.04,0.64 -0.02,0.63 -0.01,0.64 v 0.64 l 0.01,0.63 v 0.64 l 0.01,0.64 0.01,0.63 0.02,0.64 0.01,0.63 0.03,0.64 0.03,0.64 0.04,0.63 0.05,0.64 0.06,0.64 0.06,0.63 0.06,0.64 0.07,0.63 0.06,0.64 0.08,0.64 0.08,0.63 0.09,0.64 0.12,0.64 0.14,0.63 0.18,0.64 0.2,0.63 0.24,0.64 0.27,0.64 0.29,0.63 0.31,0.64 0.33,0.64 0.34,0.63 0.35,0.64 0.34,0.64 0.34,0.63 0.33,0.64 0.31,0.63 0.3,0.64 0.29,0.64 0.28,0.63 0.26,0.64 0.25,0.64 0.24,0.63 0.24,0.64 0.24,0.63 0.24,0.64 0.24,0.64 0.24,0.63 0.24,0.64 0.24,0.64 0.24,0.63 0.22,0.64 0.22,0.63 0.2,0.64 0.2,0.64 0.18,0.63 0.18,0.64 0.17,0.64 0.17,0.63 0.16,0.64 0.17,0.63 0.17,0.64 0.17,0.64 0.17,0.63 0.17,0.64 0.17,0.64 0.16,0.63 0.17,0.64 0.15,0.64 0.15,0.63 0.14,0.64 0.14,0.63 0.12,0.64 0.12,0.64 0.11,0.63 0.11,0.64 0.1,0.64 0.1,0.63 0.1,0.64 0.1,0.63 0.1,0.64 0.09,0.64 0.1,0.63 0.1,0.64 0.11,0.64 0.1,0.63 0.11,0.64 0.11,0.63 0.11,0.64 0.12,0.64 0.11,0.63 0.1,0.64 0.1,0.64 0.09,0.63 0.08,0.64 0.07,0.63 0.06,0.64 0.05,0.64 0.04,0.63 0.03,0.64 0.03,0.64 0.03,0.63 0.02,0.64 0.03,0.63 0.03,0.64 0.04,0.64 0.03,0.63 0.04,0.64 0.04,0.64 0.03,0.63 0.03,0.64 0.03,0.64 0.03,0.63 0.02,0.64 0.02,0.63 0.01,0.64 0.01,0.64 0.01,0.63 0.01,0.64 v 0.64 l 0.01,0.63 v 0.64 0.63 0.64 0.64 0.63 l -0.01,0.64 v 0.64 h 0.08 v -0.64 -0.64 -0.63 l -0.01,-0.64 v -0.64 -0.63 l 0.01,-0.64 v -0.63 -0.64 l 0.01,-0.64 0.01,-0.63 0.01,-0.64 0.02,-0.64 0.01,-0.63 0.03,-0.64 0.02,-0.63 0.03,-0.64 0.03,-0.64 0.04,-0.63 0.03,-0.64 0.04,-0.64 0.04,-0.63 0.03,-0.64 0.03,-0.64 0.03,-0.63 0.03,-0.64 0.02,-0.63 0.03,-0.64 0.04,-0.64 0.04,-0.63 0.04,-0.64 0.06,-0.64 0.07,-0.63 0.08,-0.64 0.09,-0.63 0.1,-0.64 0.11,-0.64 0.11,-0.63 0.11,-0.64 0.11,-0.64 0.11,-0.63 0.11,-0.64 0.11,-0.63 0.1,-0.64 0.1,-0.64 0.1,-0.63 0.1,-0.64 0.09,-0.64 0.1,-0.63 0.1,-0.64 0.1,-0.63 0.1,-0.64 0.11,-0.64 0.11,-0.63 0.12,-0.64 0.13,-0.64 0.13,-0.63 0.14,-0.64 0.15,-0.63 0.16,-0.64 0.16,-0.64 0.17,-0.63 0.17,-0.64 0.17,-0.64 0.17,-0.63 0.17,-0.64 0.16,-0.64 0.17,-0.63 0.17,-0.64 0.16,-0.63 0.17,-0.64 0.18,-0.64 0.19,-0.63 0.19,-0.64 0.2,-0.64 0.22,-0.63 0.23,-0.64 0.23,-0.63 0.24,-0.64 0.24,-0.64 0.24,-0.63 0.24,-0.64 0.24,-0.64 0.24,-0.63 0.24,-0.64 0.24,-0.63 0.25,-0.64 0.27,-0.64 0.27,-0.63 0.29,-0.64 0.3,-0.64 0.32,-0.63 0.33,-0.64 0.33,-0.63 0.34,-0.64 0.35,-0.64 0.34,-0.63 0.33,-0.64 0.31,-0.64 0.3,-0.63 0.26,-0.64 0.24,-0.64 0.21,-0.63 0.17,-0.64 0.14,-0.63 0.12,-0.64 0.1,-0.64 0.08,-0.63 0.07,-0.64 0.07,-0.64 0.06,-0.63 0.06,-0.64 0.06,-0.63 0.06,-0.64 0.05,-0.64 0.04,-0.63 0.03,-0.64 0.03,-0.64 0.02,-0.63 0.01,-0.64 0.01,-0.63 0.01,-0.64 0.01,-0.64 V 72.8 72.16 l -0.01,-0.64 -0.02,-0.63 -0.04,-0.64 -0.06,-0.63 -0.07,-0.64 -0.1,-0.64 -0.1,-0.63 -0.11,-0.64 -0.11,-0.64 -0.1,-0.63 -0.1,-0.64 -0.1,-0.64 -0.1,-0.63 -0.11,-0.64 -0.14,-0.63 -0.18,-0.64 -0.23,-0.64 -0.29,-0.63 -0.36,-0.64 -0.44,-0.64 -0.51,-0.63 -0.57,-0.64 -0.65,-0.63 -0.69,-0.64 -0.73,-0.64 -0.77,-0.63 -0.77,-0.64 -0.77,-0.64 -0.76,-0.63 -0.73,-0.64 -0.69,-0.63 -0.65,-0.64 -0.59,-0.64 -0.54,-0.63 -0.48,-0.64 -0.43,-0.64 -0.37,-0.63 -0.32,-0.64 -0.27,-0.63 -0.23,-0.64 z" /></g></g><g
- id="g544"
- transform="translate(-10,-10)"
- style="" /><g
- id="g576"
- transform="translate(-10,-10)"
- style="" /><g
- id="g578"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath584)"
- id="g580"
- style=""><path
- inkscape:connector-curvature="0"
- id="path586"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 442.94,202.71 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path588"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path590"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path592"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path594"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path596"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path598"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path600"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 468.95,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path602"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 512.3,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path604"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 468.41,215.96 -0.18,0.68 -0.22,0.67 -0.26,0.68 -0.3,0.68 -0.32,0.67 -0.36,0.68 -0.38,0.67 -0.4,0.68 -0.42,0.68 -0.42,0.67 -0.42,0.68 -0.39,0.67 -0.37,0.68 -0.32,0.68 -0.26,0.67 -0.21,0.68 -0.16,0.67 -0.12,0.68 -0.1,0.68 -0.09,0.67 -0.1,0.68 -0.13,0.67 -0.17,0.68 -0.21,0.67 -0.24,0.68 -0.28,0.68 -0.32,0.67 -0.36,0.68 -0.39,0.67 -0.42,0.68 -0.45,0.68 -0.48,0.67 -0.49,0.68 -0.49,0.67 -0.49,0.68 -0.46,0.68 -0.44,0.67 -0.41,0.68 -0.38,0.67 -0.34,0.68 -0.3,0.68 -0.25,0.67 -0.22,0.68 -0.17,0.67 -0.14,0.68 -0.1,0.68 -0.06,0.67 -0.01,0.68 0.03,0.67 0.1,0.68 0.16,0.68 0.25,0.67 0.31,0.68 0.38,0.67 0.43,0.68 0.45,0.68 0.45,0.67 0.42,0.68 0.37,0.67 0.3,0.68 0.25,0.68 0.18,0.67 0.14,0.68 0.1,0.67 0.09,0.68 0.08,0.68 0.09,0.67 0.1,0.68 0.12,0.67 0.14,0.68 0.15,0.68 0.17,0.67 0.18,0.68 0.19,0.67 0.19,0.68 0.2,0.68 0.19,0.67 0.2,0.68 0.21,0.67 0.22,0.68 0.24,0.68 0.24,0.67 0.26,0.68 0.26,0.67 0.26,0.68 0.25,0.68 0.23,0.67 0.22,0.68 0.21,0.67 0.19,0.68 0.17,0.68 0.17,0.67 0.16,0.68 0.16,0.67 0.17,0.68 0.18,0.68 0.19,0.67 0.2,0.68 0.21,0.67 0.2,0.68 0.21,0.68 0.21,0.67 0.2,0.68 0.19,0.67 0.19,0.68 0.18,0.68 0.17,0.67 0.15,0.68 0.14,0.67 0.13,0.68 0.12,0.68 0.11,0.67 0.11,0.68 0.12,0.67 0.11,0.68 0.12,0.68 0.11,0.67 0.12,0.68 0.1,0.67 0.1,0.68 0.08,0.68 0.07,0.67 0.05,0.68 0.03,0.67 0.02,0.68 0.01,0.68 0.01,0.67 v 0.68 l 0.01,0.67 v 0.68 l 0.02,0.68 0.02,0.67 0.02,0.68 0.02,0.67 0.03,0.68 0.02,0.68 0.02,0.67 0.02,0.68 0.02,0.67 0.01,0.68 0.01,0.67 0.02,0.68 0.01,0.68 0.01,0.67 0.01,0.68 0.01,0.67 0.01,0.68 0.01,0.68 0.01,0.67 v 0.68 l 0.01,0.67 v 0.68 l 0.01,0.68 v 0.67 l 0.01,0.68 v 0.67 l 0.01,0.68 v 0.68 0.67 0.68 l -0.01,0.67 v 0.68 l -0.01,0.68 v 0.67 0.68 l -0.01,0.67 v 0.68 0.68 0.67 l 0.01,0.68 v 0.67 0.68 l 0.01,0.68 h 0.07 v -0.68 -0.68 l 0.01,-0.67 v -0.68 -0.67 -0.68 -0.68 -0.67 l -0.01,-0.68 v -0.67 l -0.01,-0.68 v -0.68 -0.67 l -0.01,-0.68 v -0.67 l 0.01,-0.68 v -0.68 l 0.01,-0.67 v -0.68 l 0.01,-0.67 v -0.68 l 0.01,-0.68 v -0.67 l 0.01,-0.68 v -0.67 l 0.01,-0.68 0.01,-0.68 0.01,-0.67 0.01,-0.68 0.01,-0.67 0.02,-0.68 0.01,-0.68 0.01,-0.67 0.02,-0.68 0.01,-0.67 0.02,-0.68 0.02,-0.67 0.03,-0.68 0.02,-0.68 0.02,-0.67 0.03,-0.68 0.02,-0.67 0.01,-0.68 0.01,-0.68 v -0.67 -0.68 l 0.01,-0.67 0.01,-0.68 0.02,-0.68 0.04,-0.67 0.05,-0.68 0.06,-0.67 0.08,-0.68 0.1,-0.68 0.11,-0.67 0.11,-0.68 0.12,-0.67 0.11,-0.68 0.12,-0.68 0.11,-0.67 0.11,-0.68 0.11,-0.67 0.12,-0.68 0.13,-0.68 0.14,-0.67 0.16,-0.68 0.16,-0.67 0.18,-0.68 0.19,-0.68 0.19,-0.67 0.2,-0.68 0.21,-0.67 0.21,-0.68 0.21,-0.68 0.2,-0.67 0.2,-0.68 0.19,-0.67 0.18,-0.68 0.17,-0.68 0.16,-0.67 0.16,-0.68 0.17,-0.67 0.18,-0.68 0.18,-0.68 0.21,-0.67 0.22,-0.68 0.24,-0.67 0.24,-0.68 0.26,-0.68 0.26,-0.67 0.26,-0.68 0.25,-0.67 0.23,-0.68 0.22,-0.68 0.21,-0.67 0.2,-0.68 0.2,-0.67 0.19,-0.68 0.19,-0.68 0.19,-0.67 0.18,-0.68 0.17,-0.67 0.16,-0.68 0.13,-0.68 0.12,-0.67 0.1,-0.68 0.09,-0.67 0.08,-0.68 0.09,-0.68 0.1,-0.67 0.14,-0.68 0.18,-0.67 0.25,-0.68 0.31,-0.68 0.37,-0.67 0.41,-0.68 0.45,-0.67 0.45,-0.68 0.43,-0.68 0.38,-0.67 0.32,-0.68 0.24,-0.67 0.17,-0.68 0.09,-0.68 0.04,-0.67 -0.02,-0.68 -0.06,-0.67 -0.1,-0.68 -0.13,-0.68 -0.18,-0.67 -0.21,-0.68 -0.26,-0.67 -0.3,-0.68 -0.34,-0.68 -0.38,-0.67 -0.41,-0.68 -0.44,-0.67 -0.46,-0.68 -0.48,-0.68 -0.5,-0.67 -0.49,-0.68 -0.47,-0.67 -0.46,-0.68 -0.42,-0.68 -0.39,-0.67 -0.36,-0.68 -0.31,-0.67 -0.28,-0.68 -0.25,-0.68 -0.21,-0.67 -0.16,-0.68 -0.13,-0.67 -0.11,-0.68 -0.09,-0.67 -0.1,-0.68 -0.11,-0.68 -0.16,-0.67 -0.21,-0.68 -0.27,-0.67 -0.32,-0.68 -0.37,-0.68 -0.39,-0.67 -0.42,-0.68 -0.42,-0.67 -0.41,-0.68 -0.41,-0.68 -0.38,-0.67 -0.35,-0.68 -0.33,-0.67 -0.3,-0.68 -0.25,-0.68 -0.22,-0.67 -0.19,-0.68 z" /><path
- inkscape:connector-curvature="0"
- id="path606"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 512.22,219.87 -0.03,0.67 -0.03,0.67 -0.03,0.66 -0.03,0.67 -0.04,0.67 -0.04,0.67 -0.05,0.66 -0.06,0.67 -0.05,0.67 -0.02,0.66 -0.01,0.67 0.01,0.67 0.04,0.66 0.03,0.67 0.03,0.67 0.01,0.67 0.01,0.66 -0.01,0.67 -0.01,0.67 -0.03,0.66 -0.05,0.67 -0.07,0.67 -0.07,0.66 -0.09,0.67 -0.08,0.67 -0.09,0.67 -0.07,0.66 -0.07,0.67 -0.06,0.67 -0.05,0.66 -0.04,0.67 -0.06,0.67 -0.06,0.67 -0.09,0.66 -0.11,0.67 -0.13,0.67 -0.14,0.66 -0.14,0.67 -0.13,0.67 -0.12,0.66 -0.1,0.67 -0.09,0.67 -0.07,0.67 -0.05,0.66 -0.06,0.67 -0.06,0.67 -0.08,0.66 -0.1,0.67 -0.13,0.67 -0.16,0.67 -0.18,0.66 -0.21,0.67 -0.22,0.67 -0.22,0.66 -0.21,0.67 -0.19,0.67 -0.17,0.66 -0.17,0.67 -0.19,0.67 -0.22,0.67 -0.25,0.66 -0.28,0.67 -0.32,0.67 -0.34,0.66 -0.39,0.67 -0.4,0.67 -0.4,0.66 -0.39,0.67 -0.37,0.67 -0.37,0.67 -0.39,0.66 -0.44,0.67 -0.48,0.67 -0.52,0.66 -0.58,0.67 -0.63,0.67 -0.67,0.67 -0.71,0.66 -0.7,0.67 -0.67,0.67 -0.61,0.66 -0.54,0.67 -0.48,0.67 -0.44,0.66 -0.45,0.67 -0.46,0.67 -0.47,0.67 -0.46,0.66 -0.43,0.67 -0.37,0.67 -0.28,0.66 -0.17,0.67 -0.06,0.67 0.08,0.67 0.21,0.66 0.32,0.67 0.43,0.67 0.49,0.66 0.51,0.67 0.53,0.67 0.54,0.66 0.58,0.67 0.59,0.67 0.63,0.67 0.66,0.66 0.72,0.67 0.78,0.67 0.81,0.66 0.83,0.67 0.8,0.67 0.74,0.67 0.65,0.66 0.58,0.67 0.53,0.67 0.54,0.66 0.56,0.67 0.58,0.67 0.58,0.66 0.54,0.67 0.48,0.67 0.42,0.67 0.34,0.66 0.3,0.67 0.26,0.67 0.24,0.66 0.2,0.67 0.19,0.67 0.18,0.66 0.18,0.67 0.18,0.67 0.18,0.67 0.16,0.66 0.13,0.67 0.12,0.67 0.11,0.66 0.1,0.67 0.1,0.67 0.09,0.67 0.08,0.66 0.07,0.67 0.05,0.67 0.04,0.66 0.03,0.67 0.01,0.67 v 0.66 l -0.01,0.67 -0.01,0.67 v 0.67 0.66 l 0.02,0.67 0.01,0.67 0.02,0.66 0.02,0.67 0.02,0.67 0.02,0.67 0.02,0.66 0.02,0.67 0.03,0.67 0.03,0.66 0.02,0.67 0.01,0.67 v 0.66 l -0.01,0.67 -0.01,0.67 -0.01,0.67 v 0.66 l 0.01,0.67 0.02,0.67 0.02,0.66 0.03,0.67 0.03,0.67 0.02,0.66 0.01,0.67 0.01,0.67 0.01,0.67 0.02,0.66 0.01,0.67 0.01,0.67 0.02,0.66 0.01,0.67 0.01,0.67 v 0.67 l 0.01,0.66 h 0.04 l 0.01,-0.66 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.02,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.02,-0.66 0.03,-0.67 0.03,-0.67 0.02,-0.66 0.02,-0.67 0.01,-0.67 v -0.66 l -0.01,-0.67 -0.01,-0.67 -0.01,-0.67 v -0.66 l 0.01,-0.67 0.02,-0.67 0.03,-0.66 0.03,-0.67 0.02,-0.67 0.02,-0.66 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.66 0.02,-0.67 0.01,-0.67 v -0.66 -0.67 l -0.01,-0.67 -0.01,-0.67 v -0.66 l 0.01,-0.67 0.03,-0.67 0.04,-0.66 0.06,-0.67 0.07,-0.67 0.08,-0.66 0.09,-0.67 0.09,-0.67 0.1,-0.67 0.11,-0.66 0.12,-0.67 0.14,-0.67 0.16,-0.66 0.17,-0.67 0.18,-0.67 0.19,-0.67 0.18,-0.66 0.18,-0.67 0.21,-0.67 0.23,-0.66 0.26,-0.67 0.3,-0.67 0.35,-0.66 0.41,-0.67 0.48,-0.67 0.54,-0.67 0.58,-0.66 0.59,-0.67 0.56,-0.67 0.53,-0.66 0.54,-0.67 0.57,-0.67 0.66,-0.66 0.73,-0.67 0.8,-0.67 0.83,-0.67 0.82,-0.66 0.77,-0.67 0.72,-0.67 0.67,-0.66 0.62,-0.67 0.6,-0.67 0.57,-0.67 0.55,-0.66 0.52,-0.67 0.52,-0.67 0.48,-0.66 0.43,-0.67 0.33,-0.67 0.2,-0.66 0.08,-0.67 -0.06,-0.67 -0.17,-0.67 -0.28,-0.66 -0.36,-0.67 -0.43,-0.67 -0.47,-0.66 -0.47,-0.67 -0.46,-0.67 -0.44,-0.67 -0.45,-0.66 -0.48,-0.67 -0.54,-0.67 -0.61,-0.66 -0.67,-0.67 -0.7,-0.67 -0.7,-0.66 -0.68,-0.67 -0.63,-0.67 -0.57,-0.67 -0.53,-0.66 -0.48,-0.67 -0.44,-0.67 -0.39,-0.66 -0.37,-0.67 -0.37,-0.67 -0.39,-0.67 -0.4,-0.66 -0.4,-0.67 -0.38,-0.67 -0.35,-0.66 -0.31,-0.67 -0.29,-0.67 -0.25,-0.66 -0.22,-0.67 -0.19,-0.67 -0.17,-0.67 -0.17,-0.66 -0.19,-0.67 -0.2,-0.67 -0.23,-0.66 -0.22,-0.67 -0.21,-0.67 -0.18,-0.66 -0.16,-0.67 -0.13,-0.67 -0.1,-0.67 -0.08,-0.66 -0.06,-0.67 -0.05,-0.67 -0.06,-0.66 -0.07,-0.67 -0.08,-0.67 -0.11,-0.67 -0.12,-0.66 -0.13,-0.67 -0.14,-0.67 -0.14,-0.66 -0.13,-0.67 -0.11,-0.67 -0.09,-0.66 -0.06,-0.67 -0.05,-0.67 -0.05,-0.67 -0.05,-0.66 -0.06,-0.67 -0.07,-0.67 -0.07,-0.66 -0.08,-0.67 -0.09,-0.67 -0.08,-0.67 -0.08,-0.66 -0.07,-0.67 -0.04,-0.67 -0.03,-0.66 -0.02,-0.67 -0.01,-0.67 0.01,-0.66 0.01,-0.67 0.03,-0.67 0.04,-0.67 0.03,-0.66 0.01,-0.67 v -0.67 l -0.03,-0.66 -0.05,-0.67 -0.05,-0.67 -0.06,-0.66 -0.04,-0.67 -0.04,-0.67 -0.03,-0.67 -0.03,-0.66 -0.03,-0.67 -0.03,-0.67 z" /></g></g><g
- id="g608"
- transform="translate(-10,-10)"
- style="" /><g
- id="g610"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath616)"
- id="g612"
- style=""><path
- inkscape:connector-curvature="0"
- id="path618"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 442.94,37.28 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path620"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path622"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path624"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path626"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path628"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path630"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path632"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 468.95,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path634"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 512.3,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path636"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 468.8,50.27 -0.06,0.71 -0.08,0.71 -0.1,0.71 -0.11,0.71 -0.13,0.72 -0.15,0.71 -0.16,0.71 -0.19,0.71 -0.19,0.71 -0.21,0.71 -0.2,0.72 -0.2,0.71 -0.18,0.71 -0.15,0.71 -0.12,0.71 -0.09,0.71 -0.05,0.72 -0.03,0.71 -0.03,0.71 -0.02,0.71 -0.03,0.71 -0.06,0.71 -0.07,0.72 -0.1,0.71 -0.12,0.71 -0.14,0.71 -0.16,0.71 -0.17,0.71 -0.19,0.72 -0.2,0.71 -0.2,0.71 -0.22,0.71 -0.21,0.71 -0.22,0.71 -0.22,0.72 -0.22,0.71 -0.23,0.71 -0.23,0.71 -0.24,0.71 -0.24,0.71 -0.23,0.72 -0.22,0.71 -0.21,0.71 -0.19,0.71 -0.17,0.71 -0.14,0.71 -0.11,0.72 -0.08,0.71 -0.04,0.71 v 0.71 l 0.04,0.71 0.05,0.71 0.07,0.72 0.06,0.71 0.04,0.71 v 0.71 l -0.05,0.71 -0.09,0.71 -0.13,0.72 -0.18,0.71 -0.21,0.71 -0.23,0.71 -0.25,0.71 -0.26,0.71 -0.28,0.72 -0.29,0.71 -0.3,0.71 -0.31,0.71 -0.31,0.71 -0.31,0.71 -0.33,0.72 -0.34,0.71 -0.37,0.71 -0.4,0.71 -0.43,0.71 -0.46,0.72 -0.48,0.71 -0.5,0.71 -0.49,0.71 -0.48,0.71 -0.46,0.71 -0.44,0.72 -0.42,0.71 -0.41,0.71 -0.4,0.71 -0.4,0.71 -0.39,0.71 -0.36,0.72 -0.33,0.71 -0.26,0.71 -0.18,0.71 -0.08,0.71 0.03,0.71 0.15,0.72 0.25,0.71 0.36,0.71 0.44,0.71 0.5,0.71 0.55,0.71 0.59,0.72 0.62,0.71 0.64,0.71 0.67,0.71 0.69,0.71 0.72,0.71 0.74,0.72 0.76,0.71 0.75,0.71 0.74,0.71 0.72,0.71 0.69,0.71 0.65,0.72 0.62,0.71 0.59,0.71 0.57,0.71 0.53,0.71 0.5,0.71 0.47,0.72 0.41,0.71 0.36,0.71 0.32,0.71 0.28,0.71 0.25,0.71 0.22,0.72 0.21,0.71 0.19,0.71 0.19,0.71 0.18,0.71 0.16,0.71 0.16,0.72 0.13,0.71 0.13,0.71 0.11,0.71 0.1,0.71 0.09,0.71 0.08,0.72 0.07,0.71 0.06,0.71 0.04,0.71 0.03,0.71 0.02,0.71 0.02,0.72 0.01,0.71 v 0.71 l 0.01,0.71 0.01,0.71 0.01,0.71 0.02,0.72 0.02,0.71 0.02,0.71 0.02,0.71 0.02,0.71 0.01,0.71 0.02,0.72 0.02,0.71 0.01,0.71 v 0.71 0.71 l 0.01,0.71 v 0.72 0.71 l 0.01,0.71 0.01,0.71 0.02,0.71 0.02,0.71 0.02,0.72 0.02,0.71 0.02,0.71 0.02,0.71 0.01,0.71 0.02,0.71 0.01,0.72 0.01,0.71 0.01,0.71 0.01,0.71 0.01,0.71 0.01,0.71 h 0.05 v -0.71 l 0.01,-0.71 0.01,-0.71 0.01,-0.71 0.01,-0.71 0.02,-0.72 0.01,-0.71 0.02,-0.71 0.01,-0.71 0.02,-0.71 0.02,-0.71 0.02,-0.72 0.02,-0.71 0.02,-0.71 0.01,-0.71 0.01,-0.71 v -0.71 l 0.01,-0.72 V 162.71 162 l 0.01,-0.71 0.01,-0.71 0.01,-0.71 0.02,-0.72 0.02,-0.71 0.01,-0.71 0.02,-0.71 0.02,-0.71 0.02,-0.71 0.02,-0.72 0.01,-0.71 0.01,-0.71 0.01,-0.71 0.01,-0.71 v -0.71 l 0.02,-0.72 0.02,-0.71 0.03,-0.71 0.05,-0.71 0.05,-0.71 0.07,-0.71 0.08,-0.72 0.09,-0.71 0.11,-0.71 0.11,-0.71 0.12,-0.71 0.14,-0.71 0.15,-0.72 0.16,-0.71 0.18,-0.71 0.19,-0.71 0.19,-0.71 0.21,-0.71 0.23,-0.72 0.24,-0.71 0.28,-0.71 0.32,-0.71 0.36,-0.71 0.42,-0.71 0.46,-0.72 0.5,-0.71 0.54,-0.71 0.56,-0.71 0.59,-0.71 0.62,-0.71 0.65,-0.72 0.69,-0.71 0.72,-0.71 0.74,-0.71 0.76,-0.71 0.75,-0.71 0.74,-0.72 0.72,-0.71 0.69,-0.71 0.67,-0.71 0.64,-0.71 0.62,-0.71 0.59,-0.72 0.55,-0.71 0.51,-0.71 0.43,-0.71 0.36,-0.71 0.26,-0.71 0.14,-0.72 0.03,-0.71 -0.08,-0.71 -0.18,-0.71 -0.26,-0.71 -0.33,-0.71 -0.36,-0.72 -0.39,-0.71 -0.39,-0.71 -0.41,-0.71 -0.41,-0.71 -0.42,-0.71 -0.44,-0.72 -0.46,-0.71 -0.48,-0.71 -0.49,-0.71 -0.49,-0.71 -0.49,-0.71 -0.46,-0.72 -0.43,-0.71 -0.4,-0.71 -0.37,-0.71 -0.34,-0.71 -0.33,-0.72 -0.31,-0.71 -0.31,-0.71 -0.31,-0.71 -0.29,-0.71 -0.29,-0.71 -0.28,-0.72 -0.27,-0.71 -0.25,-0.71 -0.23,-0.71 -0.21,-0.71 -0.17,-0.71 -0.14,-0.72 -0.09,-0.71 -0.05,-0.71 v -0.71 l 0.04,-0.71 0.06,-0.71 0.07,-0.72 0.06,-0.71 0.03,-0.71 v -0.71 l -0.04,-0.71 -0.07,-0.71 -0.11,-0.72 -0.14,-0.71 -0.17,-0.71 -0.19,-0.71 -0.21,-0.71 -0.23,-0.71 -0.23,-0.72 -0.24,-0.71 -0.24,-0.71 -0.23,-0.71 -0.23,-0.71 -0.22,-0.71 -0.22,-0.72 -0.22,-0.71 -0.21,-0.71 -0.21,-0.71 -0.21,-0.71 -0.2,-0.71 -0.19,-0.72 -0.17,-0.71 -0.16,-0.71 -0.14,-0.71 -0.12,-0.71 -0.1,-0.71 -0.07,-0.72 -0.06,-0.71 -0.03,-0.71 -0.02,-0.71 -0.02,-0.71 -0.04,-0.71 -0.05,-0.72 -0.09,-0.71 -0.12,-0.71 -0.15,-0.71 -0.18,-0.71 -0.2,-0.71 -0.2,-0.72 -0.21,-0.71 -0.19,-0.71 -0.18,-0.71 -0.17,-0.71 -0.15,-0.71 -0.13,-0.72 -0.11,-0.71 -0.1,-0.71 -0.07,-0.71 -0.06,-0.71 z" /><path
- inkscape:connector-curvature="0"
- id="path638"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 511.08,51.15 -0.26,0.55 -0.29,0.56 -0.32,0.56 -0.34,0.55 -0.35,0.56 -0.37,0.55 -0.37,0.56 -0.38,0.55 -0.38,0.56 -0.36,0.55 -0.36,0.56 -0.34,0.55 -0.33,0.56 -0.29,0.56 -0.27,0.55 -0.23,0.56 -0.21,0.55 -0.17,0.56 -0.15,0.55 -0.13,0.56 -0.11,0.55 -0.12,0.56 -0.12,0.56 -0.15,0.55 -0.17,0.56 -0.21,0.55 -0.26,0.56 -0.32,0.55 -0.36,0.56 -0.43,0.55 -0.48,0.56 -0.54,0.56 -0.59,0.55 -0.64,0.56 -0.67,0.55 -0.71,0.56 -0.72,0.55 -0.72,0.56 -0.72,0.55 -0.7,0.56 -0.65,0.55 -0.62,0.56 -0.55,0.56 -0.49,0.55 -0.42,0.56 -0.34,0.55 -0.26,0.56 -0.18,0.55 -0.11,0.56 -0.03,0.55 0.04,0.56 0.11,0.56 0.16,0.55 0.2,0.56 0.24,0.55 0.27,0.56 0.29,0.55 0.29,0.56 0.3,0.55 0.29,0.56 0.28,0.56 0.27,0.55 0.25,0.56 0.24,0.55 0.23,0.56 0.21,0.55 0.21,0.56 0.2,0.55 0.21,0.56 0.21,0.55 0.22,0.56 0.24,0.56 0.25,0.55 0.25,0.56 0.27,0.55 0.28,0.56 0.28,0.55 0.27,0.56 0.27,0.55 0.27,0.56 0.26,0.56 0.25,0.55 0.25,0.56 0.25,0.55 0.25,0.56 0.24,0.55 0.24,0.56 0.25,0.55 0.24,0.56 0.25,0.56 0.24,0.55 0.23,0.56 0.23,0.55 0.22,0.56 0.21,0.55 0.2,0.56 0.18,0.55 0.17,0.56 0.16,0.55 0.16,0.56 0.15,0.56 0.15,0.55 0.16,0.56 0.18,0.55 0.19,0.56 0.22,0.55 0.24,0.56 0.25,0.55 0.28,0.56 0.3,0.56 0.3,0.55 0.3,0.56 0.3,0.55 0.29,0.56 0.28,0.55 0.26,0.56 0.25,0.55 0.22,0.56 0.19,0.56 0.18,0.55 0.16,0.56 0.15,0.55 0.12,0.56 0.12,0.55 0.11,0.56 0.11,0.55 0.1,0.56 0.11,0.55 0.1,0.56 0.1,0.56 0.11,0.55 0.1,0.56 0.1,0.55 0.1,0.56 0.1,0.55 0.09,0.56 0.09,0.55 0.09,0.56 0.09,0.56 0.09,0.55 0.08,0.56 0.09,0.55 0.09,0.56 0.08,0.55 0.08,0.56 0.08,0.55 0.08,0.56 0.07,0.56 0.06,0.55 0.06,0.56 0.05,0.55 0.05,0.56 0.03,0.55 0.03,0.56 0.03,0.55 0.01,0.56 0.02,0.55 0.01,0.56 0.01,0.56 0.01,0.55 v 0.56 h 0.16 l 0.01,-0.56 v -0.55 l 0.01,-0.56 0.01,-0.56 0.02,-0.55 0.02,-0.56 0.02,-0.55 0.03,-0.56 0.04,-0.55 0.04,-0.56 0.05,-0.55 0.06,-0.56 0.06,-0.55 0.07,-0.56 0.08,-0.56 0.08,-0.55 0.08,-0.56 0.09,-0.55 0.08,-0.56 0.09,-0.55 0.08,-0.56 0.09,-0.55 0.09,-0.56 0.09,-0.56 0.09,-0.55 0.09,-0.56 0.1,-0.55 0.1,-0.56 0.1,-0.55 0.11,-0.56 0.1,-0.55 0.1,-0.56 0.11,-0.56 0.1,-0.55 0.1,-0.56 0.11,-0.55 0.11,-0.56 0.12,-0.55 0.13,-0.56 0.14,-0.55 0.16,-0.56 0.18,-0.55 0.2,-0.56 0.22,-0.56 0.24,-0.55 0.26,-0.56 0.28,-0.55 0.29,-0.56 0.3,-0.55 0.3,-0.56 0.31,-0.55 0.29,-0.56 0.28,-0.56 0.26,-0.55 0.24,-0.56 0.21,-0.55 0.2,-0.56 0.17,-0.55 0.16,-0.56 0.16,-0.55 0.15,-0.56 0.15,-0.56 0.16,-0.55 0.17,-0.56 0.19,-0.55 0.19,-0.56 0.21,-0.55 0.22,-0.56 0.23,-0.55 0.24,-0.56 0.24,-0.55 0.24,-0.56 0.24,-0.56 0.25,-0.55 0.24,-0.56 0.25,-0.55 0.24,-0.56 0.25,-0.55 0.25,-0.56 0.25,-0.55 0.26,-0.56 0.27,-0.56 0.27,-0.55 0.28,-0.56 0.27,-0.55 0.28,-0.56 0.27,-0.55 0.26,-0.56 0.24,-0.55 0.24,-0.56 0.22,-0.56 0.22,-0.55 0.2,-0.56 0.21,-0.55 0.2,-0.56 0.22,-0.55 0.22,-0.56 0.24,-0.55 0.25,-0.56 0.27,-0.55 0.28,-0.56 0.29,-0.56 0.3,-0.55 0.3,-0.56 0.28,-0.55 0.27,-0.56 0.24,-0.55 0.21,-0.56 0.16,-0.55 0.1,-0.56 0.04,-0.56 -0.03,-0.55 -0.11,-0.56 -0.18,-0.55 -0.26,-0.56 -0.34,-0.55 -0.42,-0.56 -0.49,-0.55 -0.55,-0.56 -0.61,-0.56 -0.66,-0.55 -0.7,-0.56 -0.71,-0.55 -0.73,-0.56 -0.72,-0.55 -0.7,-0.56 -0.68,-0.55 -0.64,-0.56 -0.59,-0.55 -0.54,-0.56 -0.48,-0.56 -0.42,-0.55 -0.37,-0.56 -0.31,-0.55 -0.26,-0.56 -0.22,-0.55 -0.17,-0.56 -0.15,-0.55 -0.12,-0.56 -0.11,-0.56 -0.12,-0.55 -0.13,-0.56 -0.15,-0.55 -0.17,-0.56 -0.2,-0.55 -0.24,-0.56 -0.27,-0.55 -0.29,-0.56 -0.32,-0.56 -0.35,-0.55 -0.35,-0.56 -0.37,-0.55 -0.38,-0.56 -0.38,-0.55 -0.37,-0.56 -0.37,-0.55 -0.35,-0.56 -0.34,-0.55 -0.32,-0.56 -0.29,-0.56 -0.26,-0.55 z" /></g></g><g
- id="g640"
- transform="translate(-10,-10)"
- style="" /><g
- id="g672"
- transform="translate(-10,-10)"
- style="" /><g
- id="g674"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath680)"
- id="g676"
- style=""><path
- inkscape:connector-curvature="0"
- id="path682"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 541.91,202.71 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path684"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path686"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path688"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path690"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path692"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path694"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path696"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 567.92,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path698"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 611.27,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path700"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 567.47,211.27 -0.14,0.69 -0.18,0.69 -0.21,0.69 -0.25,0.69 -0.29,0.69 -0.35,0.69 -0.4,0.68 -0.47,0.69 -0.51,0.69 -0.58,0.69 -0.63,0.69 -0.68,0.69 -0.72,0.69 -0.75,0.69 -0.76,0.69 -0.76,0.68 -0.74,0.69 -0.69,0.69 -0.65,0.69 -0.57,0.69 -0.48,0.69 -0.38,0.69 -0.29,0.69 -0.18,0.69 -0.1,0.68 -0.03,0.69 0.04,0.69 0.07,0.69 0.09,0.69 0.11,0.69 0.11,0.69 0.12,0.69 0.12,0.68 0.12,0.69 0.11,0.69 0.1,0.69 0.08,0.69 0.08,0.69 0.05,0.69 0.05,0.69 0.03,0.69 0.01,0.68 -0.01,0.69 -0.03,0.69 -0.07,0.69 -0.11,0.69 -0.14,0.69 -0.17,0.69 -0.2,0.69 -0.22,0.69 -0.23,0.68 -0.23,0.69 -0.22,0.69 -0.2,0.69 -0.18,0.69 -0.13,0.69 -0.09,0.69 -0.03,0.69 0.02,0.69 0.08,0.68 0.14,0.69 0.18,0.69 0.22,0.69 0.24,0.69 0.26,0.69 0.26,0.69 0.27,0.69 0.27,0.69 0.26,0.68 0.27,0.69 0.26,0.69 0.26,0.69 0.28,0.69 0.27,0.69 0.29,0.69 0.3,0.69 0.31,0.69 0.32,0.68 0.33,0.69 0.35,0.69 0.34,0.69 0.35,0.69 0.35,0.69 0.34,0.69 0.32,0.69 0.29,0.69 0.27,0.68 0.24,0.69 0.2,0.69 0.17,0.69 0.14,0.69 0.12,0.69 0.1,0.69 0.1,0.69 0.1,0.69 0.11,0.68 0.12,0.69 0.15,0.69 0.17,0.69 0.2,0.69 0.21,0.69 0.23,0.69 0.22,0.69 0.22,0.68 0.21,0.69 0.18,0.69 0.16,0.69 0.14,0.69 0.11,0.69 0.1,0.69 0.1,0.69 0.09,0.69 0.08,0.68 0.09,0.69 0.1,0.69 0.09,0.69 0.09,0.69 0.09,0.69 0.09,0.69 0.08,0.69 0.08,0.69 0.07,0.68 0.07,0.69 0.06,0.69 0.06,0.69 0.04,0.69 0.03,0.69 0.03,0.69 0.01,0.69 0.01,0.69 v 0.68 l 0.01,0.69 0.01,0.69 0.01,0.69 0.02,0.69 0.02,0.69 0.03,0.69 0.03,0.69 0.02,0.69 0.02,0.68 0.02,0.69 0.01,0.69 v 0.69 0.69 l -0.01,0.69 -0.01,0.69 v 0.69 l -0.01,0.69 v 0.68 l 0.01,0.69 0.01,0.69 0.02,0.69 0.01,0.69 0.03,0.69 0.01,0.69 0.02,0.69 0.02,0.69 0.01,0.68 v 0.69 l 0.01,0.69 0.01,0.69 v 0.69 l 0.01,0.69 v 0.69 l 0.01,0.69 0.01,0.69 0.01,0.68 0.01,0.69 0.01,0.69 0.01,0.69 v 0.69 h 0.1 l 0.01,-0.69 0.01,-0.69 0.01,-0.69 0.01,-0.69 v -0.68 l 0.01,-0.69 0.01,-0.69 0.01,-0.69 v -0.69 l 0.01,-0.69 v -0.69 l 0.01,-0.69 0.01,-0.69 0.01,-0.68 0.01,-0.69 0.02,-0.69 0.02,-0.69 0.02,-0.69 0.02,-0.69 0.01,-0.69 0.02,-0.69 v -0.69 -0.68 -0.69 l -0.01,-0.69 -0.01,-0.69 -0.01,-0.69 v -0.69 -0.69 l 0.01,-0.69 0.02,-0.69 0.02,-0.68 0.02,-0.69 0.03,-0.69 0.03,-0.69 0.02,-0.69 0.02,-0.69 0.01,-0.69 0.01,-0.69 0.01,-0.69 v -0.68 l 0.01,-0.69 0.02,-0.69 0.02,-0.69 0.03,-0.69 0.05,-0.69 0.05,-0.69 0.06,-0.69 0.07,-0.69 0.07,-0.68 0.08,-0.69 0.09,-0.69 0.08,-0.69 0.09,-0.69 0.09,-0.69 0.1,-0.69 0.09,-0.69 0.09,-0.69 0.09,-0.68 0.09,-0.69 0.09,-0.69 0.1,-0.69 0.12,-0.69 0.13,-0.69 0.16,-0.69 0.18,-0.69 0.21,-0.69 0.22,-0.68 0.23,-0.69 0.22,-0.69 0.22,-0.69 0.19,-0.69 0.17,-0.69 0.15,-0.69 0.13,-0.69 0.11,-0.68 0.09,-0.69 0.1,-0.69 0.1,-0.69 0.12,-0.69 0.14,-0.69 0.17,-0.69 0.2,-0.69 0.24,-0.69 0.27,-0.68 0.3,-0.69 0.32,-0.69 0.33,-0.69 0.35,-0.69 0.35,-0.69 0.35,-0.69 0.34,-0.69 0.33,-0.69 0.32,-0.68 0.31,-0.69 0.3,-0.69 0.29,-0.69 0.28,-0.69 0.27,-0.69 0.26,-0.69 0.27,-0.69 0.26,-0.69 0.26,-0.68 0.27,-0.69 0.27,-0.69 0.26,-0.69 0.26,-0.69 0.24,-0.69 0.22,-0.69 0.18,-0.69 0.14,-0.69 0.08,-0.68 0.02,-0.69 -0.03,-0.69 -0.09,-0.69 -0.13,-0.69 -0.17,-0.69 -0.21,-0.69 -0.22,-0.69 -0.23,-0.69 -0.23,-0.68 -0.22,-0.69 -0.2,-0.69 -0.17,-0.69 -0.14,-0.69 -0.11,-0.69 -0.06,-0.69 -0.04,-0.69 -0.01,-0.69 0.02,-0.68 0.02,-0.69 0.05,-0.69 0.06,-0.69 0.07,-0.69 0.09,-0.69 0.1,-0.69 0.11,-0.69 0.11,-0.69 0.12,-0.68 0.12,-0.69 0.11,-0.69 0.11,-0.69 0.1,-0.69 0.07,-0.69 0.03,-0.69 -0.03,-0.69 -0.09,-0.68 -0.19,-0.69 -0.28,-0.69 -0.39,-0.69 -0.48,-0.69 -0.57,-0.69 -0.64,-0.69 -0.7,-0.69 -0.74,-0.69 -0.76,-0.68 -0.76,-0.69 -0.74,-0.69 -0.72,-0.69 -0.69,-0.69 -0.63,-0.69 -0.57,-0.69 -0.52,-0.69 -0.46,-0.69 -0.41,-0.68 -0.34,-0.69 -0.3,-0.69 -0.25,-0.69 -0.21,-0.69 -0.18,-0.69 -0.14,-0.69 z" /><path
- inkscape:connector-curvature="0"
- id="path702"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 611.26,213.73 -0.01,0.76 -0.01,0.75 -0.01,0.76 -0.02,0.76 -0.02,0.75 -0.03,0.76 -0.04,0.76 -0.04,0.75 -0.04,0.76 -0.04,0.76 -0.04,0.75 -0.05,0.76 -0.04,0.76 -0.03,0.76 -0.04,0.75 -0.03,0.76 -0.03,0.76 -0.03,0.75 -0.02,0.76 -0.02,0.76 v 0.75 l -0.01,0.76 v 0.76 l -0.02,0.75 -0.02,0.76 -0.03,0.76 -0.05,0.75 -0.05,0.76 -0.08,0.76 -0.08,0.76 -0.1,0.75 -0.11,0.76 -0.09,0.76 -0.08,0.75 -0.09,0.76 -0.08,0.76 -0.11,0.75 -0.12,0.76 -0.13,0.76 -0.13,0.75 -0.12,0.76 -0.12,0.76 -0.14,0.76 -0.15,0.75 -0.17,0.76 -0.19,0.76 -0.22,0.75 -0.25,0.76 -0.26,0.76 -0.25,0.75 -0.21,0.76 -0.15,0.76 -0.08,0.75 -0.03,0.76 v 0.76 l -0.01,0.76 -0.04,0.75 -0.11,0.76 -0.21,0.76 -0.28,0.75 -0.34,0.76 -0.37,0.76 -0.34,0.75 -0.33,0.76 -0.3,0.76 -0.27,0.75 -0.26,0.76 -0.25,0.76 -0.24,0.75 -0.27,0.76 -0.33,0.76 -0.43,0.76 -0.56,0.75 -0.65,0.76 -0.7,0.76 -0.69,0.75 -0.67,0.76 -0.66,0.76 -0.67,0.75 -0.7,0.76 -0.69,0.76 -0.67,0.75 -0.64,0.76 -0.63,0.76 -0.62,0.76 -0.59,0.75 -0.54,0.76 -0.42,0.76 -0.31,0.75 -0.2,0.76 -0.12,0.76 -0.06,0.75 -0.02,0.76 0.05,0.76 0.13,0.75 0.22,0.76 0.35,0.76 0.49,0.76 0.62,0.75 0.72,0.76 0.74,0.76 0.73,0.75 0.73,0.76 0.76,0.76 0.81,0.75 0.87,0.76 0.88,0.76 0.86,0.75 0.8,0.76 0.71,0.76 0.64,0.75 0.59,0.76 0.56,0.76 0.56,0.76 0.57,0.75 0.56,0.76 0.55,0.76 0.51,0.75 0.49,0.76 0.45,0.76 0.41,0.75 0.37,0.76 0.33,0.76 0.29,0.75 0.26,0.76 0.24,0.76 0.22,0.76 0.2,0.75 0.18,0.76 0.15,0.76 0.12,0.75 0.09,0.76 0.05,0.76 0.03,0.75 0.01,0.76 0.01,0.76 v 0.75 l 0.02,0.76 0.02,0.76 0.02,0.76 0.03,0.75 0.02,0.76 0.03,0.76 0.02,0.75 0.02,0.76 0.03,0.76 0.04,0.75 0.04,0.76 0.04,0.76 0.04,0.75 0.04,0.76 0.03,0.76 0.03,0.75 0.03,0.76 0.02,0.76 0.01,0.76 0.02,0.75 0.01,0.76 0.01,0.76 v 0.75 l 0.01,0.76 v 0.76 l 0.01,0.75 v 0.76 0.76 0.75 0.76 0.76 0.76 0.75 0.76 0.76 0.75 0.76 0.76 0.75 0.76 0.76 0.75 0.76 0.76 0.76 0.75 h 0.02 v -0.75 -0.76 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.76 -0.75 -0.76 -0.76 l 0.01,-0.75 v -0.76 l 0.01,-0.76 v -0.75 l 0.01,-0.76 0.02,-0.76 0.01,-0.75 0.01,-0.76 0.02,-0.76 0.03,-0.76 0.03,-0.75 0.03,-0.76 0.04,-0.76 0.04,-0.75 0.04,-0.76 0.04,-0.76 0.04,-0.75 0.03,-0.76 0.02,-0.76 0.02,-0.75 0.03,-0.76 0.02,-0.76 0.03,-0.75 0.03,-0.76 0.02,-0.76 0.01,-0.76 v -0.75 l 0.01,-0.76 0.01,-0.76 0.03,-0.75 0.05,-0.76 0.09,-0.76 0.12,-0.75 0.15,-0.76 0.18,-0.76 0.2,-0.75 0.22,-0.76 0.24,-0.76 0.26,-0.76 0.29,-0.75 0.33,-0.76 0.37,-0.76 0.41,-0.75 0.45,-0.76 0.49,-0.76 0.51,-0.75 0.55,-0.76 0.56,-0.76 0.57,-0.75 0.56,-0.76 0.56,-0.76 0.59,-0.76 0.64,-0.75 0.71,-0.76 0.8,-0.76 0.86,-0.75 0.89,-0.76 0.86,-0.76 0.81,-0.75 0.76,-0.76 0.73,-0.76 0.73,-0.75 0.74,-0.76 0.72,-0.76 0.62,-0.75 0.49,-0.76 0.36,-0.76 0.22,-0.76 0.12,-0.75 0.05,-0.76 -0.02,-0.76 -0.06,-0.75 -0.12,-0.76 -0.2,-0.76 -0.31,-0.75 -0.42,-0.76 -0.53,-0.76 -0.6,-0.75 -0.62,-0.76 -0.63,-0.76 -0.64,-0.76 -0.67,-0.75 -0.69,-0.76 -0.7,-0.76 -0.67,-0.75 -0.66,-0.76 -0.67,-0.76 -0.69,-0.75 -0.7,-0.76 -0.65,-0.76 -0.56,-0.75 -0.43,-0.76 -0.33,-0.76 -0.27,-0.76 -0.24,-0.75 -0.24,-0.76 -0.27,-0.76 -0.27,-0.75 -0.3,-0.76 -0.32,-0.76 -0.35,-0.75 -0.36,-0.76 -0.35,-0.76 -0.28,-0.75 -0.21,-0.76 -0.11,-0.76 -0.04,-0.75 v -0.76 -0.76 l -0.04,-0.76 -0.08,-0.75 -0.15,-0.76 -0.21,-0.76 -0.25,-0.75 -0.26,-0.76 -0.24,-0.76 -0.22,-0.75 -0.2,-0.76 -0.17,-0.76 -0.15,-0.75 -0.13,-0.76 -0.13,-0.76 -0.12,-0.76 -0.13,-0.75 -0.13,-0.76 -0.12,-0.76 -0.1,-0.75 -0.09,-0.76 -0.08,-0.76 -0.09,-0.75 -0.09,-0.76 -0.11,-0.76 -0.09,-0.75 -0.09,-0.76 -0.07,-0.76 -0.06,-0.76 -0.05,-0.75 -0.03,-0.76 -0.02,-0.76 -0.02,-0.75 v -0.76 -0.76 l -0.01,-0.75 -0.02,-0.76 -0.02,-0.76 -0.03,-0.75 -0.03,-0.76 -0.03,-0.76 -0.04,-0.75 -0.03,-0.76 -0.04,-0.76 -0.05,-0.76 -0.04,-0.75 -0.04,-0.76 -0.04,-0.76 -0.04,-0.75 -0.04,-0.76 -0.03,-0.76 -0.02,-0.75 -0.02,-0.76 -0.01,-0.76 -0.01,-0.75 v -0.76 z" /></g></g><g
- id="g704"
- transform="translate(-10,-10)"
- style="" /><g
- id="g706"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath712)"
- id="g708"
- style=""><path
- inkscape:connector-curvature="0"
- id="path714"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 541.91,37.28 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path716"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path718"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path720"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path722"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path724"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path726"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path728"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 567.92,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path730"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 611.27,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path732"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 567.78,45.67 -0.06,0.8 -0.07,0.79 -0.09,0.8 -0.11,0.8 -0.13,0.79 -0.15,0.8 -0.18,0.8 -0.21,0.8 -0.24,0.79 -0.26,0.8 -0.3,0.8 -0.33,0.79 -0.34,0.8 -0.35,0.8 -0.35,0.79 -0.32,0.8 -0.3,0.8 -0.25,0.8 -0.19,0.79 -0.14,0.8 -0.09,0.8 -0.04,0.79 -0.01,0.8 0.01,0.8 0.02,0.8 0.02,0.79 0.01,0.8 0.02,0.8 0.01,0.79 v 0.8 l -0.01,0.8 -0.01,0.79 -0.02,0.8 -0.03,0.8 -0.04,0.8 -0.05,0.79 -0.06,0.8 -0.08,0.8 -0.11,0.79 -0.15,0.8 -0.18,0.8 -0.21,0.79 -0.23,0.8 -0.26,0.8 -0.28,0.8 -0.29,0.79 -0.29,0.8 -0.29,0.8 -0.28,0.79 -0.24,0.8 -0.2,0.8 -0.15,0.8 -0.09,0.79 -0.05,0.8 -0.01,0.8 v 0.79 l -0.02,0.8 -0.03,0.8 -0.07,0.79 -0.11,0.8 -0.14,0.8 -0.16,0.8 -0.17,0.79 -0.18,0.8 -0.18,0.8 -0.17,0.79 -0.17,0.8 -0.19,0.8 -0.21,0.79 -0.26,0.8 -0.31,0.8 -0.37,0.8 -0.44,0.79 -0.49,0.8 -0.54,0.8 -0.58,0.79 -0.62,0.8 -0.64,0.8 -0.65,0.8 -0.66,0.79 -0.64,0.8 -0.63,0.8 -0.59,0.79 -0.55,0.8 -0.48,0.8 -0.4,0.79 -0.31,0.8 -0.21,0.8 -0.12,0.8 -0.05,0.79 0.04,0.8 0.1,0.8 0.19,0.79 0.26,0.8 0.35,0.8 0.45,0.79 0.55,0.8 0.62,0.8 0.7,0.8 0.74,0.79 0.78,0.8 0.81,0.8 0.84,0.79 0.84,0.8 0.84,0.8 0.82,0.79 0.8,0.8 0.75,0.8 0.7,0.8 0.66,0.79 0.62,0.8 0.59,0.8 0.56,0.79 0.54,0.8 0.52,0.8 0.49,0.8 0.47,0.79 0.43,0.8 0.4,0.8 0.37,0.79 0.33,0.8 0.29,0.8 0.26,0.79 0.23,0.8 0.19,0.8 0.17,0.8 0.14,0.79 0.11,0.8 0.09,0.8 0.07,0.79 0.05,0.8 0.04,0.8 0.03,0.79 0.03,0.8 0.03,0.8 0.03,0.8 0.03,0.79 0.02,0.8 0.03,0.8 0.03,0.79 0.03,0.8 0.04,0.8 0.03,0.8 0.05,0.79 0.04,0.8 0.04,0.8 0.04,0.79 0.03,0.8 0.04,0.8 0.02,0.79 0.03,0.8 0.02,0.8 0.01,0.8 0.02,0.79 0.01,0.8 v 0.8 l 0.01,0.79 v 0.8 l 0.01,0.8 v 0.79 0.8 0.8 0.8 0.79 0.8 0.8 0.79 0.8 0.8 0.79 0.8 0.8 0.8 0.79 0.8 0.8 0.79 h 0.02 v -0.79 -0.8 -0.8 -0.79 -0.8 -0.8 -0.8 -0.79 -0.8 -0.8 -0.79 -0.8 -0.8 -0.79 -0.8 -0.8 -0.8 -0.79 l 0.01,-0.8 v -0.8 l 0.01,-0.79 0.01,-0.8 0.01,-0.8 0.01,-0.79 0.02,-0.8 0.01,-0.8 0.03,-0.8 0.03,-0.79 0.03,-0.8 0.03,-0.8 0.04,-0.79 0.04,-0.8 0.05,-0.8 0.04,-0.79 0.04,-0.8 0.03,-0.8 0.03,-0.8 0.03,-0.79 0.03,-0.8 0.03,-0.8 0.02,-0.79 0.03,-0.8 0.03,-0.8 0.03,-0.8 0.03,-0.79 0.04,-0.8 0.06,-0.8 0.06,-0.79 0.09,-0.8 0.11,-0.8 0.14,-0.79 0.17,-0.8 0.2,-0.8 0.22,-0.8 0.26,-0.79 0.3,-0.8 0.32,-0.8 0.37,-0.79 0.4,-0.8 0.43,-0.8 0.47,-0.79 0.49,-0.8 0.52,-0.8 0.54,-0.8 0.56,-0.79 0.59,-0.8 0.62,-0.8 0.66,-0.79 0.71,-0.8 0.75,-0.8 0.79,-0.8 0.82,-0.79 0.84,-0.8 0.84,-0.8 0.84,-0.79 0.81,-0.8 0.78,-0.8 0.75,-0.79 0.69,-0.8 0.63,-0.8 0.54,-0.8 0.45,-0.79 0.35,-0.8 0.27,-0.8 0.18,-0.79 0.1,-0.8 0.04,-0.8 -0.04,-0.79 -0.13,-0.8 -0.21,-0.8 -0.31,-0.8 -0.4,-0.79 -0.48,-0.8 -0.54,-0.8 -0.6,-0.79 -0.62,-0.8 -0.65,-0.8 -0.66,-0.79 -0.65,-0.8 -0.64,-0.8 -0.61,-0.8 -0.59,-0.79 -0.54,-0.8 -0.49,-0.8 -0.44,-0.79 -0.37,-0.8 -0.31,-0.8 -0.26,-0.8 -0.21,-0.79 -0.19,-0.8 -0.17,-0.8 -0.17,-0.79 -0.18,-0.8 -0.18,-0.8 -0.17,-0.79 -0.16,-0.8 -0.14,-0.8 -0.11,-0.8 -0.07,-0.79 -0.03,-0.8 -0.01,-0.8 -0.01,-0.79 -0.01,-0.8 -0.05,-0.8 -0.09,-0.79 -0.14,-0.8 -0.21,-0.8 -0.24,-0.8 -0.28,-0.79 -0.29,-0.8 -0.29,-0.8 -0.29,-0.79 -0.28,-0.8 -0.26,-0.8 -0.23,-0.8 -0.21,-0.79 -0.18,-0.8 -0.15,-0.8 -0.11,-0.79 -0.08,-0.8 -0.06,-0.8 -0.05,-0.79 -0.04,-0.8 -0.03,-0.8 -0.02,-0.8 -0.01,-0.79 -0.01,-0.8 0.01,-0.8 v -0.79 l 0.02,-0.8 0.01,-0.8 0.02,-0.79 0.02,-0.8 0.01,-0.8 -0.01,-0.8 -0.04,-0.79 -0.09,-0.8 -0.14,-0.8 -0.19,-0.79 -0.25,-0.8 -0.29,-0.8 -0.33,-0.8 -0.35,-0.79 -0.35,-0.8 -0.34,-0.8 -0.33,-0.79 -0.29,-0.8 -0.27,-0.8 -0.24,-0.79 -0.21,-0.8 -0.18,-0.8 -0.15,-0.8 -0.13,-0.79 -0.11,-0.8 -0.09,-0.8 -0.07,-0.79 -0.05,-0.8 z" /><path
- inkscape:connector-curvature="0"
- id="path734"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 610.14,47.77 -0.26,0.62 -0.31,0.62 -0.36,0.62 -0.41,0.62 -0.46,0.62 -0.51,0.62 -0.55,0.62 -0.58,0.62 -0.62,0.62 -0.64,0.62 -0.65,0.62 -0.65,0.62 -0.64,0.62 -0.63,0.62 -0.61,0.62 -0.57,0.62 -0.54,0.62 -0.5,0.62 -0.45,0.62 -0.39,0.62 -0.35,0.62 -0.29,0.62 -0.23,0.62 -0.17,0.63 -0.13,0.62 -0.08,0.62 -0.05,0.62 -0.01,0.62 v 0.62 l 0.01,0.62 0.02,0.62 v 0.62 l -0.01,0.62 -0.04,0.62 -0.06,0.62 -0.09,0.62 -0.12,0.62 -0.15,0.62 -0.18,0.62 -0.2,0.62 -0.22,0.62 -0.23,0.62 -0.24,0.62 -0.24,0.62 -0.23,0.62 -0.23,0.62 -0.22,0.62 -0.21,0.62 -0.19,0.62 -0.17,0.63 -0.16,0.62 -0.14,0.62 -0.12,0.62 -0.11,0.62 -0.08,0.62 -0.06,0.62 -0.05,0.62 -0.01,0.62 0.01,0.62 0.05,0.62 0.07,0.62 0.11,0.62 0.14,0.62 0.17,0.62 0.19,0.62 0.21,0.62 0.23,0.62 0.23,0.62 0.22,0.62 0.21,0.62 0.2,0.62 0.17,0.62 0.15,0.62 0.13,0.62 0.11,0.62 0.11,0.63 0.1,0.62 0.11,0.62 0.13,0.62 0.15,0.62 0.19,0.62 0.22,0.62 0.26,0.62 0.3,0.62 0.33,0.62 0.36,0.62 0.38,0.62 0.4,0.62 0.4,0.62 0.41,0.62 0.39,0.62 0.37,0.62 0.36,0.62 0.33,0.62 0.31,0.62 0.28,0.62 0.25,0.62 0.23,0.62 0.21,0.62 0.19,0.62 0.17,0.62 0.16,0.63 0.15,0.62 0.15,0.62 0.15,0.62 0.14,0.62 0.15,0.62 0.15,0.62 0.16,0.62 0.16,0.62 0.16,0.62 0.17,0.62 0.17,0.62 0.17,0.62 0.18,0.62 0.17,0.62 0.18,0.62 0.19,0.62 0.18,0.62 0.2,0.62 0.19,0.62 0.2,0.62 0.2,0.62 0.21,0.62 0.2,0.62 0.21,0.62 0.2,0.62 0.19,0.63 0.19,0.62 0.17,0.62 0.16,0.62 0.15,0.62 0.13,0.62 0.12,0.62 0.11,0.62 0.1,0.62 0.09,0.62 0.08,0.62 0.07,0.62 0.08,0.62 0.06,0.62 0.07,0.62 0.07,0.62 0.06,0.62 0.06,0.62 0.06,0.62 0.05,0.62 0.05,0.62 0.05,0.62 0.04,0.62 0.03,0.62 0.03,0.62 0.02,0.63 0.02,0.62 0.01,0.62 0.01,0.62 0.01,0.62 v 0.62 0.62 l 0.01,0.62 v 0.62 h 0.12 v -0.62 l 0.01,-0.62 v -0.62 -0.62 l 0.01,-0.62 0.01,-0.62 0.01,-0.62 0.02,-0.62 0.02,-0.63 0.03,-0.62 0.04,-0.62 0.04,-0.62 0.04,-0.62 0.05,-0.62 0.05,-0.62 0.06,-0.62 0.06,-0.62 0.07,-0.62 0.06,-0.62 0.07,-0.62 0.07,-0.62 0.07,-0.62 0.07,-0.62 0.08,-0.62 0.09,-0.62 0.1,-0.62 0.11,-0.62 0.12,-0.62 0.13,-0.62 0.15,-0.62 0.16,-0.62 0.17,-0.62 0.19,-0.62 0.19,-0.63 0.2,-0.62 0.21,-0.62 0.2,-0.62 0.21,-0.62 0.2,-0.62 0.2,-0.62 0.2,-0.62 0.19,-0.62 0.18,-0.62 0.19,-0.62 0.18,-0.62 0.18,-0.62 0.17,-0.62 0.17,-0.62 0.17,-0.62 0.17,-0.62 0.16,-0.62 0.16,-0.62 0.16,-0.62 0.15,-0.62 0.15,-0.62 0.15,-0.62 0.14,-0.62 0.15,-0.62 0.15,-0.62 0.16,-0.63 0.17,-0.62 0.19,-0.62 0.21,-0.62 0.23,-0.62 0.25,-0.62 0.28,-0.62 0.31,-0.62 0.33,-0.62 0.36,-0.62 0.37,-0.62 0.4,-0.62 0.4,-0.62 0.4,-0.62 0.4,-0.62 0.38,-0.62 0.36,-0.62 0.34,-0.62 0.29,-0.62 0.26,-0.62 0.22,-0.62 0.19,-0.62 0.15,-0.62 0.13,-0.62 0.11,-0.62 0.1,-0.62 0.11,-0.63 0.11,-0.62 0.13,-0.62 0.15,-0.62 0.17,-0.62 0.2,-0.62 0.21,-0.62 0.23,-0.62 0.22,-0.62 0.23,-0.62 0.21,-0.62 0.2,-0.62 0.16,-0.62 0.14,-0.62 0.11,-0.62 0.08,-0.62 0.04,-0.62 0.01,-0.62 -0.01,-0.62 -0.04,-0.62 -0.07,-0.62 -0.08,-0.62 -0.11,-0.62 -0.12,-0.62 -0.14,-0.62 -0.16,-0.62 -0.17,-0.63 -0.19,-0.62 -0.21,-0.62 -0.22,-0.62 -0.23,-0.62 -0.23,-0.62 -0.24,-0.62 -0.24,-0.62 -0.23,-0.62 -0.22,-0.62 -0.2,-0.62 -0.18,-0.62 -0.15,-0.62 -0.12,-0.62 -0.09,-0.62 -0.06,-0.62 -0.04,-0.62 -0.01,-0.62 V 67 l 0.02,-0.62 0.01,-0.62 v -0.62 l -0.01,-0.62 -0.05,-0.62 -0.08,-0.62 -0.12,-0.62 -0.18,-0.63 -0.23,-0.62 -0.29,-0.62 -0.34,-0.62 -0.4,-0.62 -0.45,-0.62 -0.5,-0.62 -0.54,-0.62 -0.57,-0.62 -0.61,-0.62 -0.63,-0.62 -0.64,-0.62 -0.65,-0.62 -0.65,-0.62 -0.64,-0.62 -0.62,-0.62 -0.58,-0.62 -0.55,-0.62 -0.51,-0.62 -0.46,-0.62 -0.41,-0.62 -0.36,-0.62 -0.31,-0.62 -0.26,-0.62 z" /></g></g><g
- id="g736"
- transform="translate(-10,-10)"
- style="" /><g
- id="g768"
- transform="translate(-10,-10)"
- style="" /><g
- id="g770"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath776)"
- id="g772"
- style=""><path
- inkscape:connector-curvature="0"
- id="path778"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 640.88,202.71 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path780"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path782"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path784"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path786"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path788"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path790"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path792"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 666.89,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path794"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 710.24,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path796"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 666.83,213.34 -0.03,0.67 -0.02,0.67 -0.04,0.67 -0.05,0.67 -0.06,0.67 -0.08,0.67 -0.11,0.67 -0.15,0.67 -0.19,0.67 -0.26,0.67 -0.31,0.67 -0.36,0.67 -0.41,0.67 -0.45,0.67 -0.46,0.67 -0.46,0.67 -0.44,0.67 -0.41,0.67 -0.37,0.67 -0.34,0.68 -0.3,0.67 -0.29,0.67 -0.31,0.67 -0.33,0.67 -0.38,0.67 -0.45,0.67 -0.53,0.67 -0.6,0.67 -0.67,0.67 -0.71,0.67 -0.73,0.67 -0.72,0.67 -0.7,0.67 -0.65,0.67 -0.61,0.67 -0.55,0.67 -0.49,0.67 -0.43,0.67 -0.37,0.67 -0.3,0.67 -0.23,0.67 -0.18,0.67 -0.12,0.67 -0.09,0.67 -0.05,0.67 -0.04,0.67 -0.02,0.67 -0.01,0.67 0.01,0.67 0.03,0.67 0.06,0.67 0.11,0.67 0.15,0.67 0.18,0.67 0.21,0.67 0.21,0.67 0.22,0.67 0.22,0.67 0.23,0.67 0.24,0.67 0.28,0.67 0.3,0.67 0.33,0.67 0.35,0.67 0.36,0.67 0.35,0.67 0.36,0.67 0.35,0.67 0.35,0.67 0.34,0.67 0.34,0.67 0.33,0.67 0.31,0.67 0.29,0.67 0.26,0.67 0.25,0.67 0.25,0.67 0.26,0.67 0.28,0.67 0.31,0.67 0.34,0.67 0.37,0.67 0.37,0.67 0.38,0.67 0.36,0.67 0.34,0.67 0.3,0.67 0.26,0.67 0.22,0.67 0.19,0.67 0.17,0.67 0.16,0.67 0.15,0.67 0.16,0.68 0.15,0.67 0.16,0.67 0.15,0.67 0.14,0.67 0.12,0.67 0.12,0.67 0.13,0.67 0.13,0.67 0.14,0.67 0.17,0.67 0.18,0.67 0.2,0.67 0.2,0.67 0.2,0.67 0.18,0.67 0.16,0.67 0.13,0.67 0.11,0.67 0.09,0.67 0.07,0.67 0.06,0.67 0.04,0.67 0.05,0.67 0.05,0.67 0.06,0.67 0.06,0.67 0.08,0.67 0.08,0.67 0.08,0.67 0.07,0.67 0.06,0.67 0.05,0.67 0.03,0.67 0.03,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.01,0.67 0.02,0.67 0.02,0.67 0.01,0.67 0.01,0.67 0.01,0.67 0.01,0.67 0.01,0.67 0.01,0.67 v 0.67 0.67 l 0.01,0.67 v 0.67 0.67 0.67 0.67 l 0.01,0.67 v 0.67 0.67 0.67 l 0.01,0.67 v 0.67 l 0.01,0.67 v 0.67 0.67 l 0.01,0.67 v 0.67 0.67 0.67 0.67 0.67 0.68 0.67 0.67 0.67 0.67 0.67 l -0.01,0.67 v 0.67 0.67 0.67 0.67 h 0.03 v -0.67 l -0.01,-0.67 v -0.67 -0.67 -0.67 l -0.01,-0.67 v -0.67 -0.67 -0.67 -0.67 -0.68 -0.67 -0.67 -0.67 -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 -0.67 -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.02,-0.67 0.01,-0.67 0.02,-0.67 0.01,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.03,-0.67 0.03,-0.67 0.05,-0.67 0.06,-0.67 0.07,-0.67 0.08,-0.67 0.08,-0.67 0.08,-0.67 0.06,-0.67 0.06,-0.67 0.05,-0.67 0.05,-0.67 0.05,-0.67 0.05,-0.67 0.07,-0.67 0.09,-0.67 0.11,-0.67 0.13,-0.67 0.16,-0.67 0.18,-0.67 0.2,-0.67 0.2,-0.67 0.2,-0.67 0.18,-0.67 0.17,-0.67 0.14,-0.67 0.13,-0.67 0.13,-0.67 0.12,-0.67 0.12,-0.67 0.14,-0.67 0.15,-0.67 0.16,-0.67 0.16,-0.67 0.15,-0.68 0.15,-0.67 0.16,-0.67 0.17,-0.67 0.19,-0.67 0.22,-0.67 0.26,-0.67 0.31,-0.67 0.33,-0.67 0.36,-0.67 0.38,-0.67 0.37,-0.67 0.37,-0.67 0.34,-0.67 0.31,-0.67 0.28,-0.67 0.26,-0.67 0.25,-0.67 0.25,-0.67 0.26,-0.67 0.29,-0.67 0.31,-0.67 0.33,-0.67 0.34,-0.67 0.34,-0.67 0.35,-0.67 0.35,-0.67 0.36,-0.67 0.35,-0.67 0.36,-0.67 0.35,-0.67 0.33,-0.67 0.3,-0.67 0.28,-0.67 0.25,-0.67 0.22,-0.67 0.22,-0.67 0.22,-0.67 0.21,-0.67 0.21,-0.67 0.18,-0.67 0.15,-0.67 0.11,-0.67 0.07,-0.67 0.02,-0.67 0.01,-0.67 -0.01,-0.67 -0.02,-0.67 -0.04,-0.67 -0.05,-0.67 -0.08,-0.67 -0.13,-0.67 -0.18,-0.67 -0.23,-0.67 -0.3,-0.67 -0.37,-0.67 -0.42,-0.67 -0.5,-0.67 -0.55,-0.67 -0.61,-0.67 -0.65,-0.67 -0.7,-0.67 -0.72,-0.67 -0.73,-0.67 -0.71,-0.67 -0.67,-0.67 -0.6,-0.67 -0.53,-0.67 -0.45,-0.67 -0.38,-0.67 -0.33,-0.67 -0.3,-0.67 -0.3,-0.67 -0.3,-0.67 -0.34,-0.68 -0.37,-0.67 -0.41,-0.67 -0.44,-0.67 -0.46,-0.67 -0.46,-0.67 -0.44,-0.67 -0.42,-0.67 -0.36,-0.67 -0.31,-0.67 -0.26,-0.67 -0.19,-0.67 -0.15,-0.67 -0.11,-0.67 -0.08,-0.67 -0.06,-0.67 -0.05,-0.67 -0.03,-0.67 -0.03,-0.67 -0.03,-0.67 z" /><path
- inkscape:connector-curvature="0"
- id="path798"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 710.22,217.36 v 0.67 0.67 l -0.01,0.67 -0.01,0.67 v 0.67 l -0.01,0.67 -0.01,0.67 -0.01,0.66 -0.02,0.67 -0.02,0.67 -0.03,0.67 -0.03,0.67 -0.02,0.67 -0.02,0.67 v 0.67 0.67 0.67 0.67 l -0.01,0.67 -0.02,0.67 -0.02,0.66 -0.03,0.67 -0.03,0.67 -0.03,0.67 -0.03,0.67 -0.03,0.67 -0.03,0.67 -0.03,0.67 -0.05,0.67 -0.05,0.67 -0.07,0.67 -0.06,0.67 -0.07,0.67 -0.07,0.67 -0.06,0.66 -0.07,0.67 -0.08,0.67 -0.1,0.67 -0.1,0.67 -0.12,0.67 -0.12,0.67 -0.11,0.67 -0.11,0.67 -0.09,0.67 -0.11,0.67 -0.12,0.67 -0.14,0.67 -0.18,0.67 -0.21,0.66 -0.21,0.67 -0.2,0.67 -0.18,0.67 -0.15,0.67 -0.13,0.67 -0.11,0.67 -0.11,0.67 -0.11,0.67 -0.12,0.67 -0.13,0.67 -0.15,0.67 -0.16,0.67 -0.18,0.67 -0.16,0.66 -0.15,0.67 -0.14,0.67 -0.15,0.67 -0.19,0.67 -0.25,0.67 -0.32,0.67 -0.35,0.67 -0.39,0.67 -0.41,0.67 -0.44,0.67 -0.46,0.67 -0.5,0.67 -0.51,0.67 -0.54,0.66 -0.57,0.67 -0.61,0.67 -0.65,0.67 -0.67,0.67 -0.66,0.67 -0.63,0.67 -0.56,0.67 -0.51,0.67 -0.48,0.67 -0.46,0.67 -0.47,0.67 -0.48,0.67 -0.5,0.67 -0.52,0.66 -0.52,0.67 -0.47,0.67 -0.38,0.67 -0.3,0.67 -0.24,0.67 -0.18,0.67 -0.13,0.67 -0.06,0.67 0.06,0.67 0.17,0.67 0.29,0.67 0.4,0.67 0.51,0.66 0.59,0.67 0.68,0.67 0.74,0.67 0.78,0.67 0.81,0.67 0.8,0.67 0.77,0.67 0.73,0.67 0.68,0.67 0.64,0.67 0.6,0.67 0.59,0.67 0.6,0.67 0.6,0.66 0.61,0.67 0.57,0.67 0.52,0.67 0.45,0.67 0.39,0.67 0.35,0.67 0.34,0.67 0.36,0.67 0.39,0.67 0.41,0.67 0.41,0.67 0.4,0.67 0.36,0.67 0.31,0.66 0.25,0.67 0.2,0.67 0.18,0.67 0.16,0.67 0.15,0.67 0.16,0.67 0.15,0.67 0.15,0.67 0.13,0.67 0.12,0.67 0.09,0.67 0.06,0.67 0.04,0.67 0.03,0.66 0.03,0.67 0.03,0.67 0.03,0.67 0.03,0.67 0.04,0.67 0.03,0.67 0.02,0.67 0.02,0.67 0.02,0.67 0.03,0.67 0.02,0.67 0.04,0.67 0.03,0.67 0.03,0.66 0.02,0.67 0.02,0.67 0.01,0.67 0.01,0.67 -0.01,0.67 v 0.67 0.67 0.67 l 0.02,0.67 0.02,0.67 0.02,0.67 0.03,0.67 0.03,0.67 0.02,0.66 0.01,0.67 0.01,0.67 0.01,0.67 0.01,0.67 0.02,0.67 0.02,0.67 0.01,0.67 0.02,0.67 0.01,0.67 h 0.04 l 0.01,-0.67 0.02,-0.67 0.01,-0.67 0.02,-0.67 0.02,-0.67 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.01,-0.67 0.02,-0.66 0.03,-0.67 0.03,-0.67 0.02,-0.67 0.03,-0.67 0.01,-0.67 v -0.67 -0.67 -0.67 -0.67 -0.67 l 0.01,-0.67 0.02,-0.67 0.02,-0.67 0.03,-0.66 0.03,-0.67 0.04,-0.67 0.03,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.03,-0.67 0.04,-0.67 0.03,-0.67 0.03,-0.67 0.03,-0.67 0.03,-0.67 0.03,-0.66 0.04,-0.67 0.06,-0.67 0.09,-0.67 0.12,-0.67 0.13,-0.67 0.15,-0.67 0.15,-0.67 0.16,-0.67 0.15,-0.67 0.16,-0.67 0.18,-0.67 0.2,-0.67 0.25,-0.67 0.31,-0.66 0.36,-0.67 0.4,-0.67 0.41,-0.67 0.41,-0.67 0.39,-0.67 0.36,-0.67 0.34,-0.67 0.35,-0.67 0.39,-0.67 0.45,-0.67 0.52,-0.67 0.57,-0.67 0.61,-0.67 0.6,-0.66 0.6,-0.67 0.59,-0.67 0.6,-0.67 0.64,-0.67 0.68,-0.67 0.73,-0.67 0.77,-0.67 0.8,-0.67 0.81,-0.67 0.78,-0.67 0.74,-0.67 0.68,-0.67 0.59,-0.67 0.51,-0.66 0.4,-0.67 0.29,-0.67 0.18,-0.67 0.05,-0.67 -0.06,-0.67 -0.13,-0.67 -0.18,-0.67 -0.24,-0.67 -0.3,-0.67 -0.38,-0.67 -0.47,-0.67 -0.52,-0.67 -0.52,-0.66 -0.5,-0.67 -0.48,-0.67 -0.47,-0.67 -0.46,-0.67 -0.48,-0.67 -0.51,-0.67 -0.56,-0.67 -0.63,-0.67 -0.66,-0.67 -0.67,-0.67 -0.65,-0.67 -0.61,-0.67 -0.57,-0.67 -0.54,-0.66 -0.51,-0.67 -0.5,-0.67 -0.46,-0.67 -0.44,-0.67 -0.41,-0.67 -0.39,-0.67 -0.35,-0.67 -0.31,-0.67 -0.26,-0.67 -0.19,-0.67 -0.15,-0.67 -0.14,-0.67 -0.15,-0.67 -0.16,-0.66 -0.18,-0.67 -0.16,-0.67 -0.15,-0.67 -0.13,-0.67 -0.12,-0.67 -0.11,-0.67 -0.11,-0.67 -0.11,-0.67 -0.13,-0.67 -0.15,-0.67 -0.18,-0.67 -0.2,-0.67 -0.21,-0.67 -0.2,-0.66 -0.18,-0.67 -0.15,-0.67 -0.12,-0.67 -0.11,-0.67 -0.09,-0.67 -0.11,-0.67 -0.11,-0.67 -0.12,-0.67 -0.11,-0.67 -0.11,-0.67 -0.1,-0.67 -0.08,-0.67 -0.07,-0.67 -0.06,-0.66 -0.07,-0.67 -0.07,-0.67 -0.06,-0.67 -0.07,-0.67 -0.05,-0.67 -0.05,-0.67 -0.03,-0.67 -0.03,-0.67 -0.03,-0.67 -0.03,-0.67 -0.02,-0.67 -0.03,-0.67 -0.03,-0.67 -0.03,-0.66 -0.02,-0.67 -0.01,-0.67 v -0.67 -0.67 -0.67 -0.67 l -0.02,-0.67 -0.02,-0.67 -0.03,-0.67 -0.03,-0.67 -0.02,-0.67 -0.02,-0.67 -0.01,-0.66 -0.01,-0.67 -0.01,-0.67 v -0.67 l -0.01,-0.67 v -0.67 l -0.01,-0.67 v -0.67 z" /></g></g><g
- id="g800"
- transform="translate(-10,-10)"
- style="" /><g
- id="g802"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath808)"
- id="g804"
- style=""><path
- inkscape:connector-curvature="0"
- id="path810"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 640.88,37.28 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path812"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path814"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path816"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path818"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path820"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path822"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path824"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 666.89,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path826"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 710.24,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path828"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 666.85,48.43 -0.01,0.71 -0.02,0.72 -0.02,0.72 -0.03,0.71 -0.04,0.72 -0.06,0.71 -0.07,0.72 -0.09,0.72 -0.12,0.71 -0.15,0.72 -0.16,0.71 -0.19,0.72 -0.2,0.72 -0.2,0.71 -0.21,0.72 -0.19,0.72 -0.19,0.71 -0.16,0.72 -0.16,0.71 -0.14,0.72 -0.14,0.72 -0.15,0.71 -0.17,0.72 -0.19,0.71 -0.22,0.72 -0.25,0.72 -0.27,0.71 -0.28,0.72 -0.28,0.72 -0.28,0.71 -0.26,0.72 -0.25,0.71 -0.23,0.72 -0.2,0.72 -0.18,0.71 -0.16,0.72 -0.13,0.71 -0.12,0.72 -0.1,0.72 -0.09,0.71 -0.09,0.72 -0.08,0.72 -0.07,0.71 -0.08,0.72 -0.07,0.71 -0.06,0.72 -0.06,0.72 -0.06,0.71 -0.06,0.72 -0.06,0.71 -0.07,0.72 -0.07,0.72 -0.07,0.71 -0.07,0.72 -0.05,0.72 -0.04,0.71 -0.03,0.72 -0.02,0.71 -0.02,0.72 -0.01,0.72 -0.02,0.71 -0.02,0.72 -0.02,0.71 -0.04,0.72 -0.06,0.72 -0.09,0.71 -0.13,0.72 -0.17,0.72 -0.22,0.71 -0.28,0.72 -0.32,0.71 -0.36,0.72 -0.39,0.72 -0.4,0.71 -0.42,0.72 -0.42,0.71 -0.44,0.72 -0.44,0.72 -0.47,0.71 -0.48,0.72 -0.5,0.72 -0.52,0.71 -0.52,0.72 -0.53,0.71 -0.53,0.72 -0.51,0.72 -0.51,0.71 -0.49,0.72 -0.48,0.71 -0.46,0.72 -0.43,0.72 -0.39,0.71 -0.34,0.72 -0.28,0.72 -0.19,0.71 -0.1,0.72 0.01,0.71 0.11,0.72 0.22,0.72 0.34,0.71 0.45,0.72 0.54,0.71 0.62,0.72 0.7,0.72 0.75,0.71 0.77,0.72 0.79,0.72 0.78,0.71 0.76,0.72 0.74,0.71 0.71,0.72 0.69,0.72 0.67,0.71 0.65,0.72 0.63,0.71 0.59,0.72 0.57,0.72 0.53,0.71 0.49,0.72 0.45,0.72 0.43,0.71 0.42,0.72 0.4,0.71 0.4,0.72 0.4,0.72 0.38,0.71 0.35,0.72 0.33,0.71 0.29,0.72 0.27,0.72 0.23,0.71 0.2,0.72 0.19,0.72 0.16,0.71 0.16,0.72 0.13,0.71 0.12,0.72 0.1,0.72 0.09,0.71 0.07,0.72 0.05,0.71 0.05,0.72 0.04,0.72 0.04,0.71 0.03,0.72 0.04,0.72 0.03,0.71 0.03,0.72 0.03,0.71 0.03,0.72 0.03,0.72 0.03,0.71 0.03,0.72 0.03,0.71 0.02,0.72 0.01,0.72 0.02,0.71 v 0.72 l 0.01,0.72 v 0.71 l 0.01,0.72 0.01,0.71 0.01,0.72 0.02,0.72 0.02,0.71 0.02,0.72 0.02,0.71 0.02,0.72 0.02,0.72 0.01,0.71 0.02,0.72 0.02,0.72 0.01,0.71 0.02,0.72 0.01,0.71 h 0.08 l 0.02,-0.71 0.01,-0.72 0.02,-0.71 0.01,-0.72 0.02,-0.72 0.01,-0.71 0.02,-0.72 0.02,-0.72 0.02,-0.71 0.02,-0.72 0.02,-0.71 0.02,-0.72 0.01,-0.72 0.01,-0.71 0.01,-0.72 v -0.71 l 0.01,-0.72 0.01,-0.72 0.01,-0.71 0.01,-0.72 0.03,-0.72 0.02,-0.71 0.03,-0.72 0.03,-0.71 0.03,-0.72 0.03,-0.72 0.03,-0.71 0.03,-0.72 0.03,-0.71 0.04,-0.72 0.03,-0.72 0.04,-0.71 0.04,-0.72 0.05,-0.72 0.05,-0.71 0.07,-0.72 0.09,-0.71 0.1,-0.72 0.12,-0.72 0.13,-0.71 0.16,-0.72 0.17,-0.71 0.18,-0.72 0.21,-0.72 0.23,-0.71 0.26,-0.72 0.29,-0.72 0.33,-0.71 0.35,-0.72 0.38,-0.71 0.4,-0.72 0.4,-0.72 0.4,-0.71 0.42,-0.72 0.43,-0.71 0.45,-0.72 0.49,-0.72 0.53,-0.71 0.57,-0.72 0.6,-0.72 0.62,-0.71 0.65,-0.72 0.67,-0.71 0.69,-0.72 0.71,-0.72 0.74,-0.71 0.76,-0.72 0.78,-0.71 0.79,-0.72 0.77,-0.72 0.75,-0.71 0.7,-0.72 0.62,-0.72 0.55,-0.71 0.44,-0.72 0.34,-0.71 0.23,-0.72 0.11,-0.72 v -0.71 l -0.1,-0.72 -0.19,-0.71 -0.28,-0.72 -0.34,-0.72 -0.39,-0.71 -0.43,-0.72 -0.46,-0.72 -0.48,-0.71 -0.49,-0.72 -0.51,-0.71 -0.51,-0.72 -0.53,-0.72 -0.53,-0.71 -0.52,-0.72 -0.52,-0.71 -0.5,-0.72 -0.48,-0.72 -0.47,-0.71 -0.44,-0.72 -0.44,-0.72 -0.42,-0.71 -0.42,-0.72 -0.4,-0.71 -0.39,-0.72 -0.35,-0.72 -0.33,-0.71 -0.27,-0.72 -0.23,-0.71 -0.17,-0.72 -0.13,-0.72 -0.08,-0.71 -0.06,-0.72 -0.04,-0.72 -0.03,-0.71 -0.02,-0.72 -0.02,-0.71 -0.01,-0.72 -0.02,-0.72 -0.02,-0.71 -0.02,-0.72 -0.05,-0.71 -0.05,-0.72 -0.06,-0.72 -0.08,-0.71 -0.07,-0.72 -0.07,-0.72 -0.06,-0.71 -0.06,-0.72 -0.06,-0.71 -0.06,-0.72 -0.06,-0.72 -0.07,-0.71 -0.07,-0.72 -0.08,-0.71 -0.08,-0.72 -0.09,-0.72 -0.09,-0.71 -0.1,-0.72 -0.12,-0.72 -0.13,-0.71 -0.16,-0.72 -0.18,-0.71 -0.2,-0.72 -0.23,-0.72 -0.24,-0.71 -0.27,-0.72 -0.27,-0.71 -0.29,-0.72 -0.28,-0.72 -0.27,-0.71 -0.25,-0.72 -0.22,-0.72 -0.19,-0.71 -0.17,-0.72 -0.15,-0.71 -0.14,-0.72 -0.14,-0.72 -0.16,-0.71 -0.16,-0.72 -0.19,-0.71 -0.19,-0.72 -0.21,-0.72 -0.2,-0.71 -0.2,-0.72 -0.18,-0.72 -0.17,-0.71 -0.15,-0.72 -0.12,-0.71 -0.09,-0.72 -0.07,-0.72 -0.06,-0.71 -0.04,-0.72 -0.03,-0.71 -0.02,-0.72 -0.02,-0.72 -0.01,-0.71 z" /><path
- inkscape:connector-curvature="0"
- id="path830"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 709.96,51.02 -0.09,0.63 -0.11,0.64 -0.13,0.64 -0.15,0.63 -0.19,0.64 -0.21,0.64 -0.24,0.63 -0.26,0.64 -0.28,0.63 -0.29,0.64 -0.29,0.64 -0.29,0.63 -0.28,0.64 -0.27,0.63 -0.26,0.64 -0.25,0.64 -0.27,0.63 -0.27,0.64 -0.31,0.63 -0.34,0.64 -0.39,0.64 -0.44,0.63 -0.49,0.64 -0.54,0.63 -0.59,0.64 -0.63,0.64 -0.66,0.63 -0.68,0.64 -0.7,0.63 -0.69,0.64 -0.69,0.64 -0.67,0.63 -0.65,0.64 -0.62,0.63 -0.59,0.64 -0.55,0.64 -0.51,0.63 -0.46,0.64 -0.43,0.63 -0.38,0.64 -0.35,0.64 -0.31,0.63 -0.29,0.64 -0.26,0.63 -0.24,0.64 -0.21,0.64 -0.2,0.63 -0.18,0.64 -0.15,0.63 -0.11,0.64 -0.09,0.64 -0.04,0.63 -0.01,0.64 0.03,0.63 0.07,0.64 0.11,0.64 0.14,0.63 0.17,0.64 0.21,0.63 0.23,0.64 0.25,0.64 0.27,0.63 0.29,0.64 0.29,0.63 0.3,0.64 0.3,0.64 0.3,0.63 0.31,0.64 0.32,0.63 0.33,0.64 0.34,0.64 0.36,0.63 0.37,0.64 0.38,0.63 0.39,0.64 0.4,0.64 0.4,0.63 0.39,0.64 0.37,0.63 0.36,0.64 0.32,0.64 0.28,0.63 0.24,0.64 0.21,0.63 0.18,0.64 0.17,0.64 0.16,0.63 0.17,0.64 0.18,0.63 0.2,0.64 0.23,0.64 0.24,0.63 0.26,0.64 0.26,0.63 0.27,0.64 0.26,0.64 0.26,0.63 0.25,0.64 0.25,0.63 0.24,0.64 0.24,0.64 0.25,0.63 0.23,0.64 0.24,0.63 0.23,0.64 0.22,0.64 0.21,0.63 0.2,0.64 0.18,0.63 0.17,0.64 0.15,0.64 0.14,0.63 0.14,0.64 0.13,0.63 0.13,0.64 0.14,0.64 0.15,0.63 0.16,0.64 0.17,0.63 0.19,0.64 0.19,0.64 0.2,0.63 0.19,0.64 0.19,0.63 0.18,0.64 0.16,0.64 0.16,0.63 0.15,0.64 0.13,0.63 0.13,0.64 0.12,0.64 0.11,0.63 0.1,0.64 0.09,0.63 0.08,0.64 0.07,0.64 0.06,0.63 0.05,0.64 0.04,0.63 0.04,0.64 0.03,0.64 0.04,0.63 0.02,0.64 0.03,0.63 0.02,0.64 0.02,0.64 0.02,0.63 0.02,0.64 0.02,0.63 0.02,0.64 0.02,0.64 0.03,0.63 0.02,0.64 0.01,0.63 0.02,0.64 0.01,0.64 0.01,0.63 0.01,0.64 0.01,0.63 v 0.64 0.64 0.63 0.64 l -0.01,0.63 v 0.64 0.64 0.63 0.64 0.63 h 0.14 v -0.63 -0.64 -0.63 -0.64 -0.64 -0.63 l -0.01,-0.64 v -0.63 -0.64 l 0.01,-0.64 v -0.63 l 0.01,-0.64 0.01,-0.63 0.01,-0.64 0.02,-0.64 0.01,-0.63 0.02,-0.64 0.03,-0.63 0.02,-0.64 0.02,-0.64 0.02,-0.63 0.02,-0.64 0.02,-0.63 0.02,-0.64 0.02,-0.64 0.03,-0.63 0.02,-0.64 0.04,-0.63 0.03,-0.64 0.04,-0.64 0.04,-0.63 0.06,-0.64 0.05,-0.63 0.07,-0.64 0.08,-0.64 0.09,-0.63 0.1,-0.64 0.11,-0.63 0.12,-0.64 0.13,-0.64 0.13,-0.63 0.15,-0.64 0.16,-0.63 0.16,-0.64 0.18,-0.64 0.19,-0.63 0.19,-0.64 0.2,-0.63 0.19,-0.64 0.19,-0.64 0.17,-0.63 0.16,-0.64 0.15,-0.63 0.14,-0.64 0.13,-0.64 0.13,-0.63 0.14,-0.64 0.14,-0.63 0.15,-0.64 0.17,-0.64 0.19,-0.63 0.19,-0.64 0.21,-0.63 0.22,-0.64 0.23,-0.64 0.24,-0.63 0.24,-0.64 0.24,-0.63 0.24,-0.64 0.24,-0.64 0.25,-0.63 0.25,-0.64 0.26,-0.63 0.26,-0.64 0.27,-0.64 0.26,-0.63 0.26,-0.64 0.24,-0.63 0.23,-0.64 0.2,-0.64 0.18,-0.63 0.17,-0.64 0.16,-0.63 0.17,-0.64 0.18,-0.64 0.21,-0.63 0.24,-0.64 0.29,-0.63 0.32,-0.64 0.35,-0.64 0.37,-0.63 0.39,-0.64 0.4,-0.63 0.4,-0.64 0.39,-0.64 0.38,-0.63 0.37,-0.64 0.36,-0.63 0.34,-0.64 0.33,-0.64 0.32,-0.63 0.31,-0.64 0.3,-0.63 0.3,-0.64 0.3,-0.64 0.29,-0.63 0.29,-0.64 0.27,-0.63 0.25,-0.64 0.23,-0.64 0.21,-0.63 0.17,-0.64 0.14,-0.63 0.11,-0.64 0.07,-0.64 0.03,-0.63 -0.01,-0.64 -0.04,-0.63 -0.09,-0.64 -0.11,-0.64 -0.15,-0.63 -0.18,-0.64 -0.19,-0.63 -0.22,-0.64 -0.24,-0.64 -0.26,-0.63 -0.29,-0.64 -0.31,-0.63 -0.35,-0.64 -0.38,-0.64 -0.43,-0.63 -0.46,-0.64 -0.51,-0.63 -0.55,-0.64 -0.59,-0.64 -0.62,-0.63 -0.65,-0.64 -0.67,-0.63 -0.69,-0.64 -0.69,-0.64 -0.7,-0.63 -0.68,-0.64 -0.66,-0.63 -0.63,-0.64 -0.59,-0.64 -0.54,-0.63 -0.49,-0.64 -0.44,-0.63 -0.39,-0.64 -0.34,-0.64 -0.31,-0.63 -0.27,-0.64 -0.27,-0.63 -0.25,-0.64 -0.26,-0.64 -0.27,-0.63 -0.28,-0.64 -0.29,-0.63 -0.29,-0.64 -0.29,-0.64 -0.28,-0.63 -0.26,-0.64 -0.24,-0.63 -0.21,-0.64 -0.18,-0.64 -0.16,-0.63 -0.13,-0.64 -0.11,-0.64 -0.08,-0.63 z" /></g></g><g
- id="g832"
- transform="translate(-10,-10)"
- style="" /><g
- id="g864"
- transform="translate(-10,-10)"
- style="" /><g
- id="g866"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath872)"
- id="g868"
- style=""><path
- inkscape:connector-curvature="0"
- id="path874"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 739.85,202.71 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path876"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,241.88 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path878"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,293.62 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path880"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,345.35 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path882"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,216.01 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path884"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,267.75 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path886"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,319.48 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path888"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 765.86,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path890"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 809.21,202.71 V 364.54" /><path
- inkscape:connector-curvature="0"
- id="path892"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 765.61,210.33 -0.1,0.77 -0.12,0.76 -0.16,0.77 -0.19,0.77 -0.25,0.77 -0.29,0.76 -0.36,0.77 -0.41,0.77 -0.49,0.76 -0.55,0.77 -0.62,0.77 -0.69,0.76 -0.75,0.77 -0.79,0.77 -0.81,0.76 -0.8,0.77 -0.76,0.77 -0.7,0.76 -0.61,0.77 -0.48,0.77 -0.36,0.76 -0.24,0.77 -0.12,0.77 -0.05,0.77 0.02,0.76 0.04,0.77 0.06,0.77 0.06,0.76 0.06,0.77 0.05,0.77 0.04,0.76 0.03,0.77 0.02,0.77 0.02,0.76 0.01,0.77 0.02,0.77 0.02,0.76 0.04,0.77 0.04,0.77 0.06,0.76 0.06,0.77 0.04,0.77 0.02,0.77 -0.01,0.76 -0.06,0.77 -0.1,0.77 -0.14,0.76 -0.19,0.77 -0.2,0.77 -0.21,0.76 -0.18,0.77 -0.14,0.77 -0.07,0.76 0.02,0.77 0.12,0.77 0.2,0.76 0.27,0.77 0.31,0.77 0.34,0.77 0.34,0.76 0.31,0.77 0.29,0.77 0.26,0.76 0.23,0.77 0.23,0.77 0.22,0.76 0.23,0.77 0.25,0.77 0.27,0.76 0.29,0.77 0.3,0.77 0.32,0.76 0.32,0.77 0.33,0.77 0.32,0.76 0.31,0.77 0.29,0.77 0.28,0.77 0.27,0.76 0.25,0.77 0.22,0.77 0.21,0.76 0.18,0.77 0.15,0.77 0.14,0.76 0.13,0.77 0.13,0.77 0.13,0.76 0.14,0.77 0.15,0.77 0.17,0.76 0.17,0.77 0.17,0.77 0.17,0.76 0.17,0.77 0.16,0.77 0.15,0.77 0.16,0.76 0.14,0.77 0.15,0.77 0.13,0.76 0.13,0.77 0.12,0.77 0.11,0.76 0.09,0.77 0.08,0.77 0.07,0.76 0.05,0.77 0.04,0.77 0.03,0.76 0.03,0.77 0.02,0.77 0.02,0.77 0.01,0.76 0.01,0.77 v 0.77 0.76 l 0.01,0.77 v 0.77 0.76 0.77 l 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 v 0.76 0.77 0.77 l -0.01,0.76 v 0.77 0.77 l -0.01,0.77 v 0.76 0.77 0.77 0.76 0.77 0.77 l 0.01,0.76 v 0.77 l 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 v 0.76 0.77 l 0.01,0.77 v 0.77 l 0.01,0.76 0.01,0.77 0.01,0.77 0.01,0.76 0.01,0.77 0.02,0.77 0.01,0.76 0.01,0.77 0.01,0.77 0.01,0.76 0.01,0.77 0.01,0.77 v 0.76 0.77 l 0.01,0.77 v 0.77 l -0.01,0.76 v 0.77 0.77 0.76 0.77 0.77 0.76 0.77 h 0.04 v -0.77 -0.76 -0.77 -0.77 -0.76 -0.77 -0.77 l -0.01,-0.76 v -0.77 l 0.01,-0.77 v -0.77 -0.76 l 0.01,-0.77 0.01,-0.77 0.01,-0.76 0.01,-0.77 0.01,-0.77 0.01,-0.76 0.02,-0.77 0.01,-0.77 0.01,-0.76 0.01,-0.77 0.01,-0.77 0.01,-0.76 v -0.77 l 0.01,-0.77 v -0.77 -0.76 l 0.01,-0.77 v -0.77 l 0.01,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.76 v -0.77 -0.77 -0.76 -0.77 -0.77 -0.76 l -0.01,-0.77 v -0.77 -0.77 l -0.01,-0.76 v -0.77 -0.77 -0.76 l 0.01,-0.77 v -0.77 l 0.01,-0.76 0.01,-0.77 v -0.77 -0.76 l 0.01,-0.77 v -0.77 -0.76 -0.77 l 0.01,-0.77 0.01,-0.76 0.02,-0.77 0.02,-0.77 0.03,-0.77 0.03,-0.76 0.04,-0.77 0.05,-0.77 0.07,-0.76 0.08,-0.77 0.09,-0.77 0.11,-0.76 0.12,-0.77 0.13,-0.77 0.14,-0.76 0.14,-0.77 0.15,-0.77 0.15,-0.76 0.15,-0.77 0.16,-0.77 0.17,-0.77 0.17,-0.76 0.17,-0.77 0.17,-0.77 0.17,-0.76 0.15,-0.77 0.14,-0.77 0.13,-0.76 0.13,-0.77 0.13,-0.77 0.14,-0.76 0.16,-0.77 0.17,-0.77 0.21,-0.76 0.22,-0.77 0.25,-0.77 0.27,-0.76 0.28,-0.77 0.3,-0.77 0.3,-0.77 0.32,-0.76 0.33,-0.77 0.32,-0.77 0.32,-0.76 0.31,-0.77 0.28,-0.77 0.27,-0.76 0.25,-0.77 0.23,-0.77 0.22,-0.76 0.23,-0.77 0.23,-0.77 0.26,-0.76 0.29,-0.77 0.31,-0.77 0.34,-0.76 0.34,-0.77 0.31,-0.77 0.27,-0.77 0.2,-0.76 0.12,-0.77 0.02,-0.77 -0.07,-0.76 -0.14,-0.77 -0.18,-0.77 -0.21,-0.76 -0.2,-0.77 -0.19,-0.77 -0.14,-0.76 -0.1,-0.77 -0.06,-0.77 -0.01,-0.76 0.02,-0.77 0.04,-0.77 0.06,-0.77 0.06,-0.76 0.04,-0.77 0.04,-0.77 0.02,-0.76 0.02,-0.77 0.01,-0.77 0.02,-0.76 0.02,-0.77 0.03,-0.77 0.04,-0.76 0.05,-0.77 0.06,-0.77 0.06,-0.76 0.06,-0.77 0.04,-0.77 0.02,-0.76 -0.04,-0.77 -0.13,-0.77 -0.24,-0.77 -0.36,-0.76 -0.48,-0.77 -0.61,-0.77 -0.69,-0.76 -0.77,-0.77 -0.8,-0.77 -0.81,-0.76 -0.79,-0.77 -0.75,-0.77 -0.69,-0.76 -0.62,-0.77 -0.55,-0.77 -0.49,-0.76 -0.41,-0.77 -0.36,-0.77 -0.29,-0.76 -0.25,-0.77 -0.19,-0.77 -0.16,-0.77 -0.12,-0.76 -0.1,-0.77 z" /><path
- inkscape:connector-curvature="0"
- id="path894"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 809.15,217.24 -0.02,0.75 -0.03,0.76 -0.03,0.76 -0.04,0.75 -0.05,0.76 -0.04,0.76 -0.03,0.75 -0.04,0.76 -0.03,0.76 -0.02,0.75 -0.01,0.76 -0.01,0.75 -0.02,0.76 -0.01,0.76 -0.02,0.75 -0.02,0.76 -0.03,0.76 -0.04,0.75 -0.03,0.76 -0.03,0.76 -0.01,0.75 -0.03,0.76 -0.05,0.76 -0.09,0.75 -0.09,0.76 -0.09,0.76 -0.06,0.75 -0.03,0.76 -0.02,0.75 -0.03,0.76 -0.06,0.76 -0.09,0.75 -0.09,0.76 -0.09,0.76 -0.09,0.75 -0.09,0.76 -0.1,0.76 -0.11,0.75 -0.11,0.76 -0.12,0.76 -0.12,0.75 -0.15,0.76 -0.17,0.76 -0.21,0.75 -0.2,0.76 -0.17,0.75 -0.1,0.76 -0.04,0.76 0.01,0.75 -0.01,0.76 -0.06,0.76 -0.12,0.75 -0.17,0.76 -0.19,0.76 -0.19,0.75 -0.2,0.76 -0.2,0.76 -0.19,0.75 -0.2,0.76 -0.22,0.76 -0.24,0.75 -0.27,0.76 -0.28,0.75 -0.3,0.76 -0.29,0.76 -0.32,0.75 -0.38,0.76 -0.45,0.76 -0.53,0.75 -0.6,0.76 -0.63,0.76 -0.67,0.75 -0.71,0.76 -0.76,0.76 -0.81,0.75 -0.86,0.76 -0.85,0.76 -0.81,0.75 -0.74,0.76 -0.7,0.75 -0.72,0.76 -0.73,0.76 -0.7,0.75 -0.58,0.76 -0.39,0.76 -0.19,0.75 -0.04,0.76 0.07,0.76 0.17,0.75 0.32,0.76 0.51,0.76 0.69,0.75 0.77,0.76 0.78,0.75 0.73,0.76 0.73,0.76 0.78,0.75 0.87,0.76 0.94,0.76 0.96,0.75 0.96,0.76 0.94,0.76 0.88,0.75 0.81,0.76 0.73,0.76 0.67,0.75 0.62,0.76 0.57,0.76 0.53,0.75 0.48,0.76 0.47,0.75 0.43,0.76 0.4,0.76 0.35,0.75 0.29,0.76 0.23,0.76 0.18,0.75 0.14,0.76 0.12,0.76 0.1,0.75 0.12,0.76 0.13,0.76 0.14,0.75 0.13,0.76 0.1,0.76 0.06,0.75 0.04,0.76 0.03,0.75 0.02,0.76 0.03,0.76 0.03,0.75 0.04,0.76 0.03,0.76 0.02,0.75 v 0.76 l -0.01,0.76 -0.01,0.75 v 0.76 l 0.01,0.76 0.02,0.75 0.02,0.76 0.02,0.76 0.03,0.75 0.02,0.76 0.03,0.75 0.02,0.76 0.02,0.76 0.02,0.75 0.03,0.76 0.03,0.76 0.03,0.75 0.02,0.76 0.02,0.76 0.01,0.75 0.01,0.76 v 0.76 l 0.01,0.75 v 0.76 0.76 0.75 0.76 l 0.01,0.75 v 0.76 l 0.01,0.76 v 0.75 0.76 0.76 0.75 0.76 0.76 0.75 0.76 0.76 0.75 0.76 l -0.01,0.76 v 0.75 0.76 0.75 0.76 0.76 0.75 0.76 0.76 0.75 h 0.02 v -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.75 l -0.01,-0.76 v -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 -0.76 -0.76 -0.75 l 0.01,-0.76 v -0.76 l 0.01,-0.75 v -0.76 -0.75 -0.76 -0.76 l 0.01,-0.75 v -0.76 l 0.01,-0.76 0.01,-0.75 0.02,-0.76 0.02,-0.76 0.03,-0.75 0.03,-0.76 0.03,-0.76 0.02,-0.75 0.02,-0.76 0.02,-0.76 0.03,-0.75 0.02,-0.76 0.03,-0.75 0.02,-0.76 0.02,-0.76 0.02,-0.75 0.01,-0.76 v -0.76 l -0.01,-0.75 -0.01,-0.76 v -0.76 l 0.02,-0.75 0.03,-0.76 0.04,-0.76 0.03,-0.75 0.03,-0.76 0.02,-0.76 0.03,-0.75 0.04,-0.76 0.06,-0.75 0.1,-0.76 0.13,-0.76 0.14,-0.75 0.13,-0.76 0.12,-0.76 0.1,-0.75 0.12,-0.76 0.14,-0.76 0.18,-0.75 0.23,-0.76 0.29,-0.76 0.35,-0.75 0.4,-0.76 0.43,-0.76 0.47,-0.75 0.48,-0.76 0.53,-0.75 0.57,-0.76 0.62,-0.76 0.67,-0.75 0.73,-0.76 0.81,-0.76 0.88,-0.75 0.94,-0.76 0.96,-0.76 0.96,-0.75 0.94,-0.76 0.87,-0.76 0.78,-0.75 0.73,-0.76 0.73,-0.76 0.78,-0.75 0.78,-0.76 0.68,-0.75 0.51,-0.76 0.32,-0.76 0.17,-0.75 0.07,-0.76 -0.04,-0.76 -0.19,-0.75 -0.39,-0.76 -0.58,-0.76 -0.7,-0.75 -0.73,-0.76 -0.72,-0.76 -0.7,-0.75 -0.74,-0.76 -0.81,-0.75 -0.85,-0.76 -0.86,-0.76 -0.81,-0.75 -0.76,-0.76 -0.71,-0.76 -0.67,-0.75 -0.63,-0.76 -0.6,-0.76 -0.53,-0.75 -0.45,-0.76 -0.38,-0.76 -0.32,-0.75 -0.29,-0.76 -0.3,-0.76 -0.28,-0.75 -0.27,-0.76 -0.24,-0.75 -0.22,-0.76 -0.2,-0.76 -0.19,-0.75 -0.2,-0.76 -0.2,-0.76 -0.19,-0.75 -0.19,-0.76 -0.17,-0.76 -0.12,-0.75 -0.06,-0.76 -0.01,-0.76 0.01,-0.75 -0.04,-0.76 -0.1,-0.76 -0.17,-0.75 -0.2,-0.76 -0.21,-0.75 -0.17,-0.76 -0.15,-0.76 -0.12,-0.75 -0.12,-0.76 -0.11,-0.76 -0.11,-0.75 -0.1,-0.76 -0.09,-0.76 -0.09,-0.75 -0.09,-0.76 -0.09,-0.76 -0.09,-0.75 -0.06,-0.76 -0.03,-0.76 -0.02,-0.75 -0.03,-0.76 -0.06,-0.75 -0.09,-0.76 -0.09,-0.76 -0.09,-0.75 -0.05,-0.76 -0.03,-0.76 -0.01,-0.75 -0.03,-0.76 -0.03,-0.76 -0.04,-0.75 -0.03,-0.76 -0.02,-0.76 -0.02,-0.75 -0.01,-0.76 -0.02,-0.76 -0.01,-0.75 -0.01,-0.76 -0.02,-0.75 -0.03,-0.76 -0.04,-0.76 -0.03,-0.75 -0.04,-0.76 -0.05,-0.76 -0.04,-0.75 -0.03,-0.76 -0.03,-0.76 -0.02,-0.75 z" /></g></g><g
- id="g896"
- transform="translate(-10,-10)"
- style="" /><g
- id="g898"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath904)"
- id="g900"
- style=""><path
- inkscape:connector-curvature="0"
- id="path906"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 739.85,37.28 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path908"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,76.45 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path910"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,128.19 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path912"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,179.92 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path914"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,50.58 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path916"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,102.32 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path918"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,154.06 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path920"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 765.86,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path922"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 809.21,37.28 V 199.11" /><path
- inkscape:connector-curvature="0"
- id="path924"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 765.71,46.33 -0.06,0.82 -0.08,0.81 -0.11,0.82 -0.12,0.82 -0.16,0.82 -0.18,0.82 -0.21,0.82 -0.25,0.82 -0.27,0.82 -0.31,0.82 -0.32,0.82 -0.35,0.81 -0.34,0.82 -0.34,0.82 -0.33,0.82 -0.28,0.82 -0.25,0.82 -0.18,0.82 -0.13,0.82 -0.07,0.82 -0.02,0.82 v 0.81 l 0.02,0.82 0.03,0.82 0.01,0.82 0.01,0.82 v 0.82 l -0.02,0.82 -0.03,0.82 -0.04,0.82 -0.04,0.82 -0.04,0.81 -0.03,0.82 -0.01,0.82 -0.02,0.82 -0.02,0.82 -0.03,0.82 -0.06,0.82 -0.09,0.82 -0.12,0.82 -0.16,0.82 -0.19,0.81 -0.22,0.82 -0.25,0.82 -0.26,0.82 -0.25,0.82 -0.22,0.82 -0.18,0.82 -0.12,0.82 -0.05,0.82 v 0.82 l 0.03,0.81 0.05,0.82 0.03,0.82 0.01,0.82 -0.03,0.82 -0.07,0.82 -0.1,0.82 -0.13,0.82 -0.14,0.82 -0.15,0.81 -0.17,0.82 -0.18,0.82 -0.2,0.82 -0.2,0.82 -0.23,0.82 -0.26,0.82 -0.31,0.82 -0.35,0.82 -0.42,0.82 -0.48,0.81 -0.55,0.82 -0.62,0.82 -0.67,0.82 -0.72,0.82 -0.75,0.82 -0.78,0.82 -0.79,0.82 -0.78,0.82 -0.75,0.82 -0.7,0.81 -0.65,0.82 -0.55,0.82 -0.46,0.82 -0.32,0.82 -0.19,0.82 -0.04,0.82 0.12,0.82 0.27,0.82 0.41,0.82 0.55,0.81 0.65,0.82 0.74,0.82 0.81,0.82 0.86,0.82 0.91,0.82 0.93,0.82 0.95,0.82 0.96,0.82 0.96,0.82 0.92,0.81 0.89,0.82 0.84,0.82 0.78,0.82 0.73,0.82 0.66,0.82 0.61,0.82 0.55,0.82 0.51,0.82 0.47,0.82 0.41,0.81 0.37,0.82 0.32,0.82 0.27,0.82 0.23,0.82 0.2,0.82 0.16,0.82 0.15,0.82 0.13,0.82 0.12,0.82 0.11,0.81 0.09,0.82 0.08,0.82 0.07,0.82 0.05,0.82 0.04,0.82 0.04,0.82 0.03,0.82 0.03,0.82 0.02,0.82 0.02,0.81 0.02,0.82 0.01,0.82 0.01,0.82 0.01,0.82 0.02,0.82 0.02,0.82 0.02,0.82 0.02,0.82 0.03,0.82 0.03,0.81 0.03,0.82 0.03,0.82 0.03,0.82 0.03,0.82 0.03,0.82 0.03,0.82 0.03,0.82 0.02,0.82 0.01,0.82 0.01,0.81 0.01,0.82 0.01,0.82 v 0.82 l 0.01,0.82 v 0.82 0.82 0.82 l 0.01,0.82 v 0.81 0.82 0.82 0.82 0.82 0.82 0.82 0.82 0.82 0.82 0.81 0.82 0.82 0.82 0.82 0.82 0.82 0.82 h 0.02 v -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.81 -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.82 -0.81 l 0.01,-0.82 v -0.82 -0.82 -0.82 l 0.01,-0.82 v -0.82 l 0.01,-0.82 0.01,-0.82 0.01,-0.81 0.01,-0.82 0.03,-0.82 0.02,-0.82 0.03,-0.82 0.03,-0.82 0.03,-0.82 0.03,-0.82 0.03,-0.82 0.03,-0.82 0.03,-0.81 0.03,-0.82 0.02,-0.82 0.02,-0.82 0.02,-0.82 0.02,-0.82 0.01,-0.82 0.01,-0.82 0.01,-0.82 0.02,-0.82 0.02,-0.81 0.02,-0.82 0.03,-0.82 0.03,-0.82 0.04,-0.82 0.04,-0.82 0.05,-0.82 0.07,-0.82 0.08,-0.82 0.09,-0.82 0.11,-0.81 0.12,-0.82 0.13,-0.82 0.15,-0.82 0.16,-0.82 0.2,-0.82 0.23,-0.82 0.27,-0.82 0.32,-0.82 0.37,-0.82 0.41,-0.81 0.47,-0.82 0.51,-0.82 0.55,-0.82 0.61,-0.82 0.66,-0.82 0.73,-0.82 0.78,-0.82 0.84,-0.82 0.89,-0.82 0.93,-0.81 0.95,-0.82 0.96,-0.82 0.95,-0.82 0.93,-0.82 0.91,-0.82 0.86,-0.82 0.81,-0.82 0.74,-0.82 0.65,-0.82 0.55,-0.81 0.41,-0.82 0.27,-0.82 0.12,-0.82 -0.04,-0.82 -0.19,-0.82 -0.32,-0.82 -0.45,-0.82 -0.56,-0.82 -0.65,-0.82 -0.7,-0.81 -0.75,-0.82 -0.78,-0.82 -0.79,-0.82 -0.78,-0.82 -0.75,-0.82 -0.72,-0.82 -0.67,-0.82 -0.62,-0.82 -0.55,-0.82 -0.48,-0.81 -0.42,-0.82 -0.35,-0.82 -0.31,-0.82 -0.26,-0.82 -0.23,-0.82 -0.2,-0.82 -0.2,-0.82 -0.18,-0.82 -0.17,-0.82 -0.15,-0.81 -0.14,-0.82 -0.13,-0.82 -0.1,-0.82 -0.07,-0.82 -0.03,-0.82 0.01,-0.82 0.03,-0.82 0.05,-0.82 0.03,-0.81 v -0.82 l -0.05,-0.82 -0.12,-0.82 -0.18,-0.82 -0.22,-0.82 -0.25,-0.82 -0.26,-0.82 -0.25,-0.82 -0.22,-0.82 -0.19,-0.81 -0.16,-0.82 -0.12,-0.82 -0.09,-0.82 -0.06,-0.82 -0.03,-0.82 -0.02,-0.82 -0.01,-0.82 -0.02,-0.82 -0.03,-0.82 -0.04,-0.81 -0.04,-0.82 -0.04,-0.82 -0.03,-0.82 -0.02,-0.82 v -0.82 l 0.01,-0.82 0.02,-0.82 0.02,-0.82 0.02,-0.82 v -0.81 l -0.02,-0.82 -0.07,-0.82 -0.13,-0.82 -0.18,-0.82 -0.25,-0.82 -0.28,-0.82 -0.33,-0.82 -0.34,-0.82 -0.34,-0.82 -0.35,-0.81 -0.32,-0.82 -0.31,-0.82 -0.27,-0.82 -0.25,-0.82 -0.21,-0.82 -0.18,-0.82 -0.16,-0.82 -0.12,-0.82 -0.11,-0.82 -0.08,-0.81 -0.06,-0.82 z" /><path
- inkscape:connector-curvature="0"
- id="path926"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 808.79,44.64 -0.09,0.65 -0.12,0.65 -0.14,0.66 -0.16,0.65 -0.2,0.65 -0.23,0.66 -0.28,0.65 -0.32,0.65 -0.38,0.66 -0.43,0.65 -0.48,0.65 -0.54,0.66 -0.59,0.65 -0.64,0.65 -0.67,0.66 -0.69,0.65 -0.69,0.65 -0.68,0.66 -0.65,0.65 -0.6,0.65 -0.54,0.66 -0.46,0.65 -0.4,0.65 -0.31,0.65 -0.25,0.66 -0.2,0.65 -0.15,0.65 -0.13,0.66 -0.11,0.65 -0.11,0.65 -0.11,0.66 -0.12,0.65 -0.13,0.65 -0.14,0.66 -0.14,0.65 -0.15,0.65 -0.15,0.66 -0.15,0.65 -0.15,0.65 -0.15,0.66 -0.15,0.65 -0.15,0.65 -0.15,0.66 -0.15,0.65 -0.15,0.65 -0.14,0.66 -0.13,0.65 -0.12,0.65 -0.1,0.65 -0.09,0.66 -0.07,0.65 -0.06,0.65 -0.04,0.66 -0.04,0.65 -0.03,0.65 -0.04,0.66 -0.03,0.65 -0.04,0.65 -0.04,0.66 -0.04,0.65 -0.03,0.65 -0.02,0.66 v 0.65 l 0.03,0.65 0.06,0.66 0.08,0.65 0.13,0.65 0.15,0.66 0.17,0.65 0.2,0.65 0.21,0.65 0.22,0.66 0.23,0.65 0.23,0.65 0.24,0.66 0.24,0.65 0.26,0.65 0.27,0.66 0.29,0.65 0.3,0.65 0.32,0.66 0.34,0.65 0.34,0.65 0.36,0.66 0.35,0.65 0.34,0.65 0.35,0.66 0.33,0.65 0.32,0.65 0.31,0.66 0.3,0.65 0.29,0.65 0.27,0.66 0.26,0.65 0.25,0.65 0.23,0.65 0.21,0.66 0.19,0.65 0.17,0.65 0.16,0.66 0.14,0.65 0.14,0.65 0.13,0.66 0.13,0.65 0.13,0.65 0.14,0.66 0.14,0.65 0.16,0.65 0.16,0.66 0.17,0.65 0.19,0.65 0.19,0.66 0.19,0.65 0.2,0.65 0.21,0.66 0.2,0.65 0.21,0.65 0.21,0.65 0.2,0.66 0.19,0.65 0.19,0.65 0.18,0.66 0.17,0.65 0.16,0.65 0.15,0.66 0.15,0.65 0.13,0.65 0.13,0.66 0.12,0.65 0.11,0.65 0.11,0.66 0.1,0.65 0.08,0.65 0.08,0.66 0.08,0.65 0.06,0.65 0.05,0.66 0.05,0.65 0.03,0.65 0.03,0.65 0.03,0.66 0.02,0.65 0.01,0.65 0.01,0.66 0.01,0.65 0.01,0.65 0.01,0.66 v 0.65 l 0.01,0.65 0.01,0.66 0.01,0.65 0.01,0.65 0.01,0.66 0.02,0.65 0.01,0.65 0.01,0.66 v 0.65 l 0.01,0.65 0.01,0.66 v 0.65 0.65 0.66 l 0.01,0.65 v 0.65 0.65 h 0.1 v -0.65 -0.65 l 0.01,-0.65 v -0.66 -0.65 -0.65 l 0.01,-0.66 0.01,-0.65 v -0.65 l 0.01,-0.66 0.01,-0.65 0.02,-0.65 0.01,-0.66 0.01,-0.65 0.01,-0.65 0.01,-0.66 0.01,-0.65 v -0.65 l 0.01,-0.66 0.01,-0.65 0.01,-0.65 0.01,-0.66 0.01,-0.65 0.02,-0.65 0.03,-0.66 0.03,-0.65 0.03,-0.65 0.05,-0.65 0.05,-0.66 0.07,-0.65 0.07,-0.65 0.08,-0.66 0.08,-0.65 0.1,-0.65 0.11,-0.66 0.11,-0.65 0.12,-0.65 0.13,-0.66 0.13,-0.65 0.15,-0.65 0.15,-0.66 0.16,-0.65 0.17,-0.65 0.18,-0.66 0.19,-0.65 0.19,-0.65 0.2,-0.66 0.21,-0.65 0.21,-0.65 0.2,-0.65 0.21,-0.66 0.2,-0.65 0.19,-0.65 0.19,-0.66 0.19,-0.65 0.17,-0.65 0.16,-0.66 0.16,-0.65 0.14,-0.65 0.14,-0.66 0.13,-0.65 0.13,-0.65 0.13,-0.66 0.14,-0.65 0.14,-0.65 0.16,-0.66 0.17,-0.65 0.19,-0.65 0.21,-0.66 0.23,-0.65 0.25,-0.65 0.26,-0.65 0.27,-0.66 0.29,-0.65 0.3,-0.65 0.31,-0.66 0.32,-0.65 0.33,-0.65 0.35,-0.66 0.34,-0.65 0.36,-0.65 0.35,-0.66 0.34,-0.65 0.34,-0.65 0.32,-0.66 0.3,-0.65 0.29,-0.65 0.27,-0.66 0.26,-0.65 0.24,-0.65 0.24,-0.66 0.23,-0.65 0.23,-0.65 0.22,-0.66 0.21,-0.65 0.2,-0.65 0.17,-0.65 0.15,-0.66 0.13,-0.65 0.08,-0.65 0.06,-0.66 0.03,-0.65 v -0.65 l -0.02,-0.66 -0.03,-0.65 -0.04,-0.65 -0.04,-0.66 -0.04,-0.65 -0.03,-0.65 -0.04,-0.66 -0.03,-0.65 -0.04,-0.65 -0.04,-0.66 -0.06,-0.65 -0.07,-0.65 -0.09,-0.66 -0.1,-0.65 -0.12,-0.65 -0.13,-0.65 -0.14,-0.66 -0.15,-0.65 -0.15,-0.65 -0.15,-0.66 -0.15,-0.65 -0.15,-0.65 -0.15,-0.66 -0.15,-0.65 -0.15,-0.65 -0.15,-0.66 -0.15,-0.65 -0.14,-0.65 -0.14,-0.66 -0.13,-0.65 -0.12,-0.65 -0.11,-0.66 -0.11,-0.65 -0.11,-0.65 -0.13,-0.66 -0.15,-0.65 -0.2,-0.65 -0.25,-0.66 -0.31,-0.65 -0.4,-0.65 -0.46,-0.65 -0.54,-0.66 -0.6,-0.65 -0.65,-0.65 -0.68,-0.66 -0.69,-0.65 -0.69,-0.65 -0.67,-0.66 -0.64,-0.65 -0.59,-0.65 -0.54,-0.66 -0.48,-0.65 -0.43,-0.65 -0.38,-0.66 -0.32,-0.65 -0.28,-0.65 -0.23,-0.66 -0.2,-0.65 -0.16,-0.65 -0.14,-0.66 -0.12,-0.65 -0.09,-0.65 z" /></g></g><g
- id="g928"
- transform="translate(-10,-10)"
- style="" /><g
- id="g930"
- transform="translate(-10,-10)"
- style="" /><g
- id="g946"
- transform="translate(-10,-10)"
- style="" /><g
- id="g956"
- transform="translate(-10,-10)"
- style="" /><g
- id="g958"
- transform="translate(-10,-10)"
- style="" /><g
- id="g960"
- transform="translate(-10,-10)"
- style="" /><g
- id="g962"
- transform="translate(-10,-10)"
- style="" /><g
- id="g964"
- transform="translate(-10,-10)"
- style="" /><g
- id="g966"
- transform="translate(-10,-10)"
- style=""><text
- id="text970"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,23.02,212.42)"><tspan
- id="tspan968"
- sodipodi:role="line"
- y="0"
- x="0 5.8400002 11.4">−10</tspan></text>
- <text
- id="text974"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,34.42,264.16)"><tspan
- id="tspan972"
- y="0"
- x="0"
- style="">0</tspan></text>
- <text
- id="text978"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,28.86,315.89)"><tspan
- id="tspan976"
- sodipodi:role="line"
- y="0"
- x="0 5.5599999">10</tspan></text>
- </g><g
- id="g980"
- transform="translate(-10,-10)"
- style="" /><g
- id="g982"
- transform="translate(-10,-10)"
- style=""><path
- inkscape:connector-curvature="0"
- id="path984"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,216.01 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path986"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,267.75 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path988"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,319.48 h 4.25" /></g><g
- id="g990"
- transform="translate(-10,-10)"
- style="" /><g
- id="g992"
- transform="translate(-10,-10)"
- style="" /><g
- id="g994"
- transform="translate(-10,-10)"
- style="" /><g
- id="g996"
- transform="translate(-10,-10)"
- style="" /><g
- id="g998"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1000"
- transform="translate(-10,-10)"
- style=""><text
- id="text1004"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,23.02,46.99)"><tspan
- id="tspan1002"
- sodipodi:role="line"
- y="0"
- x="0 5.8400002 11.4">−10</tspan></text>
- <text
- id="text1008"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,34.42,98.73)"><tspan
- id="tspan1006"
- y="0"
- x="0"
- style="">0</tspan></text>
- <text
- id="text1012"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,28.86,150.47)"><tspan
- id="tspan1010"
- sodipodi:role="line"
- y="0"
- x="0 5.5599999">10</tspan></text>
- </g><g
- id="g1014"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1016"
- transform="translate(-10,-10)"
- style=""><path
- inkscape:connector-curvature="0"
- id="path1018"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,50.58 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1020"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,102.32 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1022"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,154.06 h 4.25" /></g><g
- id="g1024"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1026"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1028"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1030"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1046"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1048"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath1054)"
- id="g1050"
- style=""><path
- inkscape:connector-curvature="0"
- id="path1056"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 835.22,202.71 H 849.6 V 364.54 H 835.22 Z" /><text
- id="text1060"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0,-1,-1,0,838.82,305.86)"><tspan
- id="tspan1058"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 19.450001 25.01 33.34 38.900002">H3K4me3</tspan></text>
- </g></g><g
- id="g1062"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1064"
- transform="translate(-10,-10)"
- style=""><g
- clip-path="url(#clipPath1070)"
- id="g1066"
- style=""><path
- inkscape:connector-curvature="0"
- id="path1072"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 835.22,37.28 H 849.6 V 199.11 H 835.22 Z" /><text
- id="text1076"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0,-1,-1,0,838.82,143.21)"><tspan
- id="tspan1074"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 19.450001 25.01 30.57 38.900002 44.459999">H3K27me3</tspan></text>
- </g></g><g
- id="g1078"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1080"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1088"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1100"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1102"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1104"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1106"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1108"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1116"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1128"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1130"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1132"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1134"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1136"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1144"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1156"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1158"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1160"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1162"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1164"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1172"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1184"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1186"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1188"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1190"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1192"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1200"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1212"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1214"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1216"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1218"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1220"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1228"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1240"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1242"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1244"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1246"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1248"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1256"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1268"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1270"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1272"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1274"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1276"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1284"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1296"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1298"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1300"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1302"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1310"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1318"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1326"
- transform="translate(-10,-10)"
- style="" /><g
- id="g1328"
- transform="translate(-10,-10)"
- style="" /></g><g
- inkscape:groupmode="layer"
- id="layer1"
- inkscape:label="Above"
- transform="translate(-0.89593748,-19.533347)"><g
- style=""
- id="g34"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath40)"
- id="g36"><path
- inkscape:connector-curvature="0"
- id="path42"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 47.06,529.97 h 95.37 v 14.38 H 47.06 Z" /><text
- id="text46"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,74.39,533.57)"><tspan
- id="tspan44"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15 19.75 25.16 27.940001 35.16">Naive.D0</tspan></text>
- </g></g><g
- style=""
- id="g50"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath56)"
- id="g52"><path
- inkscape:connector-curvature="0"
- id="path58"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 146.03,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text62"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,173.36,533.57)"><tspan
- id="tspan60"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15 19.75 25.16 27.940001 35.16">Naive.D1</tspan></text>
- </g></g><g
- style=""
- id="g66"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath72)"
- id="g68"><path
- inkscape:connector-curvature="0"
- id="path74"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 245,529.97 h 95.37 v 14.38 H 245 Z" /><text
- id="text78"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,272.33,533.57)"><tspan
- id="tspan76"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15 19.75 25.16 27.940001 35.16">Naive.D5</tspan></text>
- </g></g><g
- style=""
- id="g82"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath88)"
- id="g84"><path
- inkscape:connector-curvature="0"
- id="path90"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 343.97,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text94"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,368.52,533.57)"><tspan
- id="tspan92"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15 19.75 25.16 27.940001 35.16 40.720001">Naive.D14</tspan></text>
- </g></g><g
- style=""
- id="g98"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath104)"
- id="g100"><path
- inkscape:connector-curvature="0"
- id="path106"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 442.94,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text110"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,464.64,533.57)"><tspan
- id="tspan108"
- sodipodi:role="line"
- y="0"
- x="0 8.3299999 13.89 22.219999 27.780001 31.41 36.41 39.189999 46.41">Memory.D0</tspan></text>
- </g></g><g
- style=""
- id="g114"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath120)"
- id="g116"><path
- inkscape:connector-curvature="0"
- id="path122"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 541.91,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text126"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,563.61,533.57)"><tspan
- id="tspan124"
- sodipodi:role="line"
- y="0"
- x="0 8.3299999 13.89 22.219999 27.780001 31.41 36.41 39.189999 46.41">Memory.D1</tspan></text>
- </g></g><g
- style=""
- id="g130"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath136)"
- id="g132"><path
- inkscape:connector-curvature="0"
- id="path138"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 640.88,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text142"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,662.58,533.57)"><tspan
- id="tspan140"
- sodipodi:role="line"
- y="0"
- x="0 8.3299999 13.89 22.219999 27.780001 31.41 36.41 39.189999 46.41">Memory.D5</tspan></text>
- </g></g><g
- style=""
- id="g162"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath168)"
- id="g164"><path
- inkscape:connector-curvature="0"
- id="path170"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 47.06,368.14 h 95.37 V 529.97 H 47.06 Z" /><path
- inkscape:connector-curvature="0"
- id="path172"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path174"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path176"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path178"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path180"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path182"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 47.06,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path184"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 73.07,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path186"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 116.42,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path188"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.03,379.91 -0.01,0.6 -0.02,0.6 -0.03,0.61 -0.04,0.6 -0.06,0.6 -0.08,0.61 -0.11,0.6 -0.14,0.6 -0.17,0.61 -0.22,0.6 -0.26,0.6 -0.29,0.6 -0.34,0.61 -0.36,0.6 -0.38,0.6 -0.37,0.61 -0.36,0.6 -0.33,0.6 -0.3,0.61 -0.27,0.6 -0.23,0.6 -0.2,0.61 -0.17,0.6 -0.16,0.6 -0.15,0.61 -0.15,0.6 -0.16,0.6 -0.19,0.61 -0.22,0.6 -0.24,0.6 -0.29,0.61 -0.33,0.6 -0.39,0.6 -0.45,0.61 -0.53,0.6 -0.6,0.6 -0.67,0.61 -0.71,0.6 -0.74,0.6 -0.73,0.61 -0.71,0.6 -0.68,0.6 -0.66,0.61 -0.65,0.6 -0.66,0.6 -0.68,0.61 -0.7,0.6 -0.69,0.6 -0.67,0.61 -0.62,0.6 -0.52,0.6 -0.41,0.61 -0.26,0.6 -0.1,0.6 0.05,0.61 0.2,0.6 0.31,0.6 0.37,0.61 0.4,0.6 0.41,0.6 0.41,0.61 0.41,0.6 0.4,0.6 0.42,0.61 0.43,0.6 0.43,0.6 0.43,0.61 0.43,0.6 0.44,0.6 0.44,0.61 0.44,0.6 0.45,0.6 0.45,0.61 0.43,0.6 0.41,0.6 0.38,0.61 0.35,0.6 0.32,0.6 0.29,0.61 0.29,0.6 0.29,0.6 0.31,0.61 0.34,0.6 0.36,0.6 0.37,0.61 0.36,0.6 0.32,0.6 0.28,0.61 0.23,0.6 0.2,0.6 0.19,0.61 0.22,0.6 0.24,0.6 0.29,0.61 0.33,0.6 0.35,0.6 0.35,0.61 0.33,0.6 0.29,0.6 0.25,0.6 0.21,0.61 0.17,0.6 0.15,0.6 0.13,0.61 0.12,0.6 0.12,0.6 0.11,0.61 0.1,0.6 0.08,0.6 0.07,0.61 0.07,0.6 0.07,0.6 0.07,0.61 0.08,0.6 0.09,0.6 0.11,0.61 0.13,0.6 0.14,0.6 0.14,0.61 0.14,0.6 0.14,0.6 0.12,0.61 0.1,0.6 0.08,0.6 0.07,0.61 0.06,0.6 0.05,0.6 0.05,0.61 0.05,0.6 0.05,0.6 0.06,0.61 0.06,0.6 0.05,0.6 0.06,0.61 0.05,0.6 0.04,0.6 0.04,0.61 0.04,0.6 0.03,0.6 0.02,0.61 0.03,0.6 0.02,0.6 0.02,0.61 0.03,0.6 0.02,0.6 0.02,0.61 0.02,0.6 0.02,0.6 0.01,0.61 0.02,0.6 0.01,0.6 0.01,0.61 0.01,0.6 v 0.6 l 0.01,0.61 v 0.6 0.6 0.61 0.6 0.6 0.61 0.6 0.6 l 0.01,0.61 v 0.6 0.6 l 0.01,0.61 v 0.6 0.6 0.61 0.6 0.6 l -0.01,0.61 v 0.6 0.6 0.61 0.6 h 0.07 v -0.6 -0.61 -0.6 l -0.01,-0.6 v -0.61 -0.6 l -0.01,-0.6 v -0.61 l 0.01,-0.6 v -0.6 -0.61 -0.6 l 0.01,-0.6 v -0.61 -0.6 -0.6 -0.61 -0.6 -0.6 -0.61 l 0.01,-0.6 v -0.6 -0.61 l 0.01,-0.6 0.01,-0.6 0.01,-0.61 0.01,-0.6 0.01,-0.6 0.02,-0.61 0.02,-0.6 0.02,-0.6 0.02,-0.61 0.02,-0.6 0.02,-0.6 0.03,-0.61 0.02,-0.6 0.02,-0.6 0.03,-0.61 0.03,-0.6 0.03,-0.6 0.04,-0.61 0.05,-0.6 0.05,-0.6 0.05,-0.61 0.06,-0.6 0.06,-0.6 0.05,-0.61 0.05,-0.6 0.05,-0.6 0.05,-0.61 0.06,-0.6 0.05,-0.6 0.07,-0.61 0.09,-0.6 0.1,-0.6 0.12,-0.61 0.13,-0.6 0.14,-0.6 0.15,-0.61 0.13,-0.6 0.13,-0.6 0.11,-0.61 0.1,-0.6 0.08,-0.6 0.07,-0.61 0.06,-0.6 0.07,-0.6 0.07,-0.61 0.09,-0.6 0.09,-0.6 0.11,-0.61 0.12,-0.6 0.12,-0.6 0.14,-0.61 0.15,-0.6 0.17,-0.6 0.2,-0.61 0.25,-0.6 0.3,-0.6 0.32,-0.6 0.35,-0.61 0.35,-0.6 0.33,-0.6 0.29,-0.61 0.25,-0.6 0.21,-0.6 0.2,-0.61 0.2,-0.6 0.23,-0.6 0.27,-0.61 0.32,-0.6 0.36,-0.6 0.37,-0.61 0.36,-0.6 0.35,-0.6 0.31,-0.61 0.29,-0.6 0.28,-0.6 0.29,-0.61 0.32,-0.6 0.35,-0.6 0.38,-0.61 0.41,-0.6 0.44,-0.6 0.44,-0.61 0.45,-0.6 0.45,-0.6 0.44,-0.61 0.43,-0.6 0.44,-0.6 0.43,-0.61 0.43,-0.6 0.42,-0.6 0.42,-0.61 0.41,-0.6 0.4,-0.6 0.41,-0.61 0.41,-0.6 0.41,-0.6 0.37,-0.61 0.3,-0.6 0.2,-0.6 0.06,-0.61 -0.11,-0.6 -0.26,-0.6 -0.4,-0.61 -0.53,-0.6 -0.62,-0.6 -0.67,-0.61 -0.69,-0.6 -0.69,-0.6 -0.68,-0.61 -0.66,-0.6 -0.66,-0.6 -0.66,-0.61 -0.68,-0.6 -0.71,-0.6 -0.73,-0.61 -0.73,-0.6 -0.72,-0.6 -0.67,-0.61 -0.6,-0.6 -0.53,-0.6 -0.45,-0.61 -0.38,-0.6 -0.33,-0.6 -0.29,-0.61 -0.25,-0.6 -0.21,-0.6 -0.19,-0.61 -0.17,-0.6 -0.15,-0.6 -0.15,-0.61 -0.15,-0.6 -0.18,-0.6 -0.2,-0.61 -0.23,-0.6 -0.26,-0.6 -0.3,-0.61 -0.34,-0.6 -0.35,-0.6 -0.38,-0.61 -0.37,-0.6 -0.37,-0.6 -0.33,-0.61 -0.3,-0.6 -0.26,-0.6 -0.21,-0.6 -0.18,-0.61 -0.13,-0.6 -0.11,-0.6 -0.08,-0.61 -0.06,-0.6 -0.05,-0.6 -0.03,-0.61 -0.02,-0.6 -0.01,-0.6 z" /><path
- inkscape:connector-curvature="0"
- id="path190"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 116.37,384.44 -0.03,0.69 -0.02,0.68 -0.04,0.69 -0.04,0.69 -0.04,0.68 -0.05,0.69 -0.06,0.68 -0.05,0.69 -0.05,0.68 -0.04,0.69 -0.04,0.69 -0.01,0.68 v 0.69 l 0.02,0.68 0.03,0.69 0.04,0.68 0.03,0.69 0.03,0.69 v 0.68 l -0.02,0.69 -0.03,0.68 -0.06,0.69 -0.07,0.68 -0.08,0.69 -0.09,0.69 -0.11,0.68 -0.12,0.69 -0.12,0.68 -0.13,0.69 -0.14,0.68 -0.14,0.69 -0.16,0.69 -0.16,0.68 -0.17,0.69 -0.18,0.68 -0.19,0.69 -0.18,0.68 -0.18,0.69 -0.17,0.69 -0.16,0.68 -0.17,0.69 -0.17,0.68 -0.17,0.69 -0.16,0.69 -0.15,0.68 -0.12,0.69 -0.1,0.68 -0.09,0.69 -0.08,0.68 -0.09,0.69 -0.09,0.69 -0.11,0.68 -0.13,0.69 -0.14,0.68 -0.16,0.69 -0.19,0.68 -0.22,0.69 -0.26,0.69 -0.29,0.68 -0.3,0.69 -0.3,0.68 -0.28,0.69 -0.26,0.68 -0.25,0.69 -0.27,0.69 -0.28,0.68 -0.3,0.69 -0.3,0.68 -0.3,0.69 -0.3,0.68 -0.34,0.69 -0.41,0.69 -0.48,0.68 -0.56,0.69 -0.6,0.68 -0.63,0.69 -0.64,0.68 -0.66,0.69 -0.67,0.69 -0.68,0.68 -0.67,0.69 -0.65,0.68 -0.6,0.69 -0.56,0.68 -0.51,0.69 -0.45,0.69 -0.37,0.68 -0.27,0.69 -0.16,0.68 -0.05,0.69 0.04,0.68 0.14,0.69 0.24,0.69 0.34,0.68 0.43,0.69 0.52,0.68 0.6,0.69 0.63,0.68 0.67,0.69 0.7,0.69 0.73,0.68 0.79,0.69 0.82,0.68 0.85,0.69 0.83,0.68 0.78,0.69 0.73,0.69 0.66,0.68 0.61,0.69 0.57,0.68 0.55,0.69 0.52,0.68 0.5,0.69 0.47,0.69 0.47,0.68 0.44,0.69 0.42,0.68 0.39,0.69 0.36,0.68 0.33,0.69 0.28,0.69 0.25,0.68 0.22,0.69 0.18,0.68 0.17,0.69 0.16,0.68 0.15,0.69 0.14,0.69 0.14,0.68 0.12,0.69 0.11,0.68 0.1,0.69 0.09,0.68 0.08,0.69 0.07,0.69 0.07,0.68 0.05,0.69 0.05,0.68 0.04,0.69 0.03,0.68 0.02,0.69 0.01,0.69 0.01,0.68 0.01,0.69 -0.01,0.68 -0.01,0.69 v 0.68 l -0.01,0.69 0.01,0.69 0.01,0.68 0.02,0.69 0.02,0.68 0.01,0.69 0.02,0.68 0.01,0.69 0.02,0.69 0.01,0.68 0.01,0.69 0.01,0.68 0.01,0.69 v 0.68 0.69 0.69 0.68 0.69 0.68 l 0.01,0.69 0.01,0.68 0.01,0.69 0.01,0.69 0.02,0.68 0.02,0.69 0.02,0.68 0.01,0.69 0.02,0.68 0.01,0.69 0.01,0.69 0.01,0.68 v 0.69 l 0.01,0.68 0.01,0.69 h 0.07 v -0.69 l 0.01,-0.68 0.01,-0.69 0.01,-0.68 v -0.69 l 0.02,-0.69 0.01,-0.68 0.02,-0.69 0.02,-0.68 0.02,-0.69 0.01,-0.68 0.02,-0.69 0.01,-0.69 0.01,-0.68 v -0.69 l 0.01,-0.68 v -0.69 l -0.01,-0.68 v -0.69 -0.69 -0.68 l 0.01,-0.69 0.01,-0.68 0.01,-0.69 0.02,-0.68 0.01,-0.69 0.02,-0.69 0.01,-0.68 0.02,-0.69 0.02,-0.68 0.01,-0.69 0.02,-0.68 v -0.69 -0.69 l -0.01,-0.68 -0.01,-0.69 v -0.68 -0.69 l 0.01,-0.68 0.02,-0.69 0.02,-0.69 0.03,-0.68 0.03,-0.69 0.05,-0.68 0.06,-0.69 0.06,-0.68 0.07,-0.69 0.08,-0.69 0.09,-0.68 0.1,-0.69 0.11,-0.68 0.13,-0.69 0.13,-0.68 0.15,-0.69 0.15,-0.69 0.15,-0.68 0.17,-0.69 0.19,-0.68 0.21,-0.69 0.25,-0.68 0.29,-0.69 0.32,-0.69 0.36,-0.68 0.4,-0.69 0.42,-0.68 0.44,-0.69 0.46,-0.68 0.48,-0.69 0.5,-0.69 0.52,-0.68 0.54,-0.69 0.58,-0.68 0.61,-0.69 0.66,-0.68 0.72,-0.69 0.78,-0.69 0.84,-0.68 0.84,-0.69 0.83,-0.68 0.78,-0.69 0.73,-0.68 0.7,-0.69 0.67,-0.69 0.64,-0.68 0.59,-0.69 0.53,-0.68 0.43,-0.69 0.33,-0.68 0.24,-0.69 0.14,-0.69 0.05,-0.68 -0.05,-0.69 -0.17,-0.68 -0.27,-0.69 -0.36,-0.68 -0.45,-0.69 -0.51,-0.69 -0.56,-0.68 -0.61,-0.69 -0.65,-0.68 -0.67,-0.69 -0.68,-0.68 -0.67,-0.69 -0.65,-0.69 -0.64,-0.68 -0.63,-0.69 -0.61,-0.68 -0.55,-0.69 -0.48,-0.68 -0.41,-0.69 -0.34,-0.69 -0.31,-0.68 -0.29,-0.69 -0.3,-0.68 -0.3,-0.69 -0.29,-0.68 -0.26,-0.69 -0.26,-0.69 -0.26,-0.68 -0.27,-0.69 -0.3,-0.68 -0.31,-0.69 -0.28,-0.68 -0.26,-0.69 -0.23,-0.69 -0.19,-0.68 -0.16,-0.69 -0.14,-0.68 -0.12,-0.69 -0.11,-0.68 -0.1,-0.69 -0.08,-0.69 -0.08,-0.68 -0.09,-0.69 -0.11,-0.68 -0.12,-0.69 -0.14,-0.68 -0.16,-0.69 -0.17,-0.69 -0.17,-0.68 -0.17,-0.69 -0.17,-0.68 -0.17,-0.69 -0.18,-0.69 -0.18,-0.68 -0.19,-0.69 -0.18,-0.68 -0.17,-0.69 -0.16,-0.68 -0.15,-0.69 -0.14,-0.69 -0.14,-0.68 -0.13,-0.69 -0.13,-0.68 -0.12,-0.69 -0.1,-0.68 -0.09,-0.69 -0.09,-0.69 -0.07,-0.68 -0.05,-0.69 -0.04,-0.68 -0.02,-0.69 0.01,-0.68 0.02,-0.69 0.04,-0.69 0.04,-0.68 0.03,-0.69 0.02,-0.68 v -0.69 l -0.02,-0.68 -0.03,-0.69 -0.05,-0.69 -0.05,-0.68 -0.05,-0.69 -0.05,-0.68 -0.05,-0.69 -0.05,-0.68 -0.04,-0.69 -0.03,-0.69 -0.03,-0.68 -0.02,-0.69 z" /></g></g><g
- style=""
- id="g258"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath264)"
- id="g260"><path
- inkscape:connector-curvature="0"
- id="path266"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 146.03,368.14 H 241.4 V 529.97 H 146.03 Z" /><path
- inkscape:connector-curvature="0"
- id="path268"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,407.31 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path270"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,459.04 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path272"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,510.78 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path274"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,381.44 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path276"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,433.18 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path278"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 146.03,484.91 H 241.4" /><path
- inkscape:connector-curvature="0"
- id="path280"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 172.04,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path282"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 215.39,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path284"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 171.35,376.62 -0.2,0.67 -0.22,0.66 -0.27,0.67 -0.32,0.66 -0.38,0.67 -0.43,0.66 -0.51,0.67 -0.58,0.66 -0.66,0.67 -0.75,0.66 -0.84,0.66 -0.92,0.67 -0.99,0.66 -1.06,0.67 -1.1,0.66 -1.11,0.67 -1.1,0.66 -1.05,0.67 -0.99,0.66 -0.88,0.67 -0.77,0.66 -0.65,0.66 -0.51,0.67 -0.37,0.66 -0.25,0.67 -0.12,0.66 -0.02,0.67 0.07,0.66 0.15,0.67 0.2,0.66 0.25,0.67 0.29,0.66 0.31,0.66 0.34,0.67 0.37,0.66 0.37,0.67 0.38,0.66 0.37,0.67 0.35,0.66 0.32,0.67 0.27,0.66 0.22,0.66 0.16,0.67 0.12,0.66 0.05,0.67 0.01,0.66 -0.03,0.67 -0.07,0.66 -0.1,0.67 -0.13,0.66 -0.15,0.67 -0.16,0.66 -0.18,0.66 -0.18,0.67 -0.17,0.66 -0.15,0.67 -0.12,0.66 -0.06,0.67 -0.01,0.66 0.07,0.67 0.13,0.66 0.21,0.67 0.26,0.66 0.3,0.66 0.34,0.67 0.34,0.66 0.36,0.67 0.36,0.66 0.35,0.67 0.37,0.66 0.36,0.67 0.38,0.66 0.39,0.67 0.4,0.66 0.41,0.66 0.4,0.67 0.4,0.66 0.38,0.67 0.36,0.66 0.34,0.67 0.31,0.66 0.3,0.67 0.28,0.66 0.26,0.66 0.26,0.67 0.25,0.66 0.26,0.67 0.27,0.66 0.27,0.67 0.29,0.66 0.29,0.67 0.3,0.66 0.3,0.67 0.29,0.66 0.27,0.66 0.24,0.67 0.23,0.66 0.2,0.67 0.19,0.66 0.17,0.67 0.17,0.66 0.16,0.67 0.16,0.66 0.16,0.67 0.14,0.66 0.13,0.66 0.12,0.67 0.1,0.66 0.09,0.67 0.07,0.66 0.07,0.67 0.07,0.66 0.06,0.67 0.07,0.66 0.06,0.67 0.06,0.66 0.05,0.66 0.05,0.67 0.05,0.66 0.05,0.67 0.05,0.66 0.05,0.67 0.04,0.66 0.04,0.67 0.04,0.66 0.03,0.66 0.01,0.67 0.02,0.66 v 0.67 0.66 0.67 0.66 0.67 0.66 l 0.01,0.67 V 467 l 0.01,0.66 0.01,0.67 v 0.66 0.67 0.66 0.67 0.66 l 0.01,0.67 v 0.66 l 0.01,0.67 0.01,0.66 0.01,0.66 0.01,0.67 0.01,0.66 0.01,0.67 0.01,0.66 0.01,0.67 0.01,0.66 0.01,0.67 0.01,0.66 0.02,0.66 0.01,0.67 0.01,0.66 v 0.67 l 0.01,0.66 v 0.67 0.66 0.67 0.66 l 0.01,0.67 v 0.66 l 0.01,0.66 0.01,0.67 0.02,0.66 0.01,0.67 h 0.16 l 0.02,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.66 v -0.67 -0.66 l 0.01,-0.67 v -0.66 -0.67 -0.66 l 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.66 0.01,-0.66 0.01,-0.67 0.01,-0.66 v -0.67 -0.66 l 0.01,-0.67 v -0.66 -0.67 -0.66 -0.67 l 0.01,-0.66 0.01,-0.66 v -0.67 l 0.01,-0.66 v -0.67 -0.66 l -0.01,-0.67 v -0.66 l 0.01,-0.67 0.01,-0.66 0.02,-0.67 0.03,-0.66 0.03,-0.66 0.04,-0.67 0.05,-0.66 0.04,-0.67 0.05,-0.66 0.05,-0.67 0.05,-0.66 0.05,-0.67 0.06,-0.66 0.06,-0.66 0.06,-0.67 0.06,-0.66 0.06,-0.67 0.07,-0.66 0.07,-0.67 0.08,-0.66 0.08,-0.67 0.1,-0.66 0.12,-0.67 0.13,-0.66 0.15,-0.66 0.15,-0.67 0.16,-0.66 0.16,-0.67 0.17,-0.66 0.17,-0.67 0.19,-0.66 0.2,-0.67 0.23,-0.66 0.25,-0.67 0.27,-0.66 0.29,-0.66 0.29,-0.67 0.3,-0.66 0.3,-0.67 0.28,-0.66 0.28,-0.67 0.26,-0.66 0.26,-0.67 0.26,-0.66 0.26,-0.67 0.26,-0.66 0.28,-0.66 0.29,-0.67 0.32,-0.66 0.33,-0.67 0.37,-0.66 0.38,-0.67 0.39,-0.66 0.41,-0.67 0.4,-0.66 0.4,-0.66 0.39,-0.67 0.38,-0.66 0.37,-0.67 0.36,-0.66 0.36,-0.67 0.35,-0.66 0.36,-0.67 0.35,-0.66 0.33,-0.67 0.31,-0.66 0.26,-0.66 0.2,-0.67 0.14,-0.66 0.06,-0.67 v -0.66 l -0.07,-0.67 -0.11,-0.66 -0.15,-0.67 -0.18,-0.66 -0.17,-0.67 -0.18,-0.66 -0.17,-0.66 -0.14,-0.67 -0.13,-0.66 -0.1,-0.67 -0.07,-0.66 -0.04,-0.67 0.01,-0.66 0.06,-0.67 0.11,-0.66 0.17,-0.67 0.22,-0.66 0.27,-0.66 0.31,-0.67 0.35,-0.66 0.37,-0.67 0.38,-0.66 0.38,-0.67 0.36,-0.66 0.34,-0.67 0.32,-0.66 0.29,-0.66 0.24,-0.67 0.21,-0.66 0.14,-0.67 0.07,-0.66 -0.01,-0.67 -0.13,-0.66 -0.24,-0.67 -0.38,-0.66 -0.51,-0.67 -0.64,-0.66 -0.77,-0.66 -0.89,-0.67 -0.98,-0.66 -1.06,-0.67 -1.1,-0.66 -1.11,-0.67 -1.1,-0.66 -1.05,-0.67 -1,-0.66 -0.92,-0.67 -0.83,-0.66 -0.75,-0.66 -0.67,-0.67 -0.58,-0.66 -0.5,-0.67 -0.44,-0.66 -0.37,-0.67 -0.32,-0.66 -0.27,-0.67 -0.23,-0.66 -0.19,-0.67 z" /><path
- inkscape:connector-curvature="0"
- id="path286"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 215.32,378.11 -0.02,0.76 -0.03,0.77 -0.03,0.76 -0.04,0.76 -0.05,0.77 -0.05,0.76 -0.06,0.76 -0.07,0.77 -0.08,0.76 -0.09,0.76 -0.08,0.77 -0.09,0.76 -0.09,0.76 -0.08,0.77 -0.08,0.76 -0.08,0.76 -0.07,0.77 -0.06,0.76 -0.06,0.76 -0.04,0.77 -0.04,0.76 -0.03,0.76 -0.04,0.77 -0.05,0.76 -0.05,0.76 -0.07,0.77 -0.08,0.76 -0.1,0.76 -0.1,0.77 -0.11,0.76 -0.11,0.76 -0.1,0.77 -0.11,0.76 -0.1,0.76 -0.11,0.77 -0.12,0.76 -0.12,0.76 -0.13,0.77 -0.12,0.76 -0.12,0.76 -0.12,0.77 -0.11,0.76 -0.13,0.76 -0.13,0.77 -0.16,0.76 -0.2,0.76 -0.25,0.77 -0.29,0.76 -0.33,0.76 -0.34,0.77 -0.31,0.76 -0.26,0.76 -0.18,0.77 -0.12,0.76 -0.07,0.76 -0.05,0.77 -0.05,0.76 -0.05,0.76 -0.08,0.77 -0.1,0.76 -0.16,0.76 -0.2,0.77 -0.26,0.76 -0.31,0.76 -0.35,0.77 -0.38,0.76 -0.41,0.76 -0.41,0.77 -0.42,0.76 -0.43,0.76 -0.43,0.77 -0.43,0.76 -0.44,0.76 -0.45,0.77 -0.47,0.76 -0.5,0.76 -0.54,0.77 -0.56,0.76 -0.57,0.76 -0.58,0.77 -0.56,0.76 -0.51,0.76 -0.46,0.77 -0.44,0.76 -0.42,0.76 -0.42,0.77 -0.44,0.76 -0.42,0.76 -0.4,0.77 -0.33,0.76 -0.23,0.76 -0.12,0.77 0.02,0.76 0.15,0.76 0.25,0.77 0.31,0.76 0.36,0.76 0.38,0.77 0.41,0.76 0.47,0.76 0.54,0.77 0.61,0.76 0.68,0.77 0.74,0.76 0.78,0.76 0.8,0.77 0.8,0.76 0.79,0.76 0.77,0.77 0.75,0.76 0.72,0.76 0.69,0.77 0.65,0.76 0.6,0.76 0.55,0.77 0.52,0.76 0.49,0.76 0.47,0.77 0.45,0.76 0.44,0.76 0.4,0.77 0.39,0.76 0.36,0.76 0.35,0.77 0.34,0.76 0.34,0.76 0.32,0.77 0.28,0.76 0.24,0.76 0.19,0.77 0.16,0.76 0.12,0.76 0.1,0.77 0.07,0.76 0.05,0.76 0.03,0.77 0.01,0.76 v 0.76 0.77 0.76 l 0.01,0.76 0.02,0.77 0.02,0.76 0.03,0.76 0.03,0.77 0.03,0.76 0.02,0.76 0.03,0.77 0.03,0.76 0.03,0.76 0.04,0.77 0.05,0.76 0.04,0.76 0.04,0.77 0.04,0.76 0.03,0.76 0.02,0.77 0.02,0.76 0.01,0.76 0.01,0.77 0.01,0.76 v 0.76 0.77 0.76 0.76 0.77 l 0.01,0.76 v 0.76 0.77 0.76 0.76 0.77 0.76 l -0.01,0.76 v 0.77 0.76 0.76 0.77 0.76 0.76 0.77 h 0.02 v -0.77 l 0.01,-0.76 v -0.76 l -0.01,-0.77 v -0.76 -0.76 -0.77 -0.76 -0.76 l -0.01,-0.77 v -0.76 -0.76 l 0.01,-0.77 v -0.76 -0.76 -0.77 -0.76 -0.76 -0.77 l 0.01,-0.76 v -0.76 l 0.01,-0.77 0.01,-0.76 0.02,-0.76 0.02,-0.77 0.03,-0.76 0.04,-0.76 0.04,-0.77 0.05,-0.76 0.04,-0.76 0.04,-0.77 0.03,-0.76 0.03,-0.76 0.03,-0.77 0.03,-0.76 0.02,-0.76 0.03,-0.77 0.03,-0.76 0.02,-0.76 0.02,-0.77 0.01,-0.76 v -0.76 -0.77 -0.76 l 0.01,-0.76 0.03,-0.77 0.05,-0.76 0.07,-0.76 0.1,-0.77 0.13,-0.76 0.15,-0.76 0.2,-0.77 0.24,-0.76 0.28,-0.76 0.31,-0.77 0.34,-0.76 0.35,-0.76 0.35,-0.77 0.36,-0.76 0.38,-0.76 0.41,-0.77 0.43,-0.76 0.46,-0.76 0.47,-0.77 0.49,-0.76 0.51,-0.76 0.56,-0.77 0.6,-0.76 0.65,-0.76 0.68,-0.77 0.73,-0.76 0.75,-0.76 0.77,-0.77 0.79,-0.76 0.8,-0.76 0.79,-0.77 0.78,-0.76 0.74,-0.76 0.68,-0.77 0.62,-0.76 0.53,-0.77 0.47,-0.76 0.41,-0.76 0.38,-0.77 0.36,-0.76 0.32,-0.76 0.24,-0.77 0.15,-0.76 0.02,-0.76 -0.12,-0.77 -0.23,-0.76 -0.33,-0.76 -0.39,-0.77 -0.43,-0.76 -0.43,-0.76 -0.43,-0.77 -0.42,-0.76 -0.43,-0.76 -0.47,-0.77 -0.51,-0.76 -0.55,-0.76 -0.58,-0.77 -0.58,-0.76 -0.56,-0.76 -0.53,-0.77 -0.5,-0.76 -0.47,-0.76 -0.46,-0.77 -0.44,-0.76 -0.43,-0.76 -0.43,-0.77 -0.43,-0.76 -0.42,-0.76 -0.41,-0.77 -0.4,-0.76 -0.38,-0.76 -0.35,-0.77 -0.31,-0.76 -0.27,-0.76 -0.2,-0.77 -0.15,-0.76 -0.11,-0.76 -0.08,-0.77 -0.05,-0.76 -0.04,-0.76 -0.05,-0.77 -0.08,-0.76 -0.12,-0.76 -0.18,-0.77 -0.25,-0.76 -0.31,-0.76 -0.34,-0.77 -0.33,-0.76 -0.3,-0.76 -0.24,-0.77 -0.2,-0.76 -0.16,-0.76 -0.14,-0.77 -0.12,-0.76 -0.12,-0.76 -0.11,-0.77 -0.13,-0.76 -0.12,-0.76 -0.13,-0.77 -0.12,-0.76 -0.12,-0.76 -0.1,-0.77 -0.11,-0.76 -0.1,-0.76 -0.11,-0.77 -0.11,-0.76 -0.11,-0.76 -0.1,-0.77 -0.09,-0.76 -0.08,-0.76 -0.07,-0.77 -0.06,-0.76 -0.04,-0.76 -0.04,-0.77 -0.04,-0.76 -0.03,-0.76 -0.05,-0.77 -0.05,-0.76 -0.07,-0.76 -0.07,-0.77 -0.08,-0.76 -0.08,-0.76 -0.08,-0.77 -0.08,-0.76 -0.09,-0.76 -0.09,-0.77 -0.08,-0.76 -0.08,-0.76 -0.07,-0.77 -0.06,-0.76 -0.06,-0.76 -0.05,-0.77 -0.04,-0.76 -0.03,-0.76 -0.03,-0.77 -0.02,-0.76 z" /></g></g><g
- style=""
- id="g354"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath360)"
- id="g356"><path
- inkscape:connector-curvature="0"
- id="path362"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 245,368.14 h 95.37 V 529.97 H 245 Z" /><path
- inkscape:connector-curvature="0"
- id="path364"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path366"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path368"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path370"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path372"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path374"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 245,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path376"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 271.01,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path378"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 314.36,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path380"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 270.58,381.34 -0.17,0.67 -0.21,0.67 -0.28,0.67 -0.34,0.67 -0.41,0.67 -0.48,0.67 -0.55,0.67 -0.6,0.67 -0.63,0.67 -0.66,0.67 -0.67,0.67 -0.65,0.67 -0.64,0.67 -0.6,0.67 -0.58,0.67 -0.55,0.67 -0.54,0.67 -0.52,0.67 -0.53,0.67 -0.53,0.67 -0.55,0.67 -0.55,0.67 -0.53,0.67 -0.51,0.67 -0.44,0.67 -0.37,0.67 -0.28,0.67 -0.21,0.66 -0.14,0.67 -0.11,0.67 -0.13,0.67 -0.16,0.67 -0.22,0.67 -0.27,0.67 -0.31,0.67 -0.32,0.67 -0.3,0.67 -0.26,0.67 -0.21,0.67 -0.16,0.67 -0.12,0.67 -0.09,0.67 -0.07,0.67 -0.05,0.67 -0.03,0.67 v 0.67 l 0.06,0.67 0.13,0.67 0.21,0.67 0.28,0.67 0.37,0.67 0.41,0.67 0.46,0.67 0.46,0.67 0.45,0.67 0.43,0.67 0.39,0.67 0.37,0.66 0.35,0.67 0.35,0.67 0.35,0.67 0.35,0.67 0.37,0.67 0.38,0.67 0.39,0.67 0.39,0.67 0.4,0.67 0.38,0.67 0.37,0.67 0.33,0.67 0.31,0.67 0.27,0.67 0.23,0.67 0.21,0.67 0.19,0.67 0.18,0.67 0.19,0.67 0.19,0.67 0.19,0.67 0.2,0.67 0.21,0.67 0.21,0.67 0.21,0.67 0.22,0.67 0.23,0.67 0.24,0.67 0.24,0.66 0.24,0.67 0.24,0.67 0.23,0.67 0.22,0.67 0.21,0.67 0.2,0.67 0.17,0.67 0.16,0.67 0.13,0.67 0.1,0.67 0.08,0.67 0.08,0.67 0.06,0.67 0.08,0.67 0.09,0.67 0.1,0.67 0.12,0.67 0.13,0.67 0.15,0.67 0.16,0.67 0.15,0.67 0.16,0.67 0.15,0.67 0.13,0.67 0.11,0.67 0.1,0.67 0.08,0.67 0.07,0.67 0.05,0.67 0.05,0.66 0.05,0.67 0.04,0.67 0.05,0.67 0.05,0.67 0.04,0.67 0.05,0.67 0.04,0.67 0.04,0.67 0.04,0.67 0.03,0.67 0.04,0.67 0.03,0.67 0.04,0.67 0.04,0.67 0.03,0.67 0.03,0.67 0.03,0.67 0.03,0.67 0.02,0.67 0.01,0.67 0.01,0.67 v 0.67 l -0.01,0.67 v 0.67 l -0.01,0.67 v 0.67 0.67 0.67 0.67 0.66 l 0.01,0.67 0.01,0.67 v 0.67 l 0.01,0.67 v 0.67 l 0.01,0.67 v 0.67 0.67 0.67 l 0.01,0.67 v 0.67 0.67 l 0.01,0.67 v 0.67 0.67 l 0.01,0.67 v 0.67 0.67 l 0.01,0.67 v 0.67 0.67 0.67 0.67 0.67 0.67 l -0.01,0.67 v 0.67 0.67 h 0.04 v -0.67 -0.67 -0.67 -0.67 l -0.01,-0.67 v -0.67 -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 -0.67 l 0.01,-0.67 v -0.67 l 0.01,-0.67 v -0.67 l 0.01,-0.67 v -0.66 l 0.01,-0.67 v -0.67 l -0.01,-0.67 v -0.67 l -0.01,-0.67 v -0.67 -0.67 -0.67 -0.67 l 0.02,-0.67 0.02,-0.67 0.02,-0.67 0.03,-0.67 0.03,-0.67 0.04,-0.67 0.03,-0.67 0.04,-0.67 0.03,-0.67 0.04,-0.67 0.04,-0.67 0.03,-0.67 0.04,-0.67 0.05,-0.67 0.04,-0.67 0.05,-0.67 0.04,-0.67 0.05,-0.67 0.05,-0.67 0.04,-0.67 0.05,-0.66 0.06,-0.67 0.06,-0.67 0.08,-0.67 0.1,-0.67 0.11,-0.67 0.14,-0.67 0.14,-0.67 0.16,-0.67 0.16,-0.67 0.15,-0.67 0.15,-0.67 0.14,-0.67 0.12,-0.67 0.1,-0.67 0.08,-0.67 0.08,-0.67 0.07,-0.67 0.07,-0.67 0.08,-0.67 0.11,-0.67 0.13,-0.67 0.15,-0.67 0.18,-0.67 0.19,-0.67 0.22,-0.67 0.22,-0.67 0.23,-0.67 0.23,-0.67 0.24,-0.67 0.24,-0.66 0.24,-0.67 0.23,-0.67 0.22,-0.67 0.22,-0.67 0.21,-0.67 0.2,-0.67 0.2,-0.67 0.19,-0.67 0.19,-0.67 0.19,-0.67 0.18,-0.67 0.2,-0.67 0.2,-0.67 0.24,-0.67 0.27,-0.67 0.3,-0.67 0.34,-0.67 0.36,-0.67 0.39,-0.67 0.39,-0.67 0.39,-0.67 0.39,-0.67 0.38,-0.67 0.37,-0.67 0.36,-0.67 0.34,-0.67 0.35,-0.67 0.35,-0.67 0.37,-0.66 0.4,-0.67 0.42,-0.67 0.46,-0.67 0.46,-0.67 0.45,-0.67 0.42,-0.67 0.36,-0.67 0.29,-0.67 0.2,-0.67 0.13,-0.67 0.06,-0.67 0.01,-0.67 -0.03,-0.67 -0.05,-0.67 -0.08,-0.67 -0.09,-0.67 -0.12,-0.67 -0.16,-0.67 -0.21,-0.67 -0.26,-0.67 -0.3,-0.67 -0.32,-0.67 -0.31,-0.67 -0.27,-0.67 -0.21,-0.67 -0.17,-0.67 -0.12,-0.67 -0.12,-0.67 -0.14,-0.67 -0.2,-0.66 -0.29,-0.67 -0.36,-0.67 -0.45,-0.67 -0.5,-0.67 -0.54,-0.67 -0.55,-0.67 -0.54,-0.67 -0.54,-0.67 -0.52,-0.67 -0.53,-0.67 -0.53,-0.67 -0.55,-0.67 -0.58,-0.67 -0.61,-0.67 -0.64,-0.67 -0.65,-0.67 -0.67,-0.67 -0.65,-0.67 -0.64,-0.67 -0.6,-0.67 -0.54,-0.67 -0.48,-0.67 -0.41,-0.67 -0.35,-0.67 -0.27,-0.67 -0.22,-0.67 -0.17,-0.67 z" /><path
- inkscape:connector-curvature="0"
- id="path382"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 314.34,381.24 -0.01,0.68 -0.01,0.68 -0.01,0.68 -0.02,0.67 -0.03,0.68 -0.04,0.68 -0.03,0.68 -0.03,0.68 -0.03,0.68 -0.02,0.68 -0.02,0.67 -0.03,0.68 -0.03,0.68 -0.04,0.68 -0.04,0.68 -0.04,0.68 -0.04,0.67 -0.03,0.68 -0.02,0.68 -0.02,0.68 -0.03,0.68 -0.03,0.68 -0.04,0.67 -0.05,0.68 -0.06,0.68 -0.06,0.68 -0.07,0.68 -0.07,0.68 -0.08,0.68 -0.08,0.67 -0.08,0.68 -0.09,0.68 -0.1,0.68 -0.1,0.68 -0.12,0.68 -0.13,0.67 -0.15,0.68 -0.17,0.68 -0.19,0.68 -0.2,0.68 -0.21,0.68 -0.19,0.68 -0.16,0.67 -0.13,0.68 -0.11,0.68 -0.09,0.68 -0.08,0.68 -0.09,0.68 -0.11,0.67 -0.13,0.68 -0.17,0.68 -0.2,0.68 -0.23,0.68 -0.23,0.68 -0.22,0.68 -0.19,0.67 -0.18,0.68 -0.16,0.68 -0.15,0.68 -0.14,0.68 -0.14,0.68 -0.14,0.67 -0.14,0.68 -0.17,0.68 -0.18,0.68 -0.21,0.68 -0.23,0.68 -0.24,0.67 -0.25,0.68 -0.25,0.68 -0.24,0.68 -0.26,0.68 -0.29,0.68 -0.33,0.68 -0.39,0.67 -0.47,0.68 -0.54,0.68 -0.59,0.68 -0.65,0.68 -0.66,0.68 -0.65,0.67 -0.61,0.68 -0.55,0.68 -0.49,0.68 -0.44,0.68 -0.43,0.68 -0.45,0.68 -0.48,0.67 -0.51,0.68 -0.53,0.68 -0.51,0.68 -0.45,0.68 -0.37,0.68 -0.29,0.67 -0.22,0.68 -0.17,0.68 -0.15,0.68 -0.12,0.68 -0.07,0.68 -0.02,0.68 0.07,0.67 0.17,0.68 0.26,0.68 0.35,0.68 0.45,0.68 0.55,0.68 0.67,0.67 0.78,0.68 0.86,0.68 0.88,0.68 0.86,0.68 0.83,0.68 0.77,0.67 0.72,0.68 0.68,0.68 0.64,0.68 0.58,0.68 0.56,0.68 0.54,0.68 0.53,0.67 0.54,0.68 0.52,0.68 0.51,0.68 0.46,0.68 0.42,0.68 0.38,0.67 0.36,0.68 0.35,0.68 0.35,0.68 0.36,0.68 0.36,0.68 0.34,0.68 0.31,0.67 0.26,0.68 0.22,0.68 0.19,0.68 0.17,0.68 0.15,0.68 0.16,0.67 0.14,0.68 0.13,0.68 0.11,0.68 0.09,0.68 0.08,0.68 0.07,0.68 0.06,0.67 0.06,0.68 0.05,0.68 0.03,0.68 0.02,0.68 0.01,0.68 v 0.67 l 0.01,0.68 0.01,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.03,0.67 0.02,0.68 0.02,0.68 0.01,0.68 0.01,0.68 0.01,0.68 0.01,0.68 0.01,0.67 0.01,0.68 v 0.68 0.68 0.68 0.68 l 0.01,0.67 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.02,0.68 0.01,0.67 0.01,0.68 0.01,0.68 0.01,0.68 h 0.18 l 0.02,-0.68 0.01,-0.68 V 502 l 0.02,-0.67 0.01,-0.68 0.02,-0.68 0.02,-0.68 0.03,-0.68 0.02,-0.68 0.01,-0.68 0.01,-0.67 0.01,-0.68 v -0.68 -0.68 -0.68 -0.68 l 0.01,-0.67 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.01,-0.68 0.02,-0.68 0.02,-0.68 0.03,-0.67 0.04,-0.68 0.03,-0.68 0.02,-0.68 0.02,-0.68 v -0.68 l 0.01,-0.67 0.01,-0.68 0.01,-0.68 0.04,-0.68 0.04,-0.68 0.06,-0.68 0.06,-0.67 0.07,-0.68 0.08,-0.68 0.09,-0.68 0.11,-0.68 0.13,-0.68 0.15,-0.68 0.15,-0.67 0.16,-0.68 0.17,-0.68 0.18,-0.68 0.22,-0.68 0.26,-0.68 0.31,-0.67 0.34,-0.68 0.36,-0.68 0.36,-0.68 0.36,-0.68 0.35,-0.68 0.35,-0.68 0.38,-0.67 0.42,-0.68 0.47,-0.68 0.5,-0.68 0.53,-0.68 0.53,-0.68 0.54,-0.67 0.53,-0.68 0.56,-0.68 0.59,-0.68 0.63,-0.68 0.68,-0.68 0.72,-0.68 0.77,-0.67 0.83,-0.68 0.87,-0.68 0.88,-0.68 0.85,-0.68 0.78,-0.68 0.67,-0.67 0.56,-0.68 0.44,-0.68 0.36,-0.68 0.26,-0.68 0.16,-0.68 0.07,-0.67 -0.01,-0.68 -0.08,-0.68 -0.12,-0.68 -0.14,-0.68 -0.18,-0.68 -0.22,-0.68 -0.29,-0.67 -0.37,-0.68 -0.45,-0.68 -0.5,-0.68 -0.53,-0.68 -0.52,-0.68 -0.48,-0.67 -0.45,-0.68 -0.43,-0.68 -0.44,-0.68 -0.48,-0.68 -0.55,-0.68 -0.61,-0.68 -0.65,-0.67 -0.67,-0.68 -0.64,-0.68 -0.6,-0.68 -0.54,-0.68 -0.46,-0.68 -0.4,-0.67 -0.33,-0.68 -0.29,-0.68 -0.25,-0.68 -0.25,-0.68 -0.25,-0.68 -0.24,-0.68 -0.25,-0.67 -0.23,-0.68 -0.21,-0.68 -0.18,-0.68 -0.16,-0.68 -0.15,-0.68 -0.14,-0.67 -0.13,-0.68 -0.14,-0.68 -0.15,-0.68 -0.16,-0.68 -0.18,-0.68 -0.2,-0.67 -0.22,-0.68 -0.23,-0.68 -0.23,-0.68 -0.2,-0.68 -0.16,-0.68 -0.14,-0.68 -0.1,-0.67 -0.1,-0.68 -0.08,-0.68 -0.09,-0.68 -0.11,-0.68 -0.13,-0.68 -0.16,-0.67 -0.19,-0.68 -0.2,-0.68 -0.21,-0.68 -0.19,-0.68 -0.17,-0.68 -0.15,-0.68 -0.13,-0.67 -0.11,-0.68 -0.11,-0.68 -0.09,-0.68 -0.09,-0.68 -0.09,-0.68 -0.08,-0.67 -0.07,-0.68 -0.08,-0.68 -0.06,-0.68 -0.07,-0.68 -0.06,-0.68 -0.04,-0.68 -0.04,-0.67 -0.04,-0.68 -0.02,-0.68 -0.03,-0.68 -0.02,-0.68 -0.03,-0.68 -0.03,-0.67 -0.04,-0.68 -0.04,-0.68 -0.04,-0.68 -0.04,-0.68 -0.02,-0.68 -0.02,-0.67 -0.03,-0.68 -0.02,-0.68 -0.04,-0.68 -0.03,-0.68 -0.03,-0.68 -0.03,-0.68 -0.02,-0.67 -0.02,-0.68 -0.01,-0.68 v -0.68 z" /></g></g><g
- style=""
- id="g450"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath456)"
- id="g452"><path
- inkscape:connector-curvature="0"
- id="path458"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 343.97,368.14 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path460"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path462"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path464"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path466"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path468"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path470"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 343.97,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path472"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 369.98,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path474"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 413.33,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path476"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 369.42,378.38 -0.2,0.75 -0.25,0.74 -0.31,0.75 -0.37,0.74 -0.45,0.75 -0.54,0.74 -0.63,0.75 -0.72,0.75 -0.82,0.74 -0.89,0.75 -0.94,0.74 -0.97,0.75 -0.97,0.75 -0.93,0.74 -0.88,0.75 -0.8,0.74 -0.68,0.75 -0.56,0.75 -0.42,0.74 -0.29,0.75 -0.18,0.74 -0.08,0.75 v 0.75 l 0.04,0.74 0.06,0.75 0.06,0.74 0.05,0.75 0.05,0.74 0.05,0.75 0.06,0.75 0.08,0.74 0.11,0.75 0.14,0.74 0.18,0.75 0.2,0.75 0.24,0.74 0.24,0.75 0.26,0.74 0.23,0.75 0.22,0.75 0.19,0.74 0.14,0.75 0.1,0.74 0.05,0.75 0.02,0.75 -0.03,0.74 -0.05,0.75 -0.07,0.74 -0.08,0.75 -0.05,0.74 -0.01,0.75 0.03,0.75 0.08,0.74 0.14,0.75 0.17,0.74 0.21,0.75 0.23,0.75 0.24,0.74 0.25,0.75 0.26,0.74 0.26,0.75 0.27,0.75 0.27,0.74 0.27,0.75 0.26,0.74 0.27,0.75 0.28,0.75 0.29,0.74 0.3,0.75 0.32,0.74 0.34,0.75 0.34,0.75 0.35,0.74 0.33,0.75 0.31,0.74 0.29,0.75 0.26,0.74 0.24,0.75 0.23,0.75 0.2,0.74 0.19,0.75 0.17,0.74 0.14,0.75 0.13,0.75 0.11,0.74 0.1,0.75 0.1,0.74 0.09,0.75 0.1,0.75 0.11,0.74 0.11,0.75 0.12,0.74 0.13,0.75 0.14,0.75 0.14,0.74 0.14,0.75 0.14,0.74 0.14,0.75 0.13,0.74 0.11,0.75 0.11,0.75 0.1,0.74 0.09,0.75 0.09,0.74 0.08,0.75 0.07,0.75 0.07,0.74 0.06,0.75 0.04,0.74 0.04,0.75 0.02,0.75 0.02,0.74 v 0.75 0.74 0.75 0.75 l 0.01,0.74 0.01,0.75 0.02,0.74 0.02,0.75 0.02,0.74 0.03,0.75 0.02,0.75 0.01,0.74 0.02,0.75 v 0.74 l 0.01,0.75 v 0.75 l 0.01,0.74 v 0.75 0.74 0.75 0.75 0.74 0.75 0.74 0.75 l -0.01,0.75 v 0.74 l -0.01,0.75 v 0.74 l 0.01,0.75 v 0.75 l 0.01,0.74 0.01,0.75 0.01,0.74 v 0.75 l 0.01,0.74 v 0.75 l 0.01,0.75 v 0.74 0.75 l 0.01,0.74 0.01,0.75 V 494 l 0.01,0.74 0.01,0.75 0.01,0.74 0.01,0.75 0.01,0.75 0.01,0.74 0.01,0.75 0.01,0.74 v 0.75 l 0.01,0.75 v 0.74 0.75 l 0.01,0.74 v 0.75 l -0.01,0.74 v 0.75 0.75 0.74 0.75 0.74 H 370 v -0.74 l -0.01,-0.75 v -0.74 -0.75 -0.75 -0.74 -0.75 -0.74 -0.75 -0.74 l 0.01,-0.75 0.01,-0.75 v -0.74 l 0.01,-0.75 0.01,-0.74 0.01,-0.75 0.01,-0.75 0.01,-0.74 0.01,-0.75 0.01,-0.74 0.01,-0.75 v -0.75 l 0.01,-0.74 v -0.75 l 0.01,-0.74 v -0.75 -0.75 l 0.01,-0.74 v -0.75 l 0.01,-0.74 0.01,-0.75 0.01,-0.74 0.01,-0.75 v -0.75 -0.74 -0.75 l -0.01,-0.74 v -0.75 l -0.01,-0.75 v -0.74 -0.75 -0.74 -0.75 -0.75 l 0.01,-0.74 v -0.75 -0.74 -0.75 l 0.01,-0.75 0.01,-0.74 0.01,-0.75 0.02,-0.74 0.02,-0.75 0.02,-0.75 0.03,-0.74 0.02,-0.75 0.01,-0.74 0.01,-0.75 0.01,-0.74 v -0.75 -0.75 -0.74 l 0.01,-0.75 0.01,-0.74 0.02,-0.75 0.04,-0.75 0.05,-0.74 0.05,-0.75 0.07,-0.74 0.07,-0.75 0.08,-0.75 0.09,-0.74 0.09,-0.75 0.1,-0.74 0.11,-0.75 0.12,-0.75 0.13,-0.74 0.13,-0.75 0.14,-0.74 0.14,-0.75 0.15,-0.74 0.13,-0.75 0.13,-0.75 0.12,-0.74 0.12,-0.75 0.1,-0.74 0.1,-0.75 0.09,-0.75 0.1,-0.74 0.1,-0.75 0.11,-0.74 0.13,-0.75 0.15,-0.75 0.16,-0.74 0.19,-0.75 0.21,-0.74 0.22,-0.75 0.24,-0.75 0.27,-0.74 0.29,-0.75 0.31,-0.74 0.33,-0.75 0.34,-0.74 0.35,-0.75 0.33,-0.75 0.32,-0.74 0.31,-0.75 0.28,-0.74 0.28,-0.75 0.27,-0.75 0.27,-0.74 0.27,-0.75 0.27,-0.74 0.26,-0.75 0.27,-0.75 0.25,-0.74 0.25,-0.75 0.24,-0.74 0.23,-0.75 0.21,-0.75 0.18,-0.74 0.13,-0.75 0.08,-0.74 0.04,-0.75 -0.02,-0.75 -0.05,-0.74 -0.07,-0.75 -0.07,-0.74 -0.06,-0.75 -0.02,-0.74 0.01,-0.75 0.05,-0.75 0.1,-0.74 0.15,-0.75 0.18,-0.74 0.22,-0.75 0.24,-0.75 0.25,-0.74 0.25,-0.75 0.23,-0.74 0.21,-0.75 0.17,-0.75 0.14,-0.74 0.11,-0.75 0.08,-0.74 0.06,-0.75 0.05,-0.75 0.05,-0.74 0.06,-0.75 0.06,-0.74 0.06,-0.75 0.03,-0.74 v -0.75 l -0.08,-0.75 -0.17,-0.74 -0.3,-0.75 -0.42,-0.74 -0.56,-0.75 -0.68,-0.75 -0.79,-0.74 -0.88,-0.75 -0.94,-0.74 -0.97,-0.75 -0.97,-0.75 -0.94,-0.74 -0.89,-0.75 -0.81,-0.74 -0.73,-0.75 -0.63,-0.75 -0.54,-0.74 -0.45,-0.75 -0.37,-0.74 -0.31,-0.75 -0.24,-0.74 -0.21,-0.75 z" /><path
- inkscape:connector-curvature="0"
- id="path478"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 413.32,377.09 -0.01,0.78 v 0.78 l -0.01,0.79 -0.01,0.78 -0.01,0.78 -0.02,0.78 -0.02,0.79 -0.03,0.78 -0.03,0.78 -0.04,0.79 -0.05,0.78 -0.05,0.78 -0.05,0.78 -0.05,0.79 -0.06,0.78 -0.08,0.78 -0.08,0.79 -0.07,0.78 -0.06,0.78 -0.02,0.78 -0.01,0.79 v 0.78 l -0.01,0.78 -0.05,0.79 -0.07,0.78 -0.09,0.78 -0.1,0.78 -0.09,0.79 -0.08,0.78 -0.05,0.78 -0.04,0.79 -0.03,0.78 -0.01,0.78 -0.02,0.78 -0.02,0.79 -0.05,0.78 -0.07,0.78 -0.1,0.79 -0.11,0.78 -0.12,0.78 -0.12,0.78 -0.12,0.79 -0.13,0.78 -0.11,0.78 -0.09,0.79 -0.11,0.78 -0.13,0.78 -0.18,0.78 -0.22,0.79 -0.23,0.78 -0.2,0.78 -0.14,0.79 -0.05,0.78 0.02,0.78 0.04,0.78 0.02,0.79 -0.03,0.78 -0.09,0.78 -0.15,0.79 -0.2,0.78 -0.24,0.78 -0.28,0.78 -0.27,0.79 -0.26,0.78 -0.21,0.78 -0.19,0.78 -0.17,0.79 -0.21,0.78 -0.26,0.78 -0.35,0.79 -0.4,0.78 -0.45,0.78 -0.46,0.78 -0.51,0.79 -0.59,0.78 -0.7,0.78 -0.83,0.79 -0.91,0.78 -0.95,0.78 -0.89,0.78 -0.82,0.79 -0.74,0.78 -0.71,0.78 -0.75,0.79 -0.8,0.78 -0.8,0.78 -0.71,0.78 -0.54,0.79 -0.31,0.78 -0.1,0.78 0.07,0.79 0.19,0.78 0.26,0.78 0.34,0.78 0.43,0.79 0.51,0.78 0.57,0.78 0.61,0.79 0.66,0.78 0.73,0.78 0.84,0.78 0.95,0.79 1.02,0.78 1.04,0.78 1.02,0.79 0.95,0.78 0.9,0.78 0.81,0.78 0.73,0.79 0.65,0.78 0.57,0.78 0.53,0.79 0.49,0.78 0.45,0.78 0.43,0.78 0.42,0.79 0.42,0.78 0.39,0.78 0.34,0.79 0.29,0.78 0.24,0.78 0.19,0.78 0.17,0.79 0.14,0.78 0.11,0.78 0.1,0.79 0.08,0.78 0.08,0.78 0.08,0.78 0.08,0.79 0.05,0.78 0.03,0.78 0.01,0.79 v 0.78 0.78 0.78 l 0.01,0.79 v 0.78 0.78 0.78 l -0.01,0.79 -0.01,0.78 0.01,0.78 0.02,0.79 0.03,0.78 0.04,0.78 0.04,0.78 0.05,0.79 0.05,0.78 0.05,0.78 0.05,0.79 0.04,0.78 0.03,0.78 0.02,0.78 0.03,0.79 0.01,0.78 0.02,0.78 0.01,0.79 0.01,0.78 v 0.78 l 0.01,0.78 0.01,0.79 v 0.78 l 0.01,0.78 v 0.79 l 0.01,0.78 v 0.78 0.78 0.79 0.78 0.78 0.79 0.78 0.78 0.78 0.79 l -0.01,0.78 v 0.78 0.79 0.78 0.78 0.78 0.79 0.78 0.78 h 0.02 v -0.78 -0.78 -0.79 -0.78 -0.78 -0.78 -0.79 -0.78 -0.78 -0.79 l -0.01,-0.78 v -0.78 -0.78 -0.79 -0.78 -0.78 -0.79 -0.78 l 0.01,-0.78 v -0.78 -0.79 l 0.01,-0.78 0.01,-0.78 v -0.79 l 0.01,-0.78 0.01,-0.78 0.01,-0.78 0.01,-0.79 0.01,-0.78 0.02,-0.78 0.02,-0.79 0.02,-0.78 0.03,-0.78 0.04,-0.78 0.05,-0.79 0.05,-0.78 0.05,-0.78 0.05,-0.79 0.04,-0.78 0.04,-0.78 0.03,-0.78 0.02,-0.79 0.01,-0.78 v -0.78 l -0.01,-0.79 -0.01,-0.78 v -0.78 l 0.01,-0.78 v -0.79 l 0.01,-0.78 -0.01,-0.78 v -0.78 l 0.01,-0.79 0.03,-0.78 0.06,-0.78 0.07,-0.79 0.08,-0.78 0.09,-0.78 0.08,-0.78 0.09,-0.79 0.11,-0.78 0.14,-0.78 0.17,-0.79 0.2,-0.78 0.23,-0.78 0.29,-0.78 0.35,-0.79 0.39,-0.78 0.41,-0.78 0.42,-0.79 0.43,-0.78 0.45,-0.78 0.49,-0.78 0.53,-0.79 0.58,-0.78 0.64,-0.78 0.73,-0.79 0.82,-0.78 0.89,-0.78 0.96,-0.78 1.01,-0.79 1.04,-0.78 1.02,-0.78 0.95,-0.79 0.84,-0.78 0.74,-0.78 0.65,-0.78 0.61,-0.79 0.57,-0.78 0.51,-0.78 0.43,-0.79 0.34,-0.78 0.27,-0.78 0.18,-0.78 0.07,-0.79 -0.1,-0.78 -0.31,-0.78 -0.53,-0.79 -0.72,-0.78 -0.8,-0.78 -0.79,-0.78 -0.75,-0.79 -0.72,-0.78 -0.74,-0.78 -0.81,-0.79 -0.9,-0.78 -0.94,-0.78 -0.92,-0.78 -0.82,-0.79 -0.71,-0.78 -0.58,-0.78 -0.51,-0.79 -0.47,-0.78 -0.45,-0.78 -0.4,-0.78 -0.34,-0.79 -0.27,-0.78 -0.2,-0.78 -0.18,-0.79 -0.18,-0.78 -0.22,-0.78 -0.25,-0.78 -0.28,-0.79 -0.28,-0.78 -0.24,-0.78 -0.2,-0.78 -0.15,-0.79 -0.09,-0.78 -0.03,-0.78 0.02,-0.79 0.05,-0.78 0.01,-0.78 -0.05,-0.78 -0.13,-0.79 -0.21,-0.78 -0.23,-0.78 -0.22,-0.79 -0.17,-0.78 -0.14,-0.78 -0.1,-0.78 -0.1,-0.79 -0.11,-0.78 -0.12,-0.78 -0.13,-0.79 -0.12,-0.78 -0.12,-0.78 -0.11,-0.78 -0.1,-0.79 -0.07,-0.78 -0.05,-0.78 -0.02,-0.79 -0.01,-0.78 -0.02,-0.78 -0.02,-0.78 -0.04,-0.79 -0.06,-0.78 -0.08,-0.78 -0.09,-0.79 -0.1,-0.78 -0.09,-0.78 -0.07,-0.78 -0.04,-0.79 -0.02,-0.78 v -0.78 -0.79 l -0.03,-0.78 -0.05,-0.78 -0.08,-0.78 -0.08,-0.79 -0.07,-0.78 -0.06,-0.78 -0.06,-0.79 -0.05,-0.78 -0.05,-0.78 -0.05,-0.78 -0.04,-0.79 -0.03,-0.78 -0.02,-0.78 -0.03,-0.79 -0.02,-0.78 -0.01,-0.78 -0.01,-0.78 -0.01,-0.79 v -0.78 -0.78 z" /></g></g><g
- style=""
- id="g546"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath552)"
- id="g548"><path
- inkscape:connector-curvature="0"
- id="path554"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 442.94,368.14 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path556"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path558"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path560"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path562"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path564"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path566"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 442.94,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path568"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 468.95,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path570"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 512.3,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path572"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 468.49,381.19 -0.16,0.67 -0.19,0.68 -0.22,0.67 -0.26,0.68 -0.29,0.67 -0.32,0.68 -0.34,0.67 -0.36,0.68 -0.37,0.67 -0.38,0.68 -0.38,0.67 -0.36,0.68 -0.33,0.67 -0.29,0.68 -0.25,0.67 -0.19,0.68 -0.15,0.67 -0.11,0.68 -0.09,0.67 -0.08,0.68 -0.09,0.67 -0.12,0.68 -0.15,0.68 -0.18,0.67 -0.23,0.68 -0.27,0.67 -0.3,0.68 -0.34,0.67 -0.36,0.68 -0.41,0.67 -0.42,0.68 -0.45,0.67 -0.45,0.68 -0.46,0.67 -0.45,0.68 -0.43,0.67 -0.41,0.68 -0.39,0.67 -0.36,0.68 -0.33,0.67 -0.29,0.68 -0.26,0.67 -0.22,0.68 -0.18,0.67 -0.15,0.68 -0.1,0.67 -0.07,0.68 -0.03,0.67 0.01,0.68 0.07,0.67 0.12,0.68 0.19,0.67 0.24,0.68 0.3,0.67 0.35,0.68 0.37,0.67 0.37,0.68 0.36,0.67 0.33,0.68 0.29,0.67 0.23,0.68 0.19,0.67 0.14,0.68 0.11,0.67 0.08,0.68 0.06,0.67 0.06,0.68 0.07,0.67 0.07,0.68 0.09,0.68 0.1,0.67 0.11,0.68 0.13,0.67 0.13,0.68 0.13,0.67 0.14,0.68 0.13,0.67 0.13,0.68 0.14,0.67 0.15,0.68 0.16,0.67 0.17,0.68 0.17,0.67 0.18,0.68 0.19,0.67 0.19,0.68 0.18,0.67 0.18,0.68 0.18,0.67 0.18,0.68 0.18,0.67 0.18,0.68 0.19,0.67 0.2,0.68 0.21,0.67 0.22,0.68 0.24,0.67 0.24,0.68 0.25,0.67 0.24,0.68 0.24,0.67 0.23,0.68 0.22,0.67 0.2,0.68 0.18,0.67 0.18,0.68 0.16,0.67 0.15,0.68 0.14,0.67 0.14,0.68 0.13,0.67 0.13,0.68 0.13,0.67 0.13,0.68 0.14,0.67 0.13,0.68 0.13,0.67 0.13,0.68 0.13,0.68 0.11,0.67 0.11,0.68 0.1,0.67 0.08,0.68 0.08,0.67 0.05,0.68 0.05,0.67 0.03,0.68 0.02,0.67 0.02,0.68 0.01,0.67 0.02,0.68 0.01,0.67 0.02,0.68 0.02,0.67 0.03,0.68 0.03,0.67 0.04,0.68 0.03,0.67 0.03,0.68 0.03,0.67 0.02,0.68 0.03,0.67 0.02,0.68 0.01,0.67 0.02,0.68 0.01,0.67 0.01,0.68 0.01,0.67 v 0.68 0.67 0.68 0.67 0.68 l 0.01,0.67 v 0.68 l 0.01,0.67 0.01,0.68 0.01,0.67 0.01,0.68 v 0.67 l 0.01,0.68 v 0.67 0.68 l -0.01,0.67 v 0.68 0.67 0.68 0.68 0.67 0.68 0.67 0.68 l 0.01,0.67 h 0.06 l 0.01,-0.67 v -0.68 -0.67 l 0.01,-0.68 v -0.67 l -0.01,-0.68 v -0.68 -0.67 -0.68 -0.67 -0.68 -0.67 -0.68 -0.67 l 0.01,-0.68 0.01,-0.67 0.01,-0.68 0.01,-0.67 v -0.68 l 0.01,-0.67 v -0.68 -0.67 -0.68 -0.67 l 0.01,-0.68 v -0.67 l 0.01,-0.68 0.01,-0.67 0.02,-0.68 0.02,-0.67 0.02,-0.68 0.02,-0.67 0.02,-0.68 0.03,-0.67 0.03,-0.68 0.04,-0.67 0.03,-0.68 0.03,-0.67 0.03,-0.68 0.02,-0.67 0.02,-0.68 0.02,-0.67 0.01,-0.68 0.01,-0.67 0.02,-0.68 0.02,-0.67 0.03,-0.68 0.05,-0.67 0.06,-0.68 0.07,-0.67 0.08,-0.68 0.1,-0.67 0.11,-0.68 0.11,-0.67 0.13,-0.68 0.13,-0.68 0.13,-0.67 0.14,-0.68 0.13,-0.67 0.13,-0.68 0.13,-0.67 0.13,-0.68 0.14,-0.67 0.13,-0.68 0.15,-0.67 0.15,-0.68 0.16,-0.67 0.17,-0.68 0.19,-0.67 0.2,-0.68 0.21,-0.67 0.23,-0.68 0.24,-0.67 0.25,-0.68 0.24,-0.67 0.25,-0.68 0.23,-0.67 0.22,-0.68 0.21,-0.67 0.2,-0.68 0.19,-0.67 0.18,-0.68 0.18,-0.67 0.18,-0.68 0.18,-0.67 0.18,-0.68 0.19,-0.67 0.18,-0.68 0.19,-0.67 0.18,-0.68 0.18,-0.67 0.16,-0.68 0.16,-0.67 0.15,-0.68 0.14,-0.67 0.13,-0.68 0.14,-0.67 0.13,-0.68 0.13,-0.67 0.14,-0.68 0.12,-0.67 0.11,-0.68 0.11,-0.67 0.08,-0.68 0.08,-0.68 0.06,-0.67 0.06,-0.68 0.06,-0.67 0.08,-0.68 0.11,-0.67 0.14,-0.68 0.19,-0.67 0.24,-0.68 0.28,-0.67 0.33,-0.68 0.36,-0.67 0.38,-0.68 0.36,-0.67 0.35,-0.68 0.3,-0.67 0.24,-0.68 0.19,-0.67 0.12,-0.68 0.07,-0.67 0.01,-0.68 -0.03,-0.67 -0.06,-0.68 -0.11,-0.67 -0.14,-0.68 -0.19,-0.67 -0.22,-0.68 -0.26,-0.67 -0.29,-0.68 -0.33,-0.67 -0.36,-0.68 -0.38,-0.67 -0.42,-0.68 -0.43,-0.67 -0.45,-0.68 -0.46,-0.67 -0.45,-0.68 -0.45,-0.67 -0.42,-0.68 -0.4,-0.67 -0.37,-0.68 -0.34,-0.67 -0.3,-0.68 -0.27,-0.67 -0.22,-0.68 -0.19,-0.67 -0.15,-0.68 -0.12,-0.68 -0.09,-0.67 -0.08,-0.68 -0.09,-0.67 -0.11,-0.68 -0.14,-0.67 -0.2,-0.68 -0.24,-0.67 -0.3,-0.68 -0.33,-0.67 -0.36,-0.68 -0.38,-0.67 -0.37,-0.68 -0.38,-0.67 -0.36,-0.68 -0.34,-0.67 -0.32,-0.68 -0.29,-0.67 -0.25,-0.68 -0.23,-0.67 -0.19,-0.68 -0.16,-0.67 z" /><path
- inkscape:connector-curvature="0"
- id="path574"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 512.24,385.38 -0.02,0.66 -0.03,0.67 -0.02,0.66 -0.03,0.67 -0.03,0.67 -0.05,0.66 -0.05,0.67 -0.05,0.67 -0.05,0.66 -0.04,0.67 -0.02,0.67 v 0.66 l 0.02,0.67 0.02,0.66 0.03,0.67 0.02,0.67 0.01,0.66 0.01,0.67 -0.01,0.67 -0.01,0.66 -0.04,0.67 -0.04,0.67 -0.06,0.66 -0.06,0.67 -0.06,0.66 -0.06,0.67 -0.07,0.67 -0.06,0.66 -0.05,0.67 -0.05,0.67 -0.04,0.66 -0.05,0.67 -0.07,0.67 -0.08,0.66 -0.11,0.67 -0.12,0.66 -0.12,0.67 -0.13,0.67 -0.13,0.66 -0.12,0.67 -0.1,0.67 -0.09,0.66 -0.07,0.67 -0.07,0.67 -0.06,0.66 -0.07,0.67 -0.08,0.66 -0.1,0.67 -0.12,0.67 -0.14,0.66 -0.17,0.67 -0.19,0.67 -0.2,0.66 -0.22,0.67 -0.22,0.67 -0.21,0.66 -0.19,0.67 -0.2,0.66 -0.2,0.67 -0.22,0.67 -0.25,0.66 -0.27,0.67 -0.3,0.67 -0.34,0.66 -0.37,0.67 -0.39,0.67 -0.4,0.66 -0.39,0.67 -0.36,0.66 -0.37,0.67 -0.38,0.67 -0.42,0.66 -0.47,0.67 -0.51,0.67 -0.57,0.66 -0.62,0.67 -0.68,0.67 -0.7,0.66 -0.69,0.67 -0.65,0.66 -0.59,0.67 -0.51,0.67 -0.47,0.66 -0.46,0.67 -0.46,0.67 -0.5,0.66 -0.52,0.67 -0.51,0.67 -0.47,0.66 -0.42,0.67 -0.32,0.66 -0.23,0.67 -0.12,0.67 0.03,0.66 0.16,0.67 0.31,0.67 0.42,0.66 0.48,0.67 0.51,0.67 0.54,0.66 0.57,0.67 0.61,0.66 0.63,0.67 0.65,0.67 0.68,0.66 0.72,0.67 0.77,0.67 0.81,0.66 0.83,0.67 0.8,0.67 0.74,0.66 0.66,0.67 0.58,0.66 0.54,0.67 0.54,0.67 0.56,0.66 0.59,0.67 0.58,0.67 0.54,0.66 0.46,0.67 0.39,0.67 0.33,0.66 0.29,0.67 0.27,0.66 0.24,0.67 0.22,0.67 0.21,0.66 0.19,0.67 0.19,0.67 0.19,0.66 0.17,0.67 0.15,0.67 0.13,0.66 0.11,0.67 0.09,0.66 0.1,0.67 0.09,0.67 0.09,0.66 0.08,0.67 0.07,0.67 0.05,0.66 0.04,0.67 0.03,0.67 0.02,0.66 v 0.67 0.66 0.67 0.67 l 0.01,0.66 0.01,0.67 0.01,0.67 0.02,0.66 0.01,0.67 0.01,0.66 0.01,0.67 0.02,0.67 0.02,0.66 0.03,0.67 0.03,0.67 0.02,0.66 0.01,0.67 v 0.67 l -0.01,0.66 -0.01,0.67 -0.01,0.66 v 0.67 l 0.01,0.67 0.02,0.66 0.03,0.67 0.03,0.67 0.02,0.66 0.02,0.67 0.02,0.67 0.01,0.66 0.01,0.67 0.01,0.66 0.02,0.67 0.01,0.67 0.01,0.66 0.01,0.67 0.01,0.67 0.01,0.66 0.01,0.67 h 0.04 l 0.01,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.67 0.01,-0.66 0.02,-0.67 0.01,-0.67 0.01,-0.66 0.02,-0.67 0.01,-0.66 0.01,-0.67 0.02,-0.67 0.03,-0.66 0.03,-0.67 0.02,-0.67 0.02,-0.66 0.01,-0.67 v -0.67 l -0.01,-0.66 -0.01,-0.67 -0.01,-0.66 v -0.67 l 0.01,-0.67 0.02,-0.66 0.03,-0.67 0.03,-0.67 0.02,-0.66 0.02,-0.67 0.01,-0.67 0.01,-0.66 0.02,-0.67 0.01,-0.66 0.01,-0.67 0.01,-0.67 0.01,-0.66 v -0.67 -0.67 -0.66 l 0.01,-0.67 0.01,-0.66 0.03,-0.67 0.04,-0.67 0.05,-0.66 0.07,-0.67 0.08,-0.67 0.09,-0.66 0.09,-0.67 0.1,-0.67 0.09,-0.66 0.11,-0.67 0.13,-0.66 0.15,-0.67 0.17,-0.67 0.19,-0.66 0.19,-0.67 0.19,-0.67 0.21,-0.66 0.22,-0.67 0.25,-0.67 0.26,-0.66 0.29,-0.67 0.33,-0.66 0.39,-0.67 0.46,-0.67 0.54,-0.66 0.58,-0.67 0.59,-0.67 0.56,-0.66 0.54,-0.67 0.54,-0.67 0.58,-0.66 0.66,-0.67 0.74,-0.66 0.81,-0.67 0.82,-0.67 0.81,-0.66 0.77,-0.67 0.72,-0.67 0.68,-0.66 0.65,-0.67 0.63,-0.67 0.61,-0.66 0.57,-0.67 0.54,-0.66 0.51,-0.67 0.49,-0.67 0.41,-0.66 0.31,-0.67 0.17,-0.67 0.02,-0.66 -0.12,-0.67 -0.23,-0.67 -0.32,-0.66 -0.41,-0.67 -0.48,-0.66 -0.51,-0.67 -0.52,-0.67 -0.5,-0.66 -0.46,-0.67 -0.45,-0.67 -0.47,-0.66 -0.52,-0.67 -0.59,-0.67 -0.65,-0.66 -0.69,-0.67 -0.7,-0.66 -0.68,-0.67 -0.62,-0.67 -0.57,-0.66 -0.51,-0.67 -0.47,-0.67 -0.42,-0.66 -0.38,-0.67 -0.36,-0.67 -0.37,-0.66 -0.39,-0.67 -0.39,-0.66 -0.4,-0.67 -0.37,-0.67 -0.34,-0.66 -0.3,-0.67 -0.27,-0.67 -0.25,-0.66 -0.22,-0.67 -0.2,-0.67 -0.19,-0.66 -0.2,-0.67 -0.21,-0.66 -0.22,-0.67 -0.21,-0.67 -0.21,-0.66 -0.19,-0.67 -0.17,-0.67 -0.14,-0.66 -0.12,-0.67 -0.09,-0.67 -0.08,-0.66 -0.07,-0.67 -0.07,-0.66 -0.06,-0.67 -0.08,-0.67 -0.08,-0.66 -0.11,-0.67 -0.12,-0.67 -0.12,-0.66 -0.13,-0.67 -0.13,-0.67 -0.12,-0.66 -0.1,-0.67 -0.09,-0.66 -0.06,-0.67 -0.05,-0.67 -0.05,-0.66 -0.05,-0.67 -0.05,-0.67 -0.06,-0.66 -0.06,-0.67 -0.07,-0.67 -0.06,-0.66 -0.06,-0.67 -0.05,-0.66 -0.05,-0.67 -0.04,-0.67 -0.01,-0.66 -0.01,-0.67 0.01,-0.67 0.02,-0.66 0.02,-0.67 0.02,-0.67 0.02,-0.66 0.02,-0.67 v -0.66 l -0.01,-0.67 -0.04,-0.67 -0.06,-0.66 -0.05,-0.67 -0.05,-0.67 -0.04,-0.66 -0.04,-0.67 -0.02,-0.67 -0.03,-0.66 -0.03,-0.67 -0.02,-0.66 z" /></g></g><g
- style=""
- id="g642"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath648)"
- id="g644"><path
- inkscape:connector-curvature="0"
- id="path650"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 541.91,368.14 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path652"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path654"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path656"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path658"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path660"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path662"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 541.91,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path664"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 567.92,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path666"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 611.27,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path668"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 567.41,376.46 -0.16,0.7 -0.2,0.69 -0.24,0.69 -0.28,0.69 -0.33,0.69 -0.39,0.69 -0.45,0.7 -0.52,0.69 -0.58,0.69 -0.65,0.69 -0.71,0.69 -0.76,0.69 -0.82,0.7 -0.84,0.69 -0.86,0.69 -0.86,0.69 -0.83,0.69 -0.79,0.69 -0.72,0.7 -0.64,0.69 -0.55,0.69 -0.45,0.69 -0.34,0.69 -0.25,0.69 -0.15,0.7 -0.08,0.69 -0.01,0.69 0.05,0.69 0.08,0.69 0.13,0.69 0.15,0.7 0.17,0.69 0.2,0.69 0.2,0.69 0.21,0.69 0.21,0.69 0.2,0.7 0.17,0.69 0.16,0.69 0.13,0.69 0.1,0.69 0.08,0.69 0.04,0.69 0.01,0.7 -0.04,0.69 -0.08,0.69 -0.13,0.69 -0.17,0.69 -0.21,0.69 -0.24,0.7 -0.25,0.69 -0.25,0.69 -0.25,0.69 -0.23,0.69 -0.2,0.69 -0.15,0.7 -0.09,0.69 -0.03,0.69 0.06,0.69 0.14,0.69 0.21,0.69 0.28,0.7 0.33,0.69 0.37,0.69 0.38,0.69 0.38,0.69 0.37,0.69 0.35,0.7 0.34,0.69 0.32,0.69 0.31,0.69 0.3,0.69 0.3,0.69 0.31,0.7 0.31,0.69 0.32,0.69 0.33,0.69 0.34,0.69 0.35,0.69 0.35,0.7 0.35,0.69 0.35,0.69 0.34,0.69 0.32,0.69 0.31,0.69 0.29,0.7 0.26,0.69 0.23,0.69 0.19,0.69 0.17,0.69 0.14,0.69 0.12,0.69 0.1,0.7 0.1,0.69 0.09,0.69 0.11,0.69 0.11,0.69 0.13,0.69 0.15,0.7 0.16,0.69 0.17,0.69 0.18,0.69 0.18,0.69 0.18,0.69 0.17,0.7 0.16,0.69 0.14,0.69 0.12,0.69 0.12,0.69 0.1,0.69 0.09,0.7 0.09,0.69 0.08,0.69 0.08,0.69 0.08,0.69 0.08,0.69 0.07,0.7 0.08,0.69 0.08,0.69 0.07,0.69 0.07,0.69 0.07,0.69 0.06,0.7 0.06,0.69 0.05,0.69 0.03,0.69 0.03,0.69 0.02,0.69 0.02,0.7 v 0.69 l 0.01,0.69 v 0.69 l 0.01,0.69 0.01,0.69 0.02,0.7 0.02,0.69 0.02,0.69 0.03,0.69 0.02,0.69 0.02,0.69 0.02,0.69 0.01,0.7 v 0.69 0.69 l -0.01,0.69 v 0.69 l -0.01,0.69 v 0.7 l 0.01,0.69 0.01,0.69 0.02,0.69 0.02,0.69 0.02,0.69 0.03,0.7 0.02,0.69 0.02,0.69 0.02,0.69 0.01,0.69 v 0.69 l 0.01,0.7 v 0.69 l 0.01,0.69 v 0.69 l 0.01,0.69 0.01,0.69 0.01,0.7 0.01,0.69 0.01,0.69 0.01,0.69 0.01,0.69 0.01,0.69 h 0.1 l 0.01,-0.69 0.01,-0.69 0.01,-0.69 0.02,-0.69 0.01,-0.69 v -0.7 l 0.01,-0.69 0.01,-0.69 v -0.69 l 0.01,-0.69 v -0.69 l 0.01,-0.7 0.01,-0.69 0.01,-0.69 0.01,-0.69 0.02,-0.69 0.02,-0.69 0.03,-0.7 0.02,-0.69 0.02,-0.69 0.02,-0.69 0.01,-0.69 0.01,-0.69 v -0.7 l -0.01,-0.69 v -0.69 l -0.01,-0.69 v -0.69 l 0.01,-0.69 0.01,-0.7 0.01,-0.69 0.02,-0.69 0.02,-0.69 0.03,-0.69 0.02,-0.69 0.02,-0.69 0.02,-0.7 0.01,-0.69 0.01,-0.69 v -0.69 l 0.01,-0.69 0.01,-0.69 0.01,-0.7 0.02,-0.69 0.03,-0.69 0.03,-0.69 0.05,-0.69 0.06,-0.69 0.06,-0.7 0.07,-0.69 0.07,-0.69 0.07,-0.69 0.08,-0.69 0.08,-0.69 0.08,-0.7 0.07,-0.69 0.08,-0.69 0.08,-0.69 0.09,-0.69 0.08,-0.69 0.09,-0.7 0.11,-0.69 0.11,-0.69 0.12,-0.69 0.15,-0.69 0.15,-0.69 0.17,-0.7 0.18,-0.69 0.18,-0.69 0.18,-0.69 0.17,-0.69 0.17,-0.69 0.14,-0.7 0.13,-0.69 0.11,-0.69 0.11,-0.69 0.09,-0.69 0.1,-0.69 0.1,-0.7 0.12,-0.69 0.14,-0.69 0.17,-0.69 0.2,-0.69 0.23,-0.69 0.26,-0.69 0.28,-0.7 0.31,-0.69 0.33,-0.69 0.33,-0.69 0.35,-0.69 0.35,-0.69 0.35,-0.7 0.35,-0.69 0.34,-0.69 0.33,-0.69 0.32,-0.69 0.32,-0.69 0.3,-0.7 0.3,-0.69 0.3,-0.69 0.31,-0.69 0.32,-0.69 0.34,-0.69 0.35,-0.7 0.37,-0.69 0.38,-0.69 0.38,-0.69 0.37,-0.69 0.33,-0.69 0.28,-0.7 0.22,-0.69 0.13,-0.69 0.06,-0.69 -0.02,-0.69 -0.1,-0.69 -0.15,-0.7 -0.2,-0.69 -0.23,-0.69 -0.25,-0.69 -0.25,-0.69 -0.25,-0.69 -0.24,-0.7 -0.21,-0.69 -0.17,-0.69 -0.13,-0.69 -0.08,-0.69 -0.04,-0.69 0.01,-0.7 0.04,-0.69 0.08,-0.69 0.11,-0.69 0.13,-0.69 0.15,-0.69 0.18,-0.69 0.19,-0.7 0.21,-0.69 0.21,-0.69 0.21,-0.69 0.19,-0.69 0.18,-0.69 0.15,-0.7 0.12,-0.69 0.08,-0.69 0.05,-0.69 -0.01,-0.69 -0.07,-0.69 -0.16,-0.7 -0.25,-0.69 -0.34,-0.69 -0.45,-0.69 -0.55,-0.69 -0.64,-0.69 -0.72,-0.7 -0.79,-0.69 -0.83,-0.69 -0.86,-0.69 -0.86,-0.69 -0.84,-0.69 -0.81,-0.7 -0.77,-0.69 -0.71,-0.69 -0.65,-0.69 -0.58,-0.69 -0.51,-0.69 -0.45,-0.7 -0.39,-0.69 -0.34,-0.69 -0.28,-0.69 -0.24,-0.69 -0.2,-0.69 -0.16,-0.7 z" /><path
- inkscape:connector-curvature="0"
- id="path670"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 611.25,379.57 -0.02,0.76 -0.01,0.77 -0.03,0.76 -0.03,0.76 -0.04,0.76 -0.06,0.76 -0.06,0.76 -0.06,0.76 -0.06,0.76 -0.05,0.76 -0.06,0.76 -0.07,0.76 -0.07,0.76 -0.09,0.76 -0.08,0.76 -0.08,0.76 -0.05,0.77 -0.02,0.76 v 0.76 l 0.03,0.76 0.03,0.76 0.02,0.76 0.01,0.76 -0.02,0.76 -0.05,0.76 -0.07,0.76 -0.1,0.76 -0.12,0.76 -0.13,0.76 -0.13,0.76 -0.14,0.76 -0.12,0.77 -0.11,0.76 -0.11,0.76 -0.11,0.76 -0.11,0.76 -0.13,0.76 -0.14,0.76 -0.14,0.76 -0.13,0.76 -0.14,0.76 -0.14,0.76 -0.16,0.76 -0.17,0.76 -0.2,0.76 -0.22,0.76 -0.23,0.77 -0.24,0.76 -0.23,0.76 -0.21,0.76 -0.18,0.76 -0.14,0.76 -0.1,0.76 -0.08,0.76 -0.06,0.76 -0.09,0.76 -0.12,0.76 -0.19,0.76 -0.25,0.76 -0.31,0.76 -0.33,0.76 -0.32,0.76 -0.3,0.77 -0.29,0.76 -0.27,0.76 -0.25,0.76 -0.24,0.76 -0.24,0.76 -0.24,0.76 -0.3,0.76 -0.39,0.76 -0.49,0.76 -0.58,0.76 -0.63,0.76 -0.66,0.76 -0.65,0.76 -0.65,0.76 -0.66,0.77 -0.68,0.76 -0.67,0.76 -0.66,0.76 -0.64,0.76 -0.62,0.76 -0.61,0.76 -0.56,0.76 -0.5,0.76 -0.38,0.76 -0.26,0.76 -0.16,0.76 -0.07,0.76 -0.02,0.76 0.03,0.76 0.07,0.77 0.14,0.76 0.22,0.76 0.35,0.76 0.49,0.76 0.61,0.76 0.71,0.76 0.75,0.76 0.75,0.76 0.76,0.76 0.78,0.76 0.81,0.76 0.86,0.76 0.87,0.76 0.85,0.76 0.79,0.77 0.72,0.76 0.65,0.76 0.59,0.76 0.57,0.76 0.56,0.76 0.56,0.76 0.55,0.76 0.54,0.76 0.51,0.76 0.48,0.76 0.45,0.76 0.41,0.76 0.36,0.76 0.33,0.76 0.28,0.77 0.26,0.76 0.24,0.76 0.21,0.76 0.2,0.76 0.17,0.76 0.14,0.76 0.11,0.76 0.08,0.76 0.05,0.76 0.03,0.76 0.01,0.76 0.01,0.76 0.01,0.76 0.01,0.76 0.02,0.76 0.02,0.77 0.03,0.76 0.02,0.76 0.03,0.76 0.03,0.76 0.02,0.76 0.04,0.76 0.03,0.76 0.04,0.76 0.04,0.76 0.04,0.76 0.04,0.76 0.03,0.76 0.03,0.76 0.02,0.76 0.02,0.77 0.02,0.76 0.01,0.76 0.01,0.76 0.01,0.76 0.01,0.76 v 0.76 l 0.01,0.76 v 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.77 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.76 0.76 h 0.02 v -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 -0.77 -0.76 -0.76 -0.76 -0.76 -0.76 -0.76 l 0.01,-0.76 v -0.76 l 0.01,-0.76 v -0.76 l 0.01,-0.76 0.01,-0.76 0.01,-0.76 0.02,-0.76 0.02,-0.77 0.02,-0.76 0.03,-0.76 0.03,-0.76 0.04,-0.76 0.04,-0.76 0.04,-0.76 0.04,-0.76 0.04,-0.76 0.03,-0.76 0.03,-0.76 0.02,-0.76 0.03,-0.76 0.02,-0.76 0.03,-0.76 0.02,-0.77 0.02,-0.76 0.01,-0.76 0.01,-0.76 0.01,-0.76 0.02,-0.76 0.02,-0.76 0.05,-0.76 0.08,-0.76 0.11,-0.76 0.14,-0.76 0.17,-0.76 0.2,-0.76 0.21,-0.76 0.24,-0.76 0.26,-0.76 0.28,-0.77 0.33,-0.76 0.37,-0.76 0.41,-0.76 0.44,-0.76 0.48,-0.76 0.52,-0.76 0.53,-0.76 0.55,-0.76 0.56,-0.76 0.56,-0.76 0.57,-0.76 0.6,-0.76 0.64,-0.76 0.72,-0.76 0.79,-0.77 0.85,-0.76 0.87,-0.76 0.86,-0.76 0.81,-0.76 0.78,-0.76 0.76,-0.76 0.75,-0.76 0.75,-0.76 0.71,-0.76 0.62,-0.76 0.48,-0.76 0.35,-0.76 0.23,-0.76 0.13,-0.76 0.07,-0.77 0.03,-0.76 -0.02,-0.76 -0.07,-0.76 -0.16,-0.76 -0.26,-0.76 -0.38,-0.76 -0.5,-0.76 -0.56,-0.76 -0.61,-0.76 -0.62,-0.76 -0.64,-0.76 -0.66,-0.76 -0.67,-0.76 -0.68,-0.76 -0.66,-0.77 -0.65,-0.76 -0.65,-0.76 -0.65,-0.76 -0.64,-0.76 -0.58,-0.76 -0.49,-0.76 -0.39,-0.76 -0.29,-0.76 -0.25,-0.76 -0.24,-0.76 -0.24,-0.76 -0.25,-0.76 -0.27,-0.76 -0.29,-0.76 -0.3,-0.77 -0.32,-0.76 -0.33,-0.76 -0.3,-0.76 -0.26,-0.76 -0.19,-0.76 -0.12,-0.76 -0.08,-0.76 -0.07,-0.76 -0.08,-0.76 -0.1,-0.76 -0.14,-0.76 -0.18,-0.76 -0.21,-0.76 -0.23,-0.76 -0.24,-0.76 -0.23,-0.77 -0.22,-0.76 -0.19,-0.76 -0.18,-0.76 -0.16,-0.76 -0.14,-0.76 -0.14,-0.76 -0.13,-0.76 -0.14,-0.76 -0.13,-0.76 -0.13,-0.76 -0.12,-0.76 -0.11,-0.76 -0.11,-0.76 -0.11,-0.76 -0.12,-0.77 -0.14,-0.76 -0.13,-0.76 -0.13,-0.76 -0.12,-0.76 -0.09,-0.76 -0.08,-0.76 -0.05,-0.76 -0.02,-0.76 0.01,-0.76 0.02,-0.76 0.03,-0.76 0.03,-0.76 v -0.76 l -0.02,-0.76 -0.05,-0.77 -0.07,-0.76 -0.09,-0.76 -0.09,-0.76 -0.07,-0.76 -0.07,-0.76 -0.06,-0.76 -0.05,-0.76 -0.06,-0.76 -0.06,-0.76 -0.06,-0.76 -0.05,-0.76 -0.05,-0.76 -0.03,-0.76 -0.03,-0.76 -0.01,-0.77 -0.01,-0.76 z" /></g></g><g
- style=""
- id="g738"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath744)"
- id="g740"><path
- inkscape:connector-curvature="0"
- id="path746"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 640.88,368.14 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path748"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path750"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path752"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path754"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path756"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path758"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 640.88,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path760"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 666.89,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path762"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 710.24,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path764"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 666.8,379.18 -0.02,0.58 -0.03,0.58 -0.04,0.58 -0.05,0.58 -0.06,0.58 -0.08,0.58 -0.11,0.58 -0.14,0.58 -0.18,0.58 -0.23,0.58 -0.29,0.58 -0.35,0.58 -0.4,0.58 -0.45,0.58 -0.49,0.58 -0.52,0.58 -0.52,0.57 -0.52,0.58 -0.5,0.58 -0.46,0.58 -0.43,0.58 -0.39,0.58 -0.35,0.58 -0.32,0.58 -0.3,0.58 -0.3,0.58 -0.32,0.58 -0.36,0.58 -0.42,0.58 -0.5,0.58 -0.57,0.58 -0.65,0.58 -0.71,0.58 -0.76,0.58 -0.77,0.58 -0.77,0.58 -0.74,0.58 -0.7,0.58 -0.66,0.58 -0.6,0.58 -0.54,0.58 -0.47,0.58 -0.41,0.58 -0.34,0.58 -0.26,0.58 -0.2,0.58 -0.14,0.58 -0.09,0.58 -0.04,0.58 -0.02,0.58 v 0.58 l 0.02,0.58 0.02,0.58 0.02,0.58 0.04,0.58 0.07,0.58 0.1,0.58 0.16,0.58 0.2,0.58 0.26,0.58 0.3,0.58 0.32,0.58 0.32,0.58 0.31,0.58 0.31,0.58 0.29,0.58 0.3,0.58 0.32,0.58 0.35,0.58 0.39,0.58 0.41,0.58 0.43,0.58 0.45,0.58 0.44,0.58 0.44,0.58 0.42,0.58 0.41,0.58 0.4,0.58 0.38,0.58 0.37,0.58 0.34,0.58 0.32,0.58 0.3,0.58 0.26,0.58 0.24,0.58 0.22,0.58 0.22,0.58 0.23,0.58 0.25,0.58 0.28,0.58 0.31,0.58 0.34,0.58 0.34,0.58 0.36,0.58 0.34,0.58 0.32,0.58 0.31,0.58 0.28,0.58 0.26,0.58 0.24,0.58 0.21,0.58 0.2,0.58 0.17,0.58 0.16,0.58 0.15,0.58 0.15,0.58 0.15,0.58 0.15,0.58 0.15,0.58 0.15,0.58 0.15,0.58 0.14,0.58 0.13,0.58 0.12,0.58 0.11,0.58 0.1,0.58 0.09,0.58 0.1,0.58 0.1,0.58 0.1,0.58 0.11,0.58 0.12,0.58 0.11,0.58 0.11,0.58 0.11,0.58 0.09,0.58 0.09,0.58 0.08,0.58 0.08,0.58 0.07,0.58 0.07,0.58 0.06,0.58 0.07,0.58 0.06,0.58 0.06,0.58 0.06,0.58 0.06,0.58 0.04,0.58 0.05,0.58 0.04,0.58 0.03,0.58 0.03,0.58 0.02,0.58 0.03,0.58 0.01,0.58 0.02,0.58 0.01,0.58 0.01,0.58 0.02,0.58 0.01,0.58 0.01,0.58 0.01,0.58 0.02,0.58 0.01,0.58 0.02,0.58 0.01,0.58 0.01,0.58 0.01,0.58 v 0.58 0.58 0.58 0.58 0.57 0.58 0.58 0.58 0.58 0.58 l 0.01,0.58 v 0.58 0.58 0.58 0.58 h 0.06 v -0.58 -0.58 -0.58 -0.58 l 0.01,-0.58 v -0.58 -0.58 l 0.01,-0.58 -0.01,-0.58 v -0.58 -0.57 -0.58 -0.58 -0.58 l 0.01,-0.58 v -0.58 l 0.01,-0.58 0.02,-0.58 0.01,-0.58 0.01,-0.58 0.02,-0.58 0.01,-0.58 0.01,-0.58 0.01,-0.58 0.02,-0.58 0.01,-0.58 0.01,-0.58 0.02,-0.58 0.02,-0.58 0.02,-0.58 0.02,-0.58 0.03,-0.58 0.03,-0.58 0.04,-0.58 0.05,-0.58 0.05,-0.58 0.05,-0.58 0.06,-0.58 0.06,-0.58 0.06,-0.58 0.07,-0.58 0.06,-0.58 0.07,-0.58 0.07,-0.58 0.08,-0.58 0.08,-0.58 0.09,-0.58 0.09,-0.58 0.11,-0.58 0.11,-0.58 0.12,-0.58 0.11,-0.58 0.11,-0.58 0.1,-0.58 0.1,-0.58 0.1,-0.58 0.09,-0.58 0.11,-0.58 0.1,-0.58 0.12,-0.58 0.13,-0.58 0.14,-0.58 0.15,-0.58 0.15,-0.58 0.15,-0.58 0.15,-0.58 0.15,-0.58 0.15,-0.58 0.15,-0.58 0.16,-0.58 0.17,-0.58 0.2,-0.58 0.21,-0.58 0.24,-0.58 0.26,-0.58 0.28,-0.58 0.31,-0.58 0.32,-0.58 0.35,-0.58 0.35,-0.58 0.34,-0.58 0.34,-0.58 0.31,-0.58 0.28,-0.58 0.25,-0.58 0.23,-0.58 0.22,-0.58 0.22,-0.58 0.24,-0.58 0.26,-0.58 0.3,-0.58 0.32,-0.58 0.34,-0.58 0.37,-0.58 0.38,-0.58 0.4,-0.58 0.41,-0.58 0.43,-0.58 0.43,-0.58 0.45,-0.58 0.44,-0.58 0.43,-0.58 0.42,-0.58 0.38,-0.58 0.35,-0.58 0.32,-0.58 0.3,-0.58 0.3,-0.58 0.3,-0.58 0.31,-0.58 0.32,-0.58 0.32,-0.58 0.3,-0.58 0.26,-0.58 0.21,-0.58 0.15,-0.58 0.11,-0.58 0.06,-0.58 0.04,-0.58 0.03,-0.58 0.01,-0.58 0.02,-0.58 v -0.58 l -0.02,-0.58 -0.04,-0.58 -0.09,-0.58 -0.14,-0.58 -0.2,-0.58 -0.26,-0.58 -0.34,-0.58 -0.4,-0.58 -0.48,-0.58 -0.54,-0.58 -0.6,-0.58 -0.66,-0.58 -0.7,-0.58 -0.74,-0.58 -0.77,-0.58 -0.77,-0.58 -0.75,-0.58 -0.72,-0.58 -0.65,-0.58 -0.57,-0.58 -0.5,-0.58 -0.42,-0.58 -0.36,-0.58 -0.32,-0.58 -0.3,-0.58 -0.3,-0.58 -0.32,-0.58 -0.35,-0.58 -0.39,-0.58 -0.43,-0.58 -0.46,-0.58 -0.5,-0.58 -0.52,-0.58 -0.52,-0.57 -0.52,-0.58 -0.49,-0.58 -0.45,-0.58 -0.4,-0.58 -0.35,-0.58 -0.29,-0.58 -0.23,-0.58 -0.18,-0.58 -0.14,-0.58 -0.11,-0.58 -0.08,-0.58 -0.06,-0.58 -0.05,-0.58 -0.04,-0.58 -0.03,-0.58 -0.02,-0.58 z" /><path
- inkscape:connector-curvature="0"
- id="path766"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 710.21,381.86 v 0.68 l -0.01,0.68 -0.01,0.68 -0.01,0.68 -0.01,0.68 -0.02,0.68 -0.02,0.68 -0.02,0.68 -0.03,0.68 -0.04,0.68 -0.03,0.68 -0.04,0.68 -0.03,0.68 -0.03,0.68 -0.02,0.69 -0.01,0.68 -0.01,0.68 -0.02,0.68 -0.03,0.68 -0.05,0.68 -0.06,0.68 -0.07,0.68 -0.07,0.68 -0.08,0.68 -0.07,0.68 -0.07,0.68 -0.08,0.68 -0.07,0.68 -0.08,0.68 -0.1,0.68 -0.1,0.68 -0.1,0.68 -0.11,0.69 -0.12,0.68 -0.13,0.68 -0.12,0.68 -0.13,0.68 -0.13,0.68 -0.13,0.68 -0.13,0.68 -0.12,0.68 -0.13,0.68 -0.12,0.68 -0.13,0.68 -0.15,0.68 -0.16,0.68 -0.19,0.68 -0.21,0.68 -0.22,0.68 -0.22,0.68 -0.22,0.69 -0.19,0.68 -0.17,0.68 -0.17,0.68 -0.15,0.68 -0.14,0.68 -0.14,0.68 -0.13,0.68 -0.14,0.68 -0.14,0.68 -0.15,0.68 -0.16,0.68 -0.16,0.68 -0.14,0.68 -0.13,0.68 -0.12,0.68 -0.14,0.68 -0.18,0.68 -0.24,0.69 -0.3,0.68 -0.35,0.68 -0.39,0.68 -0.43,0.68 -0.44,0.68 -0.47,0.68 -0.47,0.68 -0.48,0.68 -0.5,0.68 -0.52,0.68 -0.56,0.68 -0.58,0.68 -0.59,0.68 -0.58,0.68 -0.54,0.68 -0.51,0.68 -0.48,0.68 -0.45,0.68 -0.46,0.69 -0.46,0.68 -0.47,0.68 -0.48,0.68 -0.47,0.68 -0.42,0.68 -0.36,0.68 -0.28,0.68 -0.21,0.68 -0.13,0.68 -0.05,0.68 0.05,0.68 0.16,0.68 0.27,0.68 0.37,0.68 0.48,0.68 0.57,0.68 0.64,0.68 0.7,0.69 0.75,0.68 0.77,0.68 0.76,0.68 0.76,0.68 0.72,0.68 0.7,0.68 0.66,0.68 0.64,0.68 0.63,0.68 0.62,0.68 0.63,0.68 0.62,0.68 0.58,0.68 0.54,0.68 0.48,0.68 0.41,0.68 0.38,0.68 0.36,0.69 0.36,0.68 0.38,0.68 0.4,0.68 0.4,0.68 0.38,0.68 0.36,0.68 0.32,0.68 0.26,0.68 0.23,0.68 0.2,0.68 0.17,0.68 0.16,0.68 0.16,0.68 0.15,0.68 0.14,0.68 0.12,0.68 0.11,0.68 0.09,0.69 0.07,0.68 0.05,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.04,0.68 0.03,0.68 0.02,0.68 0.03,0.68 0.02,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.03,0.68 0.02,0.68 0.02,0.69 0.02,0.68 0.01,0.68 v 0.68 0.68 0.68 0.68 0.68 l 0.02,0.68 0.02,0.68 0.02,0.68 0.03,0.68 0.02,0.68 0.02,0.68 0.01,0.68 0.02,0.68 0.01,0.68 0.02,0.68 0.01,0.69 0.02,0.68 0.01,0.68 0.01,0.68 h 0.06 l 0.01,-0.68 0.01,-0.68 0.02,-0.68 0.02,-0.69 0.01,-0.68 0.01,-0.68 0.02,-0.68 0.01,-0.68 0.02,-0.68 0.02,-0.68 0.03,-0.68 0.02,-0.68 0.02,-0.68 0.02,-0.68 v -0.68 l 0.01,-0.68 -0.01,-0.68 v -0.68 -0.68 l 0.01,-0.68 0.02,-0.68 0.02,-0.69 0.03,-0.68 0.03,-0.68 0.03,-0.68 0.02,-0.68 0.03,-0.68 0.02,-0.68 0.03,-0.68 0.02,-0.68 0.03,-0.68 0.04,-0.68 0.03,-0.68 0.03,-0.68 0.03,-0.68 0.03,-0.68 0.03,-0.68 0.05,-0.68 0.07,-0.68 0.09,-0.69 0.11,-0.68 0.12,-0.68 0.15,-0.68 0.14,-0.68 0.16,-0.68 0.16,-0.68 0.17,-0.68 0.2,-0.68 0.23,-0.68 0.27,-0.68 0.31,-0.68 0.36,-0.68 0.38,-0.68 0.4,-0.68 0.4,-0.68 0.38,-0.68 0.36,-0.68 0.36,-0.69 0.38,-0.68 0.42,-0.68 0.47,-0.68 0.54,-0.68 0.58,-0.68 0.62,-0.68 0.63,-0.68 0.62,-0.68 0.63,-0.68 0.64,-0.68 0.66,-0.68 0.7,-0.68 0.72,-0.68 0.76,-0.68 0.77,-0.68 0.76,-0.68 0.75,-0.68 0.7,-0.69 0.64,-0.68 0.57,-0.68 0.48,-0.68 0.37,-0.68 0.27,-0.68 0.16,-0.68 0.05,-0.68 -0.05,-0.68 -0.13,-0.68 -0.2,-0.68 -0.29,-0.68 -0.36,-0.68 -0.42,-0.68 -0.47,-0.68 -0.48,-0.68 -0.47,-0.68 -0.46,-0.68 -0.46,-0.69 -0.45,-0.68 -0.48,-0.68 -0.51,-0.68 -0.54,-0.68 -0.58,-0.68 -0.59,-0.68 -0.58,-0.68 -0.56,-0.68 -0.52,-0.68 -0.49,-0.68 -0.49,-0.68 -0.47,-0.68 -0.47,-0.68 -0.44,-0.68 -0.43,-0.68 -0.39,-0.68 -0.35,-0.68 -0.3,-0.68 -0.24,-0.69 -0.18,-0.68 -0.14,-0.68 -0.12,-0.68 -0.13,-0.68 -0.14,-0.68 -0.16,-0.68 -0.16,-0.68 -0.15,-0.68 -0.14,-0.68 -0.14,-0.68 -0.13,-0.68 -0.14,-0.68 -0.14,-0.68 -0.15,-0.68 -0.16,-0.68 -0.18,-0.68 -0.19,-0.68 -0.22,-0.69 -0.22,-0.68 -0.22,-0.68 -0.21,-0.68 -0.19,-0.68 -0.16,-0.68 -0.15,-0.68 -0.13,-0.68 -0.12,-0.68 -0.13,-0.68 -0.12,-0.68 -0.13,-0.68 -0.13,-0.68 -0.13,-0.68 -0.12,-0.68 -0.13,-0.68 -0.13,-0.68 -0.11,-0.68 -0.12,-0.69 -0.1,-0.68 -0.1,-0.68 -0.09,-0.68 -0.09,-0.68 -0.07,-0.68 -0.08,-0.68 -0.07,-0.68 -0.07,-0.68 -0.08,-0.68 -0.07,-0.68 -0.07,-0.68 -0.06,-0.68 -0.05,-0.68 -0.03,-0.68 -0.02,-0.68 -0.01,-0.68 -0.01,-0.68 -0.02,-0.69 -0.02,-0.68 -0.04,-0.68 -0.03,-0.68 -0.04,-0.68 -0.04,-0.68 -0.02,-0.68 -0.03,-0.68 -0.02,-0.68 -0.02,-0.68 -0.01,-0.68 -0.01,-0.68 -0.01,-0.68 -0.01,-0.68 v -0.68 z" /></g></g><g
- style=""
- id="g932"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text936"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,23.02,377.85)"><tspan
- id="tspan934"
- sodipodi:role="line"
- y="0"
- x="0 5.8400002 11.4">−10</tspan></text>
- <text
- id="text940"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,34.42,429.59)"><tspan
- id="tspan938"
- y="0"
- x="0">0</tspan></text>
- <text
- id="text944"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,28.86,481.32)"><tspan
- id="tspan942"
- sodipodi:role="line"
- y="0"
- x="0 5.5599999">10</tspan></text>
- </g><g
- style=""
- id="g948"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path950"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,381.44 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path952"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,433.18 h 4.25" /><path
- inkscape:connector-curvature="0"
- id="path954"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 42.81,484.91 h 4.25" /></g><g
- style=""
- id="g146"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath152)"
- id="g148"><path
- inkscape:connector-curvature="0"
- id="path154"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 739.85,529.97 h 95.37 v 14.38 h -95.37 z" /><text
- id="text158"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,758.77,533.57)"><tspan
- id="tspan156"
- sodipodi:role="line"
- y="0"
- x="0 8.3299999 13.89 22.219999 27.780001 31.41 36.41 39.189999 46.41 51.970001">Memory.D14</tspan></text>
- </g></g><g
- style=""
- id="g834"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath840)"
- id="g836"><path
- inkscape:connector-curvature="0"
- id="path842"
- style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 739.85,368.14 h 95.37 v 161.83 h -95.37 z" /><path
- inkscape:connector-curvature="0"
- id="path844"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,407.31 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path846"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,459.04 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path848"
- style="fill:none;stroke:#f2f2f2;stroke-width:0.52999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,510.78 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path850"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,381.44 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path852"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,433.18 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path854"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 739.85,484.91 h 95.37" /><path
- inkscape:connector-curvature="0"
- id="path856"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 765.86,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path858"
- style="fill:none;stroke:#ffffff;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="M 809.21,368.14 V 529.97" /><path
- inkscape:connector-curvature="0"
- id="path860"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 765.58,375.74 -0.1,0.77 -0.14,0.76 -0.17,0.77 -0.22,0.77 -0.27,0.76 -0.33,0.77 -0.39,0.77 -0.46,0.77 -0.54,0.76 -0.62,0.77 -0.71,0.77 -0.78,0.76 -0.85,0.77 -0.89,0.77 -0.92,0.77 -0.91,0.76 -0.87,0.77 -0.79,0.77 -0.68,0.76 -0.55,0.77 -0.4,0.77 -0.27,0.77 -0.15,0.76 -0.05,0.77 0.04,0.77 0.08,0.76 0.12,0.77 0.13,0.77 0.13,0.76 0.12,0.77 0.11,0.77 0.1,0.77 0.06,0.76 0.05,0.77 0.04,0.77 0.03,0.76 0.03,0.77 0.06,0.77 0.07,0.77 0.08,0.76 0.09,0.77 0.07,0.77 0.05,0.76 0.01,0.77 -0.04,0.77 -0.09,0.76 -0.13,0.77 -0.17,0.77 -0.18,0.77 -0.18,0.76 -0.14,0.77 -0.09,0.77 -0.02,0.76 0.07,0.77 0.17,0.77 0.26,0.77 0.32,0.76 0.37,0.77 0.39,0.77 0.39,0.76 0.36,0.77 0.33,0.77 0.28,0.77 0.26,0.76 0.24,0.77 0.24,0.77 0.25,0.76 0.27,0.77 0.28,0.77 0.3,0.76 0.31,0.77 0.31,0.77 0.31,0.77 0.32,0.76 0.31,0.77 0.31,0.77 0.31,0.76 0.31,0.77 0.29,0.77 0.28,0.77 0.25,0.76 0.22,0.77 0.19,0.77 0.16,0.76 0.13,0.77 0.12,0.77 0.11,0.77 0.11,0.76 0.12,0.77 0.14,0.77 0.15,0.76 0.16,0.77 0.16,0.77 0.17,0.76 0.16,0.77 0.16,0.77 0.15,0.77 0.14,0.76 0.12,0.77 0.12,0.77 0.11,0.76 0.1,0.77 0.09,0.77 0.08,0.77 0.07,0.76 0.06,0.77 0.05,0.77 0.05,0.76 0.04,0.77 0.03,0.77 0.02,0.77 0.03,0.76 0.02,0.77 0.01,0.77 0.01,0.76 0.01,0.77 0.01,0.77 v 0.76 l 0.01,0.77 0.01,0.77 0.01,0.77 0.01,0.76 0.01,0.77 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 v 0.77 0.76 0.77 0.77 0.76 0.77 l -0.01,0.77 v 0.77 0.76 0.77 0.77 l -0.01,0.76 0.01,0.77 v 0.77 l 0.01,0.76 v 0.77 l 0.01,0.77 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 v 0.76 0.77 0.77 0.77 l 0.01,0.76 v 0.77 l 0.01,0.77 0.01,0.76 v 0.77 l 0.01,0.77 0.01,0.76 0.01,0.77 v 0.77 l 0.01,0.77 0.01,0.76 0.01,0.77 v 0.77 0.76 l 0.01,0.77 v 0.77 0.77 0.76 0.77 0.77 0.76 0.77 0.77 h 0.04 v -0.77 -0.77 -0.76 -0.77 -0.77 -0.76 -0.77 -0.77 l 0.01,-0.77 v -0.76 -0.77 l 0.01,-0.77 0.01,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.77 0.01,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.76 v -0.77 -0.77 -0.77 l 0.01,-0.76 v -0.77 -0.77 l 0.01,-0.76 0.01,-0.77 0.01,-0.77 v -0.77 l 0.01,-0.76 v -0.77 l 0.01,-0.77 -0.01,-0.76 v -0.77 -0.77 -0.76 -0.77 -0.77 -0.77 l -0.01,-0.76 v -0.77 -0.77 -0.76 l 0.01,-0.77 v -0.77 -0.77 l 0.01,-0.76 0.01,-0.77 0.01,-0.77 0.02,-0.76 0.01,-0.77 v -0.77 l 0.01,-0.77 0.01,-0.76 v -0.77 l 0.01,-0.77 0.01,-0.76 0.01,-0.77 0.02,-0.77 0.03,-0.76 0.02,-0.77 0.04,-0.77 0.03,-0.77 0.05,-0.76 0.05,-0.77 0.06,-0.77 0.07,-0.76 0.08,-0.77 0.09,-0.77 0.1,-0.77 0.11,-0.76 0.12,-0.77 0.12,-0.77 0.14,-0.76 0.15,-0.77 0.16,-0.77 0.16,-0.77 0.17,-0.76 0.16,-0.77 0.16,-0.77 0.15,-0.76 0.14,-0.77 0.12,-0.77 0.11,-0.76 0.11,-0.77 0.12,-0.77 0.13,-0.77 0.16,-0.76 0.19,-0.77 0.22,-0.77 0.25,-0.76 0.28,-0.77 0.29,-0.77 0.31,-0.77 0.31,-0.76 0.31,-0.77 0.31,-0.77 0.32,-0.76 0.31,-0.77 0.31,-0.77 0.31,-0.77 0.3,-0.76 0.28,-0.77 0.27,-0.77 0.25,-0.76 0.24,-0.77 0.24,-0.77 0.26,-0.76 0.28,-0.77 0.33,-0.77 0.36,-0.77 0.39,-0.76 0.39,-0.77 0.37,-0.77 0.32,-0.76 0.26,-0.77 0.17,-0.77 0.07,-0.77 -0.02,-0.76 -0.09,-0.77 -0.14,-0.77 -0.18,-0.76 -0.18,-0.77 -0.17,-0.77 -0.13,-0.77 -0.09,-0.76 -0.04,-0.77 0.01,-0.77 0.05,-0.76 0.07,-0.77 0.09,-0.77 0.08,-0.76 0.07,-0.77 0.06,-0.77 0.03,-0.77 0.03,-0.76 0.04,-0.77 0.05,-0.77 0.06,-0.76 0.1,-0.77 0.11,-0.77 0.12,-0.77 0.14,-0.76 0.12,-0.77 0.12,-0.77 0.08,-0.76 0.04,-0.77 -0.05,-0.77 -0.15,-0.76 -0.27,-0.77 -0.4,-0.77 -0.55,-0.77 -0.68,-0.76 -0.79,-0.77 -0.86,-0.77 -0.91,-0.76 -0.93,-0.77 -0.89,-0.77 -0.85,-0.77 -0.78,-0.76 -0.71,-0.77 -0.62,-0.77 -0.54,-0.76 -0.46,-0.77 -0.39,-0.77 -0.33,-0.77 -0.27,-0.76 -0.22,-0.77 -0.17,-0.77 -0.13,-0.76 -0.11,-0.77 z" /><path
- inkscape:connector-curvature="0"
- id="path862"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:1.05999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 809.17,380.52 -0.02,0.78 -0.02,0.77 -0.03,0.77 -0.04,0.78 -0.05,0.77 -0.05,0.77 -0.04,0.78 -0.04,0.77 -0.04,0.77 -0.04,0.78 -0.05,0.77 -0.05,0.77 -0.05,0.78 -0.03,0.77 -0.02,0.77 v 0.78 0.77 0.77 l -0.01,0.78 -0.05,0.77 -0.07,0.77 -0.08,0.77 -0.07,0.78 -0.08,0.77 -0.08,0.77 -0.1,0.78 -0.09,0.77 -0.09,0.77 -0.05,0.78 -0.03,0.77 -0.03,0.77 -0.03,0.78 -0.07,0.77 -0.1,0.77 -0.11,0.78 -0.11,0.77 -0.1,0.77 -0.1,0.78 -0.1,0.77 -0.11,0.77 -0.11,0.78 -0.14,0.77 -0.16,0.77 -0.2,0.78 -0.24,0.77 -0.25,0.77 -0.23,0.78 -0.16,0.77 -0.08,0.77 -0.02,0.78 v 0.77 l -0.03,0.77 -0.08,0.78 -0.15,0.77 -0.17,0.77 -0.2,0.78 -0.18,0.77 -0.18,0.77 -0.17,0.78 -0.19,0.77 -0.22,0.77 -0.24,0.78 -0.27,0.77 -0.27,0.77 -0.26,0.78 -0.25,0.77 -0.26,0.77 -0.33,0.78 -0.41,0.77 -0.5,0.77 -0.58,0.78 -0.64,0.77 -0.68,0.77 -0.72,0.78 -0.76,0.77 -0.8,0.77 -0.83,0.77 -0.84,0.78 -0.8,0.77 -0.75,0.77 -0.71,0.78 -0.71,0.77 -0.71,0.77 -0.66,0.78 -0.53,0.77 -0.35,0.77 -0.18,0.78 -0.04,0.77 0.08,0.77 0.21,0.78 0.38,0.77 0.57,0.77 0.72,0.78 0.8,0.77 0.8,0.77 0.78,0.78 0.79,0.77 0.84,0.77 0.91,0.78 0.96,0.77 0.97,0.77 0.96,0.78 0.92,0.77 0.85,0.77 0.78,0.78 0.71,0.77 0.65,0.77 0.6,0.78 0.56,0.77 0.51,0.77 0.48,0.78 0.44,0.77 0.41,0.77 0.36,0.78 0.31,0.77 0.25,0.77 0.2,0.78 0.16,0.77 0.13,0.77 0.11,0.78 0.11,0.77 0.12,0.77 0.14,0.78 0.12,0.77 0.1,0.77 0.07,0.78 0.05,0.77 0.02,0.77 0.03,0.78 0.03,0.77 0.04,0.77 0.03,0.78 0.04,0.77 0.02,0.77 v 0.77 l -0.01,0.78 v 0.77 l -0.01,0.77 0.01,0.78 0.02,0.77 0.02,0.77 0.03,0.78 0.03,0.77 0.03,0.77 0.03,0.78 0.02,0.77 0.02,0.77 0.02,0.78 0.03,0.77 0.04,0.77 0.03,0.78 0.02,0.77 0.02,0.77 0.01,0.78 0.01,0.77 v 0.77 0.78 0.77 0.77 0.78 l 0.01,0.77 v 0.77 0.78 l 0.01,0.77 v 0.77 0.78 0.77 0.77 0.78 0.77 0.77 0.78 0.77 0.77 l -0.01,0.78 v 0.77 0.77 0.78 0.77 0.77 0.78 0.77 0.77 h 0.02 v -0.77 -0.77 -0.78 -0.77 -0.77 -0.78 -0.77 -0.77 l -0.01,-0.78 v -0.77 -0.77 -0.78 -0.77 -0.77 -0.78 -0.77 -0.77 -0.78 -0.77 l 0.01,-0.77 v -0.78 -0.77 l 0.01,-0.77 v -0.78 -0.77 -0.77 -0.78 -0.77 l 0.01,-0.77 0.01,-0.78 0.02,-0.77 0.02,-0.77 0.03,-0.78 0.04,-0.77 0.03,-0.77 0.02,-0.78 0.02,-0.77 0.02,-0.77 0.03,-0.78 0.03,-0.77 0.03,-0.77 0.03,-0.78 0.02,-0.77 0.02,-0.77 0.01,-0.78 -0.01,-0.77 v -0.77 l -0.01,-0.78 v -0.77 l 0.02,-0.77 0.04,-0.77 0.03,-0.78 0.04,-0.77 0.03,-0.77 0.03,-0.78 0.02,-0.77 0.05,-0.77 0.07,-0.78 0.1,-0.77 0.12,-0.77 0.14,-0.78 0.12,-0.77 0.11,-0.77 0.11,-0.78 0.13,-0.77 0.16,-0.77 0.2,-0.78 0.25,-0.77 0.31,-0.77 0.36,-0.78 0.41,-0.77 0.44,-0.77 0.48,-0.78 0.51,-0.77 0.56,-0.77 0.6,-0.78 0.65,-0.77 0.71,-0.77 0.78,-0.78 0.85,-0.77 0.92,-0.77 0.96,-0.78 0.97,-0.77 0.96,-0.77 0.91,-0.78 0.84,-0.77 0.79,-0.77 0.78,-0.78 0.8,-0.77 0.8,-0.77 0.72,-0.78 0.57,-0.77 0.38,-0.77 0.21,-0.78 0.08,-0.77 -0.04,-0.77 -0.18,-0.78 -0.35,-0.77 -0.53,-0.77 -0.66,-0.78 -0.71,-0.77 -0.71,-0.77 -0.71,-0.78 -0.75,-0.77 -0.8,-0.77 -0.84,-0.78 -0.83,-0.77 -0.8,-0.77 -0.76,-0.77 -0.72,-0.78 -0.68,-0.77 -0.64,-0.77 -0.58,-0.78 -0.5,-0.77 -0.41,-0.77 -0.33,-0.78 -0.26,-0.77 -0.25,-0.77 -0.26,-0.78 -0.27,-0.77 -0.27,-0.77 -0.24,-0.78 -0.22,-0.77 -0.19,-0.77 -0.17,-0.78 -0.18,-0.77 -0.18,-0.77 -0.2,-0.78 -0.17,-0.77 -0.15,-0.77 -0.08,-0.78 -0.03,-0.77 v -0.77 l -0.02,-0.78 -0.08,-0.77 -0.16,-0.77 -0.23,-0.78 -0.25,-0.77 -0.24,-0.77 -0.2,-0.78 -0.16,-0.77 -0.14,-0.77 -0.11,-0.78 -0.11,-0.77 -0.1,-0.77 -0.1,-0.78 -0.1,-0.77 -0.11,-0.77 -0.11,-0.78 -0.1,-0.77 -0.07,-0.77 -0.03,-0.78 -0.03,-0.77 -0.03,-0.77 -0.05,-0.78 -0.09,-0.77 -0.09,-0.77 -0.1,-0.78 -0.08,-0.77 -0.08,-0.77 -0.07,-0.78 -0.08,-0.77 -0.07,-0.77 -0.05,-0.77 -0.01,-0.78 v -0.77 -0.77 -0.78 l -0.02,-0.77 -0.03,-0.77 -0.05,-0.78 -0.05,-0.77 -0.04,-0.77 -0.05,-0.78 -0.04,-0.77 -0.04,-0.77 -0.04,-0.78 -0.05,-0.77 -0.05,-0.77 -0.04,-0.78 -0.03,-0.77 -0.02,-0.77 -0.02,-0.78 z" /></g></g><g
- style=""
- id="g1032"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><g
- clip-path="url(#clipPath1038)"
- id="g1034"><path
- inkscape:connector-curvature="0"
- id="path1040"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="M 835.22,368.14 H 849.6 V 529.97 H 835.22 Z" /><text
- id="text1044"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0,-1,-1,0,838.82,471.28)"><tspan
- id="tspan1042"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 19.450001 25.01 33.34 38.900002">H3K4me2</tspan></text>
- </g></g><g
- style=""
- id="g1082"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1084"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.07,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1086"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 116.42,33.03 v 4.25" /></g><g
- style=""
- id="g1090"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1094"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,54.15,23.02)"><tspan
- id="tspan1092"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1098"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,105.28,23.02)"><tspan
- id="tspan1096"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1110"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1112"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 172.04,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1114"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 215.39,33.03 v 4.25" /></g><g
- style=""
- id="g1118"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1122"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,153.12,23.02)"><tspan
- id="tspan1120"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1126"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,204.25,23.02)"><tspan
- id="tspan1124"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1138"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1140"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 271.01,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1142"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 314.36,33.03 v 4.25" /></g><g
- style=""
- id="g1146"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1150"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,252.09,23.02)"><tspan
- id="tspan1148"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1154"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,303.22,23.02)"><tspan
- id="tspan1152"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1166"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1168"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 369.98,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1170"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 413.33,33.03 v 4.25" /></g><g
- style=""
- id="g1174"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1178"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,351.06,23.02)"><tspan
- id="tspan1176"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1182"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,402.19,23.02)"><tspan
- id="tspan1180"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1194"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1196"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 468.95,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1198"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 512.3,33.03 v 4.25" /></g><g
- style=""
- id="g1202"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1206"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,450.03,23.02)"><tspan
- id="tspan1204"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1210"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,501.16,23.02)"><tspan
- id="tspan1208"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1222"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1224"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 567.92,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1226"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 611.27,33.03 v 4.25" /></g><g
- style=""
- id="g1230"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1234"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,549,23.02)"><tspan
- id="tspan1232"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1238"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,600.13,23.02)"><tspan
- id="tspan1236"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1250"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1252"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 666.89,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1254"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 710.24,33.03 v 4.25" /></g><g
- style=""
- id="g1258"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1262"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,647.97,23.02)"><tspan
- id="tspan1260"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1266"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,699.1,23.02)"><tspan
- id="tspan1264"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1278"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><path
- inkscape:connector-curvature="0"
- id="path1280"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 765.86,33.03 v 4.25" /><path
- inkscape:connector-curvature="0"
- id="path1282"
- style="fill:none;stroke:#7f7f7f;stroke-width:1.05999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
- d="m 809.21,33.03 v 4.25" /></g><g
- style=""
- id="g1286"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1290"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,746.94,23.02)"><tspan
- id="tspan1288"
- sodipodi:role="line"
- y="0"
- x="0 7.2199998 12.78 15.56 21.73 27.290001 32.849998">No Peak</tspan></text>
- <text
- id="text1294"
- style="font-variant:normal;font-weight:normal;font-size:10px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1,0,0,-1,798.07,23.02)"><tspan
- id="tspan1292"
- sodipodi:role="line"
- y="0"
- x="0 6.1700001 11.73 17.290001">Peak</tspan></text>
- </g><g
- style=""
- id="g1312"
- transform="matrix(1.3333333,0,0,-1.3333333,-13.333333,745.33333)"><text
- id="text1316"
- style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0,1,1,0,19.42,251.62)"><tspan
- id="tspan1314"
- sodipodi:role="line"
- y="0"
- x="0 2.664 9.3360004 16.007999 22.68 26.676001 34.007999 42.012001 50.015999 60.012001">log2(FPKM)</tspan></text>
- </g></g></svg>
|