123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
- <svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.1"
- width="744.09448"
- height="1052.3622"
- id="svg2">
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient4377">
- <stop
- id="stop4379"
- style="stop-color:#000000;stop-opacity:0.06360424"
- offset="0" />
- </linearGradient>
- <linearGradient
- x1="294.29001"
- y1="311.76999"
- x2="393.57001"
- y2="311.76999"
- id="linearGradient7880"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.80151,0,0,0.83481,58.418,50.055)">
- <stop
- id="stop7799"
- style="stop-color:#b1b1c5;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7801"
- style="stop-color:#b1b1c5;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="460.35999"
- y1="327.91"
- x2="545.48999"
- y2="327.91"
- id="linearGradient7661"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.83049,0,0,0.4852,-84.331,-86.578)">
- <stop
- id="stop7657"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7659"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="-34.099998"
- y1="654.38"
- x2="571.71002"
- y2="654.38"
- id="linearGradient7651"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.52132,0,0,0.098422,71.87,-7.5997)">
- <stop
- id="stop7647"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7649"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="198.41"
- y1="338.01999"
- x2="353.98001"
- y2="405.04999"
- id="linearGradient5019"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5443,0,0,0.82685,-200.61,-195.21)">
- <stop
- id="stop5015"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop5017"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="-34.099998"
- y1="654.38"
- x2="571.71002"
- y2="654.38"
- id="linearGradient7651-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.52132,0,0,0.098422,71.87,-7.5997)">
- <stop
- id="stop7647-2"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7649-7"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="460.35999"
- y1="327.91"
- x2="545.48999"
- y2="327.91"
- id="linearGradient7661-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.83049,0,0,0.4852,-84.331,-86.578)">
- <stop
- id="stop7657-9"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7659-3"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="198.41"
- y1="338.01999"
- x2="353.98001"
- y2="405.04999"
- id="linearGradient5019-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5443,0,0,0.82685,-200.61,-195.21)">
- <stop
- id="stop5015-0"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop5017-6"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="294.29001"
- y1="311.76999"
- x2="393.57001"
- y2="311.76999"
- id="linearGradient7880-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.80151,0,0,0.83481,58.418,50.055)">
- <stop
- id="stop7799-6"
- style="stop-color:#b1b1c5;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7801-1"
- style="stop-color:#b1b1c5;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="-34.099998"
- y1="654.38"
- x2="571.71002"
- y2="654.38"
- id="linearGradient7651-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.52132,0,0,0.098422,71.87,-7.5997)">
- <stop
- id="stop7647-5"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7649-6"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="460.35999"
- y1="327.91"
- x2="545.48999"
- y2="327.91"
- id="linearGradient7661-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.83049,0,0,0.4852,-84.331,-86.578)">
- <stop
- id="stop7657-3"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7659-7"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="198.41"
- y1="338.01999"
- x2="353.98001"
- y2="405.04999"
- id="linearGradient5019-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5443,0,0,0.82685,-200.61,-195.21)">
- <stop
- id="stop5015-5"
- style="stop-color:#a0a0b4;stop-opacity:1"
- offset="0" />
- <stop
- id="stop5017-2"
- style="stop-color:#a0a0b4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="294.29001"
- y1="311.76999"
- x2="393.57001"
- y2="311.76999"
- id="linearGradient7880-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.80151,0,0,0.83481,58.418,50.055)">
- <stop
- id="stop7799-4"
- style="stop-color:#b1b1c5;stop-opacity:1"
- offset="0" />
- <stop
- id="stop7801-7"
- style="stop-color:#b1b1c5;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient6561">
- <stop
- id="stop6563"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- </linearGradient>
- <linearGradient
- x1="-34.099998"
- y1="654.38"
- x2="571.71002"
- y2="654.38"
- id="linearGradient7222"
- xlink:href="#linearGradient7651"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.22700669,0,0,0.06275897,224.53658,760.63735)" />
- <linearGradient
- x1="460.35999"
- y1="327.91"
- x2="545.48999"
- y2="327.91"
- id="linearGradient7224"
- xlink:href="#linearGradient7661"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.36163352,0,0,0.30938865,156.51949,710.27669)" />
- <linearGradient
- x1="198.41"
- y1="338.01999"
- x2="353.98001"
- y2="405.04999"
- id="linearGradient7226"
- xlink:href="#linearGradient5019"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.6724592,0,0,0.52724239,105.88627,641.0073)" />
- <linearGradient
- x1="-34.099998"
- y1="654.38"
- x2="571.71002"
- y2="654.38"
- id="linearGradient7228"
- xlink:href="#linearGradient7651"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.52132,0,0,0.098422,71.87,-7.5997)" />
- <linearGradient
- x1="460.35999"
- y1="327.91"
- x2="545.48999"
- y2="327.91"
- id="linearGradient7230"
- xlink:href="#linearGradient7661"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.83049,0,0,0.4852,-84.331,-86.578)" />
- <linearGradient
- x1="198.41"
- y1="338.01999"
- x2="353.98001"
- y2="405.04999"
- id="linearGradient7232"
- xlink:href="#linearGradient5019"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5443,0,0,0.82685,-200.61,-195.21)" />
- </defs>
- <metadata
- id="metadata7">
- <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></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- transform="translate(-57.843279,74.163335)"
- id="layer1">
- <path
- d="M 301.4185,236.68316 149.1868,258.78131"
- id="path8574"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 396.4011,494.53704 -0.82521,-64.88016"
- id="path7238-4"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 358.65746,34.78053 0,180"
- id="path7558"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 393.32412,28.11386 0,62.66667 1.33334,124"
- id="path7556"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 386.5183,910.06514 -93.03426,0 0,0"
- id="path7756"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <text
- x="702.43494"
- y="920.16699"
- id="text4383"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="702.43494"
- y="920.16699"
- id="tspan4385">Keller</tspan></text>
- <text
- x="702.43494"
- y="805.70972"
- id="text4387"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="702.43494"
- y="805.70972"
- id="tspan4389">EG</tspan></text>
- <text
- x="702.24744"
- y="657.46625"
- id="text4391"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="702.24744"
- y="657.46625"
- id="tspan4393">1. OG</tspan></text>
- <text
- x="702.83337"
- y="517.99841"
- id="text4395"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="702.83337"
- y="517.99841"
- id="tspan4397">2.OG</tspan></text>
- <text
- x="702.7865"
- y="367.76349"
- id="text4399"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="702.7865"
- y="367.76349"
- id="tspan4401">3. OG</tspan></text>
- <text
- x="700.9679"
- y="217.55814"
- id="text4403"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="700.9679"
- y="217.55814"
- id="tspan4405">Dach</tspan></text>
- <g
- transform="matrix(0.14806901,0,0,0.16719917,87.996899,187.84544)"
- id="layer1-7">
- <path
- d="M 177.14759,528.6053 450.70954,363.88045 c 1.42806,-0.8897 3.06229,-0.8124 3.66433,0.17326 l 25.84409,28.28675 c 0.60206,0.98565 -0.0629,2.49538 -1.49089,3.38503 l -277.2367,172.72383 c -1.42804,0.88971 -3.06228,0.81242 -3.66433,-0.17325 l -22.16517,-36.28795 c -0.60201,-0.98565 0.063,-2.49539 1.4909,-3.38504 z"
- id="path6049"
- style="color:#000000;fill:#1a1f22;stroke:#1a1f22;stroke-width:1.47413266;stroke-linecap:round" />
- <path
- d="m 192.08283,563.31405 c -101.422154,68.95954 -14.94205,132.73839 59.23508,104.86171 74.17713,-27.87669 64.90313,-50.80474 136.99696,-72.72725 65.64621,-19.96197 101.45339,-66.11045 101.45339,-66.11045"
- id="path15220"
- style="color:#000000;fill:none;stroke:#000000;stroke-width:9.292202;stroke-linecap:round" />
- <path
- d="M 187.20681,544.79925 470.74006,387.18398 c 1.4801,-0.85129 3.1739,-0.77733 3.79789,0.16578 l 26.7861,27.06588 c 0.62399,0.9431 -0.0652,2.38768 -1.54523,3.23893 L 212.43688,582.92358 c -1.4801,0.8513 -3.1739,0.77734 -3.7979,-0.16577 l -22.97306,-34.72176 c -0.62397,-0.94309 0.0652,-2.38768 1.54522,-3.23893 z"
- id="rect15201"
- style="color:#000000;fill:#1a1f22;stroke:#1a1f22;stroke-width:1.46801436;stroke-linecap:round" />
- <path
- d="M 449.97147,370.24994 184.34545,529.99406 212.40704,574.18114 483.23255,408.55103 449.97147,370.24994 z"
- id="path15206"
- style="color:#000000;fill:#a2a6a1;stroke:#1a1f22;stroke-width:2.3231163;stroke-linecap:round" />
- <path
- d="m 494.37773,408.16757 -1.40308,14.76504 -274.03362,172.38048 c 0,0 -1.24135,1.0929 -2.42705,-0.14906 -1.18567,-1.24195 -6.17396,-11.26253 -6.17396,-11.26253 L 494.38234,408.1713 z"
- id="path15218"
- style="color:#000000;fill:#d9d6d2;stroke:#1a1f22;stroke-width:1.48354959;stroke-linecap:round" />
- <path
- d="m 492.53709,555.23218 c 0,0 1.1514,-15.82866 11.04632,-23.48305 9.89482,-7.65398 25.39454,-10.21279 25.39454,-10.21279 l -26.96043,-28.80711 c 0,0 0.0394,9.92016 -8.02853,17.12875 -8.06785,7.20924 -28.54974,16.49236 -28.54974,16.49236 l 27.10283,28.87693 z"
- id="path14832-2"
- style="color:#000000;fill:#000000" />
- <path
- d="m 490.36534,557.4016 -27.02321,-29.45056 c -0.82712,-0.90143 -0.76731,-2.29304 0.13412,-3.12014 l 1.62706,-1.49302 c 0.90141,-0.82713 2.29304,-0.76733 3.12013,0.1341 l 27.02321,29.45056 c 0.82712,0.90143 0.76733,2.29304 -0.13411,3.12014 l -1.62705,1.49301 c -0.90143,0.82713 -2.29304,0.76733 -3.12014,-0.13409 z"
- id="rect14790-8"
- style="color:#000000;fill:#313940" />
- <path
- d="m 494.14951,547.122 -21.92147,-23.89018 c -0.67096,-0.73123 -0.62245,-1.86012 0.1088,-2.53109 l 1.3199,-1.21113 c 0.73126,-0.67098 1.86013,-0.62247 2.53109,0.10877 l 21.92146,23.89018 c 0.67097,0.73124 0.62245,1.86012 -0.10878,2.53108 l -1.31991,1.21112 c -0.73124,0.67099 -1.86012,0.62248 -2.53108,-0.10876 z"
- id="rect14792-6"
- style="color:#000000;fill:#313940" />
- <path
- d="m 498.83122,538.37803 -17.09479,-18.63019 c -0.52321,-0.57021 -0.48538,-1.45048 0.0848,-1.97372 l 1.02927,-0.94443 c 0.5702,-0.52321 1.45048,-0.48538 1.97371,0.0848 l 17.0948,18.63019 c 0.52321,0.57021 0.48538,1.45048 -0.0848,1.97371 l -1.02927,0.94443 c -0.57021,0.52322 -1.45047,0.48539 -1.97371,-0.0848 z"
- id="rect14794-0"
- style="color:#000000;fill:#313940" />
- <path
- d="m 504.61767,533.13884 -17.1,-18.62961 c -0.5232,-0.5702 -0.48538,-1.45048 0.0848,-1.97372 l 1.02925,-0.94443 c 0.57022,-0.52322 1.45048,-0.48538 1.97372,0.0848 l 17.09479,18.63019 c 0.52322,0.57021 0.48537,1.45048 -0.0848,1.97372 l -1.02925,0.94443 c -0.57022,0.52322 -1.45048,0.48538 -1.97372,-0.0848 z"
- id="rect14796-2"
- style="color:#000000;fill:#313940" />
- <path
- d="m 512.60905,529.20979 -20.04914,-21.85011 c -0.61368,-0.6688 -0.5693,-1.70128 0.0995,-2.31498 l 1.20719,-1.10773 c 0.6688,-0.61368 1.70128,-0.5693 2.31498,0.0995 l 20.04914,21.85011 c 0.61368,0.66881 0.56932,1.70128 -0.0995,2.31498 l -1.20719,1.10773 c -0.66879,0.61368 -1.70127,0.5693 -2.31498,-0.0995 z"
- id="rect14798-4"
- style="color:#000000;fill:#313940" />
- <path
- d="m 520.26638,525.8327 -23.30103,-25.39429 c -0.71319,-0.77725 -0.66162,-1.97713 0.11563,-2.69032 l 1.40295,-1.28732 c 0.77725,-0.7132 1.97712,-0.66162 2.69031,0.11562 l 23.30103,25.3943 c 0.71318,0.77725 0.6616,1.97712 -0.11563,2.69031 l -1.40295,1.28734 c -0.77725,0.7132 -1.97713,0.66162 -2.69031,-0.11564 z"
- id="rect14800-8"
- style="color:#000000;fill:#313940" />
- <path
- d="m 570.18709,484.39699 -25.83894,22.80588 c -0.79087,0.69801 -1.98947,0.62328 -2.68756,-0.1676 l -1.25999,-1.42765 c -0.69803,-0.79086 -0.62328,-1.98946 0.1676,-2.68755 l 25.83894,-22.80587 c 0.7909,-0.69804 1.9896,-0.6233 2.68755,0.1676 l 1.25997,1.42751 c 0.69805,0.7909 0.6233,1.9896 -0.1676,2.68755 z"
- id="rect14800-2-6"
- style="color:#000000;fill:#000000" />
- <path
- d="m 550.46473,462.14219 -25.29242,23.40969 c -0.77413,0.71651 -1.97419,0.67014 -2.69073,-0.10404 l -1.29337,-1.39738 c -0.71654,-0.77415 -0.67014,-1.9742 0.10402,-2.69073 l 25.29242,-23.4097 c 0.77418,-0.71655 1.97432,-0.67017 2.69086,0.104 l 1.29336,1.39739 c 0.71655,0.77417 0.67013,1.9742 -0.10401,2.69086 z"
- id="path15277"
- style="color:#000000;fill:#000000" />
- <path
- d="M 532.07863,526.8065 496.7047,488.25369 c -1.21027,-1.31895 -1.45892,-3.04674 -0.55745,-3.87385 l 23.98944,-22.01305 c 0.90143,-0.82714 2.60141,-0.43116 3.81169,0.88781 l 35.37524,38.55266 c 1.21028,1.31895 1.45892,3.04675 0.55745,3.87385 l -23.98944,22.01305 c -0.90143,0.82713 -2.60141,0.43116 -3.81169,-0.88781 z"
- id="rect14790-1-0"
- style="color:#000000;fill:#313940" />
- <path
- d="m 2416.9122,504.1019 a 96.0868,119.45054 0 1 1 -192.1736,0 96.0868,119.45054 0 1 1 192.1736,0 z"
- transform="matrix(0.02464845,-0.21319323,0.19743349,0.02907616,200.73404,935.2016)"
- id="path15377"
- style="opacity:0.54274998;color:#000000;fill:#d9d6d2;stroke:#000000;stroke-width:5.88899994;stroke-linecap:square" />
- <path
- d="m 334.69416,458.55649 c 0.008,-0.0224 0.006,-0.049 0.0156,-0.0717 3.13654,-7.16308 15.39591,-13.7029 25.38016,-12.29838 11.68725,1.64407 17.00831,12.76449 15.86679,22.15855 -0.003,0.0324 -0.009,0.0628 -0.0134,0.0947 2.82389,-2.71686 4.68619,-6.19284 5.14531,-10.16383 1.24445,-10.76379 -8.31017,-21.06075 -21.33516,-22.97811 -13.02455,-1.91819 -24.58813,5.2635 -25.83232,16.02727 -0.28559,2.46985 0.011,4.90768 0.77371,7.23158 l -5e-5,1.4e-4 z"
- id="path15379"
- style="opacity:0.54274998;color:#000000;fill:#1a1f22" />
- <path
- d="m 2416.9122,504.1019 a 96.0868,119.45054 0 1 1 -192.1736,0 96.0868,119.45054 0 1 1 192.1736,0 z"
- transform="matrix(0.02464845,-0.21319323,0.19743349,0.02907616,157.60482,962.4587)"
- id="path15381"
- style="opacity:0.54274998;color:#000000;fill:#d9d6d2;stroke:#000000;stroke-width:5.88899994;stroke-linecap:square" />
- <path
- d="m 291.56494,485.81359 c 0.008,-0.0224 0.006,-0.049 0.0156,-0.0717 3.13654,-7.16308 15.39591,-13.7029 25.38016,-12.29838 11.68725,1.64407 17.00831,12.76449 15.86679,22.15855 -0.003,0.0324 -0.009,0.0628 -0.0134,0.0947 2.82389,-2.71686 4.68619,-6.19284 5.14531,-10.16383 1.24445,-10.76379 -8.31017,-21.06075 -21.33516,-22.97811 -13.02455,-1.91819 -24.58813,5.2635 -25.83232,16.02727 -0.28559,2.46985 0.011,4.90768 0.77371,7.23158 l -5e-5,1.4e-4 z"
- id="path15383"
- style="opacity:0.54274998;color:#000000;fill:#1a1f22" />
- <path
- d="m 2416.9122,504.1019 a 96.0868,119.45054 0 1 1 -192.1736,0 96.0868,119.45054 0 1 1 192.1736,0 z"
- transform="matrix(0.02464845,-0.21319323,0.19743349,0.02907616,113.1725,989.86164)"
- id="path15385"
- style="opacity:0.54274998;color:#000000;fill:#d9d6d2;stroke:#000000;stroke-width:5.88899994;stroke-linecap:square" />
- <path
- d="m 247.13262,513.21653 c 0.008,-0.0224 0.006,-0.049 0.0156,-0.0717 3.13654,-7.16308 15.39591,-13.7029 25.38016,-12.29838 11.68725,1.64407 17.00831,12.76449 15.86679,22.15855 -0.003,0.0324 -0.009,0.0628 -0.0134,0.0947 2.82389,-2.71686 4.68619,-6.19284 5.14531,-10.16383 1.24445,-10.76379 -8.31017,-21.06075 -21.33516,-22.97811 -13.02455,-1.91819 -24.58813,5.2635 -25.83232,16.02727 -0.28559,2.46985 0.011,4.90768 0.77371,7.23158 l -5e-5,1.4e-4 z"
- id="path15387"
- style="opacity:0.54274998;color:#000000;fill:#1a1f22" />
- <path
- d="m 2416.9122,504.1019 a 96.0868,119.45054 0 1 1 -192.1736,0 96.0868,119.45054 0 1 1 192.1736,0 z"
- transform="matrix(0.02464845,-0.21319323,0.19743349,0.02907616,66.637084,1016.1805)"
- id="path15389"
- style="opacity:0.54274998;color:#000000;fill:#d9d6d2;stroke:#000000;stroke-width:5.88899994;stroke-linecap:square" />
- <path
- d="m 200.59981,539.53513 c 0.008,-0.0224 0.006,-0.049 0.0156,-0.0717 3.13654,-7.16308 15.39591,-13.7029 25.38016,-12.29838 11.68725,1.64407 17.00831,12.76449 15.86679,22.15855 -0.003,0.0324 -0.009,0.0628 -0.0134,0.0947 2.82389,-2.71686 4.68619,-6.19284 5.14531,-10.16383 1.24445,-10.76379 -8.31017,-21.06075 -21.33516,-22.97811 -13.02455,-1.91819 -24.58813,5.2635 -25.83232,16.02727 -0.28559,2.46985 0.011,4.90768 0.77371,7.23158 l -5e-5,1.4e-4 z"
- id="path15391"
- style="opacity:0.54274998;color:#000000;fill:#1a1f22" />
- <path
- d="m 387.00101,422.01453 17.57076,17.00021 15.73949,-9.67806 -12.68532,-19.03133 -4.27154,0.14821 -15.61305,9.33405 -0.74034,2.22692 z"
- id="path15393"
- style="color:#000000;fill:#ff0045;stroke:#000000;stroke-width:0.69692171;stroke-linecap:round" />
- <path
- d="m 387.00101,422.01453 4.45147,-1.48776 16.20992,-9.89564"
- id="path15395"
- style="color:#000000;fill:#ff0045;stroke:#000000;stroke-width:0.69692171;stroke-linecap:round" />
- <path
- d="m 391.62781,420.67867 12.88349,17.85466"
- id="path15397"
- style="color:#000000;fill:#ff0045;stroke:#000000;stroke-width:0.69692171;stroke-linecap:round" />
- <rect
- width="15.8654"
- height="32.906013"
- ry="0.1611066"
- x="367.84222"
- y="120.4439"
- transform="translate(127.88,276.96)"
- id="rect6051"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#f9f9f9;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- </g>
- <g
- transform="matrix(3.0384746,0,0,2.6031339,-333.04069,-710.45043)"
- id="g6951"
- style="stroke-width:0.35556903;stroke-miterlimit:4;stroke-dasharray:none">
- <rect
- width="3.6160536"
- height="4.9167366"
- ry="0.134344"
- x="175.45853"
- y="469.36218"
- id="rect3419-7"
- style="fill:none;stroke:#000000;stroke-width:0.35556903;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
- <path
- d="m 21.072395,17.410208 a 5.8184972,12.501906 0 1 1 -11.6369945,0 5.8184972,12.501906 0 1 1 11.6369945,0 z"
- transform="matrix(1.1759204,0,0,1.3957082,149.9793,445.06261)"
- id="path5080-1"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:0.27754772;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- </g>
- <g
- transform="translate(97.34993,1.2281632)"
- id="g7661">
- <rect
- width="5.964386"
- height="30.935873"
- ry="0.1611066"
- x="577.08014"
- y="343.89426"
- id="rect3231-1"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:1.24979925;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="3.8155088"
- height="4.5286541"
- ry="0.1611066"
- x="573.05377"
- y="357.29947"
- id="rect3235-5"
- style="fill:none;stroke:#000000;stroke-width:1.28110957;stroke-linecap:round;stroke-linejoin:round" />
- <path
- d="m 579.49436,323.37615 c 0.57812,0 1.04568,0.5496 1.04568,1.22913 v 17.47887 c 0,0.67952 -0.46753,1.2291 -1.04568,1.2291 -0.57678,0 -1.04572,-0.54955 -1.04572,-1.2291 v -17.47887 c 0,-0.67953 0.46897,-1.22913 1.04572,-1.22913"
- id="path5731-6"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.38852507;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 584.34343,327.75893 c 0.76111,-0.77016 1.229,-2.06497 1.25208,-3.46606 0.0245,-1.3986 -0.39874,-2.72879 -1.1318,-3.55985"
- id="path5753-7"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 588.75658,329.73073 c 1.04937,-1.48473 1.6343,-3.58765 1.61123,-5.77945 -0.0244,-2.19163 -0.65564,-4.2642 -1.73642,-5.69335"
- id="path5755-3"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 592.95719,332.04501 c 2.22076,-4.93305 2.20924,-11.47488 -0.0311,-16.39036"
- id="path5757-6"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 597.5458,334.46307 c 2.36904,-6.72439 2.47117,-14.79892 0.27346,-21.66028"
- id="path5759-5"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- </g>
- <path
- d="m 377.95204,908.66162 172.98795,-0.8931 1.22686,-397.4324"
- id="path6976"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 670.92263,361.20624 -108.06173,0 0,0"
- id="path6984"
- style="fill:none;stroke:#000000;stroke-width:1.11380255;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="M 418.66667,511.02885 552,509.69552"
- id="path7236"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 406.04667,496.49586 -0.81954,-66.21698"
- id="path7238"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 212.66667,519.02885 86.66666,0"
- id="path7261"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 310,241.69552 2.66667,262.66666 0,0"
- id="path7265"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 420.66667,224.36218 122.66666,-2.66666"
- id="path7269"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(14,16)"
- id="g7633">
- <path
- d="m 538.21879,175.25529 c 1.10293,0 1.99495,0.66519 1.99495,1.48761 v 21.15479 c 0,0.82242 -0.89197,1.48757 -1.99495,1.48757 -1.10036,0 -1.99501,-0.66511 -1.99501,-1.48757 V 176.7429 c 0,-0.82242 0.89471,-1.48761 1.99501,-1.48761"
- id="path5731"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 521.00621,201.72427 8.20428,-6.11763 h 49.22568 l 8.20428,6.11763 v 14.27449 h -65.63424 z"
- id="path5733"
- style="fill:#e1e1e1;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="M 524.42466,203.76349 H 583.222 c 0.37918,0 0.68369,0.229 0.68369,0.5098 v 9.17646 c 0,0.28079 -0.30438,0.5098 -0.68369,0.5098 h -58.79734 c -0.37658,0 -0.68369,-0.22901 -0.68369,-0.5098 v -9.17646 c 0,-0.2808 0.30711,-0.5098 0.68369,-0.5098"
- id="path5735"
- style="fill:#bdbdbd;fill-rule:evenodd;stroke:#9c9c9c;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 568.18082,207.84191 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67905 1.36738,-0.67905 1.36738,0"
- id="path5737"
- style="fill:#c51900;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 574.33403,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path5739"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 526.47573,201.72427 5.46952,-4.07842 h 45.12354 l 5.46952,4.07842 z"
- id="path5741"
- style="fill:#bdbdbd;fill-rule:evenodd;stroke:#9c9c9c;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,205.8027 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path5743"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 577.06879,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path5745"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 579.80355,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path5747"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,209.88113 c 0,0.67905 -1.36738,0.67905 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path5749"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,211.92034 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path5751"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 545.08552,176.31772 c 1.23382,-0.60532 1.99233,-1.62301 2.02974,-2.72426 0.0397,-1.09926 -0.64639,-2.14477 -1.83475,-2.79797"
- id="path5753"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 552.23965,177.86752 c 1.70113,-1.16696 2.64933,-2.81982 2.61192,-4.54255 -0.0396,-1.72256 -1.06284,-3.35157 -2.81489,-4.47485"
- id="path5755"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 559.04921,179.6865 c 3.60004,-3.87728 3.58138,-9.01903 -0.0506,-12.88252"
- id="path5757"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 566.48775,181.58705 c 3.84043,-5.28523 4.00599,-11.63167 0.44331,-17.02458"
- id="path5759"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 525.88502,211.85101 h 28.56293 v 1.09925 h -28.56293 z"
- id="path5761"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86861,209.63234 h 28.56293 v 1.09926 h -28.56293 z"
- id="path5763"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86861,207.30764 h 28.56293 v 1.09926 h -28.56293 z"
- id="path5765"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86315,204.97478 h 28.56292 v 1.09926 h -28.56292 z"
- id="path5767"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- </g>
- <g
- transform="matrix(1.7761791,0,0,3.9698506,300.1289,-146.20749)"
- id="g3244"
- style="fill:none">
- <rect
- width="3.8430998"
- height="36.955437"
- ry="0.12188"
- x="41.069"
- y="30.89439"
- id="rect3225"
- style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <rect
- width="9.0029192"
- height="55.460213"
- ry="0.28882319"
- x="355.73752"
- y="28.689808"
- id="rect3229"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:2.05592346;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="9.0089579"
- height="55.04055"
- ry="0.28663796"
- x="388.52048"
- y="28.685577"
- id="rect3231"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:2.04882503;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="5.7631683"
- height="8.0572996"
- ry="0.28663796"
- x="364.67703"
- y="52.535908"
- id="rect3233"
- style="fill:none;stroke:#000000;stroke-width:2.10015273;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="5.7631683"
- height="8.0572996"
- ry="0.28663796"
- x="382.43881"
- y="52.535908"
- id="rect3235"
- style="fill:none;stroke:#000000;stroke-width:2.10015273;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="5.4618993"
- height="8.7477694"
- ry="0.23902242"
- x="366.01038"
- y="-19.642891"
- id="rect3419"
- style="fill:none;stroke:#000000;stroke-width:1.61111939;stroke-linecap:round;stroke-linejoin:round" />
- <g
- transform="translate(14,0)"
- id="g7924">
- <path
- d="m 332.02559,46.386347 c -5.62539,9.336187 -5.99364,17.783747 0.37595,25.093344"
- id="path3261"
- style="fill:none;stroke:#ff00ff;stroke-width:1.69957662px" />
- <path
- d="m 321.40189,37.414234 c -8.41882,14.075144 -11.22352,28.383507 -0.0616,43.265162"
- id="path3263"
- style="fill:none;stroke:#ff00ff;stroke-width:1.69957662px" />
- <path
- d="m 310.6534,29.582336 c -10.18827,18.08633 -14.75654,37.355994 -0.12511,60.677712"
- id="path3265"
- style="fill:none;stroke:#ff00ff;stroke-width:1.69957662px" />
- </g>
- <path
- d="m 408.07335,43.571155 c 3.06553,8.335007 5.04648,16.671927 -0.23458,25.006934"
- id="path3267"
- style="fill:none;stroke:#ff00ff;stroke-width:1.66514313px" />
- <path
- d="m 416.64876,34.40686 c 8.95478,15.161364 10.85897,29.880032 0.11729,43.800432"
- id="path3269"
- style="fill:none;stroke:#ff00ff;stroke-width:1.66514313px" />
- <path
- d="m 427.10227,26.485445 c 12.29981,19.934701 12.40842,40.070452 -0.35187,60.420659"
- id="path3271"
- style="fill:none;stroke:#ff00ff;stroke-width:1.66514313px" />
- <path
- d="m 21.072395,17.410208 a 5.8184972,12.501906 0 1 1 -11.6369945,0 5.8184972,12.501906 0 1 1 11.6369945,0 z"
- transform="matrix(1.7761791,0,0,2.4832189,327.52504,-62.87625)"
- id="path5080"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 374.05866,-18.066583 -4.36285,-2.259508 -0.0614,238.378061 2.2736,1.12975"
- id="path7562"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="matrix(0.43544596,0,0,0.6376518,274.67944,178.65254)"
- id="layer1-5-8">
- <path
- d="M 54.544,66.88 126.65,44.693 369.32,45.155 368.86,76.587 299.99,99.699 54.08,100.16 54.544,66.88 z"
- id="path8508-7"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- d="M 126.52,45.313 369.81,45.4 299.36,68.299 54.42,68.034 126.52,45.313 z"
- id="path7643-9"
- style="fill:url(#linearGradient7651-1);fill-rule:evenodd;stroke:#000000;stroke-width:0.49952" />
- <path
- d="m 299.96,100.44 68.32,-24.097 1.32,-30.69 -70.23,22.726 0.59,32.061 z"
- id="path7653-2"
- style="fill:url(#linearGradient7661-0);fill-rule:evenodd;stroke:#000000;stroke-width:0.63479px" />
- <rect
- width="244.91"
- height="32.228001"
- x="54.679001"
- y="68.164001"
- id="rect5011-0"
- style="fill:url(#linearGradient5019-6);stroke:#000000;stroke-width:1.13;stroke-linejoin:round" />
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.17,-226.61)"
- id="g7785-2">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="176.75999"
- y="303.39001"
- id="rect7663-3"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.10001"
- y="303.39001"
- id="rect7745-7"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.10001"
- y="303.39001"
- id="rect7747-5"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="256.76999"
- y="303.39001"
- id="rect7749-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.44"
- y="303.39001"
- id="rect7751-2"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.10001"
- y="303.39001"
- id="rect7753-2"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="216.77"
- y="303.39001"
- id="rect7755-8"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.42999"
- y="303.39001"
- id="rect7757-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.5,-226.71)"
- id="g7775-7">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="177.07001"
- y="312.98001"
- id="rect7759-3"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.39999"
- y="312.98001"
- id="rect7761-6"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.41"
- y="312.98001"
- id="rect7763-1"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="257.07001"
- y="312.98001"
- id="rect7765-2"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.74001"
- y="312.98001"
- id="rect7767-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.39999"
- y="312.98001"
- id="rect7769-3"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="217.07001"
- y="312.98001"
- id="rect7771-1"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.73"
- y="312.98001"
- id="rect7773-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(-99.113,-224.61)"
- id="g7859-4">
- <rect
- width="79.112"
- height="15.233"
- ry="1.7014"
- x="294.53"
- y="302.70999"
- id="rect7795-7"
- style="fill:url(#linearGradient7880-2);stroke:#3d3d3d;stroke-width:0.47593999;stroke-linejoin:round" />
- <g
- transform="translate(0.47078,0)"
- id="g7831-8">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7805-4"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7817-5"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7819-0"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7821-3"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7823-6"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7825-1"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7827-0"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7829-6"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(0.47078,5.5397)"
- id="g7841-3">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7843-2"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7845-0"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7847-6"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7849-1"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7851-5"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7853-5"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7855-4"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7857-7"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- </g>
- </g>
- <path
- d="m 318.65746,243.4472 2.66667,262.66666 0,0"
- id="path7265-1"
- style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(97.34993,299.40909)"
- id="g7670">
- <rect
- width="5.964386"
- height="30.935873"
- ry="0.1611066"
- x="577.08014"
- y="343.89426"
- id="rect7672"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:1.24979925;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="3.8155088"
- height="4.5286541"
- ry="0.1611066"
- x="573.05377"
- y="357.29947"
- id="rect7674"
- style="fill:none;stroke:#000000;stroke-width:1.28110957;stroke-linecap:round;stroke-linejoin:round" />
- <path
- d="m 579.49436,323.37615 c 0.57812,0 1.04568,0.5496 1.04568,1.22913 v 17.47887 c 0,0.67952 -0.46753,1.2291 -1.04568,1.2291 -0.57678,0 -1.04572,-0.54955 -1.04572,-1.2291 v -17.47887 c 0,-0.67953 0.46897,-1.22913 1.04572,-1.22913"
- id="path7676"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.38852507;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 584.34343,327.75893 c 0.76111,-0.77016 1.229,-2.06497 1.25208,-3.46606 0.0245,-1.3986 -0.39874,-2.72879 -1.1318,-3.55985"
- id="path7678"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 588.75658,329.73073 c 1.04937,-1.48473 1.6343,-3.58765 1.61123,-5.77945 -0.0244,-2.19163 -0.65564,-4.2642 -1.73642,-5.69335"
- id="path7680"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 592.95719,332.04501 c 2.22076,-4.93305 2.20924,-11.47488 -0.0311,-16.39036"
- id="path7682"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 597.5458,334.46307 c 2.36904,-6.72439 2.47117,-14.79892 0.27346,-21.66028"
- id="path7684"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- </g>
- <g
- transform="translate(97.34993,442)"
- id="g7686">
- <rect
- width="5.964386"
- height="30.935873"
- ry="0.1611066"
- x="577.08014"
- y="343.89426"
- id="rect7688"
- style="fill:#e6e6e6;stroke:#000000;stroke-width:1.24979925;stroke-linecap:round;stroke-linejoin:round" />
- <rect
- width="3.8155088"
- height="4.5286541"
- ry="0.1611066"
- x="573.05377"
- y="357.29947"
- id="rect7690"
- style="fill:none;stroke:#000000;stroke-width:1.28110957;stroke-linecap:round;stroke-linejoin:round" />
- <path
- d="m 579.49436,323.37615 c 0.57812,0 1.04568,0.5496 1.04568,1.22913 v 17.47887 c 0,0.67952 -0.46753,1.2291 -1.04568,1.2291 -0.57678,0 -1.04572,-0.54955 -1.04572,-1.2291 v -17.47887 c 0,-0.67953 0.46897,-1.22913 1.04572,-1.22913"
- id="path7692"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.38852507;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 584.34343,327.75893 c 0.76111,-0.77016 1.229,-2.06497 1.25208,-3.46606 0.0245,-1.3986 -0.39874,-2.72879 -1.1318,-3.55985"
- id="path7694"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 588.75658,329.73073 c 1.04937,-1.48473 1.6343,-3.58765 1.61123,-5.77945 -0.0244,-2.19163 -0.65564,-4.2642 -1.73642,-5.69335"
- id="path7696"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 592.95719,332.04501 c 2.22076,-4.93305 2.20924,-11.47488 -0.0311,-16.39036"
- id="path7698"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- <path
- d="m 597.5458,334.46307 c 2.36904,-6.72439 2.47117,-14.79892 0.27346,-21.66028"
- id="path7700"
- style="fill:none;stroke:#ff00ff;stroke-width:1.56906998;stroke-miterlimit:10" />
- </g>
- <g
- transform="translate(-130.52181,213.02026)"
- id="g7702">
- <path
- d="m 538.21879,175.25529 c 1.10293,0 1.99495,0.66519 1.99495,1.48761 v 21.15479 c 0,0.82242 -0.89197,1.48757 -1.99495,1.48757 -1.10036,0 -1.99501,-0.66511 -1.99501,-1.48757 V 176.7429 c 0,-0.82242 0.89471,-1.48761 1.99501,-1.48761"
- id="path7704"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 521.00621,201.72427 8.20428,-6.11763 h 49.22568 l 8.20428,6.11763 v 14.27449 h -65.63424 z"
- id="path7706"
- style="fill:#e1e1e1;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="M 524.42466,203.76349 H 583.222 c 0.37918,0 0.68369,0.229 0.68369,0.5098 v 9.17646 c 0,0.28079 -0.30438,0.5098 -0.68369,0.5098 h -58.79734 c -0.37658,0 -0.68369,-0.22901 -0.68369,-0.5098 v -9.17646 c 0,-0.2808 0.30711,-0.5098 0.68369,-0.5098"
- id="path7708"
- style="fill:#bdbdbd;fill-rule:evenodd;stroke:#9c9c9c;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 568.18082,207.84191 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67905 1.36738,-0.67905 1.36738,0"
- id="path7710"
- style="fill:#c51900;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <path
- d="m 574.33403,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path7712"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 526.47573,201.72427 5.46952,-4.07842 h 45.12354 l 5.46952,4.07842 z"
- id="path7714"
- style="fill:#bdbdbd;fill-rule:evenodd;stroke:#9c9c9c;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,205.8027 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path7716"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 577.06879,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path7718"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 579.80355,204.78309 h 1.36738 v 8.15686 h -1.36738 z"
- id="path7720"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,209.88113 c 0,0.67905 -1.36738,0.67905 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path7722"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 568.18082,211.92034 c 0,0.67906 -1.36738,0.67906 -1.36738,0 0,-0.67906 1.36738,-0.67906 1.36738,0"
- id="path7724"
- style="fill:#00c700;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 545.08552,176.31772 c 1.23382,-0.60532 1.99233,-1.62301 2.02974,-2.72426 0.0397,-1.09926 -0.64639,-2.14477 -1.83475,-2.79797"
- id="path7726"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 552.23965,177.86752 c 1.70113,-1.16696 2.64933,-2.81982 2.61192,-4.54255 -0.0396,-1.72256 -1.06284,-3.35157 -2.81489,-4.47485"
- id="path7728"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 559.04921,179.6865 c 3.60004,-3.87728 3.58138,-9.01903 -0.0506,-12.88252"
- id="path7730"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 566.48775,181.58705 c 3.84043,-5.28523 4.00599,-11.63167 0.44331,-17.02458"
- id="path7732"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 525.88502,211.85101 h 28.56293 v 1.09925 h -28.56293 z"
- id="path7734"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86861,209.63234 h 28.56293 v 1.09926 h -28.56293 z"
- id="path7736"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86861,207.30764 h 28.56293 v 1.09926 h -28.56293 z"
- id="path7738"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- <path
- d="m 525.86315,204.97478 h 28.56292 v 1.09926 h -28.56292 z"
- id="path7740"
- style="fill:#9c9c9c;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-miterlimit:10" />
- </g>
- <g
- transform="matrix(0.43544596,0,0,0.6376518,269.90775,466.81664)"
- id="layer1-5">
- <path
- d="M 54.544,66.88 126.65,44.693 369.32,45.155 368.86,76.587 299.99,99.699 54.08,100.16 54.544,66.88 z"
- id="path8508"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- d="M 126.52,45.313 369.81,45.4 299.36,68.299 54.42,68.034 126.52,45.313 z"
- id="path7643"
- style="fill:url(#linearGradient7228);fill-rule:evenodd;stroke:#000000;stroke-width:0.49952" />
- <path
- d="m 299.96,100.44 68.32,-24.097 1.32,-30.69 -70.23,22.726 0.59,32.061 z"
- id="path7653"
- style="fill:url(#linearGradient7230);fill-rule:evenodd;stroke:#000000;stroke-width:0.63479px" />
- <rect
- width="244.91"
- height="32.228001"
- x="54.679001"
- y="68.164001"
- id="rect5011"
- style="fill:url(#linearGradient7232);stroke:#000000;stroke-width:1.13;stroke-linejoin:round" />
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.17,-226.61)"
- id="g7785">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="176.75999"
- y="303.39001"
- id="rect7663"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.10001"
- y="303.39001"
- id="rect7745"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.10001"
- y="303.39001"
- id="rect7747"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="256.76999"
- y="303.39001"
- id="rect7749"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.44"
- y="303.39001"
- id="rect7751"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.10001"
- y="303.39001"
- id="rect7753"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="216.77"
- y="303.39001"
- id="rect7755"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.42999"
- y="303.39001"
- id="rect7757"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.5,-226.71)"
- id="g7775">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="177.07001"
- y="312.98001"
- id="rect7759"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.39999"
- y="312.98001"
- id="rect7761"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.41"
- y="312.98001"
- id="rect7763"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="257.07001"
- y="312.98001"
- id="rect7765"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.74001"
- y="312.98001"
- id="rect7767"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.39999"
- y="312.98001"
- id="rect7769"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="217.07001"
- y="312.98001"
- id="rect7771"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.73"
- y="312.98001"
- id="rect7773"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(-99.113,-224.61)"
- id="g7859">
- <rect
- width="79.112"
- height="15.233"
- ry="1.7014"
- x="294.53"
- y="302.70999"
- id="rect7795"
- style="fill:url(#linearGradient7880);stroke:#3d3d3d;stroke-width:0.47593999;stroke-linejoin:round" />
- <g
- transform="translate(0.47078,0)"
- id="g7831">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7805"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7817"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7819"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7821"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7823"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7825"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7827"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7829"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(0.47078,5.5397)"
- id="g7841">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7843"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7845"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7847"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7849"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7851"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7853"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7855"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7857"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- </g>
- </g>
- <text
- x="288.65851"
- y="551.65729"
- id="text7746"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="288.65851"
- y="551.65729"
- id="tspan7748">Switch 1</tspan><tspan
- x="288.65851"
- y="571.65729"
- id="tspan8148">BB-B31-sw1</tspan></text>
- <text
- x="388.86557"
- y="874.22711"
- id="text7750"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="388.86557"
- y="874.22711"
- id="tspan7752">Switch 2</tspan><tspan
- x="388.86557"
- y="894.22711"
- id="tspan8138">BB-B31-sw2</tspan></text>
- <text
- x="329.05902"
- y="266.89853"
- id="text7758"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="329.05902"
- y="266.89853"
- id="tspan7760">Switch 3</tspan><tspan
- x="329.05902"
- y="286.89853"
- id="tspan8150">BB-B31-sw3</tspan></text>
- <text
- x="183.29808"
- y="64.484901"
- id="text7762"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="183.29808"
- y="64.484901"
- id="tspan7764">B31-Dach-West</tspan></text>
- <rect
- width="50.335175"
- height="23.520344"
- ry="0.070099451"
- x="450.76202"
- y="47.772228"
- id="rect7800"
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.76020032;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <text
- x="449.94897"
- y="61.677887"
- id="text7766"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="449.94897"
- y="61.677887"
- id="tspan7768">B31-Dach-Ost</tspan></text>
- <text
- x="437.93274"
- y="402.20157"
- id="text7770"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="437.93274"
- y="402.20157"
- id="tspan7772">B31-04</tspan></text>
- <text
- x="483.60321"
- y="534.98926"
- id="text7774"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="483.60321"
- y="534.98926"
- id="tspan7776">Dose 6</tspan></text>
- <text
- x="586.7146"
- y="821.38751"
- id="text7778"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="586.7146"
- y="821.38751"
- id="tspan7780">Dose 9</tspan><tspan
- x="586.7146"
- y="841.38751"
- id="tspan7782">B31-01</tspan></text>
- <text
- x="580.73212"
- y="678.55255"
- id="text7784"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="580.73212"
- y="678.55255"
- id="tspan7786">Dose 11</tspan><tspan
- x="580.73212"
- y="698.55255"
- id="tspan7788">B31-05</tspan></text>
- <text
- x="572.70905"
- y="383.46387"
- id="text7790"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="572.70905"
- y="383.46387"
- id="tspan7792">Dose 13</tspan><tspan
- x="572.70905"
- y="403.46387"
- id="tspan7794">B31-02</tspan></text>
- <text
- x="535.97064"
- y="253.403"
- id="text7796"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="535.97064"
- y="253.403"
- id="tspan7798">BB-B31-kern</tspan></text>
- <path
- d="m 373.68434,916.88382 188.03356,-1.24457 1.33358,-553.81156"
- id="path6976-7"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 383.45814,923.97304 188.32709,-0.59858 1.33566,-266.36116"
- id="path6976-8"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 391.65827,931.50919 188.53115,-0.28759 1.3371,-127.98291"
- id="path6976-5"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 581.17261,802.2804 86.36363,0 0,0"
- id="path7882"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="matrix(0.43544596,0,0,0.6376518,330.34055,873.1819)"
- id="layer1-5-4">
- <path
- d="M 54.544,66.88 126.65,44.693 369.32,45.155 368.86,76.587 299.99,99.699 54.08,100.16 54.544,66.88 z"
- id="path8508-4"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- d="M 126.52,45.313 369.81,45.4 299.36,68.299 54.42,68.034 126.52,45.313 z"
- id="path7643-3"
- style="fill:url(#linearGradient7651-6);fill-rule:evenodd;stroke:#000000;stroke-width:0.49952" />
- <path
- d="m 299.96,100.44 68.32,-24.097 1.32,-30.69 -70.23,22.726 0.59,32.061 z"
- id="path7653-0"
- style="fill:url(#linearGradient7661-9);fill-rule:evenodd;stroke:#000000;stroke-width:0.63479px" />
- <rect
- width="244.91"
- height="32.228001"
- x="54.679001"
- y="68.164001"
- id="rect5011-7"
- style="fill:url(#linearGradient5019-4);stroke:#000000;stroke-width:1.13;stroke-linejoin:round" />
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.17,-226.61)"
- id="g7785-8">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="176.75999"
- y="303.39001"
- id="rect7663-6"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.10001"
- y="303.39001"
- id="rect7745-8"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.10001"
- y="303.39001"
- id="rect7747-8"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="256.76999"
- y="303.39001"
- id="rect7749-4"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.44"
- y="303.39001"
- id="rect7751-3"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.10001"
- y="303.39001"
- id="rect7753-1"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="216.77"
- y="303.39001"
- id="rect7755-4"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.42999"
- y="303.39001"
- id="rect7757-92"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="matrix(0.94963,0,0,1.0004,-102.5,-226.71)"
- id="g7775-0">
- <rect
- width="8.5410004"
- height="7.1174998"
- x="177.07001"
- y="312.98001"
- id="rect7759-6"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="190.39999"
- y="312.98001"
- id="rect7761-8"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="270.41"
- y="312.98001"
- id="rect7763-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="257.07001"
- y="312.98001"
- id="rect7765-26"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="243.74001"
- y="312.98001"
- id="rect7767-6"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="230.39999"
- y="312.98001"
- id="rect7769-4"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="217.07001"
- y="312.98001"
- id="rect7771-9"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- <rect
- width="8.5410004"
- height="7.1174998"
- x="203.73"
- y="312.98001"
- id="rect7773-5"
- style="fill:#000000;stroke:#3d3d3d;stroke-width:0.67799997;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(-99.113,-224.61)"
- id="g7859-0">
- <rect
- width="79.112"
- height="15.233"
- ry="1.7014"
- x="294.53"
- y="302.70999"
- id="rect7795-4"
- style="fill:url(#linearGradient7880-5);stroke:#3d3d3d;stroke-width:0.47593999;stroke-linejoin:round" />
- <g
- transform="translate(0.47078,0)"
- id="g7831-87">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7805-1"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7817-7"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7819-2"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7821-7"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7823-2"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7825-2"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7827-6"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7829-1"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- <g
- transform="translate(0.47078,5.5397)"
- id="g7841-0">
- <rect
- width="3.8992"
- height="3.8992"
- x="301.35999"
- y="305.75"
- id="rect7843-6"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="310.01999"
- y="305.75"
- id="rect7845-1"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="318.67999"
- y="305.75"
- id="rect7847-5"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="327.32999"
- y="305.75"
- id="rect7849-9"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="335.98999"
- y="305.75"
- id="rect7851-4"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="344.64999"
- y="305.75"
- id="rect7853-9"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="353.29999"
- y="305.75"
- id="rect7855-0"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- <rect
- width="3.8992"
- height="3.8992"
- x="361.95999"
- y="305.75"
- id="rect7857-9"
- style="fill:#27ff00;fill-opacity:0.53374;stroke:#3d3d3d;stroke-width:0.28132999;stroke-linejoin:round" />
- </g>
- </g>
- </g>
- <path
- d="m 573.78624,657.68949 93.75,0 0,0"
- id="path7886"
- style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <text
- x="136.33295"
- y="921.5238"
- id="text7900"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="136.33295"
- y="921.5238"
- id="tspan7902">DSL</tspan></text>
- <path
- d="m 173.28475,915.05722 59.12289,-11.0855"
- id="path7904"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(21.520856,-6.0166844)"
- id="g7989">
- <g
- transform="matrix(0.55273476,0,0,0.65545312,89.968485,377.51969)"
- id="g7128">
- <path
- d="m 216.99204,808.12946 31.39827,-14.14758 105.66967,0.2946 -0.2003,20.04267 -29.98917,14.73741 -107.08051,0.29395 0.20204,-21.22105 z"
- id="path6988"
- style="fill:#ffffff;fill-rule:evenodd" />
- <path
- d="m 248.3337,794.37723 105.93965,0.0555 -30.67717,14.60159 -106.65813,-0.16898 31.39565,-14.48808 z"
- id="path6990"
- style="fill:url(#linearGradient7222);fill-rule:evenodd;stroke:#000000;stroke-width:0.26321572" />
- <path
- d="m 323.85745,829.52906 29.74967,-15.3655 0.57479,-19.56953 -30.58137,14.49127 0.25691,20.44376 z"
- id="path6992"
- style="fill:url(#linearGradient7224);fill-rule:evenodd;stroke:#000000;stroke-width:0.33449453px" />
- <rect
- width="106.64507"
- height="20.550243"
- x="217.05083"
- y="808.94818"
- id="rect6994"
- style="fill:url(#linearGradient7226);stroke:#000000;stroke-width:0.59543914;stroke-linejoin:round" />
- </g>
- <path
- d="m 241.08925,873.24898 c 1.10293,0 1.99495,0.66519 1.99495,1.4876 v 21.1548 c 0,0.82241 -0.89197,1.48756 -1.99495,1.48756 -1.10036,0 -1.99501,-0.66511 -1.99501,-1.48756 v -21.1548 c 0,-0.82241 0.89471,-1.4876 1.99501,-1.4876"
- id="path730-3"
- style="fill:#7d7d7d;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.590379;stroke-linejoin:round;stroke-miterlimit:10" />
- <g
- id="g7973">
- <path
- d="m 249.95534,881.64238 c 1.23382,-0.60532 1.99233,-1.62301 2.02974,-2.72427 0.0397,-1.09925 -0.64639,-2.14476 -1.83475,-2.79796"
- id="path752-8"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 257.10947,883.19218 c 1.70113,-1.16696 2.64933,-2.81982 2.61192,-4.54255 -0.0397,-1.72256 -1.06284,-3.35157 -2.81489,-4.47485"
- id="path754-5"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 263.91903,885.01116 c 3.60004,-3.87728 3.58138,-9.01903 -0.0506,-12.88252"
- id="path756-6"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 271.35757,886.91171 c 3.84043,-5.28524 4.00599,-11.63167 0.44331,-17.02458"
- id="path758-1"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- </g>
- </g>
- <g
- transform="translate(33.520592,1.1482701)"
- id="g7937">
- <g
- transform="matrix(1.6151914,0,0,0.94218673,-214.12713,-74.043994)"
- id="g7929"
- style="stroke:#0000ff">
- <path
- d="m 332.02559,46.386347 c -5.62539,9.336187 -5.99364,17.783747 0.37595,25.093344"
- id="path7931"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- <path
- d="m 321.40189,37.414234 c -8.41882,14.075144 -11.22352,28.383507 -0.0616,43.265162"
- id="path7933"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- <path
- d="m 310.6534,29.582336 c -10.18827,18.08633 -14.75654,37.355994 -0.12511,60.677712"
- id="path7935"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- </g>
- </g>
- <g
- transform="translate(-151.3509,529.92666)"
- id="g7943">
- <g
- transform="matrix(1.6151914,0,0,0.94218673,-214.12713,-74.043994)"
- id="g7945"
- style="stroke:#0000ff">
- <path
- d="m 332.02559,46.386347 c -5.62539,9.336187 -5.99364,17.783747 0.37595,25.093344"
- id="path7947"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- <path
- d="m 321.40189,37.414234 c -8.41882,14.075144 -11.22352,28.383507 -0.0616,43.265162"
- id="path7949"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- <path
- d="m 310.6534,29.582336 c -10.18827,18.08633 -14.75654,37.355994 -0.12511,60.677712"
- id="path7951"
- style="fill:none;stroke:#0000ff;stroke-width:1.69957662px" />
- </g>
- </g>
- <text
- x="345.77744"
- y="698.08521"
- id="text8030"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="345.77744"
- y="698.08521"
- id="tspan8032" /></text>
- <g
- transform="translate(584.1578,-704.75249)"
- id="g8102">
- <g
- transform="matrix(-0.72829113,-0.08627335,0.04299412,-0.36384465,322.81342,715.28632)"
- id="g7955"
- style="stroke:#0000ff;stroke-width:3.85834408;stroke-miterlimit:4;stroke-dasharray:none">
- <path
- d="m 332.02559,46.386347 c -5.62539,9.336187 -5.99364,17.783747 0.37595,25.093344"
- id="path7957"
- style="fill:none;stroke:#0000ff;stroke-width:3.85834408;stroke-miterlimit:4;stroke-dasharray:none" />
- <path
- d="m 321.40189,37.414234 c -8.41882,14.075144 -11.22352,28.383507 -0.0616,43.265162"
- id="path7959"
- style="fill:none;stroke:#0000ff;stroke-width:3.85834408;stroke-miterlimit:4;stroke-dasharray:none" />
- <path
- d="m 310.6534,29.582336 c -10.18827,18.08633 -14.75654,37.355994 -0.12511,60.677712"
- id="path7961"
- style="fill:none;stroke:#0000ff;stroke-width:3.85834408;stroke-miterlimit:4;stroke-dasharray:none" />
- </g>
- <g
- transform="translate(-167.0733,-158.42339)"
- id="g7979">
- <path
- d="m 249.95534,881.64238 c 1.23382,-0.60532 1.99233,-1.62301 2.02974,-2.72427 0.0397,-1.09925 -0.64639,-2.14476 -1.83475,-2.79796"
- id="path7981"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 257.10947,883.19218 c 1.70113,-1.16696 2.64933,-2.81982 2.61192,-4.54255 -0.0397,-1.72256 -1.06284,-3.35157 -2.81489,-4.47485"
- id="path7983"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 263.91903,885.01116 c 3.60004,-3.87728 3.58138,-9.01903 -0.0506,-12.88252"
- id="path7985"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 271.35757,886.91171 c 3.84043,-5.28524 4.00599,-11.63167 0.44331,-17.02458"
- id="path7987"
- style="fill:none;stroke:#00c700;stroke-width:1.771137;stroke-miterlimit:10" />
- </g>
- <g
- transform="translate(-39.04118,-50.719495)"
- id="g8020">
- <path
- d="m 121.92322,747.29477 c 1.23382,-0.60532 1.99233,-1.62301 2.02974,-2.72427 0.0397,-1.09925 -0.64639,-2.14476 -1.83475,-2.79796"
- id="path8004"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 129.07735,748.84457 c 1.70113,-1.16696 2.64933,-2.81982 2.61192,-4.54255 -0.0397,-1.72256 -1.06284,-3.35157 -2.81489,-4.47485"
- id="path8006"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 135.88691,750.66355 c 3.60004,-3.87728 3.58138,-9.01903 -0.0506,-12.88252"
- id="path8008"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- <path
- d="m 143.32545,752.5641 c 3.84043,-5.28524 4.00599,-11.63167 0.44331,-17.02458"
- id="path8010"
- style="fill:none;stroke:#ff00ff;stroke-width:1.771137;stroke-miterlimit:10" />
- </g>
- <text
- x="115.92159"
- y="669.34052"
- id="text8026"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="115.92159"
- y="669.34052"
- id="tspan8028">Richtfunk</tspan></text>
- <text
- x="115.92159"
- y="698.08521"
- id="text8034"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="115.92159"
- y="698.08521"
- id="tspan8036">Freifunk</tspan></text>
- <text
- x="115.92159"
- y="726.82983"
- id="text8038"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="115.92159"
- y="726.82983"
- id="tspan8040">FREE!funk</tspan></text>
- </g>
- <text
- x="645.39819"
- y="956.44714"
- id="text8128"
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="645.39819"
- y="956.44714"
- id="tspan8130">Stand: 13.03.2017</tspan></text>
- <text
- x="225.6084"
- y="933.34796"
- id="text8132"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="225.6084"
- y="933.34796"
- id="tspan8134">wrap17</tspan><tspan
- x="225.6084"
- y="953.34796"
- id="tspan8136">(incl.vm22)</tspan></text>
- <text
- x="111.8056"
- y="576.03967"
- id="text8140"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="111.8056"
- y="576.03967"
- id="tspan8142">BB-B31-NB1</tspan></text>
- <text
- x="421.32413"
- y="568.63226"
- id="text8144"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="421.32413"
- y="568.63226"
- id="tspan8146" /></text>
- <text
- x="370.59604"
- y="-40.716721"
- id="text8152"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="370.59604"
- y="-40.716721"
- id="tspan8154">BB-B31-NB2</tspan></text>
- <g
- transform="translate(14,-14)"
- id="g8176">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8164"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- <path
- d="m 341.18064,126.77704 16.53717,0"
- id="path8172"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(14,0)"
- id="g8183">
- <text
- x="281.39819"
- y="120.37299"
- id="text8156"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="281.39819"
- y="120.37299"
- id="tspan8158">VLAN</tspan><tspan
- x="281.39819"
- y="140.37299"
- id="tspan8160">2010</tspan></text>
- <g
- transform="translate(0,-14)"
- id="g8179">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8181"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(134.3222,-9.4338867)"
- id="g8190">
- <text
- x="281.39819"
- y="120.37299"
- id="text8192"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="281.39819"
- y="120.37299"
- id="tspan8194">VLAN</tspan><tspan
- x="281.39819"
- y="140.37299"
- id="tspan8196">2010</tspan></text>
- <g
- transform="translate(0,-14)"
- id="g8198">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8200"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <path
- d="m 410.75082,116.51672 -16.8223,0 0,0"
- id="path8202"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <text
- x="220.34016"
- y="158.74199"
- id="text8204"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="220.34016"
- y="158.74199"
- id="tspan8206">VLAN</tspan><tspan
- x="220.34016"
- y="178.74199"
- id="tspan8208">2005</tspan><tspan
- x="220.34016"
- y="198.74199"
- id="tspan8210">2020</tspan><tspan
- x="220.34016"
- y="218.74199"
- id="tspan8212">3007</tspan></text>
- <rect
- width="56.439133"
- height="90.644669"
- ry="0.10640156"
- x="213.98117"
- y="136.72606"
- id="rect8214"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="13.682215"
- height="11.401845"
- ry="0.10640156"
- x="351.94351"
- y="165.23067"
- id="rect8216"
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 270.99041,170.63252 98.05587,0"
- id="path8218"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(318.85327,626.83091)"
- id="g8265">
- <text
- x="281.39819"
- y="120.37299"
- id="text8267"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="281.39819"
- y="120.37299"
- id="tspan8269">VLAN</tspan><tspan
- x="281.39819"
- y="140.37299"
- id="tspan8271">2010</tspan></text>
- <g
- transform="translate(0,-14)"
- id="g8273">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8275"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <text
- x="454.53946"
- y="268.33856"
- id="text8277"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="454.53946"
- y="268.33856"
- id="tspan8279">VLAN</tspan><tspan
- x="454.53946"
- y="288.33856"
- id="tspan8281">2005</tspan><tspan
- x="454.53946"
- y="308.33856"
- id="tspan8283">2010</tspan><tspan
- x="454.53946"
- y="328.33856"
- id="tspan8285">2020</tspan></text>
- <text
- x="223.94702"
- y="328.31924"
- id="text8287"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="223.94702"
- y="328.31924"
- id="tspan8289">VLAN</tspan><tspan
- x="223.94702"
- y="348.31924"
- id="tspan8291">2005</tspan><tspan
- x="223.94702"
- y="368.31924"
- id="tspan8537">2010</tspan><tspan
- x="223.94702"
- y="388.31924"
- id="tspan8293">2020</tspan><tspan
- x="223.94702"
- y="408.31924"
- id="tspan8295">3007</tspan></text>
- <rect
- width="62.756256"
- height="92.080154"
- ry="0.096716702"
- x="443.82007"
- y="246.29143"
- id="rect8297"
- style="fill:none;stroke:#000000;stroke-width:0.89024371;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="62.640877"
- height="117.71127"
- ry="0.12363843"
- x="213.28725"
- y="304.99622"
- id="rect8297-3"
- style="fill:none;stroke:#000000;stroke-width:1.00562322;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(57.604032,340.25649)"
- id="g8333">
- <text
- x="281.39819"
- y="120.37299"
- id="text8335"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="281.39819"
- y="120.37299"
- id="tspan8337">VLAN</tspan><tspan
- x="281.39819"
- y="140.37299"
- id="tspan8339">2010</tspan></text>
- <g
- transform="translate(0,-14)"
- id="g8341">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8343"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <text
- x="424.30939"
- y="461.29916"
- id="text8335-8"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="424.30939"
- y="461.29916"
- id="tspan8337-3">VLAN</tspan><tspan
- x="424.30939"
- y="481.29916"
- id="tspan8339-1">2020</tspan></text>
- <g
- transform="translate(142.9112,326.92616)"
- id="g8341-8">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8343-9"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- <text
- x="223.11276"
- y="611.43768"
- id="text8383"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="223.11276"
- y="611.43768"
- id="tspan8385">VLAN</tspan><tspan
- x="223.11276"
- y="631.43768"
- id="tspan8387">2005</tspan><tspan
- x="223.11276"
- y="651.43768"
- id="tspan8389">2020</tspan><tspan
- x="223.11276"
- y="671.43768"
- id="tspan8391">3007</tspan></text>
- <text
- x="445.61188"
- y="588.00543"
- id="text8393"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="445.61188"
- y="588.00543"
- id="tspan8395">VLAN</tspan><tspan
- x="445.61188"
- y="608.00543"
- id="tspan8397">2005</tspan><tspan
- x="445.61188"
- y="628.00543"
- id="tspan8399">2010</tspan><tspan
- x="445.61188"
- y="648.00543"
- id="tspan8401">2020</tspan><tspan
- x="445.61188"
- y="668.00543"
- id="tspan8403">3007</tspan></text>
- <text
- x="87.989502"
- y="518.26007"
- id="text8405"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="87.989502"
- y="518.26007"
- id="tspan8407">L.A.</tspan></text>
- <text
- x="261.14246"
- y="-9.0747824"
- id="text8405-6"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="261.14246"
- y="-9.0747824"
- id="tspan8407-4">L.A.</tspan></text>
- <path
- d="m 473.95767,246.53263 0,-22.82239"
- id="path8430"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 277.28238,349.23339 32.89109,-0.67125"
- id="path8432"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="13.682215"
- height="11.401845"
- ry="0.10640156"
- x="303.30487"
- y="364.34113"
- id="rect8216-3"
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 276.59739,369.38453 42.95979,-0.67125"
- id="path8436"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 385.3531,469.38656 8.05496,-0.67125"
- id="path8478"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 404.14801,466.03032 14.76743,0"
- id="path8480"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="54.370987"
- height="85.248337"
- ry="0.10640156"
- x="217.54141"
- y="592.97839"
- id="rect8482"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 248.41876,518.38757 -1.34249,73.1659"
- id="path8484"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="52.357246"
- height="108.07072"
- ry="0.10640156"
- x="440.39532"
- y="566.71735"
- id="rect8486"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 457.84775,511.6751 0,53.0285"
- id="path8488"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 594.38692,741.79906 -20.31604,0"
- id="path8492"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <rect
- width="13.682215"
- height="11.401845"
- ry="0.10640156"
- x="566.73468"
- y="753.40436"
- id="rect8216-3-3"
- style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="M 594.38692,759.34309 561.2793,758.59064"
- id="path8494"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <path
- d="m 611.69318,774.90668 -20.31604,27.8405"
- id="path8496"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <g
- transform="translate(6,10)"
- id="g8526">
- <text
- x="233.25826"
- y="893.59607"
- transform="translate(73.990788,-85.581781)"
- id="text8516"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="233.25826"
- y="893.59607"
- id="tspan8518">VLAN</tspan><tspan
- x="233.25826"
- y="913.59607"
- id="tspan8520">2005</tspan><tspan
- x="233.25826"
- y="933.59607"
- id="tspan8522">3007</tspan></text>
- <rect
- width="54.928555"
- height="63.957905"
- ry="0.10640156"
- x="227.23868"
- y="876.28986"
- transform="translate(73.990788,-85.581781)"
- id="rect8524"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- </g>
- <path
- d="m 328.7735,865.2002 1.50489,44.39431"
- id="path8533"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- <text
- x="127.05939"
- y="201.68204"
- id="text8156-8"
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan
- x="127.05939"
- y="201.68204"
- id="tspan8158-6">VLAN</tspan><tspan
- x="127.05939"
- y="221.68204"
- id="tspan8160-0">2005</tspan></text>
- <g
- transform="translate(-154.3388,67.309046)"
- id="g8179-4">
- <rect
- width="50.673374"
- height="44.973804"
- ry="0.10640156"
- x="276.96124"
- y="116.19533"
- id="rect8181-8"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- <path
- d="m 155.90863,229.00107 27.71385,21.24729"
- id="path8576"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
- </g>
- </svg>
|