| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289 |
- <shapes name="mxgraph.mscae.enterprise">
- <shape aspect="variable" h="99.6" name="AD FS" strokewidth="inherit" w="79.64">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.65" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="43.6" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="5"/>
- <line x="48.6" y="43.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="44.7" x-axis-rotation="0" y="46.2"/>
- <line x="27.2" y="75.3"/>
- <line x="7.2" y="75.3"/>
- <line x="7.2" y="80.1"/>
- <line x="24.3" y="80.1"/>
- <line x="21.3" y="85.1"/>
- <line x="7.2" y="85.1"/>
- <line x="7.2" y="89.8"/>
- <line x="18.5" y="89.8"/>
- <line x="14.8" y="95.7"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="13.5" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="21" y="99.1"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="19.4" x-axis-rotation="0" y="95.9"/>
- <line x="47.5" y="49.1"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="51" x-axis-rotation="0" y="49.1"/>
- <line x="79.2" y="96"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="77.6" x-axis-rotation="0" y="99.1"/>
- <close/>
- <move x="33.9" y="94.7"/>
- <line x="46.2" y="94.7"/>
- <line x="46.2" y="87.5"/>
- <line x="41.4" y="87.5"/>
- <line x="41.4" y="82.6"/>
- <line x="58.4" y="82.6"/>
- <line x="58.4" y="87.5"/>
- <line x="53.5" y="87.5"/>
- <line x="53.5" y="94.7"/>
- <line x="65.6" y="94.7"/>
- <line x="65.6" y="87.5"/>
- <line x="60.8" y="87.5"/>
- <line x="60.8" y="80.1"/>
- <line x="51.1" y="80.1"/>
- <line x="51.1" y="75.4"/>
- <line x="55.9" y="75.4"/>
- <line x="55.9" y="68.1"/>
- <line x="43.7" y="68.1"/>
- <line x="43.7" y="75.4"/>
- <line x="48.6" y="75.4"/>
- <line x="48.6" y="80.1"/>
- <line x="38.9" y="80.1"/>
- <line x="38.9" y="87.5"/>
- <line x="34" y="87.5"/>
- <close/>
- <move x="7.4" y="19.5"/>
- <line x="41.4" y="19.5"/>
- <line x="41.4" y="14.6"/>
- <line x="7.4" y="14.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.63" name="Android Phone" strokewidth="inherit" w="60.79">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="2.84" y="99.61"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0.14" x-axis-rotation="0" y="96.11"/>
- <line x="0.14" y="3.01"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.84" x-axis-rotation="0" y="0.01"/>
- <line x="57.59" y="0.01"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="60.64" x-axis-rotation="0" y="3.01"/>
- <line x="60.64" y="96.11"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="57.64" x-axis-rotation="0" y="99.61"/>
- <close/>
- <move x="30.54" y="97.61"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="34.74" x-axis-rotation="0" y="93.21"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="30.54" x-axis-rotation="0" y="88.71"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="26.04" x-axis-rotation="0" y="93.11"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="30.54" x-axis-rotation="0" y="97.61"/>
- <close/>
- <move x="54.14" y="86.71"/>
- <line x="54.14" y="10.81"/>
- <line x="6.54" y="10.81"/>
- <line x="6.54" y="86.71"/>
- <close/>
- <move x="36.74" y="69.81"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="32.54" x-axis-rotation="0" y="69.81"/>
- <line x="32.54" y="63.51"/>
- <line x="28.14" y="63.51"/>
- <line x="28.14" y="69.81"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="24.14" x-axis-rotation="0" y="69.81"/>
- <line x="24.14" y="63.51"/>
- <line x="22.34" y="63.51"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="19.64" x-axis-rotation="0" y="60.51"/>
- <line x="19.64" y="43.61"/>
- <line x="41.14" y="43.61"/>
- <line x="41.14" y="60.51"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="38.84" x-axis-rotation="0" y="63.61"/>
- <line x="36.64" y="63.61"/>
- <close/>
- <move x="43.34" y="45.41"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="47.64" x-axis-rotation="0" y="45.41"/>
- <line x="47.64" y="57.81"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="43.44" x-axis-rotation="0" y="57.81"/>
- <close/>
- <move x="17.34" y="57.81"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="13.14" x-axis-rotation="0" y="57.81"/>
- <line x="13.14" y="45.41"/>
- <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="17.34" x-axis-rotation="0" y="45.41"/>
- <close/>
- <move x="18.64" y="41.21"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="24.04" x-axis-rotation="0" y="32.11"/>
- <line x="22.14" y="28.81"/>
- <arc large-arc-flag="0" rx="0.5" ry="0.5" sweep-flag="1" x="23.14" x-axis-rotation="0" y="28.51"/>
- <line x="24.84" y="31.61"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="36.04" x-axis-rotation="0" y="31.61"/>
- <line x="37.74" y="28.31"/>
- <arc large-arc-flag="0" rx="0.5" ry="0.5" sweep-flag="1" x="38.64" x-axis-rotation="0" y="29.01"/>
- <line x="37.04" y="32.01"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="42.14" x-axis-rotation="0" y="41.21"/>
- <close/>
- <move x="24.84" y="36.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="26.14" x-axis-rotation="0" y="35.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="25.24" x-axis-rotation="0" y="34.71"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="24.04" x-axis-rotation="0" y="35.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="24.84" x-axis-rotation="0" y="36.81"/>
- <close/>
- <move x="36.34" y="36.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="37.04" x-axis-rotation="0" y="35.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="36.04" x-axis-rotation="0" y="34.71"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="34.84" x-axis-rotation="0" y="35.81"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="36.34" x-axis-rotation="0" y="36.81"/>
- <close/>
- <move x="23.84" y="6.61"/>
- <line x="37.04" y="6.61"/>
- <line x="37.04" y="4.31"/>
- <line x="23.84" y="4.31"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="266.1" name="Application" strokewidth="inherit" w="394.8">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="279.2" y="114.7"/>
- <curve x1="279.2" x2="276.9" x3="272.3" y1="124.1" y2="131.7" y3="137.3"/>
- <curve x1="267.7" x2="261.5" x3="253.8" y1="142.9" y2="145.7" y3="145.7"/>
- <curve x1="246.5" x2="240.9" x3="237.1" y1="145.7" y2="142.6" y3="136.3"/>
- <line x="236.9" y="136.3"/>
- <line x="236.9" y="170"/>
- <line x="228" y="170"/>
- <line x="228" y="88.5"/>
- <line x="236.9" y="88.5"/>
- <line x="236.9" y="98.3"/>
- <line x="237.1" y="98.3"/>
- <curve x1="241.5" x2="247.9" x3="256.4" y1="90.9" y2="87.1" y3="87.1"/>
- <curve x1="263.4" x2="268.9" x3="273.1" y1="87.1" y2="89.6" y3="94.5"/>
- <curve x1="277.2" x2="279.2" x3="279.2" y1="99.5" y2="106.2" y3="114.7"/>
- <close/>
- <move x="270.1" y="114.6"/>
- <curve x1="270.1" x2="268.7" x3="265.8" y1="108.6" y2="103.8" y3="100.2"/>
- <curve x1="263" x2="259.1" x3="254.1" y1="96.6" y2="94.8" y3="94.8"/>
- <curve x1="249" x2="244.8" x3="241.6" y1="94.8" y2="96.6" y3="100.1"/>
- <curve x1="238.4" x2="236.8" x3="236.8" y1="103.7" y2="108.2" y3="113.7"/>
- <line x="236.8" y="121.5"/>
- <curve x1="236.8" x2="238.3" x3="241.4" y1="126.2" y2="130.1" y3="133.3"/>
- <curve x1="244.5" x2="248.3" x3="252.8" y1="136.5" y2="138" y3="138"/>
- <curve x1="258.2" x2="262.4" x3="265.5" y1="138" y2="135.9" y3="131.8"/>
- <curve x1="268.6" x2="270.1" x3="270.1" y1="127.7" y2="121.9" y3="114.6"/>
- <close/>
- <move x="214.1" y="114.7"/>
- <curve x1="214.1" x2="211.8" x3="207.2" y1="124.1" y2="131.7" y3="137.3"/>
- <curve x1="202.6" x2="196.4" x3="188.7" y1="142.9" y2="145.7" y3="145.7"/>
- <curve x1="181.4" x2="175.8" x3="172" y1="145.7" y2="142.6" y3="136.3"/>
- <line x="171.8" y="136.3"/>
- <line x="171.8" y="170"/>
- <line x="162.9" y="170"/>
- <line x="162.9" y="88.5"/>
- <line x="171.8" y="88.5"/>
- <line x="171.8" y="98.3"/>
- <line x="172" y="98.3"/>
- <curve x1="176.4" x2="182.8" x3="191.3" y1="90.9" y2="87.1" y3="87.1"/>
- <curve x1="198.3" x2="203.8" x3="208" y1="87.1" y2="89.6" y3="94.5"/>
- <curve x1="212" x2="214.1" x3="214.1" y1="99.5" y2="106.2" y3="114.7"/>
- <close/>
- <move x="204.9" y="114.6"/>
- <curve x1="204.9" x2="203.5" x3="200.6" y1="108.6" y2="103.8" y3="100.2"/>
- <curve x1="197.8" x2="193.9" x3="188.9" y1="96.6" y2="94.8" y3="94.8"/>
- <curve x1="183.8" x2="179.6" x3="176.4" y1="94.8" y2="96.6" y3="100.1"/>
- <curve x1="173.2" x2="171.6" x3="171.6" y1="103.7" y2="108.2" y3="113.7"/>
- <line x="171.6" y="121.5"/>
- <curve x1="171.6" x2="173.1" x3="176.2" y1="126.2" y2="130.1" y3="133.3"/>
- <curve x1="179.3" x2="183.1" x3="187.6" y1="136.5" y2="138" y3="138"/>
- <curve x1="193" x2="197.2" x3="200.3" y1="138" y2="135.9" y3="131.8"/>
- <curve x1="203.4" x2="204.9" x3="204.9" y1="127.7" y2="121.9" y3="114.6"/>
- <close/>
- <move x="145.9" y="144.3"/>
- <line x="137" y="144.3"/>
- <line x="137" y="135.6"/>
- <line x="136.8" y="135.6"/>
- <curve x1="132.9" x2="127.2" x3="119.6" y1="142.3" y2="145.7" y3="145.7"/>
- <curve x1="114.2" x2="109.9" x3="106.7" y1="145.7" y2="144.2" y3="141.3"/>
- <curve x1="103.5" x2="101.9" x3="101.9" y1="138.4" y2="134.4" y3="129.5"/>
- <curve x1="101.9" x2="108" x3="120.3" y1="119.1" y2="113" y3="111.3"/>
- <line x="137" y="109"/>
- <curve x1="137" x2="133.2" x3="125.5" y1="99.6" y2="94.8" y3="94.8"/>
- <curve x1="118.8" x2="112.7" x3="107.3" y1="94.8" y2="97.1" y3="101.6"/>
- <line x="107.3" y="92.4"/>
- <curve x1="108.9" x2="111.7" x3="115.7" y1="91.2" y2="90" y3="88.8"/>
- <curve x1="119.7" x2="123.2" x3="126.3" y1="87.7" y2="87.1" y3="87.1"/>
- <curve x1="139.4" x2="146" x3="146" y1="87.1" y2="94.1" y3="108"/>
- <line x="146" y="144.3"/>
- <close/>
- <move x="137" y="116.1"/>
- <line x="123.5" y="118"/>
- <curve x1="118.9" x2="115.7" x3="113.8" y1="118.7" y2="119.8" y3="121.3"/>
- <curve x1="111.9" x2="111" x3="111" y1="122.8" y2="125.3" y3="128.8"/>
- <curve x1="111" x2="112" x3="114" y1="131.6" y2="133.8" y3="135.5"/>
- <curve x1="116" x2="118.6" x3="121.7" y1="137.2" y2="138" y3="138"/>
- <curve x1="126.1" x2="129.8" x3="132.7" y1="138" y2="136.4" y3="133.3"/>
- <curve x1="135.6" x2="137" x3="137" y1="130.2" y2="126.3" y3="121.6"/>
- <line x="137" y="116.1"/>
- <close/>
- <move x="0" y="0"/>
- <line x="0" y="266.1"/>
- <line x="394.8" y="266.1"/>
- <line x="394.8" y="0"/>
- <line x="0" y="0"/>
- <line x="0" y="0"/>
- <close/>
- <move x="375.1" y="244.7"/>
- <line x="14.6" y="244.7"/>
- <line x="14.6" y="55.8"/>
- <line x="375.1" y="55.8"/>
- <line x="375.1" y="244.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="78.8" name="Application blank" strokewidth="inherit" w="91.4">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="78.8"/>
- <line x="0" y="0"/>
- <line x="91.4" y="0"/>
- <line x="91.4" y="78.8"/>
- <close/>
- <move x="4.1" y="74.7"/>
- <line x="87.3" y="74.7"/>
- <line x="87.3" y="20.7"/>
- <line x="4.1" y="20.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="88.4" name="Application Server" strokewidth="inherit" w="75.56">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.57" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE1" perimeter="0" x="1" y="0.99"/>
- <constraint name="SE2" perimeter="0" x="1" y="0.62"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0.06" y="88.4"/>
- <line x="0.06" y="4.6"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="1" x="4.16" x-axis-rotation="0" y="0"/>
- <line x="39.41" y="0"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="1" x="43.16" x-axis-rotation="0" y="4.6"/>
- <line x="43.16" y="51.6"/>
- <line x="23.76" y="51.6"/>
- <line x="23.76" y="66.8"/>
- <line x="6.56" y="66.8"/>
- <line x="6.56" y="71.3"/>
- <line x="23.76" y="71.3"/>
- <line x="23.76" y="75.4"/>
- <line x="6.56" y="75.4"/>
- <line x="6.56" y="79.8"/>
- <line x="23.76" y="79.8"/>
- <line x="23.76" y="88.4"/>
- <close/>
- <move x="6.46" y="17.2"/>
- <line x="36.66" y="17.2"/>
- <line x="36.66" y="12.8"/>
- <line x="6.46" y="12.9"/>
- <close/>
- <move x="26.96" y="55"/>
- <line x="75.56" y="55"/>
- <line x="75.56" y="87.3"/>
- <line x="26.96" y="87.3"/>
- <close/>
- <move x="29.56" y="64.4"/>
- <line x="29.56" y="84.6"/>
- <line x="40.46" y="84.6"/>
- <line x="40.46" y="64.4"/>
- <close/>
- <move x="43.26" y="84.6"/>
- <line x="72.86" y="84.6"/>
- <line x="72.86" y="64.4"/>
- <line x="43.26" y="64.4"/>
- <close/>
- <move x="51.26" y="81.9"/>
- <line x="51.26" y="79.3"/>
- <line x="65.96" y="79.3"/>
- <line x="65.96" y="81.85"/>
- <close/>
- <move x="65.96" y="77.8"/>
- <line x="51.26" y="77.8"/>
- <line x="51.26" y="75.2"/>
- <line x="65.96" y="75.2"/>
- <close/>
- <move x="51.26" y="73.8"/>
- <line x="51.26" y="71.1"/>
- <line x="65.96" y="71.1"/>
- <line x="65.96" y="73.8"/>
- <close/>
- <move x="65.96" y="69.8"/>
- <line x="51.26" y="69.8"/>
- <line x="51.26" y="67.1"/>
- <line x="65.96" y="67.1"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="352" name="Application Server2" strokewidth="inherit" w="303.8">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.57" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE1" perimeter="0" x="1" y="1"/>
- <constraint name="SE2" perimeter="0" x="1" y="0.62"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="277.2" y="264.4"/>
- <line x="212.9" y="264.4"/>
- <line x="212.9" y="273"/>
- <line x="277.2" y="273"/>
- <close/>
- <move x="277.2" y="281.5"/>
- <line x="212.9" y="281.5"/>
- <line x="212.9" y="290.1"/>
- <line x="277.2" y="290.1"/>
- <close/>
- <move x="277.2" y="298.7"/>
- <line x="212.9" y="298.7"/>
- <line x="212.9" y="307.3"/>
- <line x="277.2" y="307.3"/>
- <close/>
- <move x="277.2" y="315.9"/>
- <line x="212.9" y="315.9"/>
- <line x="212.9" y="324.5"/>
- <line x="277.2" y="324.5"/>
- <close/>
- <move x="191.4" y="264.4"/>
- <line x="131.3" y="264.4"/>
- <line x="131.3" y="324.5"/>
- <line x="191.4" y="324.5"/>
- <close/>
- <move x="106.4" y="218.9"/>
- <line x="106.4" y="351.9"/>
- <line x="303.8" y="351.9"/>
- <line x="303.8" y="218.9"/>
- <line x="106.4" y="218.9"/>
- <close/>
- <move x="294.4" y="341.6"/>
- <line x="114.2" y="341.6"/>
- <line x="114.2" y="247.2"/>
- <line x="294.5" y="247.2"/>
- <line x="294.5" y="341.6"/>
- <close/>
- <move x="154.5" y="0"/>
- <line x="17.2" y="0"/>
- <curve x1="7.8" x2="0" x3="0" y1="0" y2="7.7" y3="17.2"/>
- <line x="0" y="352"/>
- <line x="94.4" y="352"/>
- <line x="94.4" y="317.7"/>
- <line x="25.7" y="317.7"/>
- <line x="25.7" y="300.5"/>
- <line x="94.4" y="300.5"/>
- <line x="94.4" y="283.3"/>
- <line x="25.7" y="283.3"/>
- <line x="25.7" y="266.1"/>
- <line x="94.4" y="266.1"/>
- <line x="94.4" y="214.6"/>
- <line x="94.4" y="206"/>
- <line x="103" y="206"/>
- <line x="154.5" y="206"/>
- <curve x1="159.7" x2="163.1" x3="171.7" y1="206" y2="206" y3="206"/>
- <line x="171.7" y="17.2"/>
- <curve x1="171.7" x2="163.9" x3="154.5" y1="7.7" y2="0" y3="0"/>
- <close/>
- <move x="145.9" y="68.7"/>
- <line x="25.7" y="68.7"/>
- <line x="25.7" y="51.5"/>
- <line x="145.9" y="51.5"/>
- <curve x1="145.9" x2="145.9" x3="145.9" y1="51.5" y2="68.7" y3="68.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="67.3" name="App generic" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="67.3"/>
- <line x="0" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="67.3"/>
- <close/>
- <move x="4.3" y="62.9"/>
- <line x="95.3" y="62.9"/>
- <line x="95.3" y="15.2"/>
- <line x="4.3" y="15.2"/>
- <close/>
- <move x="13.1" y="54.2"/>
- <line x="13.1" y="23.9"/>
- <line x="43.4" y="23.9"/>
- <line x="43.4" y="54.2"/>
- <close/>
- <move x="54.1" y="54.2"/>
- <line x="54.1" y="49.9"/>
- <line x="86.6" y="49.9"/>
- <line x="86.6" y="54.2"/>
- <close/>
- <move x="86.6" y="45.5"/>
- <line x="54.1" y="45.5"/>
- <line x="54.1" y="41.2"/>
- <line x="86.6" y="41.2"/>
- <close/>
- <move x="54.1" y="36.9"/>
- <line x="54.1" y="32.5"/>
- <line x="86.6" y="32.5"/>
- <line x="86.6" y="36.9"/>
- <close/>
- <move x="86.6" y="28.2"/>
- <line x="54.1" y="28.2"/>
- <line x="54.1" y="23.9"/>
- <line x="86.6" y="23.9"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Backup local" strokewidth="inherit" w="97.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.19" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.81" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.7" y="0.21"/>
- <constraint name="NW" perimeter="0" x="0.3" y="0.21"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="78.8"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6.8" x-axis-rotation="0" y="72.8"/>
- <line x="90.8" y="72.8"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="97.6" x-axis-rotation="0" y="78.8"/>
- <line x="97.6" y="99.6"/>
- <close/>
- <move x="89.4" y="84.4"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="92.6" x-axis-rotation="0" y="80.8"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="89.1" x-axis-rotation="0" y="77.7"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="86.1" x-axis-rotation="0" y="80.3"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="89.6" x-axis-rotation="0" y="84.4"/>
- <close/>
- <move x="92.7" y="68.5"/>
- <line x="5" y="68.5"/>
- <line x="18.7" y="49.8"/>
- <line x="40.5" y="49.7"/>
- <line x="48.8" y="58"/>
- <line x="57.1" y="49.7"/>
- <line x="78.8" y="49.7"/>
- <close/>
- <move x="68.4" y="32.6"/>
- <line x="48.8" y="52"/>
- <line x="29.1" y="32.6"/>
- <line x="29.1" y="20.6"/>
- <line x="43.7" y="35.2"/>
- <line x="43.7" y="0"/>
- <line x="54" y="0"/>
- <line x="54" y="35.1"/>
- <line x="68.4" y="20.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="82.45" name="Backup online" strokewidth="inherit" w="101.52">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.005" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.985" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.85" y="0.17"/>
- <constraint name="NW" perimeter="0" x="0.27" y="0.24"/>
- <constraint name="SE" perimeter="0" x="0.86" y="0.705"/>
- <constraint name="SW" perimeter="0" x="0.14" y="0.705"/>
- </connections>
- <foreground>
- <path>
- <move x="35.78" y="58.25"/>
- <line x="14.68" y="58.35"/>
- <arc large-arc-flag="0" rx="15.5" ry="15.5" sweep-flag="1" x="0.58" x-axis-rotation="0" y="41.85"/>
- <arc large-arc-flag="0" rx="15.5" ry="15.5" sweep-flag="1" x="17.38" x-axis-rotation="0" y="26.15"/>
- <arc large-arc-flag="0" rx="13.5" ry="13.5" sweep-flag="1" x="32.58" x-axis-rotation="0" y="19.95"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="43.98" x-axis-rotation="0" y="1.75"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.38" x-axis-rotation="0" y="11.65"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="86.58" x-axis-rotation="0" y="14.25"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="91.58" x-axis-rotation="0" y="30.15"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="99.48" x-axis-rotation="0" y="47.85"/>
- <arc large-arc-flag="0" rx="14.5" ry="14.5" sweep-flag="1" x="87.18" x-axis-rotation="0" y="58.25"/>
- <line x="64.38" y="58.25"/>
- <line x="50.08" y="44.05"/>
- <close/>
- <move x="37.28" y="61.65"/>
- <line x="50.08" y="48.85"/>
- <line x="63.08" y="61.45"/>
- <line x="63.08" y="69.65"/>
- <line x="53.38" y="59.85"/>
- <line x="53.38" y="82.45"/>
- <line x="46.98" y="82.45"/>
- <line x="46.98" y="59.85"/>
- <line x="37.28" y="69.65"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="334.8" name="Calendar" strokewidth="inherit" w="412">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="0" y="334.8"/>
- <line x="412" y="334.8"/>
- <line x="412" y="0"/>
- <curve x1="412" x2="0" x3="0" y1="0" y2="0" y3="0"/>
- <close/>
- <move x="394.8" y="317.6"/>
- <line x="17.2" y="317.6"/>
- <line x="17.2" y="60.1"/>
- <line x="394.9" y="60.1"/>
- <line x="394.9" y="317.6"/>
- <close/>
- <move x="334.7" y="77.3"/>
- <line x="377.6" y="77.3"/>
- <line x="377.6" y="120.2"/>
- <line x="334.7" y="120.2"/>
- <close/>
- <move x="334.7" y="137.4"/>
- <line x="377.6" y="137.4"/>
- <line x="377.6" y="180.3"/>
- <line x="334.7" y="180.3"/>
- <close/>
- <move x="334.7" y="197.4"/>
- <line x="377.6" y="197.4"/>
- <line x="377.6" y="240.3"/>
- <line x="334.7" y="240.3"/>
- <close/>
- <move x="274.7" y="77.3"/>
- <line x="317.6" y="77.3"/>
- <line x="317.6" y="120.2"/>
- <line x="274.7" y="120.2"/>
- <close/>
- <move x="274.7" y="137.4"/>
- <line x="317.6" y="137.4"/>
- <line x="317.6" y="180.3"/>
- <line x="274.7" y="180.3"/>
- <close/>
- <move x="274.7" y="197.4"/>
- <line x="317.6" y="197.4"/>
- <line x="317.6" y="240.3"/>
- <line x="274.7" y="240.3"/>
- <close/>
- <move x="274.7" y="257.5"/>
- <line x="317.6" y="257.5"/>
- <line x="317.6" y="300.4"/>
- <line x="274.7" y="300.4"/>
- <close/>
- <move x="214.6" y="77.3"/>
- <line x="257.5" y="77.3"/>
- <line x="257.5" y="120.2"/>
- <line x="214.6" y="120.2"/>
- <close/>
- <move x="214.6" y="137.4"/>
- <line x="257.5" y="137.4"/>
- <line x="257.5" y="180.3"/>
- <line x="214.6" y="180.3"/>
- <close/>
- <move x="214.6" y="197.4"/>
- <line x="257.5" y="197.4"/>
- <line x="257.5" y="240.3"/>
- <line x="214.6" y="240.3"/>
- <close/>
- <move x="214.6" y="257.5"/>
- <line x="257.5" y="257.5"/>
- <line x="257.5" y="300.4"/>
- <line x="214.6" y="300.4"/>
- <close/>
- <move x="154.5" y="77.3"/>
- <line x="197.4" y="77.3"/>
- <line x="197.4" y="120.2"/>
- <line x="154.5" y="120.2"/>
- <close/>
- <move x="154.5" y="137.4"/>
- <line x="197.4" y="137.4"/>
- <line x="197.4" y="180.3"/>
- <line x="154.5" y="180.3"/>
- <close/>
- <move x="154.5" y="197.4"/>
- <line x="197.4" y="197.4"/>
- <line x="197.4" y="240.3"/>
- <line x="154.5" y="240.3"/>
- <close/>
- <move x="154.5" y="257.5"/>
- <line x="197.4" y="257.5"/>
- <line x="197.4" y="300.4"/>
- <line x="154.5" y="300.4"/>
- <close/>
- <move x="94.4" y="77.3"/>
- <line x="137.3" y="77.3"/>
- <line x="137.3" y="120.2"/>
- <line x="94.4" y="120.2"/>
- <close/>
- <move x="94.4" y="137.4"/>
- <line x="137.3" y="137.4"/>
- <line x="137.3" y="180.3"/>
- <line x="94.4" y="180.3"/>
- <close/>
- <move x="94.4" y="197.4"/>
- <line x="137.3" y="197.4"/>
- <line x="137.3" y="240.3"/>
- <line x="94.4" y="240.3"/>
- <close/>
- <move x="94.4" y="257.5"/>
- <line x="137.3" y="257.5"/>
- <line x="137.3" y="300.4"/>
- <line x="94.4" y="300.4"/>
- <close/>
- <move x="34.3" y="137.4"/>
- <line x="77.2" y="137.4"/>
- <line x="77.2" y="180.3"/>
- <line x="34.3" y="180.3"/>
- <close/>
- <move x="34.3" y="197.4"/>
- <line x="77.2" y="197.4"/>
- <line x="77.2" y="240.3"/>
- <line x="34.3" y="240.3"/>
- <close/>
- <move x="34.3" y="257.5"/>
- <line x="77.2" y="257.5"/>
- <line x="77.2" y="300.4"/>
- <line x="34.3" y="300.4"/>
- <close/>
- <move x="0" y="0"/>
- <line x="0" y="334.8"/>
- <line x="412" y="334.8"/>
- <line x="412" y="0"/>
- <curve x1="412" x2="0" x3="0" y1="0" y2="0" y3="0"/>
- <close/>
- <move x="394.8" y="317.6"/>
- <line x="17.2" y="317.6"/>
- <line x="17.2" y="60.1"/>
- <line x="394.9" y="60.1"/>
- <line x="394.9" y="317.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="63.42" name="Client Application" strokewidth="inherit" w="99.85">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.91" y="0.03"/>
- <constraint name="NW" perimeter="0" x="0.1" y="0.03"/>
- <constraint name="SE" perimeter="0" x="0.99" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="4.24" y="63.4"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0.24" x-axis-rotation="0" y="58.6"/>
- <line x="8.24" y="49.7"/>
- <line x="8.24" y="5.8"/>
- <arc large-arc-flag="0" rx="5.5" ry="7" sweep-flag="1" x="13.94" x-axis-rotation="0" y="0.2"/>
- <line x="88.94" y="0.2"/>
- <arc large-arc-flag="0" rx="5.5" ry="7" sweep-flag="1" x="91.84" x-axis-rotation="0" y="5.8"/>
- <line x="91.84" y="49.6"/>
- <line x="99.74" y="59"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="95.94" x-axis-rotation="0" y="63.4"/>
- <close/>
- <move x="40.44" y="58.8"/>
- <arc large-arc-flag="0" rx="3" ry="1" sweep-flag="0" x="42.14" x-axis-rotation="0" y="59.8"/>
- <line x="58.14" y="59.7"/>
- <arc large-arc-flag="0" rx="3" ry="1" sweep-flag="0" x="59.34" x-axis-rotation="0" y="58.8"/>
- <line x="57.54" y="56"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="55.74" x-axis-rotation="0" y="55.4"/>
- <line x="44.14" y="55.4"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42.24" x-axis-rotation="0" y="56.1"/>
- <close/>
- <move x="11.34" y="49.2"/>
- <line x="88.74" y="49.2"/>
- <line x="88.74" y="5.3"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="86.94" x-axis-rotation="0" y="3.4"/>
- <line x="13.94" y="3.4"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="11.34" x-axis-rotation="0" y="5.8"/>
- <close/>
- <move x="22.44" y="46"/>
- <line x="22.44" y="8.2"/>
- <line x="79.14" y="8.2"/>
- <line x="79.14" y="46"/>
- <close/>
- <move x="25.54" y="42.8"/>
- <line x="38.24" y="42.8"/>
- <line x="38.24" y="19.3"/>
- <line x="25.54" y="19.3"/>
- <close/>
- <move x="41.34" y="19.3"/>
- <line x="41.34" y="43"/>
- <line x="76.14" y="43"/>
- <line x="76.14" y="19.3"/>
- <close/>
- <move x="50.84" y="39.7"/>
- <line x="50.84" y="36.6"/>
- <line x="68.04" y="36.6"/>
- <line x="68.04" y="39.7"/>
- <close/>
- <move x="68.04" y="34.8"/>
- <line x="50.84" y="34.8"/>
- <line x="50.84" y="32"/>
- <line x="68.04" y="32"/>
- <close/>
- <move x="50.84" y="30.2"/>
- <line x="50.84" y="27.2"/>
- <line x="68.04" y="27.2"/>
- <line x="68.04" y="30.2"/>
- <close/>
- <move x="68.04" y="25.4"/>
- <line x="50.84" y="25.4"/>
- <line x="50.84" y="22.4"/>
- <line x="68.04" y="22.4"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Cluster Server" strokewidth="inherit" w="80.48">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="0.79"/>
- <constraint name="SW" perimeter="0" x="0" y="0.79"/>
- </connections>
- <foreground>
- <path>
- <move x="0.08" y="78.5"/>
- <line x="0.08" y="3.8"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="3.28" x-axis-rotation="0" y="0"/>
- <line x="34.28" y="0"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="38.28" x-axis-rotation="0" y="3.8"/>
- <line x="38.28" y="17.2"/>
- <line x="23.98" y="17.2"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="17.38" x-axis-rotation="0" y="23.8"/>
- <line x="17.38" y="59.3"/>
- <line x="5.78" y="59.3"/>
- <line x="5.78" y="63.2"/>
- <line x="17.38" y="63.2"/>
- <line x="17.38" y="67.1"/>
- <line x="5.78" y="67.1"/>
- <line x="5.78" y="70.8"/>
- <line x="17.38" y="70.8"/>
- <line x="17.38" y="78.5"/>
- <close/>
- <move x="21.18" y="24.8"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="24.28" x-axis-rotation="0" y="21.1"/>
- <line x="55.28" y="21.1"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="59.48" x-axis-rotation="0" y="24.8"/>
- <line x="59.48" y="99.6"/>
- <line x="21.18" y="99.6"/>
- <close/>
- <move x="5.78" y="15.2"/>
- <line x="32.58" y="15.18"/>
- <line x="32.58" y="11.5"/>
- <line x="5.78" y="11.5"/>
- <close/>
- <move x="26.98" y="32.7"/>
- <line x="26.98" y="36.4"/>
- <line x="53.58" y="36.4"/>
- <line x="53.58" y="32.7"/>
- <close/>
- <move x="53.78" y="80.5"/>
- <line x="26.78" y="80.5"/>
- <line x="26.78" y="84.3"/>
- <line x="53.78" y="84.3"/>
- <close/>
- <move x="26.78" y="88.1"/>
- <line x="26.78" y="92"/>
- <line x="53.78" y="92"/>
- <line x="53.78" y="87.6"/>
- <close/>
- <move x="80.48" y="78.5"/>
- <line x="63.28" y="78.5"/>
- <line x="63.28" y="70.8"/>
- <line x="74.68" y="70.8"/>
- <line x="74.68" y="67.1"/>
- <line x="63.28" y="67.1"/>
- <line x="63.28" y="63.2"/>
- <line x="74.78" y="63.2"/>
- <line x="74.78" y="59.3"/>
- <line x="63.28" y="59.3"/>
- <line x="63.28" y="23.8"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="55.28" x-axis-rotation="0" y="17.2"/>
- <line x="42.28" y="17.2"/>
- <line x="42.28" y="3.8"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="45.98" x-axis-rotation="0" y="0"/>
- <line x="77.03" y="0.3"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="80.48" x-axis-rotation="0" y="3.8"/>
- <close/>
- <move x="74.68" y="15.3"/>
- <line x="74.68" y="11.5"/>
- <line x="47.78" y="11.5"/>
- <line x="47.78" y="15.3"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="267.7" name="Code File" strokewidth="inherit" w="258.3">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.9" y="0.1"/>
- <constraint name="NW" perimeter="0" x="0.04" y="0.04"/>
- <constraint name="SE" perimeter="0" x="0.96" y="0.96"/>
- <constraint name="SW" perimeter="0" x="0.04" y="0.96"/>
- </connections>
- <foreground>
- <path>
- <move x="214.9" y="167"/>
- <line x="206.9" y="167"/>
- <curve x1="213.3" x2="216.5" x3="216.5" y1="158.9" y2="149.8" y3="139.7"/>
- <curve x1="216.5" x2="213.3" x3="206.9" y1="129.7" y2="120.5" y3="112"/>
- <line x="215" y="112"/>
- <curve x1="221.8" x2="225.1" x3="225.1" y1="120" y2="129.2" y3="139.7"/>
- <curve x1="225.1" x2="221.7" x3="214.9" y1="150.3" y2="159.5" y3="167"/>
- <close/>
- <move x="188.2" y="167"/>
- <line x="180.1" y="167"/>
- <curve x1="173.4" x2="170" x3="170" y1="159.6" y2="150.5" y3="139.7"/>
- <curve x1="170" x2="173.4" x3="180.1" y1="129.3" y2="120" y3="112"/>
- <line x="188.1" y="112"/>
- <curve x1="181.8" x2="178.6" x3="178.6" y1="120.4" y2="129.6" y3="139.7"/>
- <curve x1="178.6" x2="181.8" x3="188.2" y1="149.8" y2="158.8" y3="167"/>
- <close/>
- <move x="162.8" y="155.6"/>
- <curve x1="160.6" x2="157.4" x3="153.1" y1="156.9" y2="157.5" y3="157.5"/>
- <curve x1="148.2" x2="144.2" x3="141.2" y1="157.5" y2="156" y3="153"/>
- <curve x1="138.2" x2="136.6" x3="136.6" y1="150" y2="146.2" y3="141.5"/>
- <curve x1="136.6" x2="138.2" x3="141.5" y1="136.1" y2="131.8" y3="128.6"/>
- <curve x1="144.8" x2="149.1" x3="154.6" y1="125.5" y2="123.9" y3="123.9"/>
- <curve x1="158.4" x2="161.1" x3="162.8" y1="123.9" y2="124.4" y3="125.4"/>
- <line x="162.8" y="133.8"/>
- <curve x1="160.7" x2="158.4" x3="155.9" y1="132.3" y2="131.5" y3="131.5"/>
- <curve x1="153.1" x2="150.8" x3="149.2" y1="131.5" y2="132.3" y3="134"/>
- <curve x1="147.6" x2="146.7" x3="146.7" y1="135.7" y2="137.9" y3="140.9"/>
- <curve x1="146.7" x2="147.5" x3="149.1" y1="143.7" y2="146" y3="147.6"/>
- <curve x1="150.7" x2="152.9" x3="155.6" y1="149.2" y2="150" y3="150"/>
- <curve x1="158.1" x2="160.5" x3="162.8" y1="150" y2="149.2" y3="147.7"/>
- <line x="162.8" y="155.6"/>
- <close/>
- <move x="130.7" y="156.8"/>
- <line x="120.9" y="156.8"/>
- <line x="120.9" y="139"/>
- <curve x1="120.9" x2="119.1" x3="115.6" y1="134" y2="131.6" y3="131.6"/>
- <curve x1="113.9" x2="112.5" x3="111.4" y1="131.6" y2="132.3" y3="133.6"/>
- <curve x1="110.3" x2="109.7" x3="109.7" y1="134.9" y2="136.6" y3="138.6"/>
- <line x="109.7" y="156.9"/>
- <line x="99.8" y="156.9"/>
- <line x="99.8" y="124.9"/>
- <line x="109.7" y="124.9"/>
- <line x="109.7" y="130"/>
- <line x="109.8" y="130"/>
- <curve x1="112.2" x2="115.6" x3="120.1" y1="126.1" y2="124.2" y3="124.2"/>
- <curve x1="127.2" x2="130.7" x3="130.7" y1="124.2" y2="128.6" y3="137.4"/>
- <line x="130.7" y="156.8"/>
- <close/>
- <move x="91.5" y="156.8"/>
- <line x="81.7" y="156.8"/>
- <line x="81.7" y="151.9"/>
- <line x="81.5" y="151.9"/>
- <curve x1="79.1" x2="75.8" x3="71.7" y1="155.7" y2="157.6" y3="157.6"/>
- <curve x1="64.3" x2="60.6" x3="60.6" y1="157.6" y2="153.1" y3="144.1"/>
- <line x="60.6" y="124.8"/>
- <line x="70.4" y="124.8"/>
- <line x="70.4" y="143.2"/>
- <curve x1="70.4" x2="72.2" x3="75.8" y1="147.7" y2="150" y3="150"/>
- <curve x1="77.6" x2="79" x3="80.1" y1="150" y2="149.4" y3="148.1"/>
- <curve x1="81.2" x2="81.7" x3="81.7" y1="146.9" y2="145.2" y3="143.1"/>
- <line x="81.7" y="124.8"/>
- <line x="91.5" y="124.8"/>
- <line x="91.5" y="156.8"/>
- <close/>
- <move x="57.4" y="117"/>
- <curve x1="56.1" x2="54.9" x3="53.7" y1="116.5" y2="116.2" y3="116.2"/>
- <curve x1="50.5" x2="48.9" x3="48.9" y1="116.2" y2="117.9" y3="121.4"/>
- <line x="48.9" y="124.8"/>
- <line x="56.2" y="124.8"/>
- <line x="56.2" y="132.1"/>
- <line x="48.9" y="132.1"/>
- <line x="48.9" y="156.8"/>
- <line x="39.1" y="156.8"/>
- <line x="39.1" y="132.1"/>
- <line x="33.7" y="132.1"/>
- <line x="33.7" y="124.8"/>
- <line x="39.1" y="124.8"/>
- <line x="39.1" y="120.8"/>
- <curve x1="39.1" x2="40.3" x3="42.7" y1="117.2" y2="114.2" y3="112"/>
- <curve x1="45.1" x2="48.3" x3="52.4" y1="109.8" y2="108.7" y3="108.7"/>
- <curve x1="54.4" x2="56.1" x3="57.4" y1="108.7" y2="108.9" y3="109.3"/>
- <line x="57.4" y="117"/>
- <close/>
- <move x="204.4" y="0"/>
- <line x="35.9" y="0"/>
- <curve x1="16.2" x2="0" x3="0" y1="0" y2="16.3" y3="35.9"/>
- <line x="0" y="231.8"/>
- <curve x1="0" x2="16.3" x3="35.9" y1="251.5" y2="267.7" y3="267.7"/>
- <line x="222.4" y="267.7"/>
- <curve x1="242.1" x2="258.3" x3="258.3" y1="267.7" y2="251.4" y3="231.8"/>
- <line x="258.3" y="53"/>
- <line x="204.4" y="0"/>
- <close/>
- <move x="236.1" y="231.8"/>
- <curve x1="236.1" x2="230.1" x3="222.4" y1="239.5" y2="245.5" y3="245.5"/>
- <line x="35.9" y="245.5"/>
- <curve x1="28.2" x2="22.2" x3="22.2" y1="245.5" y2="239.5" y3="231.8"/>
- <line x="22.2" y="35.9"/>
- <curve x1="22.2" x2="28.2" x3="35.9" y1="28.2" y2="22.2" y3="22.2"/>
- <line x="193.3" y="22.2"/>
- <line x="193.3" y="65"/>
- <line x="236.1" y="65"/>
- <line x="236.1" y="231.8"/>
- <line x="236.1" y="231.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="67.28" name="Connectors" strokewidth="inherit" w="99.53">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.03"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.97"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.505"/>
- </connections>
- <foreground>
- <path>
- <move x="5.23" y="39.46"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="5.23" x-axis-rotation="0" y="27.56"/>
- <line x="20.23" y="27.56"/>
- <arc large-arc-flag="0" rx="31.5" ry="31.5" sweep-flag="1" x="72.03" x-axis-rotation="0" y="9.86"/>
- <line x="65.63" y="16.26"/>
- <arc large-arc-flag="1" rx="22.5" ry="22.5" sweep-flag="0" x="66.23" x-axis-rotation="0" y="50.36"/>
- <line x="72.63" y="56.86"/>
- <arc large-arc-flag="0" rx="31.5" ry="31.5" sweep-flag="1" x="20.23" x-axis-rotation="0" y="39.46"/>
- <close/>
- <move x="59.53" y="39.46"/>
- <arc large-arc-flag="1" rx="10.8" ry="10.8" sweep-flag="1" x="59.33" x-axis-rotation="0" y="27.76"/>
- <line x="79.03" y="27.76"/>
- <line x="79.03" y="20.16"/>
- <line x="99.53" y="34.16"/>
- <line x="79.03" y="47.56"/>
- <line x="79.03" y="39.46"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.55" name="D" strokewidth="inherit" w="80.52">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.045"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.62" y="0.525"/>
- <constraint name="NE1" perimeter="0" x="0.73" y="0"/>
- <constraint name="NE2" perimeter="0" x="1" y="0.38"/>
- <constraint name="NE3" perimeter="0" x="0.88" y="0.2"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.06"/>
- <constraint name="SE" perimeter="0" x="0.92" y="0.825"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0.08" y="99.55"/>
- <line x="0.08" y="9.75"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5.08" x-axis-rotation="0" y="4.45"/>
- <line x="43.88" y="4.45"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.68" x-axis-rotation="0" y="8.05"/>
- <line x="34.28" y="34.45"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="38.08" x-axis-rotation="0" y="43.65"/>
- <line x="49.18" y="43.65"/>
- <line x="49.18" y="47.65"/>
- <line x="41.58" y="47.65"/>
- <line x="27.38" y="62.65"/>
- <line x="36.48" y="72.15"/>
- <line x="9.68" y="72.15"/>
- <line x="9.68" y="76.45"/>
- <line x="37.08" y="76.45"/>
- <line x="37.08" y="84.55"/>
- <line x="9.68" y="84.55"/>
- <line x="9.68" y="88.85"/>
- <line x="48.98" y="88.85"/>
- <line x="48.98" y="99.55"/>
- <close/>
- <move x="41.28" y="79.15"/>
- <line x="65.18" y="79.15"/>
- <line x="57.08" y="71.15"/>
- <line x="63.88" y="71.15"/>
- <line x="74.18" y="81.95"/>
- <line x="63.88" y="92.65"/>
- <line x="57.08" y="92.65"/>
- <line x="65.08" y="84.65"/>
- <line x="41.18" y="84.65"/>
- <close/>
- <move x="43.68" y="73.75"/>
- <line x="33.08" y="62.95"/>
- <line x="43.48" y="52.15"/>
- <line x="49.98" y="52.15"/>
- <line x="41.98" y="60.15"/>
- <line x="66.78" y="60.15"/>
- <line x="66.78" y="65.55"/>
- <line x="41.98" y="65.55"/>
- <line x="50.28" y="73.75"/>
- <close/>
- <move x="39.28" y="39.55"/>
- <arc large-arc-flag="0" rx="1.6" ry="1.6" sweep-flag="1" x="37.58" x-axis-rotation="0" y="37.25"/>
- <line x="57.58" y="0.75"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="60.18" x-axis-rotation="0" y="0.75"/>
- <line x="80.38" y="37.75"/>
- <arc large-arc-flag="0" rx="1.6" ry="1.6" sweep-flag="1" x="79.28" x-axis-rotation="0" y="39.55"/>
- <close/>
- <move x="49.88" y="35.75"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="53.68" x-axis-rotation="0" y="32.05"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.88" x-axis-rotation="0" y="27.95"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="45.88" x-axis-rotation="0" y="32.05"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.88" x-axis-rotation="0" y="35.75"/>
- <close/>
- <move x="68.08" y="35.75"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="71.88" x-axis-rotation="0" y="32.05"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="68.08" x-axis-rotation="0" y="27.95"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="63.98" x-axis-rotation="0" y="32.05"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="68.08" x-axis-rotation="0" y="35.75"/>
- <close/>
- <move x="63.08" y="33.15"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="63.08" x-axis-rotation="0" y="30.65"/>
- <line x="54.58" y="30.65"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="54.58" x-axis-rotation="0" y="33.15"/>
- <close/>
- <move x="64.68" y="28.05"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="66.98" x-axis-rotation="0" y="27.15"/>
- <line x="62.18" y="17.95"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="60.18" x-axis-rotation="0" y="18.95"/>
- <close/>
- <move x="57.48" y="19.25"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="55.38" x-axis-rotation="0" y="18.05"/>
- <line x="50.38" y="27.25"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="52.48" x-axis-rotation="0" y="28.25"/>
- <close/>
- <move x="59.08" y="18.25"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="62.88" x-axis-rotation="0" y="14.75"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="59.08" x-axis-rotation="0" y="10.55"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="54.98" x-axis-rotation="0" y="14.25"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="59.08" x-axis-rotation="0" y="18.25"/>
- <close/>
- <move x="39.58" y="16.55"/>
- <line x="9.88" y="16.55"/>
- <line x="9.88" y="20.65"/>
- <line x="39.58" y="20.65"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="102.79" name="Database generic" strokewidth="inherit" w="76">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.01"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0.14"/>
- <constraint name="NW" perimeter="0" x="0" y="0.14"/>
- <constraint name="SE" perimeter="0" x="1" y="0.85"/>
- <constraint name="SW" perimeter="0" x="0" y="0.85"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="15.15"/>
- <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="11" x-axis-rotation="0" y="5.65"/>
- <arc large-arc-flag="0" rx="39" ry="16" sweep-flag="1" x="63.6" x-axis-rotation="0" y="5.55"/>
- <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="76" x-axis-rotation="0" y="15.15"/>
- <line x="76" y="87.15"/>
- <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="63" x-axis-rotation="0" y="97.35"/>
- <arc large-arc-flag="0" rx="39" ry="17" sweep-flag="1" x="11" x-axis-rotation="0" y="96.15"/>
- <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="87.15"/>
- <close/>
- <move x="64" y="17.15"/>
- <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="64" x-axis-rotation="0" y="12.55"/>
- <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="12" x-axis-rotation="0" y="12.55"/>
- <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="12" x-axis-rotation="0" y="17.15"/>
- <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="64" x-axis-rotation="0" y="17.15"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.09" name="Database server" strokewidth="inherit" w="75.21">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.75" y="0.395"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="0.92"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.6" x-axis-rotation="0" y="0"/>
- <line x="43.6" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.4" x-axis-rotation="0" y="4.8"/>
- <line x="48.4" y="35.2"/>
- <arc large-arc-flag="0" rx="20" ry="11" sweep-flag="0" x="31.5" x-axis-rotation="0" y="45.3"/>
- <line x="31.5" y="75.3"/>
- <line x="7.3" y="75.3"/>
- <line x="7.3" y="80.1"/>
- <line x="31.5" y="80.1"/>
- <line x="31.5" y="85"/>
- <line x="7.3" y="85"/>
- <line x="7.3" y="89.8"/>
- <line x="31.5" y="89.8"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="36.8" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="7.3" y="19.5"/>
- <line x="41.4" y="19.5"/>
- <line x="41.4" y="14.6"/>
- <line x="7.3" y="14.6"/>
- <close/>
- <move x="55.4" y="39.6"/>
- <arc large-arc-flag="1" rx="16.5" ry="6" sweep-flag="0" x="56.1" x-axis-rotation="0" y="53.5"/>
- <arc large-arc-flag="1" rx="16.5" ry="6" sweep-flag="0" x="56.1" x-axis-rotation="0" y="39.6"/>
- <close/>
- <move x="36.5" y="51.3"/>
- <arc large-arc-flag="0" rx="20" ry="6.6" sweep-flag="0" x="75.2" x-axis-rotation="0" y="51.3"/>
- <line x="75.2" y="91.8"/>
- <arc large-arc-flag="0" rx="22" ry="9" sweep-flag="1" x="68.3" x-axis-rotation="0" y="97.5"/>
- <arc large-arc-flag="0" rx="20" ry="9" sweep-flag="1" x="44.4" x-axis-rotation="0" y="97.8"/>
- <arc large-arc-flag="0" rx="15" ry="8" sweep-flag="1" x="36.5" x-axis-rotation="0" y="91.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.62" name="Database synchronization" strokewidth="inherit" w="77.82">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.625" y="0.49"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.92" y="0.93"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="43.5" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.5" x-axis-rotation="0" y="5"/>
- <line x="48.5" y="49.1"/>
- <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="0" x="26.7" x-axis-rotation="0" y="75.3"/>
- <line x="7.1" y="75.3"/>
- <line x="7.1" y="80.2"/>
- <line x="26.9" y="80.2"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="27.8" x-axis-rotation="0" y="85"/>
- <line x="7.1" y="85"/>
- <line x="7.1" y="90"/>
- <line x="30.2" y="90"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="38.8" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="7.3" y="19.6"/>
- <line x="41.2" y="19.6"/>
- <line x="41.3" y="14.6"/>
- <line x="7.3" y="14.6"/>
- <close/>
- <move x="77.6" y="77.3"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="54.8" x-axis-rotation="0" y="99.5"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="31.6" x-axis-rotation="0" y="77.3"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="54.8" x-axis-rotation="0" y="53.5"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="77.6" x-axis-rotation="0" y="77.3"/>
- <close/>
- <move x="64.8" y="67.1"/>
- <arc large-arc-flag="0" rx="14.2" ry="14.2" sweep-flag="0" x="39.9" x-axis-rotation="0" y="74.7"/>
- <line x="44.8" y="74.7"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62.2" x-axis-rotation="0" y="70.6"/>
- <line x="54.7" y="70.6"/>
- <line x="59.2" y="74.6"/>
- <line x="68.8" y="74.6"/>
- <line x="68.8" y="64.7"/>
- <line x="64.8" y="60.6"/>
- <close/>
- <move x="63.7" y="77.8"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="46" x-axis-rotation="0" y="81.6"/>
- <line x="53.3" y="81.6"/>
- <line x="49.9" y="77.9"/>
- <line x="39.6" y="77.9"/>
- <line x="39.6" y="88"/>
- <line x="43.6" y="92.1"/>
- <line x="43.6" y="85"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="68.6" x-axis-rotation="0" y="77.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="51" name="Device" strokewidth="inherit" w="99.61">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.03" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.97" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0"/>
- <constraint name="NW" perimeter="0" x="0.18" y="0"/>
- <constraint name="SE" perimeter="0" x="0.99" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="3.8" y="51"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="47"/>
- <line x="0" y="29.5"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="3.8" x-axis-rotation="0" y="25.5"/>
- <line x="95.8" y="25.5"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="99.6" x-axis-rotation="0" y="29.5"/>
- <line x="99.6" y="47"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="95.8" x-axis-rotation="0" y="51"/>
- <close/>
- <move x="14.8" y="43.3"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="20.5" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="14.8" x-axis-rotation="0" y="33.2"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10.2" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="14.8" x-axis-rotation="0" y="43.3"/>
- <close/>
- <move x="37.8" y="43.3"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="43.4" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.8" x-axis-rotation="0" y="33.2"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="33.2" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.8" x-axis-rotation="0" y="43.3"/>
- <close/>
- <move x="61.3" y="43.3"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="66.4" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="0" y="33.2"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="56.2" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="0" y="43.3"/>
- <close/>
- <move x="84.8" y="43.3"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="89.4" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="84.8" x-axis-rotation="0" y="33.2"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="79.2" x-axis-rotation="0" y="38.5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="84.8" x-axis-rotation="0" y="43.3"/>
- <close/>
- <move x="99.4" y="17.8"/>
- <line x="0.2" y="17.8"/>
- <line x="18.4" y="0"/>
- <line x="81.1" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="88.9" name="Direct Access feature" strokewidth="inherit" w="99.44">
- <connections>
- <constraint name="N" perimeter="0" x="0.61" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.5" y="0.395"/>
- <constraint name="SE" perimeter="0" x="1" y="0.95"/>
- <constraint name="SW" perimeter="0" x="0" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="1.14" y="88.82"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="0.14" x-axis-rotation="0" y="87.42"/>
- <line x="6.84" y="75.92"/>
- <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="9.34" x-axis-rotation="0" y="74.42"/>
- <line x="60.64" y="74.42"/>
- <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="62.84" x-axis-rotation="0" y="75.42"/>
- <line x="69.94" y="87.62"/>
- <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="68.74" x-axis-rotation="0" y="88.82"/>
- <close/>
- <move x="16.94" y="84.92"/>
- <line x="52.24" y="84.92"/>
- <line x="49.44" y="80.52"/>
- <line x="19.44" y="80.52"/>
- <close/>
- <move x="13.84" y="70.22"/>
- <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="8.44" x-axis-rotation="0" y="65.02"/>
- <line x="8.44" y="39.92"/>
- <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="13.94" x-axis-rotation="0" y="35.17"/>
- <line x="56.84" y="35.17"/>
- <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="62.04" x-axis-rotation="0" y="39.92"/>
- <line x="62.04" y="65.22"/>
- <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="56.84" x-axis-rotation="0" y="70.12"/>
- <close/>
- <move x="14.44" y="64.12"/>
- <line x="56.04" y="64.12"/>
- <line x="56.04" y="41.22"/>
- <line x="14.44" y="41.22"/>
- <close/>
- <move x="38.64" y="56.42"/>
- <line x="46.84" y="48.32"/>
- <line x="39.84" y="48.32"/>
- <line x="42.74" y="45.42"/>
- <line x="51.74" y="45.42"/>
- <line x="51.74" y="54.72"/>
- <line x="49.04" y="57.62"/>
- <line x="49.04" y="50.42"/>
- <line x="40.84" y="58.72"/>
- <close/>
- <move x="66.34" y="64.12"/>
- <line x="66.34" y="39.42"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="58.04" x-axis-rotation="0" y="31.22"/>
- <line x="58.04" y="3.42"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="61.84" x-axis-rotation="0" y="0.02"/>
- <line x="95.44" y="0.02"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="99.44" x-axis-rotation="0" y="3.42"/>
- <line x="99.44" y="84.82"/>
- <line x="73.24" y="84.82"/>
- <line x="68.44" y="76.62"/>
- <line x="91.24" y="76.62"/>
- <line x="91.24" y="72.32"/>
- <line x="66.34" y="72.32"/>
- <line x="66.34" y="68.22"/>
- <line x="91.24" y="68.22"/>
- <line x="91.24" y="64.12"/>
- <close/>
- <move x="91.24" y="16.42"/>
- <line x="91.24" y="12.32"/>
- <line x="66.24" y="12.32"/>
- <line x="66.24" y="16.42"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Document" strokewidth="inherit" w="79.8">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.87" y="0.145"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="0"/>
- <line x="54.8" y="0"/>
- <line x="79.8" y="25"/>
- <line x="79.8" y="99.6"/>
- <close/>
- <move x="5" y="94.6"/>
- <line x="74.9" y="94.6"/>
- <line x="74.9" y="27.3"/>
- <line x="52.5" y="27.3"/>
- <line x="52.5" y="5"/>
- <line x="5" y="5"/>
- <close/>
- <move x="17.6" y="82.2"/>
- <line x="17.6" y="77.2"/>
- <line x="62.4" y="77.2"/>
- <line x="62.4" y="82.2"/>
- <close/>
- <move x="62.4" y="69.7"/>
- <line x="17.6" y="69.7"/>
- <line x="17.6" y="64.7"/>
- <line x="62.4" y="64.7"/>
- <close/>
- <move x="17.6" y="57.2"/>
- <line x="17.6" y="52.4"/>
- <line x="62.4" y="52.4"/>
- <line x="62.4" y="57.2"/>
- <close/>
- <move x="62.4" y="44.7"/>
- <line x="17.6" y="44.7"/>
- <line x="17.6" y="39.8"/>
- <line x="62.4" y="39.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Domain Controller" strokewidth="inherit" w="72.61">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.665" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.65" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.3" x-axis-rotation="0" y="0"/>
- <line x="43.3" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.3" x-axis-rotation="0" y="4.8"/>
- <line x="48.3" y="55.9"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="43.3" x-axis-rotation="0" y="59"/>
- <line x="33.8" y="75.3"/>
- <line x="7.1" y="75.3"/>
- <line x="7.1" y="80.2"/>
- <line x="31" y="80.2"/>
- <line x="28.2" y="85"/>
- <line x="7.1" y="85"/>
- <line x="7.1" y="90"/>
- <line x="25.3" y="90"/>
- <line x="22.6" y="94.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="22" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="7.1" y="19.5"/>
- <line x="41.2" y="19.5"/>
- <line x="41.2" y="14.6"/>
- <line x="7.1" y="14.6"/>
- <close/>
- <move x="48" y="61.9"/>
- <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="51.2" x-axis-rotation="0" y="61.9"/>
- <line x="72.3" y="97"/>
- <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="71.3" x-axis-rotation="0" y="99.6"/>
- <line x="28.6" y="99.6"/>
- <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="27.1" x-axis-rotation="0" y="97"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="404.6" name="Enterprise Building" strokewidth="inherit" w="254.9">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="404.6"/>
- <line x="130" y="404.6"/>
- <line x="130" y="0"/>
- <line x="0" y="0"/>
- <line x="0" y="404.6"/>
- <close/>
- <move x="107.8" y="171"/>
- <line x="72.7" y="171"/>
- <line x="72.7" y="136"/>
- <line x="107.8" y="136"/>
- <line x="107.8" y="171"/>
- <close/>
- <move x="20.5" y="118.9"/>
- <line x="20.5" y="83.8"/>
- <line x="55.6" y="83.8"/>
- <line x="55.6" y="118.9"/>
- <line x="20.5" y="118.9"/>
- <close/>
- <move x="73.5" y="118.9"/>
- <line x="73.5" y="83.8"/>
- <line x="108.6" y="83.8"/>
- <line x="108.6" y="118.9"/>
- <line x="73.5" y="118.9"/>
- <close/>
- <move x="72.7" y="31.6"/>
- <line x="107.8" y="31.6"/>
- <line x="107.8" y="66.7"/>
- <line x="72.7" y="66.7"/>
- <line x="72.7" y="31.6"/>
- <close/>
- <move x="20.5" y="31.6"/>
- <line x="55.6" y="31.6"/>
- <line x="55.6" y="66.7"/>
- <line x="20.5" y="66.7"/>
- <line x="20.5" y="31.6"/>
- <close/>
- <move x="20.5" y="136"/>
- <line x="55.6" y="136"/>
- <line x="55.6" y="171.1"/>
- <line x="20.5" y="171.1"/>
- <line x="20.5" y="136"/>
- <close/>
- <move x="107.8" y="328.4"/>
- <line x="72.7" y="328.4"/>
- <line x="72.7" y="293.3"/>
- <line x="107.8" y="293.3"/>
- <line x="107.8" y="328.4"/>
- <close/>
- <move x="20.5" y="276.3"/>
- <line x="20.5" y="241.2"/>
- <line x="55.6" y="241.2"/>
- <line x="55.6" y="276.3"/>
- <line x="20.5" y="276.3"/>
- <close/>
- <move x="73.5" y="276.3"/>
- <line x="73.5" y="241.2"/>
- <line x="108.6" y="241.2"/>
- <line x="108.6" y="276.3"/>
- <line x="73.5" y="276.3"/>
- <close/>
- <move x="72.7" y="189"/>
- <line x="107.8" y="189"/>
- <line x="107.8" y="224.1"/>
- <line x="72.7" y="224.1"/>
- <line x="72.7" y="189"/>
- <close/>
- <move x="20.5" y="189"/>
- <line x="55.6" y="189"/>
- <line x="55.6" y="224.1"/>
- <line x="20.5" y="224.1"/>
- <line x="20.5" y="189"/>
- <close/>
- <move x="20.5" y="293.4"/>
- <line x="55.6" y="293.4"/>
- <line x="55.6" y="328.5"/>
- <line x="20.5" y="328.5"/>
- <line x="20.5" y="293.4"/>
- <close/>
- <move x="238.6" y="131.7"/>
- <line x="238.6" y="89.8"/>
- <line x="219.8" y="89.8"/>
- <line x="219.8" y="49.6"/>
- <line x="206.1" y="49.6"/>
- <line x="206.1" y="12"/>
- <line x="195" y="12"/>
- <line x="195" y="49.6"/>
- <line x="181.3" y="49.6"/>
- <line x="181.3" y="89.8"/>
- <line x="162.5" y="89.8"/>
- <line x="162.5" y="131.7"/>
- <line x="147.1" y="131.7"/>
- <line x="147.1" y="404.6"/>
- <line x="254.9" y="404.6"/>
- <line x="254.9" y="131.7"/>
- <line x="238.6" y="131.7"/>
- <close/>
- <move x="199.3" y="295.9"/>
- <line x="164.2" y="295.9"/>
- <line x="164.2" y="260.8"/>
- <line x="199.3" y="260.8"/>
- <line x="199.3" y="295.9"/>
- <close/>
- <move x="199.3" y="189"/>
- <line x="164.2" y="189"/>
- <line x="164.2" y="153.9"/>
- <line x="199.3" y="153.9"/>
- <line x="199.3" y="189"/>
- <close/>
- <move x="240.3" y="242"/>
- <line x="205.2" y="242"/>
- <line x="205.2" y="207"/>
- <line x="240.3" y="207"/>
- <curve x1="240.3" x2="240.3" x3="240.3" y1="207" y2="242" y3="242"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="89.6" name="Filter" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.4" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.6" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- </connections>
- <foreground>
- <path>
- <move x="44.8" y="89.6"/>
- <line x="39.9" y="44.8"/>
- <line x="0" y="5"/>
- <line x="0" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="5"/>
- <line x="59.7" y="44.8"/>
- <line x="54.8" y="89.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="87.2" name="Firewall" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="87.2"/>
- <line x="0" y="67.4"/>
- <line x="47.1" y="67.4"/>
- <line x="47.1" y="87.2"/>
- <close/>
- <move x="49.8" y="67.4"/>
- <line x="99.6" y="67.4"/>
- <line x="99.6" y="87.2"/>
- <line x="49.8" y="87.2"/>
- <close/>
- <move x="74.7" y="64.9"/>
- <line x="74.7" y="45"/>
- <line x="99.6" y="45"/>
- <line x="99.6" y="64.9"/>
- <close/>
- <move x="71.8" y="45"/>
- <line x="71.8" y="64.9"/>
- <line x="27.7" y="64.9"/>
- <line x="27.7" y="45"/>
- <close/>
- <move x="25" y="64.9"/>
- <line x="0" y="64.9"/>
- <line x="0" y="44.9"/>
- <line x="25" y="44.9"/>
- <close/>
- <move x="47" y="42.5"/>
- <line x="0" y="42.5"/>
- <line x="0" y="22.6"/>
- <line x="47" y="22.6"/>
- <close/>
- <move x="49.8" y="22.6"/>
- <line x="99.6" y="22.6"/>
- <line x="99.6" y="42.5"/>
- <line x="50" y="42.5"/>
- <close/>
- <move x="74.7" y="20"/>
- <line x="74.7" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="20"/>
- <close/>
- <move x="71.8" y="0.1"/>
- <line x="71.8" y="20"/>
- <line x="27.7" y="20"/>
- <line x="27.7" y="0.1"/>
- <close/>
- <move x="24.8" y="20"/>
- <line x="0" y="20"/>
- <line x="0" y="0.1"/>
- <line x="24.8" y="0.1"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85.4" name="Folder" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.4" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.98" y="0.19"/>
- <constraint name="NW" perimeter="0" x="0.06" y="0.07"/>
- <constraint name="SE" perimeter="0" x="0.98" y="0.97"/>
- <constraint name="SW" perimeter="0" x="0.02" y="0.97"/>
- </connections>
- <foreground>
- <path>
- <move x="7" y="85.4"/>
- <arc large-arc-flag="0" rx="7.5" ry="7.5" sweep-flag="1" x="0" x-axis-rotation="0" y="78.4"/>
- <line x="0" y="16.7"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="4.4" x-axis-rotation="0" y="8"/>
- <line x="9.8" y="2.8"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="17.9" x-axis-rotation="0" y="0"/>
- <line x="38.6" y="0"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="46.2" x-axis-rotation="0" y="3.9"/>
- <line x="53.4" y="11.9"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="58.4" x-axis-rotation="0" y="14.2"/>
- <line x="92.4" y="14.2"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="99.6" x-axis-rotation="0" y="21.2"/>
- <line x="99.6" y="77.7"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="92.8" x-axis-rotation="0" y="85.4"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Gateway" strokewidth="inherit" w="100">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
- <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
- <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
- <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
- </connections>
- <foreground>
- <path>
- <move x="50" y="100"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
- <close/>
- <move x="54.5" y="90.8"/>
- <line x="54.5" y="74.9"/>
- <line x="59.1" y="74.9"/>
- <line x="50" y="56.5"/>
- <line x="40.9" y="74.9"/>
- <line x="45.4" y="74.9"/>
- <line x="45.4" y="90.8"/>
- <close/>
- <move x="74.8" y="59.2"/>
- <line x="93.2" y="50"/>
- <line x="74.8" y="40.8"/>
- <line x="74.8" y="45.5"/>
- <line x="59.1" y="45.5"/>
- <line x="59.1" y="54.5"/>
- <line x="74.8" y="54.5"/>
- <close/>
- <move x="59" y="22.8"/>
- <line x="54.5" y="22.8"/>
- <line x="54.5" y="7"/>
- <line x="45.4" y="7"/>
- <line x="45.4" y="22.8"/>
- <line x="40.8" y="22.8"/>
- <line x="50" y="41.3"/>
- <close/>
- <move x="41" y="45.5"/>
- <line x="25" y="45.5"/>
- <line x="25" y="40.9"/>
- <line x="6.7" y="50"/>
- <line x="25" y="59"/>
- <line x="25" y="54.5"/>
- <line x="41" y="54.5"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="266.1" name="Generic App" strokewidth="inherit" w="394.8">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="279.2" y="114.7"/>
- <curve x1="279.2" x2="276.9" x3="272.3" y1="124.1" y2="131.7" y3="137.3"/>
- <curve x1="267.7" x2="261.5" x3="253.8" y1="142.9" y2="145.7" y3="145.7"/>
- <curve x1="246.5" x2="240.9" x3="237.1" y1="145.7" y2="142.6" y3="136.3"/>
- <line x="236.9" y="136.3"/>
- <line x="236.9" y="170"/>
- <line x="228" y="170"/>
- <line x="228" y="88.5"/>
- <line x="236.9" y="88.5"/>
- <line x="236.9" y="98.3"/>
- <line x="237.1" y="98.3"/>
- <curve x1="241.5" x2="247.9" x3="256.4" y1="90.9" y2="87.1" y3="87.1"/>
- <curve x1="263.4" x2="268.9" x3="273.1" y1="87.1" y2="89.6" y3="94.5"/>
- <curve x1="277.2" x2="279.2" x3="279.2" y1="99.5" y2="106.2" y3="114.7"/>
- <close/>
- <move x="270.1" y="114.6"/>
- <curve x1="270.1" x2="268.7" x3="265.8" y1="108.6" y2="103.8" y3="100.2"/>
- <curve x1="263" x2="259.1" x3="254.1" y1="96.6" y2="94.8" y3="94.8"/>
- <curve x1="249" x2="244.8" x3="241.6" y1="94.8" y2="96.6" y3="100.1"/>
- <curve x1="238.4" x2="236.8" x3="236.8" y1="103.7" y2="108.2" y3="113.7"/>
- <line x="236.8" y="121.5"/>
- <curve x1="236.8" x2="238.3" x3="241.4" y1="126.2" y2="130.1" y3="133.3"/>
- <curve x1="244.5" x2="248.3" x3="252.8" y1="136.5" y2="138" y3="138"/>
- <curve x1="258.2" x2="262.4" x3="265.5" y1="138" y2="135.9" y3="131.8"/>
- <curve x1="268.6" x2="270.1" x3="270.1" y1="127.7" y2="121.9" y3="114.6"/>
- <close/>
- <move x="214.1" y="114.7"/>
- <curve x1="214.1" x2="211.8" x3="207.2" y1="124.1" y2="131.7" y3="137.3"/>
- <curve x1="202.6" x2="196.4" x3="188.7" y1="142.9" y2="145.7" y3="145.7"/>
- <curve x1="181.4" x2="175.8" x3="172" y1="145.7" y2="142.6" y3="136.3"/>
- <line x="171.8" y="136.3"/>
- <line x="171.8" y="170"/>
- <line x="162.9" y="170"/>
- <line x="162.9" y="88.5"/>
- <line x="171.8" y="88.5"/>
- <line x="171.8" y="98.3"/>
- <line x="172" y="98.3"/>
- <curve x1="176.4" x2="182.8" x3="191.3" y1="90.9" y2="87.1" y3="87.1"/>
- <curve x1="198.3" x2="203.8" x3="208" y1="87.1" y2="89.6" y3="94.5"/>
- <curve x1="212" x2="214.1" x3="214.1" y1="99.5" y2="106.2" y3="114.7"/>
- <close/>
- <move x="204.9" y="114.6"/>
- <curve x1="204.9" x2="203.5" x3="200.6" y1="108.6" y2="103.8" y3="100.2"/>
- <curve x1="197.8" x2="193.9" x3="188.9" y1="96.6" y2="94.8" y3="94.8"/>
- <curve x1="183.8" x2="179.6" x3="176.4" y1="94.8" y2="96.6" y3="100.1"/>
- <curve x1="173.2" x2="171.6" x3="171.6" y1="103.7" y2="108.2" y3="113.7"/>
- <line x="171.6" y="121.5"/>
- <curve x1="171.6" x2="173.1" x3="176.2" y1="126.2" y2="130.1" y3="133.3"/>
- <curve x1="179.3" x2="183.1" x3="187.6" y1="136.5" y2="138" y3="138"/>
- <curve x1="193" x2="197.2" x3="200.3" y1="138" y2="135.9" y3="131.8"/>
- <curve x1="203.4" x2="204.9" x3="204.9" y1="127.7" y2="121.9" y3="114.6"/>
- <close/>
- <move x="145.9" y="144.3"/>
- <line x="137" y="144.3"/>
- <line x="137" y="135.6"/>
- <line x="136.8" y="135.6"/>
- <curve x1="132.9" x2="127.2" x3="119.6" y1="142.3" y2="145.7" y3="145.7"/>
- <curve x1="114.2" x2="109.9" x3="106.7" y1="145.7" y2="144.2" y3="141.3"/>
- <curve x1="103.5" x2="101.9" x3="101.9" y1="138.4" y2="134.4" y3="129.5"/>
- <curve x1="101.9" x2="108" x3="120.3" y1="119.1" y2="113" y3="111.3"/>
- <line x="137" y="109"/>
- <curve x1="137" x2="133.2" x3="125.5" y1="99.6" y2="94.8" y3="94.8"/>
- <curve x1="118.8" x2="112.7" x3="107.3" y1="94.8" y2="97.1" y3="101.6"/>
- <line x="107.3" y="92.4"/>
- <curve x1="108.9" x2="111.7" x3="115.7" y1="91.2" y2="90" y3="88.8"/>
- <curve x1="119.7" x2="123.2" x3="126.3" y1="87.7" y2="87.1" y3="87.1"/>
- <curve x1="139.4" x2="146" x3="146" y1="87.1" y2="94.1" y3="108"/>
- <line x="146" y="144.3"/>
- <close/>
- <move x="137" y="116.1"/>
- <line x="123.5" y="118"/>
- <curve x1="118.9" x2="115.7" x3="113.8" y1="118.7" y2="119.8" y3="121.3"/>
- <curve x1="111.9" x2="111" x3="111" y1="122.8" y2="125.3" y3="128.8"/>
- <curve x1="111" x2="112" x3="114" y1="131.6" y2="133.8" y3="135.5"/>
- <curve x1="116" x2="118.6" x3="121.7" y1="137.2" y2="138" y3="138"/>
- <curve x1="126.1" x2="129.8" x3="132.7" y1="138" y2="136.4" y3="133.3"/>
- <curve x1="135.6" x2="137" x3="137" y1="130.2" y2="126.3" y3="121.6"/>
- <line x="137" y="116.1"/>
- <close/>
- <move x="0" y="0"/>
- <line x="0" y="266.1"/>
- <line x="394.8" y="266.1"/>
- <line x="394.8" y="0"/>
- <line x="0" y="0"/>
- <line x="0" y="0"/>
- <close/>
- <move x="375.1" y="244.7"/>
- <line x="14.6" y="244.7"/>
- <line x="14.6" y="55.8"/>
- <line x="375.1" y="55.8"/>
- <line x="375.1" y="244.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Import generic" strokewidth="inherit" w="79.71">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.9" y="0.09"/>
- <constraint name="NW" perimeter="0" x="0.04" y="0.03"/>
- <constraint name="SE" perimeter="0" x="0.96" y="0.97"/>
- <constraint name="SW" perimeter="0" x="0.04" y="0.97"/>
- </connections>
- <foreground>
- <path>
- <move x="8.81" y="99.6"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="0.01" x-axis-rotation="0" y="88.8"/>
- <line x="0.01" y="10.8"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="8.81" x-axis-rotation="0" y="0"/>
- <line x="62.81" y="0"/>
- <line x="79.71" y="16.6"/>
- <line x="79.71" y="88.8"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="68.81" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="67.81" y="93"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="73.01" x-axis-rotation="0" y="88.8"/>
- <line x="72.81" y="20.2"/>
- <line x="59.61" y="20.2"/>
- <line x="59.61" y="6.6"/>
- <line x="10.81" y="6.6"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="6.71" x-axis-rotation="0" y="10.3"/>
- <line x="6.71" y="44.7"/>
- <line x="34.61" y="44.7"/>
- <line x="34.61" y="33.3"/>
- <line x="60.41" y="52.6"/>
- <line x="34.61" y="72"/>
- <line x="34.61" y="62.3"/>
- <line x="6.71" y="62.3"/>
- <line x="6.71" y="88.8"/>
- <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="10.81" x-axis-rotation="0" y="93"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="62.11" name="Internet" strokewidth="inherit" w="100.76">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.03"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.91" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0.2"/>
- <constraint name="NW" perimeter="0" x="0.325" y="0.35"/>
- <constraint name="SE" perimeter="0" x="0.87" y="1"/>
- <constraint name="SW" perimeter="0" x="0.14" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="15.39" y="62.11"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="0.69" x-axis-rotation="0" y="44.91"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="17.69" x-axis-rotation="0" y="28.61"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="32.79" x-axis-rotation="0" y="22.11"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="45.39" x-axis-rotation="0" y="2.71"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.49" x-axis-rotation="0" y="13.41"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="84.89" x-axis-rotation="0" y="14.51"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="91.69" x-axis-rotation="0" y="33.01"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="100.19" x-axis-rotation="0" y="47.91"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="87.39" x-axis-rotation="0" y="62.11"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="61.8" name="Internet hollow" strokewidth="inherit" w="100.68">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.02"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.06" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.85" y="0.225"/>
- <constraint name="NW" perimeter="0" x="0.32" y="0.33"/>
- <constraint name="SE" perimeter="0" x="0.87" y="1"/>
- <constraint name="SW" perimeter="0" x="0.13" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="14.52" y="61.8"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="0.82" x-axis-rotation="0" y="46.5"/>
- <arc large-arc-flag="0" rx="16.5" ry="16.5" sweep-flag="1" x="17.72" x-axis-rotation="0" y="27.3"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="32.72" x-axis-rotation="0" y="21"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="47.72" x-axis-rotation="0" y="1.5"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.72" x-axis-rotation="0" y="12.2"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="85.72" x-axis-rotation="0" y="14.3"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="92.12" x-axis-rotation="0" y="32.2"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="100.32" x-axis-rotation="0" y="46.5"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="87.52" x-axis-rotation="0" y="61.8"/>
- <close/>
- <move x="87.52" y="60.2"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="98.72" x-axis-rotation="0" y="46.5"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="90.52" x-axis-rotation="0" y="32.9"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="0" x="84.52" x-axis-rotation="0" y="15.3"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="66.12" x-axis-rotation="0" y="14.2"/>
- <arc large-arc-flag="0" rx="16.5" ry="17" sweep-flag="0" x="47.02" x-axis-rotation="0" y="3.1"/>
- <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="0" x="34.12" x-axis-rotation="0" y="23"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="18.72" x-axis-rotation="0" y="28.9"/>
- <arc large-arc-flag="0" rx="14.5" ry="16" sweep-flag="0" x="2.32" x-axis-rotation="0" y="43"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="14.52" x-axis-rotation="0" y="60.3"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="45" name="iPhone" strokewidth="inherit" w="27.7">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.97" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.03" y="0.02"/>
- <constraint name="SE" perimeter="0" x="0.97" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.03" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="17.53" y="11.47"/>
- <curve x1="15.83" x2="14.23" x3="14.23" y1="11.97" y2="13.27" y3="15.47"/>
- <curve x1="14.23" x2="14.33" x3="14.33" y1="15.67" y2="15.87" y3="16.17"/>
- <line x="14.33" y="16.27"/>
- <curve x1="16.03" x2="17.53" x3="17.53" y1="15.77" y2="14.47" y3="12.17"/>
- <curve x1="17.53" x2="17.53" x3="17.53" y1="11.97" y2="11.77" y3="11.47"/>
- <line x="17.53" y="11.47"/>
- <close/>
- <move x="24.9" y="0"/>
- <line x="2.7" y="0"/>
- <curve x1="1.2" x2="0" x3="0" y1="0" y2="1.3" y3="2.8"/>
- <line x="0" y="42.2"/>
- <curve x1="0" x2="1.6" x3="3.1" y1="43.7" y2="45" y3="45"/>
- <line x="24.6" y="45"/>
- <curve x1="26.1" x2="27.7" x3="27.7" y1="45" y2="44" y3="42.2"/>
- <line x="27.7" y="2.8"/>
- <curve x1="27.6" x2="26.4" x3="24.9" y1="1.3" y2="0" y3="0"/>
- <close/>
- <move x="11.2" y="3.1"/>
- <line x="16.3" y="3.1"/>
- <line x="16.3" y="4.1"/>
- <line x="11.2" y="4.1"/>
- <line x="11.2" y="3.1"/>
- <close/>
- <move x="13.8" y="43"/>
- <curve x1="12.8" x2="12" x3="12" y1="43" y2="42.2" y3="41.2"/>
- <curve x1="12" x2="12.8" x3="13.8" y1="40.2" y2="39.4" y3="39.4"/>
- <curve x1="14.8" x2="15.6" x3="15.6" y1="39.4" y2="40.2" y3="41.2"/>
- <curve x1="15.6" x2="14.8" x3="13.8" y1="42.2" y2="43" y3="43"/>
- <close/>
- <move x="24.5" y="37.8"/>
- <line x="3" y="37.8"/>
- <line x="3" y="5.1"/>
- <line x="24.5" y="5.1"/>
- <line x="24.5" y="37.8"/>
- <close/>
- <move x="21.4" y="25.3"/>
- <curve x1="19.9" x2="19.1" x3="19.1" y1="24.5" y2="23.3" y3="21.6"/>
- <curve x1="19.1" x2="19.7" x3="20.8" y1="20.2" y2="19" y3="18.2"/>
- <line x="20.9" y="18.2"/>
- <curve x1="20.2" x2="19.2" x3="17.7" y1="17.3" y2="16.4" y3="16.4"/>
- <curve x1="16.6" x2="15.8" x3="14.3" y1="16.4" y2="17.5" y3="17.5"/>
- <curve x1="13.1" x2="12.7" x3="11.4" y1="17.5" y2="16.5" y3="16.5"/>
- <curve x1="8.8" x2="6.2" x3="6.2" y1="16.5" y2="18.8" y3="21.9"/>
- <curve x1="6.2" x2="6.7" x3="7.9" y1="23.5" y2="26" y3="28.2"/>
- <curve x1="8.8" x2="9.8" x3="11" y1="29.8" y2="30.8" y3="30.8"/>
- <curve x1="11.9" x2="12.9" x3="14.1" y1="30.8" y2="29.9" y3="29.9"/>
- <curve x1="15.2" x2="16.1" x3="17.1" y1="29.9" y2="30.7" y3="30.7"/>
- <curve x1="19.4" x2="21.5" x3="21.5" y1="30.7" y2="27.7" y3="25.7"/>
- <curve x1="21.5" x2="21.5" x3="21.5" y1="25.6" y2="25.5" y3="25.4"/>
- <line x="21.5" y="25.3"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="60.1" name="Keyboard" strokewidth="inherit" w="99.71">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.98" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
- <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="4.36" y="60.1"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0.06" x-axis-rotation="0" y="55.1"/>
- <line x="0.06" y="5.1"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.86" x-axis-rotation="0" y="0"/>
- <line x="94.86" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="99.66" x-axis-rotation="0" y="5.1"/>
- <line x="99.66" y="55.1"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="94.86" x-axis-rotation="0" y="60.1"/>
- <close/>
- <move x="8.16" y="52"/>
- <line x="91.56" y="52"/>
- <line x="91.56" y="8.3"/>
- <line x="8.16" y="8.3"/>
- <close/>
- <move x="14.66" y="47.7"/>
- <line x="14.66" y="37.4"/>
- <line x="26.86" y="37.4"/>
- <line x="26.86" y="47.7"/>
- <close/>
- <move x="31.26" y="37.3"/>
- <line x="68.56" y="37.3"/>
- <line x="68.56" y="47.8"/>
- <line x="31.26" y="47.8"/>
- <close/>
- <move x="72.76" y="47.8"/>
- <line x="72.76" y="37.4"/>
- <line x="85.06" y="37.4"/>
- <line x="85.06" y="47.8"/>
- <close/>
- <move x="85.06" y="33.1"/>
- <line x="76.86" y="33.1"/>
- <line x="76.86" y="24.9"/>
- <line x="85.06" y="24.9"/>
- <close/>
- <move x="72.66" y="24.9"/>
- <line x="72.66" y="33.1"/>
- <line x="64.36" y="33.1"/>
- <line x="64.36" y="24.9"/>
- <close/>
- <move x="60.16" y="33.1"/>
- <line x="52.06" y="33.1"/>
- <line x="52.06" y="24.9"/>
- <line x="60.16" y="24.9"/>
- <close/>
- <move x="47.76" y="24.9"/>
- <line x="47.76" y="33.1"/>
- <line x="39.36" y="33.1"/>
- <line x="39.36" y="24.9"/>
- <close/>
- <move x="35.26" y="33.1"/>
- <line x="27.06" y="33.1"/>
- <line x="27.06" y="24.9"/>
- <line x="35.26" y="24.9"/>
- <close/>
- <move x="22.86" y="33.1"/>
- <line x="14.66" y="33.1"/>
- <line x="14.66" y="24.9"/>
- <line x="22.86" y="24.9"/>
- <close/>
- <move x="14.66" y="20.6"/>
- <line x="14.66" y="12.5"/>
- <line x="22.86" y="12.5"/>
- <line x="22.86" y="20.6"/>
- <close/>
- <move x="27.06" y="12.5"/>
- <line x="35.26" y="12.5"/>
- <line x="35.26" y="20.6"/>
- <line x="27.06" y="20.6"/>
- <close/>
- <move x="39.36" y="20.6"/>
- <line x="39.36" y="12.5"/>
- <line x="47.76" y="12.5"/>
- <line x="47.76" y="20.6"/>
- <close/>
- <move x="52.06" y="12.5"/>
- <line x="60.16" y="12.5"/>
- <line x="60.16" y="20.6"/>
- <line x="52.06" y="20.6"/>
- <close/>
- <move x="64.36" y="20.6"/>
- <line x="64.36" y="12.5"/>
- <line x="72.66" y="12.5"/>
- <line x="72.66" y="20.6"/>
- <close/>
- <move x="76.86" y="12.5"/>
- <line x="85.06" y="12.5"/>
- <line x="85.06" y="20.6"/>
- <line x="76.86" y="20.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.74" name="Key Permissions" strokewidth="inherit" w="52">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.28" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.64" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.97" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.03" y="0.02"/>
- </connections>
- <foreground>
- <path>
- <move x="6" y="40.3"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="33.8"/>
- <line x="0" y="5.3"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
- <line x="45.5" y="0"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="52" x-axis-rotation="0" y="5.3"/>
- <line x="52" y="33.8"/>
- <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="46.25" x-axis-rotation="0" y="39.7"/>
- <line x="40" y="39.7"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="33.8" x-axis-rotation="0" y="47.4"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="33.4" x-axis-rotation="0" y="53.8"/>
- <line x="38.9" y="62.1"/>
- <line x="35.3" y="67.2"/>
- <line x="33" y="69.6"/>
- <line x="33" y="73.1"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="38.6" x-axis-rotation="0" y="77.1"/>
- <line x="38.7" y="80.1"/>
- <line x="36.3" y="81.8"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="35.7" x-axis-rotation="0" y="84.5"/>
- <line x="35.6" y="90.1"/>
- <line x="33" y="90.5"/>
- <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="24" x-axis-rotation="0" y="99.6"/>
- <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="14.5" x-axis-rotation="0" y="90.8"/>
- <line x="14.5" y="40.3"/>
- <close/>
- <move x="18.6" y="91.3"/>
- <arc large-arc-flag="0" rx="2.5" ry="5" sweep-flag="0" x="22.9" x-axis-rotation="0" y="91.3"/>
- <line x="22.9" y="43.6"/>
- <arc large-arc-flag="0" rx="2.5" ry="5" sweep-flag="0" x="18.6" x-axis-rotation="0" y="43.6"/>
- <close/>
- <move x="26" y="16.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="32" x-axis-rotation="0" y="10.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="26" x-axis-rotation="0" y="4.6"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="20" x-axis-rotation="0" y="10.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="26" x-axis-rotation="0" y="16.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Load Testing" strokewidth="inherit" w="95.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.81"/>
- <constraint name="W" perimeter="0" x="0.255" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.74" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.98" y="0.11"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.11"/>
- <constraint name="SE" perimeter="0" x="0.78" y="1"/>
- <constraint name="SW" perimeter="0" x="0.22" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="21" y="99.6"/>
- <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="36.2" x-axis-rotation="0" y="75.5"/>
- <line x="33.1" y="56.8"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="17.4" x-axis-rotation="0" y="30.5"/>
- <line x="24.4" y="30.5"/>
- <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="0" x="47.8" x-axis-rotation="0" y="53.8"/>
- <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="0" x="71" x-axis-rotation="0" y="30.5"/>
- <line x="78" y="30.5"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62" x-axis-rotation="0" y="56.8"/>
- <line x="59" y="75.5"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="74.4" x-axis-rotation="0" y="99.6"/>
- <line x="66.8" y="99.6"/>
- <arc large-arc-flag="0" rx="19.5" ry="19.5" sweep-flag="0" x="47.8" x-axis-rotation="0" y="80.4"/>
- <arc large-arc-flag="0" rx="19.5" ry="19.5" sweep-flag="0" x="28.2" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="47.8" y="50.8"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="39.1" x-axis-rotation="0" y="41.8"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="47.8" x-axis-rotation="0" y="33.3"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="56.5" x-axis-rotation="0" y="41.8"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="47.8" x-axis-rotation="0" y="50.8"/>
- <close/>
- <move x="14.6" y="39.9"/>
- <line x="9" y="39.9"/>
- <line x="9" y="27.6"/>
- <line x="7.5" y="27.6"/>
- <line x="7.5" y="39.9"/>
- <line x="1.8" y="39.9"/>
- <line x="1.8" y="27.6"/>
- <line x="0" y="27.6"/>
- <line x="0" y="23"/>
- <line x="1.8" y="23"/>
- <line x="1.8" y="11.3"/>
- <line x="7.5" y="11.3"/>
- <line x="7.5" y="23"/>
- <line x="9" y="23"/>
- <line x="9" y="11.3"/>
- <line x="14.6" y="11.3"/>
- <line x="14.6" y="23"/>
- <line x="81" y="23"/>
- <line x="81" y="11.3"/>
- <line x="86.6" y="11.3"/>
- <line x="86.6" y="23"/>
- <line x="88.1" y="23"/>
- <line x="88.1" y="11.3"/>
- <line x="93.7" y="11.3"/>
- <line x="93.7" y="23"/>
- <line x="95.6" y="23"/>
- <line x="95.6" y="27.6"/>
- <line x="93.7" y="27.6"/>
- <line x="93.7" y="39.9"/>
- <line x="88.1" y="39.9"/>
- <line x="88.1" y="27.6"/>
- <line x="86.6" y="27.6"/>
- <line x="86.6" y="39.9"/>
- <line x="81" y="39.9"/>
- <line x="81" y="27.6"/>
- <line x="14.6" y="27.6"/>
- <close/>
- <move x="47.8" y="17.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="45.7" x-axis-rotation="0" y="15.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="47.8" x-axis-rotation="0" y="13.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="50" x-axis-rotation="0" y="15.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="47.8" x-axis-rotation="0" y="17.6"/>
- <close/>
- <move x="46.1" y="11.9"/>
- <line x="46.1" y="0"/>
- <line x="49.5" y="0"/>
- <line x="49.5" y="11.9"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.58" name="Lock" strokewidth="inherit" w="77.3">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.005"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.8" y="0.11"/>
- <constraint name="NW" perimeter="0" x="0.2" y="0.11"/>
- <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="4.6" y="100.58"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="95.78"/>
- <line x="0" y="45.28"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="4.6" x-axis-rotation="0" y="40.18"/>
- <line x="10.3" y="40.18"/>
- <line x="10.3" y="26.78"/>
- <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="37.6" x-axis-rotation="0" y="0.98"/>
- <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="67" x-axis-rotation="0" y="26.78"/>
- <line x="67" y="40.18"/>
- <line x="71.9" y="40.18"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="77.3" x-axis-rotation="0" y="45.28"/>
- <line x="77.3" y="95.78"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="72.4" x-axis-rotation="0" y="100.58"/>
- <close/>
- <move x="42.5" y="90.68"/>
- <line x="42.5" y="69.78"/>
- <arc large-arc-flag="1" rx="8.7" ry="8.7" sweep-flag="0" x="35" x-axis-rotation="0" y="69.78"/>
- <line x="35" y="90.68"/>
- <close/>
- <move x="57.7" y="40.18"/>
- <line x="57.7" y="26.28"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="38.6" x-axis-rotation="0" y="9.78"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="19.7" x-axis-rotation="0" y="26.28"/>
- <line x="19.7" y="40.18"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.75" name="Lock unlocked" strokewidth="inherit" w="74">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.005"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.8" y="0.11"/>
- <constraint name="NW" perimeter="0" x="0.2" y="0.11"/>
- <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
- <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="5" y="99.75"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="94.95"/>
- <line x="0" y="46.95"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="5" x-axis-rotation="0" y="41.85"/>
- <line x="55.6" y="41.85"/>
- <line x="55.6" y="25.95"/>
- <arc large-arc-flag="0" rx="17.5" ry="19" sweep-flag="0" x="37" x-axis-rotation="0" y="8.65"/>
- <arc large-arc-flag="0" rx="17.5" ry="19" sweep-flag="0" x="19.1" x-axis-rotation="0" y="29.65"/>
- <line x="9.6" y="29.65"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="37" x-axis-rotation="0" y="0.15"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="64.3" x-axis-rotation="0" y="26.95"/>
- <line x="64.3" y="41.85"/>
- <line x="69.7" y="41.85"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="74" x-axis-rotation="0" y="46.95"/>
- <line x="74" y="94.95"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="69.2" x-axis-rotation="0" y="99.75"/>
- <close/>
- <move x="40.7" y="90.35"/>
- <line x="40.7" y="70.35"/>
- <arc large-arc-flag="1" rx="8.3" ry="8.3" sweep-flag="0" x="33.5" x-axis-rotation="0" y="70.35"/>
- <line x="33.5" y="90.35"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.65" name="Maintenance" strokewidth="inherit" w="68.63">
- <connections>
- <constraint name="N" perimeter="0" x="0.575" y="0.01"/>
- <constraint name="S" perimeter="0" x="0.71" y="1"/>
- <constraint name="W" perimeter="0" x="0.075" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.845" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.93" y="0.06"/>
- <constraint name="NW" perimeter="0" x="0.05" y="0"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="2.8" y="99.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="96.8"/>
- <line x="0" y="72.5"/>
- <line x="16.1" y="72.5"/>
- <line x="16.1" y="96.8"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="13.3" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="16.1" y="68.8"/>
- <line x="0" y="68.8"/>
- <line x="0" y="60.4"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.4" x-axis-rotation="0" y="58"/>
- <line x="5.3" y="58"/>
- <line x="5.3" y="21.8"/>
- <line x="3.5" y="12.5"/>
- <line x="3.5" y="0"/>
- <line x="12.6" y="0"/>
- <line x="12.6" y="12.5"/>
- <line x="10.7" y="21.8"/>
- <line x="10.7" y="58"/>
- <line x="13.3" y="58"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="16.1" x-axis-rotation="0" y="60.4"/>
- <close/>
- <move x="39.7" y="36.8"/>
- <arc large-arc-flag="0" rx="20.3" ry="20.3" sweep-flag="1" x="39.5" x-axis-rotation="0" y="1"/>
- <line x="41.5" y="1.8"/>
- <line x="41.5" y="18.3"/>
- <arc large-arc-flag="0" rx="7.7" ry="7.7" sweep-flag="0" x="56.1" x-axis-rotation="0" y="18.3"/>
- <line x="56.1" y="1.8"/>
- <line x="57.9" y="1"/>
- <arc large-arc-flag="0" rx="20.3" ry="20.3" sweep-flag="1" x="57.9" x-axis-rotation="0" y="36.8"/>
- <line x="57.9" y="91.8"/>
- <arc large-arc-flag="0" rx="9.2" ry="9.2" sweep-flag="1" x="39.7" x-axis-rotation="0" y="91.8"/>
- <close/>
- <move x="45.1" y="90.8"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.3" x-axis-rotation="0" y="94.1"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="52.4" x-axis-rotation="0" y="90.8"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.3" x-axis-rotation="0" y="87"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="45.1" x-axis-rotation="0" y="90.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="67.1" name="Management Console" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="67.1"/>
- <line x="0" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="67.1"/>
- <close/>
- <move x="4.2" y="62.9"/>
- <line x="95.3" y="62.9"/>
- <line x="95.3" y="15.2"/>
- <line x="4.2" y="15.2"/>
- <close/>
- <move x="15.2" y="56.3"/>
- <line x="15.2" y="41.1"/>
- <line x="30.2" y="41.3"/>
- <line x="30.2" y="56.3"/>
- <close/>
- <move x="41.2" y="41.1"/>
- <line x="56.3" y="41.1"/>
- <line x="56.3" y="56.3"/>
- <line x="41.2" y="56.3"/>
- <close/>
- <move x="43" y="43"/>
- <line x="43" y="54.5"/>
- <line x="54.5" y="54.5"/>
- <line x="54.5" y="43"/>
- <close/>
- <move x="67.2" y="56.3"/>
- <line x="67.2" y="41.3"/>
- <line x="82.2" y="41.3"/>
- <line x="82.2" y="56.3"/>
- <close/>
- <move x="82.2" y="36.9"/>
- <line x="67.2" y="36.9"/>
- <line x="67.2" y="21.8"/>
- <line x="82.2" y="21.8"/>
- <close/>
- <move x="80.5" y="35"/>
- <line x="80.5" y="23.6"/>
- <line x="69" y="23.6"/>
- <line x="69" y="35"/>
- <close/>
- <move x="56.4" y="21.7"/>
- <line x="56.4" y="36.9"/>
- <line x="41.2" y="36.9"/>
- <line x="41.2" y="21.7"/>
- <close/>
- <move x="30.2" y="36.9"/>
- <line x="15.2" y="36.9"/>
- <line x="15.2" y="21.8"/>
- <line x="30.2" y="21.8"/>
- <close/>
- <move x="28.5" y="35"/>
- <line x="28.5" y="23.5"/>
- <line x="17" y="23.5"/>
- <line x="17" y="35"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="78.82" name="Monitor Running Apps" strokewidth="inherit" w="99.68">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.8"/>
- <constraint name="W" perimeter="0" x="0.13" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="13.52" y="59.66"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="16.42" x-axis-rotation="0" y="58.96"/>
- <line x="19.22" y="56.56"/>
- <arc large-arc-flag="1" rx="25.5" ry="25.5" sweep-flag="1" x="22.32" x-axis-rotation="0" y="59.66"/>
- <line x="19.92" y="62.16"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="19.42" x-axis-rotation="0" y="64.86"/>
- <line x="6.22" y="78.16"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="1.52" x-axis-rotation="0" y="77.76"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0.92" x-axis-rotation="0" y="72.26"/>
- <close/>
- <move x="21.42" y="45.76"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="20.22" x-axis-rotation="0" y="41.36"/>
- <line x="25.82" y="41.36"/>
- <line x="33.52" y="29.66"/>
- <line x="43.72" y="43.76"/>
- <line x="53.22" y="28.66"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="55.92" x-axis-rotation="0" y="33.06"/>
- <line x="44.02" y="51.96"/>
- <line x="33.72" y="37.26"/>
- <line x="28.12" y="45.76"/>
- <close/>
- <move x="32.12" y="11.86"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="25.72" x-axis-rotation="0" y="14.36"/>
- <line x="25.72" y="2.86"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="28.82" x-axis-rotation="0" y="0.06"/>
- <line x="96.82" y="0.06"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.62" x-axis-rotation="0" y="3.06"/>
- <line x="99.62" y="49.86"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.82" x-axis-rotation="0" y="53.06"/>
- <line x="64.42" y="53.06"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="66.72" x-axis-rotation="0" y="46.66"/>
- <line x="93.22" y="46.66"/>
- <line x="93.22" y="6.36"/>
- <line x="32.12" y="6.36"/>
- <close/>
- <move x="66.02" y="12.76"/>
- <line x="73.72" y="28.26"/>
- <line x="81.22" y="20.76"/>
- <line x="85.62" y="29.16"/>
- <line x="88.52" y="29.16"/>
- <line x="88.52" y="31.76"/>
- <line x="84.02" y="31.76"/>
- <line x="80.62" y="24.86"/>
- <line x="73.12" y="32.56"/>
- <line x="65.72" y="17.76"/>
- <line x="61.52" y="24.26"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="59.92" x-axis-rotation="0" y="22.06"/>
- <close/>
- <move x="39.82" y="60.76"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="59.52" x-axis-rotation="0" y="39.36"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="39.82" x-axis-rotation="0" y="19.26"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="18.02" x-axis-rotation="0" y="39.36"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="39.82" x-axis-rotation="0" y="60.76"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.53" name="Mouse" strokewidth="inherit" w="59.4">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.85" y="0.07"/>
- <constraint name="NW" perimeter="0" x="0.15" y="0.07"/>
- <constraint name="SE" perimeter="0" x="0.85" y="0.93"/>
- <constraint name="SW" perimeter="0" x="0.15" y="0.93"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="52.43"/>
- <line x="59.4" y="52.43"/>
- <line x="59.4" y="74.03"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="29.7" x-axis-rotation="0" y="99.63"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="0" x-axis-rotation="0" y="74.03"/>
- <close/>
- <move x="0" y="47.73"/>
- <line x="0" y="27.03"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="27.9" x-axis-rotation="0" y="0.33"/>
- <line x="27.9" y="10.43"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="21" x-axis-rotation="0" y="17.23"/>
- <line x="21" y="32.53"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="28" x-axis-rotation="0" y="38.13"/>
- <line x="28" y="47.73"/>
- <close/>
- <move x="31.5" y="38.13"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="38.4" x-axis-rotation="0" y="32.03"/>
- <line x="38.4" y="16.53"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="31.5" x-axis-rotation="0" y="10.43"/>
- <line x="31.5" y="0.33"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="59.2" x-axis-rotation="0" y="27.03"/>
- <line x="59.2" y="47.73"/>
- <line x="31.5" y="47.73"/>
- <close/>
- <move x="26.7" y="34.43"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="24.5" x-axis-rotation="0" y="31.03"/>
- <line x="24.5" y="17.33"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="27.2" x-axis-rotation="0" y="14.03"/>
- <line x="32.2" y="14.03"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="34.9" x-axis-rotation="0" y="17.03"/>
- <line x="34.9" y="31.03"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="32.2" x-axis-rotation="0" y="34.43"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70.8" name="Network Card" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.08"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.975"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0.08"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="0.89"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="70.8"/>
- <line x="0" y="0"/>
- <line x="5.7" y="0"/>
- <line x="5.7" y="5.7"/>
- <line x="99.6" y="5.7"/>
- <line x="99.6" y="63"/>
- <line x="92" y="63"/>
- <line x="92" y="68.9"/>
- <line x="72.8" y="68.9"/>
- <line x="72.8" y="62.9"/>
- <line x="63.3" y="62.9"/>
- <line x="63.3" y="68.9"/>
- <line x="30.6" y="68.9"/>
- <line x="30.6" y="63"/>
- <line x="9.6" y="63"/>
- <line x="9.6" y="55.3"/>
- <line x="5.7" y="55.3"/>
- <line x="5.7" y="70.8"/>
- <close/>
- <move x="5.7" y="49.8"/>
- <line x="9.7" y="49.8"/>
- <line x="9.7" y="34.3"/>
- <line x="25" y="34.3"/>
- <line x="24.9" y="49.8"/>
- <line x="59.4" y="49.8"/>
- <line x="59.4" y="55.5"/>
- <line x="92" y="55.5"/>
- <line x="92.1" y="42"/>
- <line x="59.4" y="42"/>
- <line x="59.4" y="47.8"/>
- <line x="26.8" y="47.8"/>
- <line x="26.8" y="32.4"/>
- <line x="9.7" y="32.4"/>
- <line x="9.7" y="26.7"/>
- <line x="32.6" y="26.7"/>
- <line x="32.6" y="36.4"/>
- <line x="57.5" y="36.4"/>
- <line x="57.5" y="15.1"/>
- <line x="32.6" y="15.1"/>
- <line x="32.6" y="24.8"/>
- <line x="9.7" y="24.8"/>
- <line x="9.7" y="20.9"/>
- <line x="5.7" y="20.9"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="35" name="Not Allowed" strokewidth="inherit" w="35">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
- <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
- <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
- <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
- </connections>
- <foreground>
- <path>
- <move x="17.5" y="0"/>
- <curve x1="7.8" x2="0" x3="0" y1="0" y2="7.9" y3="17.5"/>
- <curve x1="0" x2="7.8" x3="17.5" y1="27.2" y2="35" y3="35"/>
- <curve x1="27.1" x2="35" x3="35" y1="35" y2="27.2" y3="17.5"/>
- <curve x1="35" x2="27.2" x3="17.5" y1="7.9" y2="0" y3="0"/>
- <close/>
- <move x="4.1" y="17.5"/>
- <curve x1="4.1" x2="5.1" x3="6.7" y1="14.6" y2="11.8" y3="9.6"/>
- <line x="25.4" y="28.3"/>
- <curve x1="23.2" x2="20.5" x3="17.5" y1="30" y2="30.9" y3="30.9"/>
- <curve x1="10.1" x2="4.1" x3="4.1" y1="30.9" y2="24.9" y3="17.5"/>
- <close/>
- <move x="28.3" y="25.4"/>
- <line x="9.6" y="6.7"/>
- <curve x1="11.8" x2="14.5" x3="17.5" y1="5.1" y2="4.1" y3="4.1"/>
- <curve x1="24.9" x2="30.9" x3="30.9" y1="4.1" y2="10.1" y3="17.5"/>
- <curve x1="30.9" x2="29.9" x3="28.3" y1="20.5" y2="23.2" y3="25.4"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="57.4" name="Pack" strokewidth="inherit" w="64.1">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.005" y="0.55"/>
- <constraint name="E" perimeter="0" x="0.995" y="0.55"/>
- <constraint name="NE" perimeter="0" x="0.715" y="0.005"/>
- <constraint name="NW" perimeter="0" x="0.285" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.92" y="1"/>
- <constraint name="SW" perimeter="0" x="0.07" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="39.9" y="40.7"/>
- <curve x1="37.7" x2="35.1" x3="32.5" y1="42.4" y2="43.2" y3="43.2"/>
- <curve x1="29.7" x2="27" x3="24.7" y1="43.2" y2="42.2" y3="40.4"/>
- <curve x1="24.6" x2="24.7" x3="25.5" y1="39.1" y2="37" y3="34.9"/>
- <curve x1="26.1" x2="26.6" x3="27.3" y1="34.9" y2="34.9" y3="34.6"/>
- <curve x1="27.6" x2="27.9" x3="28.4" y1="34.9" y2="35.2" y3="35.4"/>
- <curve x1="29.6" x2="30.9" x3="31.9" y1="36.3" y2="37.1" y3="37.7"/>
- <curve x1="31.8" x2="32" x3="32.4" y1="38.3" y2="38.9" y3="39.4"/>
- <curve x1="33.2" x2="34.8" x3="35.8" y1="40.5" y2="40.7" y3="39.8"/>
- <curve x1="36" x2="36.2" x3="36.3" y1="39.6" y2="39.4" y3="39.2"/>
- <curve x1="38.2" x2="39.8" x3="41" y1="39.6" y2="39.7" y3="39.7"/>
- <curve x1="40.6" x2="40.4" x3="39.9" y1="40.1" y2="40.4" y3="40.7"/>
- <close/>
- <move x="22.5" y="24.1"/>
- <curve x1="22.2" x2="22.1" x3="23" y1="25.3" y2="27" y3="29"/>
- <curve x1="21.9" x2="21.9" x3="23" y1="30.3" y2="32.1" y3="33.4"/>
- <line x="23.3" y="33.7"/>
- <curve x1="22.9" x2="22.7" x3="22.6" y1="35.2" y2="36.7" y3="37.9"/>
- <curve x1="19.5" x2="19.7" x3="22.5" y1="33.7" y2="28.2" y3="24.1"/>
- <close/>
- <move x="25.1" y="21.4"/>
- <curve x1="25.7" x2="26.4" x3="27.1" y1="20.9" y2="20.5" y3="20.1"/>
- <curve x1="28" x2="29.1" x3="30.4" y1="21.5" y2="22.9" y3="24.2"/>
- <curve x1="29.3" x2="28.2" x3="27" y1="25" y2="25.9" y3="27.1"/>
- <curve x1="26.9" x2="26.7" x3="26.6" y1="27.3" y2="27.4" y3="27.6"/>
- <curve x1="25.9" x2="25.3" x3="24.6" y1="27.5" y2="27.5" y3="27.7"/>
- <curve x1="23.5" x2="23.5" x3="23.7" y1="25.4" y2="23.5" y3="22.4"/>
- <curve x1="24.2" x2="24.5" x3="25.1" y1="22.1" y2="21.8" y3="21.4"/>
- <close/>
- <move x="40.4" y="21.7"/>
- <curve x1="38.5" x2="35.6" x3="32.3" y1="21.3" y2="21.4" y3="23.2"/>
- <curve x1="31.2" x2="30.1" x3="28.9" y1="22" y2="20.7" y3="19.5"/>
- <curve x1="30.1" x2="31.4" x3="32.7" y1="19.1" y2="18.9" y3="18.9"/>
- <curve x1="35.3" x2="38" x3="40.4" y1="18.9" y2="19.9" y3="21.7"/>
- <close/>
- <move x="36.6" y="37.5"/>
- <curve x1="36.5" x2="36.4" x3="36.2" y1="37.2" y2="36.8" y3="36.5"/>
- <curve x1="35.4" x2="34" x3="33" y1="35.5" y2="35.3" y3="35.9"/>
- <curve x1="31.9" x2="30.8" x3="29.7" y1="35.3" y2="34.6" y3="33.7"/>
- <curve x1="29.5" x2="29.3" x3="29" y1="33.5" y2="33.3" y3="33.1"/>
- <curve x1="29.7" x2="29.8" x3="29.1" y1="32" y2="30.6" y3="29.4"/>
- <line x="29.5" y="29"/>
- <curve x1="30.6" x2="31.7" x3="32.7" y1="27.9" y2="27.1" y3="26.4"/>
- <curve x1="34.2" x2="35.9" x3="37.4" y1="27.8" y2="29.1" y3="30.3"/>
- <curve x1="37" x2="37.1" x3="37.7" y1="31.2" y2="32.2" y3="33"/>
- <curve x1="38.6" x2="40.2" x3="41.5" y1="34.2" y2="34.4" y3="33.5"/>
- <curve x1="41.6" x2="41.6" x3="41.7" y1="33.5" y2="33.4" y3="33.4"/>
- <curve x1="42.8" x2="43.7" x3="44.2" y1="34.2" y2="34.8" y3="35.1"/>
- <curve x1="43.9" x2="43.4" x3="42.8" y1="36" y2="36.9" y3="37.8"/>
- <curve x1="41.8" x2="39.7" x3="36.6" y1="38.1" y2="38.4" y3="37.5"/>
- <close/>
- <move x="44.3" y="34.2"/>
- <curve x1="43.8" x2="43.1" x3="42.2" y1="33.8" y2="33.3" y3="32.6"/>
- <curve x1="42.5" x2="42.4" x3="41.8" y1="31.8" y2="30.8" y3="30.1"/>
- <curve x1="41" x2="39.4" x3="38.4" y1="29" y2="28.8" y3="29.4"/>
- <curve x1="37.2" x2="35.8" x3="34.4" y1="28.3" y2="26.9" y3="25.5"/>
- <curve x1="38.6" x2="41.8" x3="42.1" y1="23.2" y2="23.4" y3="23.4"/>
- <curve x1="42.1" x2="42.2" x3="42.3" y1="23.5" y2="23.5" y3="23.6"/>
- <curve x1="44.6" x2="45.2" x3="44.3" y1="26.7" y2="30.7" y3="34.2"/>
- <close/>
- <move x="43.6" y="22.6"/>
- <curve x1="40.9" x2="36.6" x3="32.5" y1="19" y2="17.1" y3="17.1"/>
- <curve x1="29.4" x2="26.5" x3="24" y1="17.1" y2="18" y3="20"/>
- <curve x1="17.9" x2="16.6" x3="21.4" y1="24.7" y2="33.5" y3="39.6"/>
- <curve x1="24.2" x2="28.4" x3="32.5" y1="43.2" y2="45.1" y3="45.1"/>
- <curve x1="35.6" x2="38.5" x3="41" y1="45.1" y2="44.2" y3="42.2"/>
- <curve x1="47.1" x2="48.3" x3="43.6" y1="37.5" y2="28.6" y3="22.6"/>
- <close/>
- <move x="8.6" y="44.7"/>
- <line x="12.9" y="47.3"/>
- <line x="12.9" y="42"/>
- <line x="8.6" y="39.5"/>
- <line x="8.6" y="44.7"/>
- <close/>
- <move x="50.1" y="42"/>
- <line x="50.1" y="47.3"/>
- <line x="54.4" y="44.7"/>
- <line x="54.4" y="39.5"/>
- <line x="50.1" y="42"/>
- <close/>
- <move x="31.5" y="4.5"/>
- <line x="27" y="6.8"/>
- <line x="31.5" y="9.6"/>
- <line x="36" y="6.8"/>
- <line x="31.5" y="4.5"/>
- <close/>
- <move x="47.27" y="39.51"/>
- <line x="49.5" y="40.9"/>
- <line x="54" y="38.1"/>
- <line x="49.5" y="35.9"/>
- <line x="48.69" y="36.3"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="47.27" x-axis-rotation="0" y="39.51"/>
- <close/>
- <move x="44.6" y="43.04"/>
- <line x="44.6" y="44.7"/>
- <line x="48.9" y="47.3"/>
- <line x="48.9" y="42"/>
- <line x="46.57" y="40.64"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="44.6" x-axis-rotation="0" y="43.04"/>
- <close/>
- <move x="36" y="47.74"/>
- <line x="36" y="50.3"/>
- <curve x1="36" x2="36.7" x3="37.5" y1="51.2" y2="51.9" y3="51.9"/>
- <line x="46" y="51.9"/>
- <curve x1="47" x2="45.7" x3="40.2" y1="55.2" y2="55.7" y3="55.7"/>
- <line x="40.2" y="57.4"/>
- <line x="58.8" y="57.4"/>
- <line x="58.8" y="55.6"/>
- <curve x1="53.4" x2="52.8" x3="53.7" y1="55.6" y2="55.1" y3="51.9"/>
- <line x="62.3" y="51.9"/>
- <curve x1="63.2" x2="64" x3="64" y1="51.9" y2="51.1" y3="50.3"/>
- <line x="64" y="32.9"/>
- <curve x1="64.1" x2="63.2" x3="62.4" y1="32.1" y2="31.3" y3="31.3"/>
- <line x="49.5" y="31.3"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="49.32" x-axis-rotation="0" y="33.6"/>
- <line x="61.9" y="33.6"/>
- <line x="61.9" y="49.8"/>
- <line x="38.2" y="49.8"/>
- <line x="38.2" y="47.12"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="36" x-axis-rotation="0" y="47.74"/>
- <close/>
- <move x="17.87" y="39.75"/>
- <line x="14" y="42"/>
- <line x="14" y="47.3"/>
- <line x="18.3" y="44.7"/>
- <line x="18.3" y="40.45"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="17.87" x-axis-rotation="0" y="39.75"/>
- <close/>
- <move x="16.75" y="37.49"/>
- <line x="13.5" y="35.9"/>
- <line x="8.9" y="38.1"/>
- <line x="13.5" y="40.9"/>
- <line x="17.23" y="38.58"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="16.75" x-axis-rotation="0" y="37.49"/>
- <close/>
- <move x="15.5" y="31.3"/>
- <line x="1.5" y="31.3"/>
- <curve x1="0.7" x2="0" x3="0" y1="31.3" y2="32" y3="32.9"/>
- <line x="0" y="50.3"/>
- <curve x1="0" x2="0.7" x3="1.5" y1="51.2" y2="51.9" y3="51.9"/>
- <line x="10" y="51.9"/>
- <curve x1="11" x2="9.7" x3="4.2" y1="55.2" y2="55.7" y3="55.7"/>
- <line x="4.2" y="57.4"/>
- <line x="22.8" y="57.4"/>
- <line x="22.8" y="55.6"/>
- <curve x1="17.4" x2="16.8" x3="17.7" y1="55.6" y2="55.1" y3="51.9"/>
- <line x="26.3" y="51.9"/>
- <curve x1="27.2" x2="28" x3="28" y1="51.9" y2="51.1" y3="50.3"/>
- <line x="28" y="47.49"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="25.9" x-axis-rotation="0" y="46.77"/>
- <line x="25.9" y="49.8"/>
- <line x="2.2" y="49.8"/>
- <line x="2.2" y="33.6"/>
- <line x="15.68" y="33.6"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="15.5" x-axis-rotation="0" y="31.3"/>
- <close/>
- <move x="30.9" y="14.18"/>
- <line x="30.9" y="10.6"/>
- <line x="26.6" y="8.1"/>
- <line x="26.6" y="13.4"/>
- <line x="28.59" y="14.56"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="30.9" x-axis-rotation="0" y="14.18"/>
- <close/>
- <move x="34.82" y="14.26"/>
- <line x="36.3" y="13.4"/>
- <line x="36.3" y="8.2"/>
- <line x="32" y="10.6"/>
- <line x="32" y="14.11"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="34.82" x-axis-rotation="0" y="14.26"/>
- <close/>
- <move x="45.38" y="20"/>
- <curve x1="45.75" x2="46" x3="46" y1="19.69" y2="19.25" y3="18.8"/>
- <line x="46" y="1.4"/>
- <curve x1="46.1" x2="45.2" x3="44.4" y1="0.7" y2="0" y3="0"/>
- <line x="19.5" y="0"/>
- <curve x1="18.7" x2="18" x3="18" y1="0" y2="0.7" y3="1.6"/>
- <line x="18" y="19"/>
- <curve x1="18" x2="18.51" x3="19.16" y1="19.77" y2="20.39" y3="20.56"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="21.2" x-axis-rotation="0" y="18.4"/>
- <line x="20.2" y="18.4"/>
- <line x="20.2" y="2.2"/>
- <line x="43.9" y="2.2"/>
- <line x="43.9" y="18.4"/>
- <line x="43.8" y="18.4"/>
- <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="45.38" x-axis-rotation="0" y="20"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Performance" strokewidth="inherit" w="100">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
- <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
- <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
- <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
- </connections>
- <foreground>
- <path>
- <move x="50" y="100"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
- <close/>
- <move x="50" y="91.2"/>
- <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="91.2" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="50" x-axis-rotation="0" y="8.8"/>
- <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="8.8" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="50" x-axis-rotation="0" y="91.2"/>
- <close/>
- <move x="50" y="83.7"/>
- <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="16.3" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="50" x-axis-rotation="0" y="16.3"/>
- <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="83.7" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="50" x-axis-rotation="0" y="83.7"/>
- <close/>
- <move x="80.5" y="37.3"/>
- <line x="79" y="33.9"/>
- <line x="58" y="41.9"/>
- <arc large-arc-flag="1" rx="10.8" ry="10.8" sweep-flag="0" x="60.8" x-axis-rotation="0" y="48.2"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="71.6" name="Performance monitor" strokewidth="inherit" w="99.98">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="2.99" y="71.6"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="0.19" x-axis-rotation="0" y="67.8"/>
- <line x="0.19" y="3.3"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="2.99" x-axis-rotation="0" y="0"/>
- <line x="96.99" y="0"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="99.79" x-axis-rotation="0" y="3.3"/>
- <line x="99.79" y="67.8"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="96.99" x-axis-rotation="0" y="71.6"/>
- <close/>
- <move x="8.79" y="63"/>
- <line x="91.29" y="63"/>
- <line x="91.29" y="8.7"/>
- <line x="8.79" y="8.7"/>
- <close/>
- <move x="12.19" y="39.9"/>
- <line x="12.19" y="35.6"/>
- <line x="15.29" y="35.6"/>
- <line x="20.79" y="24.3"/>
- <line x="30.19" y="34.5"/>
- <line x="40.79" y="13.4"/>
- <line x="57.89" y="49.9"/>
- <line x="77.79" y="21.1"/>
- <line x="85.19" y="44.3"/>
- <line x="87.89" y="44.3"/>
- <line x="87.89" y="48.6"/>
- <line x="81.99" y="48.6"/>
- <line x="76.39" y="30.5"/>
- <line x="57.29" y="58.3"/>
- <line x="40.69" y="23.1"/>
- <line x="31.39" y="42"/>
- <line x="21.79" y="31.6"/>
- <line x="17.79" y="39.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Plug and Play" strokewidth="inherit" w="79.5">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.25"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.75"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="53"/>
- <line x="7.8" y="53"/>
- <line x="7.8" y="56.6"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="12.2" x-axis-rotation="0" y="60.7"/>
- <line x="28" y="60.7"/>
- <line x="28" y="64"/>
- <line x="31.1" y="64"/>
- <line x="31.1" y="57.6"/>
- <line x="45.2" y="57.6"/>
- <line x="45.2" y="53.6"/>
- <line x="31.1" y="53.6"/>
- <line x="31.1" y="46"/>
- <line x="45.2" y="45.8"/>
- <line x="45.2" y="42"/>
- <line x="31.1" y="42"/>
- <line x="31.1" y="35.7"/>
- <line x="28" y="35.7"/>
- <line x="28" y="38.8"/>
- <line x="12.2" y="38.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="7.7" x-axis-rotation="0" y="43.3"/>
- <line x="7.7" y="46.6"/>
- <line x="0" y="46.6"/>
- <line x="0" y="0"/>
- <line x="79.5" y="49.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="68.2" name="Protocol Stack" strokewidth="inherit" w="99.61">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="2.8" y="68.2"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="65.2"/>
- <line x="0" y="53.7"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="50.8"/>
- <line x="46.9" y="50.8"/>
- <line x="46.9" y="46.9"/>
- <line x="41" y="46.9"/>
- <line x="49.8" y="37.1"/>
- <line x="58.6" y="46.9"/>
- <line x="52.6" y="46.9"/>
- <line x="52.6" y="50.9"/>
- <line x="96.8" y="50.8"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="53.7"/>
- <line x="99.6" y="65.2"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="68.2"/>
- <close/>
- <move x="39.4" y="42.9"/>
- <line x="2.8" y="42.9"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="40.2"/>
- <line x="0" y="28.2"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="25.5"/>
- <line x="46.9" y="25.5"/>
- <line x="46.9" y="21.5"/>
- <line x="41.1" y="21.5"/>
- <line x="49.8" y="11.8"/>
- <line x="58.5" y="21.5"/>
- <line x="52.6" y="21.5"/>
- <line x="52.6" y="25.5"/>
- <line x="96.8" y="25.5"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="28.2"/>
- <line x="99.6" y="40.2"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="42.9"/>
- <line x="60.3" y="42.9"/>
- <line x="49.8" y="31.2"/>
- <close/>
- <move x="2.8" y="17.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="14.6"/>
- <line x="0" y="3"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="0"/>
- <line x="96.8" y="0"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="3"/>
- <line x="99.6" y="14.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="17.6"/>
- <line x="60.4" y="17.6"/>
- <line x="49.8" y="5.8"/>
- <line x="39.3" y="17.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="79.2" name="RMS Connector" strokewidth="inherit" w="60.4">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.98"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.825" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="0.975"/>
- <constraint name="SW" perimeter="0" x="0" y="0.975"/>
- </connections>
- <foreground>
- <path>
- <move x="17.1" y="77.3"/>
- <line x="0" y="77.3"/>
- <line x="0" y="2.8"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="3.1" x-axis-rotation="0" y="0"/>
- <line x="34.7" y="0"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="37.7" x-axis-rotation="0" y="2.8"/>
- <line x="37.7" y="26.5"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="30" x-axis-rotation="0" y="31.3"/>
- <arc large-arc-flag="0" rx="12" ry="16" sweep-flag="0" x="28.1" x-axis-rotation="0" y="41.7"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="24.5" x-axis-rotation="0" y="45.3"/>
- <line x="24.5" y="58.5"/>
- <line x="5.7" y="58.5"/>
- <line x="5.7" y="62.2"/>
- <line x="24.5" y="62.2"/>
- <line x="24.5" y="66"/>
- <line x="5.7" y="66"/>
- <line x="5.7" y="69.9"/>
- <line x="17" y="69.9"/>
- <close/>
- <move x="5.7" y="15.1"/>
- <line x="32" y="15.1"/>
- <line x="32" y="11.2"/>
- <line x="5.7" y="11.2"/>
- <close/>
- <move x="28.4" y="45.8"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="30.1" x-axis-rotation="0" y="43.6"/>
- <line x="31.5" y="43.6"/>
- <line x="31.5" y="38.3"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="40.6" x-axis-rotation="0" y="30.2"/>
- <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="49.6" x-axis-rotation="0" y="38.3"/>
- <line x="49.6" y="43.6"/>
- <line x="51.1" y="43.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="52.8" x-axis-rotation="0" y="45.8"/>
- <line x="52.8" y="62.1"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="51.1" x-axis-rotation="0" y="64.1"/>
- <line x="43.4" y="64.1"/>
- <line x="43.4" y="69.8"/>
- <line x="45.4" y="69.8"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="46.9" x-axis-rotation="0" y="71.7"/>
- <line x="60.4" y="71.7"/>
- <line x="60.4" y="77.3"/>
- <line x="46.9" y="77.3"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="45.1" x-axis-rotation="0" y="79.2"/>
- <line x="35.6" y="79.2"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="34" x-axis-rotation="0" y="77.3"/>
- <line x="20.8" y="77.3"/>
- <line x="20.8" y="71.7"/>
- <line x="34" y="71.7"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="35.6" x-axis-rotation="0" y="69.8"/>
- <line x="37.8" y="69.8"/>
- <line x="37.8" y="64.1"/>
- <line x="30.4" y="64.1"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="28.4" x-axis-rotation="0" y="62.1"/>
- <close/>
- <move x="39.4" y="60.8"/>
- <line x="41.8" y="60.8"/>
- <line x="41.8" y="53.5"/>
- <arc large-arc-flag="1" rx="2.8" ry="2.8" sweep-flag="0" x="39.4" x-axis-rotation="0" y="53.5"/>
- <close/>
- <move x="46.8" y="43.6"/>
- <line x="46.8" y="38.8"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="40.8" x-axis-rotation="0" y="33.1"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="34.5" x-axis-rotation="0" y="38.8"/>
- <line x="34.5" y="43.6"/>
- <close/>
- <move x="41.5" y="64.1"/>
- <line x="39.5" y="64.1"/>
- <line x="39.5" y="69.8"/>
- <line x="41.5" y="69.8"/>
- <close/>
- <move x="45.3" y="71.6"/>
- <line x="35.9" y="71.6"/>
- <line x="35.9" y="77.3"/>
- <line x="45.3" y="77.3"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="76.4" name="Router" strokewidth="inherit" w="98.8">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.22"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.71"/>
- <constraint name="W" perimeter="0" x="0.13" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.87" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="16" y="54.1"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="13.1" x-axis-rotation="0" y="51.9"/>
- <line x="13.1" y="38"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="16" x-axis-rotation="0" y="35.5"/>
- <line x="82.7" y="35.5"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="85.7" x-axis-rotation="0" y="38"/>
- <line x="85.7" y="51.9"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="82.7" x-axis-rotation="0" y="53.9"/>
- <close/>
- <move x="24.2" y="48.5"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="27.9" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="41"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="20.4" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="48.5"/>
- <close/>
- <move x="41" y="48.5"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="44.8" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="41" x-axis-rotation="0" y="41"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="37.2" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="41" x-axis-rotation="0" y="48.5"/>
- <close/>
- <move x="57.8" y="48.5"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="61.5" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="57.8" x-axis-rotation="0" y="41"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="54.1" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="57.8" x-axis-rotation="0" y="48.5"/>
- <close/>
- <move x="74.6" y="48.5"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="78.3" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="74.6" x-axis-rotation="0" y="41"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="70.8" x-axis-rotation="0" y="44.9"/>
- <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="74.6" x-axis-rotation="0" y="48.5"/>
- <close/>
- <move x="85.7" y="29.8"/>
- <line x="13" y="29.8"/>
- <line x="26.4" y="16.8"/>
- <line x="72.3" y="16.8"/>
- <close/>
- <move x="84.3" y="17"/>
- <line x="81.7" y="14.4"/>
- <line x="93" y="3.2"/>
- <line x="82.5" y="3.2"/>
- <line x="85.8" y="0"/>
- <line x="98.8" y="0"/>
- <line x="98.8" y="13.2"/>
- <line x="95.6" y="16.4"/>
- <line x="95.6" y="5.8"/>
- <close/>
- <move x="16.4" y="3.2"/>
- <line x="5.8" y="3.2"/>
- <line x="17" y="14.4"/>
- <line x="14.5" y="17"/>
- <line x="3.2" y="5.8"/>
- <line x="3.2" y="16.4"/>
- <line x="0" y="13.2"/>
- <line x="0" y="0"/>
- <line x="13.1" y="0"/>
- <close/>
- <move x="3.2" y="60.2"/>
- <line x="3.2" y="70.7"/>
- <line x="14.5" y="59.3"/>
- <line x="17" y="62"/>
- <line x="5.8" y="73.2"/>
- <line x="16.4" y="73.2"/>
- <line x="13.1" y="76.4"/>
- <line x="0" y="76.4"/>
- <line x="0" y="63.2"/>
- <close/>
- <move x="82.5" y="73.2"/>
- <line x="92.9" y="73.2"/>
- <line x="81.7" y="61.9"/>
- <line x="84.4" y="59.3"/>
- <line x="95.5" y="70.7"/>
- <line x="95.5" y="60.1"/>
- <line x="98.8" y="63.3"/>
- <line x="98.8" y="76.4"/>
- <line x="85.8" y="76.4"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Secondary Site" strokewidth="inherit" w="82.9">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.99" y="0.56"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.2"/>
- <line x="0" y="6"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
- <line x="45" y="0"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="51" x-axis-rotation="0" y="6"/>
- <line x="51" y="51.1"/>
- <line x="30.5" y="51.1"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="23.5" x-axis-rotation="0" y="58.1"/>
- <line x="23.5" y="70.7"/>
- <line x="9.9" y="70.7"/>
- <line x="9.9" y="75.1"/>
- <line x="23.5" y="75.1"/>
- <line x="23.5" y="83.5"/>
- <line x="9.9" y="83.5"/>
- <line x="9.9" y="87.8"/>
- <line x="23.5" y="87.8"/>
- <line x="23.5" y="97.3"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="99.2"/>
- <close/>
- <move x="9.9" y="17.2"/>
- <line x="41" y="17.2"/>
- <line x="41" y="12.8"/>
- <line x="9.9" y="12.8"/>
- <close/>
- <move x="30.5" y="99.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="27.5" x-axis-rotation="0" y="96.6"/>
- <line x="27.5" y="58.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30.5" x-axis-rotation="0" y="55.6"/>
- <line x="79.9" y="55.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="82.9" x-axis-rotation="0" y="58.6"/>
- <line x="82.9" y="96.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="79.9" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="30.4" y="96.7"/>
- <line x="80.2" y="96.7"/>
- <line x="80.2" y="63.8"/>
- <line x="30.4" y="63.8"/>
- <close/>
- <move x="65.9" y="61.3"/>
- <line x="68.8" y="61.3"/>
- <line x="68.8" y="58.3"/>
- <line x="65.9" y="58.3"/>
- <close/>
- <move x="71.6" y="61.3"/>
- <line x="74.5" y="61.3"/>
- <line x="74.5" y="58.5"/>
- <line x="71.6" y="58.5"/>
- <close/>
- <move x="77.4" y="61.3"/>
- <line x="80.2" y="61.3"/>
- <line x="80.2" y="58.5"/>
- <line x="77.4" y="58.5"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="76.8" name="Secure Virtual Machine" strokewidth="inherit" w="99.85">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.84" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.9" y="0.915"/>
- <constraint name="SW" perimeter="0" x="0.155" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="3.8" y="61.3"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="57.3"/>
- <line x="0" y="3.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="3.8" x-axis-rotation="0" y="0"/>
- <line x="79.3" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="83.4" x-axis-rotation="0" y="3.8"/>
- <line x="83.4" y="33.1"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="77" x-axis-rotation="0" y="32.5"/>
- <line x="77" y="6.5"/>
- <line x="6.4" y="6.5"/>
- <line x="6.4" y="54.9"/>
- <line x="56.1" y="54.9"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="58" x-axis-rotation="0" y="61.3"/>
- <line x="52.4" y="61.3"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="51.5" x-axis-rotation="0" y="66.6"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="55" x-axis-rotation="0" y="71"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="64.5" x-axis-rotation="0" y="71.8"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="68.2" x-axis-rotation="0" y="75.5"/>
- <line x="68.2" y="76.7"/>
- <line x="15.4" y="76.7"/>
- <line x="15.4" y="71.9"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="26.4" x-axis-rotation="0" y="71.3"/>
- <arc large-arc-flag="0" rx="4.7" ry="4.2" sweep-flag="0" x="31.1" x-axis-rotation="0" y="66.5"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="29.8" x-axis-rotation="0" y="61.3"/>
- <close/>
- <move x="26.5" y="38.5"/>
- <line x="26.5" y="23.7"/>
- <line x="39.5" y="31.1"/>
- <line x="39.5" y="45.8"/>
- <close/>
- <move x="27.8" y="21"/>
- <line x="40.7" y="13.4"/>
- <line x="53.7" y="20.8"/>
- <line x="40.7" y="28.4"/>
- <close/>
- <move x="54.9" y="23.8"/>
- <line x="54.9" y="38.5"/>
- <line x="41.8" y="45.8"/>
- <line x="41.8" y="31.2"/>
- <close/>
- <move x="59.4" y="42.9"/>
- <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="62.3" x-axis-rotation="0" y="40.8"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="69.5" x-axis-rotation="0" y="42.2"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="76.1" x-axis-rotation="0" y="38.1"/>
- <arc large-arc-flag="0" rx="4.7" ry="4.5" sweep-flag="1" x="82.1" x-axis-rotation="0" y="37.6"/>
- <line x="85.9" y="40.9"/>
- <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="0" x="92.8" x-axis-rotation="0" y="42.1"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="96.4" x-axis-rotation="0" y="40.9"/>
- <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="99.4" x-axis-rotation="0" y="42.7"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="95.9" x-axis-rotation="0" y="62"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="79.4" x-axis-rotation="0" y="76.8"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="64.1" x-axis-rotation="0" y="63.8"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="59.4" x-axis-rotation="0" y="42.9"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Server Directory" strokewidth="inherit" w="77.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.625" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.98" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="43.5" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.5" x-axis-rotation="0" y="4.8"/>
- <line x="48.5" y="58.4"/>
- <line x="29.1" y="58.4"/>
- <line x="29.1" y="60.7"/>
- <line x="26.6" y="60.7"/>
- <line x="26.6" y="75.3"/>
- <line x="7.2" y="75.3"/>
- <line x="7.2" y="80.2"/>
- <line x="26.6" y="80.2"/>
- <line x="26.6" y="85"/>
- <line x="7.2" y="85"/>
- <line x="7.2" y="89.9"/>
- <line x="26.6" y="89.9"/>
- <line x="26.6" y="99.6"/>
- <close/>
- <move x="7.2" y="19.5"/>
- <line x="41.3" y="19.5"/>
- <line x="41.3" y="14.6"/>
- <line x="7.2" y="14.6"/>
- <close/>
- <move x="34" y="63.2"/>
- <line x="45.5" y="63.2"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="51.8" x-axis-rotation="0" y="64.5"/>
- <line x="54.5" y="65.6"/>
- <line x="58.8" y="64"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="64.4" x-axis-rotation="0" y="63.2"/>
- <line x="75.2" y="63.2"/>
- <line x="75.2" y="65.7"/>
- <line x="77.6" y="65.7"/>
- <line x="77.6" y="72.8"/>
- <line x="75.2" y="72.8"/>
- <line x="75.2" y="75.6"/>
- <line x="77.6" y="75.6"/>
- <line x="77.6" y="82.5"/>
- <line x="75.2" y="82.5"/>
- <line x="75.2" y="85.1"/>
- <line x="77.6" y="85.1"/>
- <line x="77.6" y="92.2"/>
- <line x="75.2" y="92.2"/>
- <line x="75.2" y="94.3"/>
- <line x="76.3" y="94.3"/>
- <line x="76.3" y="99.6"/>
- <line x="31.6" y="99.6"/>
- <line x="31.6" y="65.6"/>
- <line x="34" y="65.6"/>
- <close/>
- <move x="35.7" y="64.9"/>
- <line x="35.7" y="97"/>
- <line x="46.5" y="97"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="50.8" x-axis-rotation="0" y="97.6"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="54.1" x-axis-rotation="0" y="98.9"/>
- <line x="54.1" y="66.9"/>
- <line x="50.8" y="65.6"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="46.5" x-axis-rotation="0" y="64.7"/>
- <close/>
- <move x="42" y="72.8"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="44.8" x-axis-rotation="0" y="70.1"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="47.8" x-axis-rotation="0" y="72.8"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="44.8" x-axis-rotation="0" y="76.2"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="42" x-axis-rotation="0" y="72.8"/>
- <close/>
- <move x="43" y="77.2"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="44.9" x-axis-rotation="0" y="80.3"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="47" x-axis-rotation="0" y="77.2"/>
- <line x="48" y="77.5"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="50.1" x-axis-rotation="0" y="78.9"/>
- <line x="50.5" y="80.7"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="49.6" x-axis-rotation="0" y="82.2"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="40.1" x-axis-rotation="0" y="82.2"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="39.3" x-axis-rotation="0" y="80.93"/>
- <line x="39.9" y="79"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="41.3" x-axis-rotation="0" y="77.6"/>
- <close/>
- <move x="38.8" y="86.8"/>
- <line x="50.9" y="86.8"/>
- <line x="50.9" y="89.2"/>
- <line x="38.8" y="89.2"/>
- <close/>
- <move x="50.9" y="91.7"/>
- <line x="50.9" y="94.1"/>
- <line x="38.9" y="94.1"/>
- <line x="38.9" y="91.7"/>
- <close/>
- <move x="58.3" y="91.7"/>
- <line x="70.5" y="91.7"/>
- <line x="70.5" y="94.1"/>
- <line x="58.3" y="94.1"/>
- <close/>
- <move x="58.3" y="89.2"/>
- <line x="58.3" y="86.8"/>
- <line x="70.5" y="86.8"/>
- <line x="70.5" y="89.2"/>
- <close/>
- <move x="59.8" y="82.3"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="58.5" x-axis-rotation="0" y="80.5"/>
- <line x="58.8" y="78.8"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="60.3" x-axis-rotation="0" y="77.7"/>
- <line x="62.1" y="77.2"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="64.2" x-axis-rotation="0" y="80.3"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="66.3" x-axis-rotation="0" y="77.2"/>
- <line x="68.4" y="77.8"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="69.5" x-axis-rotation="0" y="79.1"/>
- <line x="69.8" y="80.8"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="69.3" x-axis-rotation="0" y="82"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="59.8" x-axis-rotation="0" y="82.3"/>
- <close/>
- <move x="64.1" y="75.9"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="61.1" x-axis-rotation="0" y="73"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.1" x-axis-rotation="0" y="70.1"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="67.4" x-axis-rotation="0" y="73"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.1" x-axis-rotation="0" y="75.9"/>
- <close/>
- <move x="55.2" y="98.9"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="58.3" x-axis-rotation="0" y="97.6"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="63.3" x-axis-rotation="0" y="97"/>
- <line x="73.5" y="97"/>
- <line x="73.5" y="64.7"/>
- <line x="63.8" y="64.7"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="59.8" x-axis-rotation="0" y="65.2"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="55.2" x-axis-rotation="0" y="67"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="63.41" name="Server Farm" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="63.41"/>
- <line x="0" y="2.61"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="0.01"/>
- <line x="27.8" y="0.01"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30.8" x-axis-rotation="0" y="3.11"/>
- <line x="30.8" y="63.41"/>
- <close/>
- <move x="5.4" y="58.01"/>
- <line x="25.4" y="58.01"/>
- <line x="25.4" y="54.21"/>
- <line x="5.4" y="54.21"/>
- <close/>
- <move x="25.4" y="50.61"/>
- <line x="25.4" y="47.01"/>
- <line x="5.4" y="47.01"/>
- <line x="5.4" y="50.81"/>
- <line x="25.4" y="50.81"/>
- <close/>
- <move x="25.4" y="12.71"/>
- <line x="25.4" y="9.01"/>
- <line x="5.4" y="9.01"/>
- <line x="5.4" y="12.71"/>
- <close/>
- <move x="34.4" y="63.41"/>
- <line x="34.4" y="2.61"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="37.4" x-axis-rotation="0" y="0.01"/>
- <line x="62.3" y="0.01"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="65.2" x-axis-rotation="0" y="2.61"/>
- <line x="65.2" y="63.41"/>
- <close/>
- <move x="39.8" y="58.01"/>
- <line x="59.8" y="58.01"/>
- <line x="59.8" y="54.21"/>
- <line x="39.8" y="54.21"/>
- <close/>
- <move x="59.8" y="50.81"/>
- <line x="59.8" y="47.01"/>
- <line x="39.8" y="47.01"/>
- <line x="39.8" y="50.81"/>
- <close/>
- <move x="39.8" y="12.71"/>
- <line x="59.8" y="12.71"/>
- <line x="59.8" y="9.01"/>
- <line x="39.8" y="9.01"/>
- <close/>
- <move x="68.9" y="63.41"/>
- <line x="68.9" y="2.61"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="71.3" x-axis-rotation="0" y="0.01"/>
- <line x="96.8" y="0.01"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="2.61"/>
- <line x="99.6" y="63.41"/>
- <close/>
- <move x="74.2" y="58.01"/>
- <line x="94.3" y="58.01"/>
- <line x="94.3" y="54.21"/>
- <line x="74.2" y="54.21"/>
- <close/>
- <move x="94.3" y="50.81"/>
- <line x="94.3" y="47.01"/>
- <line x="74.2" y="47.01"/>
- <line x="74.2" y="50.81"/>
- <close/>
- <move x="74.2" y="12.71"/>
- <line x="94.3" y="12.71"/>
- <line x="94.3" y="9.01"/>
- <line x="74.2" y="9.01"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Server generic" strokewidth="inherit" w="48.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.98" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="43.6" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="5"/>
- <line x="48.6" y="99.6"/>
- <close/>
- <move x="7.3" y="89.8"/>
- <line x="41.3" y="89.8"/>
- <line x="41.3" y="85"/>
- <line x="7.3" y="85"/>
- <close/>
- <move x="41.3" y="80.2"/>
- <line x="41.3" y="75.3"/>
- <line x="7.3" y="75.3"/>
- <line x="7.3" y="80.2"/>
- <close/>
- <move x="7.3" y="19.5"/>
- <line x="41.3" y="19.5"/>
- <line x="41.3" y="14.6"/>
- <line x="7.3" y="14.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.77" name="Settings" strokewidth="inherit" w="100.03">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.12"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.88"/>
- <constraint name="W" perimeter="0" x="0.12" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.88" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.75" y="0.05"/>
- <constraint name="NW" perimeter="0" x="0.25" y="0.05"/>
- <constraint name="SE" perimeter="0" x="0.75" y="0.95"/>
- <constraint name="SW" perimeter="0" x="0.25" y="0.95"/>
- </connections>
- <foreground>
- <path>
- <move x="12.62" y="56.77"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="12.62" x-axis-rotation="0" y="43.17"/>
- <line x="1.62" y="38.47"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0.12" x-axis-rotation="0" y="35.57"/>
- <line x="4.62" y="24.97"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="8.12" x-axis-rotation="0" y="24.17"/>
- <line x="18.72" y="28.37"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="28.32" x-axis-rotation="0" y="18.87"/>
- <line x="24.12" y="8.07"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="25.52" x-axis-rotation="0" y="4.27"/>
- <line x="35.32" y="0.27"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="38.52" x-axis-rotation="0" y="1.67"/>
- <line x="43.12" y="12.67"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="56.72" x-axis-rotation="0" y="12.67"/>
- <line x="61.32" y="1.97"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.52" x-axis-rotation="0" y="0.27"/>
- <line x="74.92" y="4.67"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="76.12" x-axis-rotation="0" y="7.37"/>
- <line x="71.52" y="18.67"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="81.12" x-axis-rotation="0" y="28.37"/>
- <line x="91.92" y="23.97"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="95.52" x-axis-rotation="0" y="25.57"/>
- <line x="99.32" y="34.57"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="98.32" x-axis-rotation="0" y="38.47"/>
- <line x="87.32" y="42.87"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="87.32" x-axis-rotation="0" y="56.87"/>
- <line x="98.12" y="61.37"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.72" x-axis-rotation="0" y="64.57"/>
- <line x="95.32" y="74.77"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="91.92" x-axis-rotation="0" y="75.87"/>
- <line x="81.22" y="71.57"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="71.52" x-axis-rotation="0" y="81.37"/>
- <line x="75.82" y="91.77"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="74.92" x-axis-rotation="0" y="95.27"/>
- <line x="63.92" y="99.77"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="61.32" x-axis-rotation="0" y="98.17"/>
- <line x="56.92" y="87.37"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="43.22" x-axis-rotation="0" y="87.37"/>
- <line x="38.52" y="97.97"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="35.22" x-axis-rotation="0" y="99.47"/>
- <line x="24.72" y="95.27"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="23.72" x-axis-rotation="0" y="92.57"/>
- <line x="28.32" y="81.37"/>
- <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="18.62" x-axis-rotation="0" y="71.57"/>
- <line x="8.32" y="75.77"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="4.42" x-axis-rotation="0" y="74.77"/>
- <line x="0.52" y="64.77"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="1.92" x-axis-rotation="0" y="61.27"/>
- <close/>
- <close/>
- <move x="23.42" y="49.97"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="49.92" x-axis-rotation="0" y="76.47"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="76.42" x-axis-rotation="0" y="49.97"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="49.92" x-axis-rotation="0" y="23.47"/>
- <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="23.42" x-axis-rotation="0" y="49.97"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.98" name="Shared Folder" strokewidth="inherit" w="85.56">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.07"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.94" y="0.06"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.15"/>
- <constraint name="SE" perimeter="0" x="1" y="0.93"/>
- <constraint name="SW" perimeter="0" x="0" y="0.93"/>
- </connections>
- <foreground>
- <path>
- <move x="6.7" y="73.88"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="67.48"/>
- <line x="0" y="18.48"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6.5" x-axis-rotation="0" y="12.68"/>
- <line x="36.5" y="12.68"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="39.9" x-axis-rotation="0" y="10.18"/>
- <line x="45.1" y="4.48"/>
- <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="54.4" x-axis-rotation="0" y="0.38"/>
- <line x="69.5" y="0.38"/>
- <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="76.7" x-axis-rotation="0" y="2.48"/>
- <line x="82.3" y="7.98"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="85.4" x-axis-rotation="0" y="15.28"/>
- <line x="85.4" y="66.68"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="79.7" x-axis-rotation="0" y="73.88"/>
- <line x="45" y="73.88"/>
- <line x="45" y="78.58"/>
- <line x="40.2" y="78.58"/>
- <line x="40.2" y="73.88"/>
- <close/>
- <move x="28.5" y="88.08"/>
- <line x="28.5" y="92.88"/>
- <line x="0" y="92.88"/>
- <line x="0" y="88.08"/>
- <close/>
- <move x="31" y="84.78"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="34.7" x-axis-rotation="0" y="81.08"/>
- <line x="50.3" y="81.08"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="54.5" x-axis-rotation="0" y="85.18"/>
- <line x="54.5" y="95.18"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50.3" x-axis-rotation="0" y="99.98"/>
- <line x="34.7" y="99.98"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="31" x-axis-rotation="0" y="95.18"/>
- <close/>
- <move x="35.5" y="85.78"/>
- <line x="35.5" y="95.18"/>
- <line x="49.7" y="95.18"/>
- <line x="49.7" y="85.78"/>
- <close/>
- <move x="57" y="92.88"/>
- <line x="57" y="88.08"/>
- <line x="85.5" y="88.08"/>
- <line x="85.5" y="92.88"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="63.5" name="Smartcard" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="63.5"/>
- <line x="0" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="63.5"/>
- <close/>
- <move x="52.8" y="50"/>
- <line x="88.7" y="50"/>
- <line x="88.7" y="13.1"/>
- <line x="52.8" y="13.1"/>
- <close/>
- <move x="55.1" y="48.1"/>
- <line x="55.1" y="39.6"/>
- <line x="63.1" y="39.6"/>
- <line x="63.1" y="48.1"/>
- <close/>
- <move x="66.8" y="39.6"/>
- <line x="74.7" y="39.6"/>
- <line x="74.7" y="48.1"/>
- <line x="66.8" y="48.1"/>
- <close/>
- <move x="78.3" y="48.1"/>
- <line x="78.3" y="39.6"/>
- <line x="86.2" y="39.6"/>
- <line x="86.2" y="48.1"/>
- <close/>
- <move x="86.3" y="36.5"/>
- <line x="55.1" y="36.5"/>
- <line x="55.1" y="26.7"/>
- <line x="86.3" y="26.7"/>
- <close/>
- <move x="78.2" y="23.5"/>
- <line x="78.2" y="15"/>
- <line x="86.2" y="15"/>
- <line x="86.2" y="23.5"/>
- <close/>
- <move x="74.7" y="15"/>
- <line x="74.7" y="23.5"/>
- <line x="66.8" y="23.5"/>
- <line x="66.8" y="15"/>
- <close/>
- <move x="63.1" y="23.5"/>
- <line x="55.1" y="23.5"/>
- <line x="55.1" y="15"/>
- <line x="63.1" y="15"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="82.6" name="Storage" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="82.6"/>
- <line x="0" y="0"/>
- <line x="8.5" y="0"/>
- <line x="8.5" y="74.2"/>
- <line x="91.2" y="74.2"/>
- <line x="91.2" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="82.6"/>
- <close/>
- <move x="14.8" y="67.8"/>
- <line x="14.8" y="50.8"/>
- <line x="84.7" y="50.8"/>
- <line x="84.7" y="67.8"/>
- <close/>
- <move x="84.7" y="42.3"/>
- <line x="14.8" y="42.3"/>
- <line x="14.8" y="25.5"/>
- <line x="84.7" y="25.5"/>
- <close/>
- <move x="14.8" y="16.9"/>
- <line x="14.8" y="0"/>
- <line x="84.7" y="0"/>
- <line x="84.7" y="16.9"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="14.8" name="Stored Procedures" strokewidth="inherit" w="13.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0"/>
- <constraint name="NW" perimeter="0" x="0.03" y="0"/>
- <constraint name="SE" perimeter="0" x="0.93" y="1"/>
- <constraint name="SW" perimeter="0" x="0.18" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="2.5" y="1.6"/>
- <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
- <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
- <line x="0.2" y="0.3"/>
- <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.6" y3="0.9"/>
- <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
- <line x="2.7" y="2"/>
- <curve x1="2.6" x2="2.5" x3="2.5" y1="1.9" y2="1.8" y3="1.6"/>
- <close/>
- <move x="2.9" y="14"/>
- <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
- <line x="3.2" y="12.6"/>
- <line x="3.7" y="12.6"/>
- <line x="11" y="12.6"/>
- <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
- <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
- <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
- <line x="2.8" y="0"/>
- <line x="1" y="0"/>
- <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
- <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
- <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
- <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
- <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
- <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
- <curve x1="2" x2="2.2" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
- <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
- <close/>
- <move x="2.4" y="14.8"/>
- <move x="3.7" y="13.2"/>
- <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
- <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
- <line x="12.2" y="14.8"/>
- <line x="12.5" y="14.8"/>
- <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
- <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
- <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
- <line x="11.1" y="13.1"/>
- <line x="3.7" y="13.2"/>
- <line x="3.7" y="13.2"/>
- <close/>
- <move x="6.5" y="8.1"/>
- <curve x1="6.2" x2="5.9" x3="5.8" y1="8.2" y2="8.1" y3="7.8"/>
- <curve x1="5.7" x2="5.8" x3="6.1" y1="7.5" y2="7.2" y3="7.1"/>
- <curve x1="6.4" x2="6.7" x3="6.8" y1="7" y2="7.1" y3="7.4"/>
- <curve x1="6.9" x2="6.8" x3="6.5" y1="7.7" y2="8" y3="8.1"/>
- <close/>
- <move x="8" y="6.6"/>
- <curve x1="8" x2="8.1" x3="8.2" y1="6.6" y2="6.7" y3="7"/>
- <curve x1="8.3" x2="8.3" x3="8.3" y1="7.1" y2="7.2" y3="7.2"/>
- <curve x1="8.3" x2="8.3" x3="8.2" y1="7.2" y2="7.3" y3="7.3"/>
- <line x="8" y="7.4"/>
- <curve x1="7.9" x2="7.9" x3="7.9" y1="7.5" y2="7.5" y3="7.6"/>
- <line x="7.9" y="7.8"/>
- <curve x1="7.9" x2="7.9" x3="8" y1="7.8" y2="7.9" y3="7.9"/>
- <line x="8.1" y="8"/>
- <curve x1="8.2" x2="8.2" x3="8.2" y1="8" y2="8" y3="8.1"/>
- <line x="8" y="8.6"/>
- <curve x1="8" x2="8" x3="7.9" y1="8.7" y2="8.7" y3="8.7"/>
- <line x="7.7" y="8.6"/>
- <curve x1="7.6" x2="7.5" x3="7.5" y1="8.5" y2="8.6" y3="8.6"/>
- <line x="7.3" y="8.8"/>
- <curve x1="7.3" x2="7.3" x3="7.3" y1="8.9" y2="8.9" y3="9"/>
- <line x="7.4" y="9.2"/>
- <curve x1="7.4" x2="7.3" x3="7.3" y1="9.3" y2="9.4" y3="9.4"/>
- <curve x1="7.3" x2="7.2" x3="7" y1="9.4" y2="9.5" y3="9.5"/>
- <curve x1="6.9" x2="6.8" x3="6.8" y1="9.6" y2="9.6" y3="9.6"/>
- <curve x1="6.8" x2="6.7" x3="6.7" y1="9.6" y2="9.6" y3="9.5"/>
- <line x="6.6" y="9.3"/>
- <curve x1="6.5" x2="6.5" x3="6.4" y1="9.2" y2="9.2" y3="9.2"/>
- <line x="6.2" y="9.2"/>
- <curve x1="6.2" x2="6.1" x3="6.1" y1="9.2" y2="9.2" y3="9.3"/>
- <line x="6" y="9.5"/>
- <curve x1="6" x2="6" x3="5.9" y1="9.6" y2="9.6" y3="9.6"/>
- <line x="5.4" y="9.4"/>
- <curve x1="5.3" x2="5.3" x3="5.3" y1="9.4" y2="9.4" y3="9.3"/>
- <line x="5.3" y="9"/>
- <curve x1="5.4" x2="5.3" x3="5.3" y1="8.9" y2="8.8" y3="8.8"/>
- <line x="5.1" y="8.6"/>
- <curve x1="5" x2="5" x3="4.9" y1="8.6" y2="8.6" y3="8.6"/>
- <line x="4.7" y="8.7"/>
- <curve x1="4.6" x2="4.5" x3="4.5" y1="8.7" y2="8.6" y3="8.6"/>
- <curve x1="4.5" x2="4.5" x3="4.4" y1="8.6" y2="8.5" y3="8.4"/>
- <curve x1="4.3" x2="4.3" x3="4.3" y1="8.3" y2="8.2" y3="8.2"/>
- <curve x1="4.3" x2="4.3" x3="4.4" y1="8.2" y2="8.1" y3="8.1"/>
- <line x="4.6" y="7.9"/>
- <curve x1="4.7" x2="4.7" x3="4.7" y1="7.8" y2="7.8" y3="7.7"/>
- <line x="4.7" y="7.5"/>
- <curve x1="4.7" x2="4.7" x3="4.6" y1="7.5" y2="7.4" y3="7.4"/>
- <line x="4.4" y="7.3"/>
- <curve x1="4.3" x2="4.3" x3="4.3" y1="7.3" y2="7.3" y3="7.2"/>
- <line x="4.5" y="6.7"/>
- <curve x1="4.5" x2="4.5" x3="4.6" y1="6.6" y2="6.6" y3="6.6"/>
- <line x="4.9" y="6.7"/>
- <curve x1="5" x2="5.1" x3="5.1" y1="6.8" y2="6.7" y3="6.7"/>
- <line x="5.2" y="6.5"/>
- <curve x1="5.2" x2="5.2" x3="5.2" y1="6.4" y2="6.4" y3="6.3"/>
- <line x="5.1" y="6.1"/>
- <curve x1="5.1" x2="5.2" x3="5.2" y1="6" y2="5.9" y3="5.9"/>
- <curve x1="5.2" x2="5.3" x3="5.5" y1="5.9" y2="5.8" y3="5.8"/>
- <curve x1="5.6" x2="5.7" x3="5.7" y1="5.7" y2="5.7" y3="5.7"/>
- <curve x1="5.7" x2="5.8" x3="5.8" y1="5.7" y2="5.7" y3="5.8"/>
- <line x="6" y="6"/>
- <curve x1="6" x2="6.1" x3="6.2" y1="6" y2="6.1" y3="6.1"/>
- <line x="6.4" y="6.1"/>
- <curve x1="6.4" x2="6.5" x3="6.5" y1="6.1" y2="6.1" y3="6"/>
- <line x="6.7" y="5.8"/>
- <curve x1="6.7" x2="6.7" x3="6.8" y1="5.7" y2="5.7" y3="5.7"/>
- <line x="7.3" y="5.9"/>
- <curve x1="7.4" x2="7.4" x3="7.4" y1="5.9" y2="5.9" y3="6"/>
- <line x="7.3" y="6.2"/>
- <curve x1="7.2" x2="7.3" x3="7.3" y1="6.3" y2="6.4" y3="6.4"/>
- <line x="7.4" y="6.6"/>
- <curve x1="7.5" x2="7.5" x3="7.6" y1="6.6" y2="6.6" y3="6.6"/>
- <line x="7.8" y="6.5"/>
- <curve x1="7.9" x2="8" x3="8" y1="6.5" y2="6.6" y3="6.6"/>
- <close/>
- <move x="8.8" y="5.5"/>
- <curve x1="8.5" x2="8.3" x3="8.3" y1="5.5" y2="5.3" y3="5"/>
- <curve x1="8.3" x2="8.5" x3="8.8" y1="4.7" y2="4.5" y3="4.5"/>
- <curve x1="9.1" x2="9.3" x3="9.3" y1="4.5" y2="4.7" y3="5"/>
- <curve x1="9.3" x2="9.1" x3="8.8" y1="5.3" y2="5.5" y3="5.5"/>
- <close/>
- <move x="10.6" y="4.8"/>
- <curve x1="10.6" x2="10.6" x3="10.5" y1="4.8" y2="4.9" y3="5"/>
- <curve x1="10.5" x2="10.5" x3="10.5" y1="5.1" y2="5.2" y3="5.2"/>
- <curve x1="10.5" x2="10.5" x3="10.4" y1="5.3" y2="5.3" y3="5.3"/>
- <line x="10.2" y="5.3"/>
- <curve x1="10.2" x2="10.1" x3="10.1" y1="5.3" y2="5.4" y3="5.4"/>
- <line x="10.1" y="5.7"/>
- <curve x1="10.1" x2="10.1" x3="10.1" y1="5.7" y2="5.8" y3="5.8"/>
- <line x="10.2" y="6"/>
- <curve x1="10.2" x2="10.2" x3="10.2" y1="6" y2="6.1" y3="6.1"/>
- <line x="9.9" y="6.4"/>
- <curve x1="9.9" x2="9.8" x3="9.8" y1="6.4" y2="6.4" y3="6.4"/>
- <line x="9.4" y="6.3"/>
- <curve x1="9.4" x2="9.3" x3="9.3" y1="6.3" y2="6.3" y3="6.3"/>
- <line x="9.1" y="6.4"/>
- <curve x1="9" x2="9" x3="9" y1="6.4" y2="6.4" y3="6.5"/>
- <line x="9" y="6.7"/>
- <curve x1="9" x2="8.9" x3="8.9" y1="6.7" y2="6.8" y3="6.8"/>
- <curve x1="8.9" x2="8.8" x3="8.7" y1="6.8" y2="6.8" y3="6.8"/>
- <curve x1="8.6" x2="8.5" x3="8.5" y1="6.8" y2="6.8" y3="6.8"/>
- <curve x1="8.4" x2="8.4" x3="8.4" y1="6.8" y2="6.8" y3="6.7"/>
- <line x="8.4" y="6.5"/>
- <curve x1="8.4" x2="8.3" x3="8.3" y1="6.5" y2="6.4" y3="6.4"/>
- <line x="8.1" y="6.3"/>
- <curve x1="8.1" x2="8" x3="8" y1="6.3" y2="6.3" y3="6.3"/>
- <line x="7.8" y="6.4"/>
- <curve x1="7.8" x2="7.7" x3="7.7" y1="6.4" y2="6.4" y3="6.4"/>
- <line x="7.4" y="6.1"/>
- <curve x1="7.4" x2="7.4" x3="7.4" y1="6.1" y2="6" y3="6"/>
- <line x="7.6" y="5.7"/>
- <curve x1="7.6" x2="7.6" x3="7.6" y1="5.7" y2="5.6" y3="5.6"/>
- <line x="7.5" y="5.4"/>
- <curve x1="7.5" x2="7.5" x3="7.4" y1="5.3" y2="5.3" y3="5.3"/>
- <line x="7.2" y="5.3"/>
- <curve x1="7.2" x2="7.1" x3="7.1" y1="5.3" y2="5.2" y3="5.2"/>
- <curve x1="7.1" x2="7.1" x3="7.1" y1="5.2" y2="5.1" y3="5"/>
- <curve x1="7.1" x2="7.1" x3="7.1" y1="4.9" y2="4.8" y3="4.8"/>
- <curve x1="7.1" x2="7.1" x3="7.2" y1="4.7" y2="4.7" y3="4.7"/>
- <line x="7.4" y="4.7"/>
- <curve x1="7.4" x2="7.5" x3="7.5" y1="4.7" y2="4.6" y3="4.6"/>
- <line x="7.5" y="4.4"/>
- <curve x1="7.5" x2="7.5" x3="7.5" y1="4.4" y2="4.3" y3="4.3"/>
- <line x="7.4" y="4.1"/>
- <curve x1="7.4" x2="7.4" x3="7.4" y1="4.1" y2="4" y3="4"/>
- <line x="7.8" y="3.6"/>
- <curve x1="7.8" x2="7.9" x3="7.9" y1="3.6" y2="3.6" y3="3.6"/>
- <line x="8.1" y="3.8"/>
- <curve x1="8.1" x2="8.2" x3="8.2" y1="3.8" y2="3.8" y3="3.8"/>
- <line x="8.4" y="3.7"/>
- <curve x1="8.5" x2="8.5" x3="8.5" y1="3.7" y2="3.7" y3="3.6"/>
- <line x="8.5" y="3.4"/>
- <curve x1="8.5" x2="8.6" x3="8.6" y1="3.4" y2="3.3" y3="3.3"/>
- <curve x1="8.6" x2="8.7" x3="8.8" y1="3.3" y2="3.3" y3="3.3"/>
- <curve x1="8.9" x2="9" x3="9" y1="3.3" y2="3.3" y3="3.3"/>
- <curve x1="9.1" x2="9.1" x3="9.1" y1="3.3" y2="3.3" y3="3.4"/>
- <line x="9.1" y="3.6"/>
- <curve x1="9.1" x2="9.2" x3="9.2" y1="3.6" y2="3.7" y3="3.7"/>
- <line x="9.4" y="3.8"/>
- <curve x1="9.4" x2="9.5" x3="9.5" y1="3.8" y2="3.8" y3="3.8"/>
- <line x="9.7" y="3.7"/>
- <curve x1="9.7" x2="9.8" x3="9.8" y1="3.7" y2="3.7" y3="3.7"/>
- <line x="10.1" y="4"/>
- <curve x1="10.1" x2="10.1" x3="10.1" y1="4" y2="4.1" y3="4.1"/>
- <line x="10" y="4.3"/>
- <curve x1="10" x2="10" x3="10" y1="4.3" y2="4.4" y3="4.4"/>
- <line x="10.2" y="4.6"/>
- <curve x1="10.2" x2="10.2" x3="10.3" y1="4.7" y2="4.7" y3="4.7"/>
- <line x="10.5" y="4.7"/>
- <curve x1="10.5" x2="10.6" x3="10.6" y1="4.7" y2="4.8" y3="4.8"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Table" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="1" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.6"/>
- <line x="0" y="0"/>
- <line x="4.8" y="0"/>
- <line x="4.8" y="94.8"/>
- <line x="99.6" y="94.8"/>
- <line x="99.6" y="99.6"/>
- <close/>
- <move x="9.8" y="89.8"/>
- <line x="9.8" y="63.1"/>
- <line x="36.5" y="63.1"/>
- <line x="36.5" y="89.8"/>
- <close/>
- <move x="41.4" y="63.1"/>
- <line x="68" y="63.17"/>
- <line x="68" y="89.8"/>
- <line x="41.4" y="89.92"/>
- <close/>
- <move x="73" y="89.8"/>
- <line x="73" y="63.1"/>
- <line x="99.6" y="63.1"/>
- <line x="99.6" y="89.8"/>
- <close/>
- <move x="99.6" y="58.3"/>
- <line x="73" y="58.3"/>
- <line x="73" y="31.6"/>
- <line x="99.6" y="31.6"/>
- <close/>
- <move x="68" y="31.6"/>
- <line x="68" y="58.3"/>
- <line x="41.4" y="58.3"/>
- <line x="41.4" y="31.6"/>
- <close/>
- <move x="36.5" y="58.3"/>
- <line x="9.8" y="58.3"/>
- <line x="9.8" y="31.6"/>
- <line x="36.5" y="31.6"/>
- <close/>
- <move x="9.8" y="26.7"/>
- <line x="9.8" y="0"/>
- <line x="36.5" y="0"/>
- <line x="36.5" y="26.7"/>
- <close/>
- <move x="41.4" y="0"/>
- <line x="68" y="0"/>
- <line x="68" y="26.7"/>
- <line x="41.4" y="26.7"/>
- <close/>
- <move x="73" y="26.7"/>
- <line x="73" y="0"/>
- <line x="99.6" y="0"/>
- <line x="99.6" y="26.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="94.4" name="Tool" strokewidth="inherit" w="100.86">
- <connections>
- <constraint name="N" perimeter="0" x="0.49" y="0.36"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.67"/>
- <constraint name="W" perimeter="0" x="0.34" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.62" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.92" y="0.075"/>
- <constraint name="NW" perimeter="0" x="0.17" y="0.03"/>
- <constraint name="SE" perimeter="0" x="0.92" y="0.96"/>
- <constraint name="SW" perimeter="0" x="0.05" y="0.98"/>
- </connections>
- <foreground>
- <path>
- <move x="29.16" y="42.2"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="9.56" x-axis-rotation="0" y="39"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="1.96" x-axis-rotation="0" y="17.4"/>
- <line x="13.96" y="29.2"/>
- <line x="25.86" y="26.1"/>
- <line x="28.96" y="14.5"/>
- <line x="16.96" y="3"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="37.36" x-axis-rotation="0" y="8.2"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="42.96" x-axis-rotation="0" y="28.3"/>
- <line x="48.86" y="34"/>
- <line x="44.86" y="34"/>
- <line x="35.66" y="43"/>
- <line x="41.16" y="48.4"/>
- <line x="38.26" y="51.2"/>
- <close/>
- <move x="46.96" y="37.4"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="58.36" x-axis-rotation="0" y="26.3"/>
- <line x="85.56" y="0"/>
- <line x="100.86" y="14.7"/>
- <line x="73.86" y="40.8"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="62.16" x-axis-rotation="0" y="52.1"/>
- <line x="55.86" y="58.2"/>
- <line x="50.46" y="52.8"/>
- <line x="23.46" y="78.9"/>
- <line x="24.56" y="79.9"/>
- <line x="20.36" y="84.9"/>
- <line x="6.66" y="93.3"/>
- <line x="4.46" y="91.1"/>
- <line x="13.06" y="78"/>
- <line x="18.26" y="73.9"/>
- <line x="19.26" y="75"/>
- <line x="46.36" y="48.8"/>
- <line x="40.76" y="43.4"/>
- <close/>
- <move x="65.96" y="50.5"/>
- <line x="93.86" y="77.6"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="93.06" x-axis-rotation="0" y="90"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="79.06" x-axis-rotation="0" y="90.8"/>
- <line x="48.26" y="60.7"/>
- <line x="51.26" y="57.9"/>
- <line x="56.66" y="63.2"/>
- <line x="65.96" y="54.3"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="14.8" name="Triggers" strokewidth="inherit" w="13.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0"/>
- <constraint name="NW" perimeter="0" x="0.03" y="0"/>
- <constraint name="SE" perimeter="0" x="0.93" y="1"/>
- <constraint name="SW" perimeter="0" x="0.18" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="9.8" y="3.7"/>
- <line x="7.5" y="5.8"/>
- <line x="9.5" y="5.8"/>
- <line x="5.6" y="9.4"/>
- <line x="7.2" y="6.4"/>
- <line x="5.4" y="6.4"/>
- <line x="7.4" y="3.4"/>
- <line x="9.8" y="3.4"/>
- <line x="9.8" y="3.7"/>
- <close/>
- <move x="3.7" y="13.2"/>
- <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
- <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
- <line x="12.2" y="14.8"/>
- <line x="12.5" y="14.8"/>
- <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
- <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
- <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
- <line x="11.1" y="13.1"/>
- <line x="3.7" y="13.2"/>
- <line x="3.7" y="13.2"/>
- <close/>
- <move x="2.4" y="14.8"/>
- <move x="2.9" y="14"/>
- <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
- <line x="3.2" y="12.6"/>
- <line x="3.7" y="12.6"/>
- <line x="11" y="12.6"/>
- <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
- <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
- <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
- <line x="2.8" y="0"/>
- <line x="1" y="0"/>
- <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
- <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
- <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
- <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
- <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
- <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
- <curve x1="2" x2="2.1" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
- <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
- <close/>
- <move x="2.5" y="1.6"/>
- <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
- <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
- <line x="0.2" y="0.3"/>
- <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.6" y3="0.9"/>
- <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
- <line x="2.7" y="2"/>
- <curve x1="2.6" x2="2.6" x3="2.5" y1="1.9" y2="1.8" y3="1.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="14.8" name="UDF Function" strokewidth="inherit" w="13.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.82" y="0"/>
- <constraint name="NW" perimeter="0" x="0.03" y="0"/>
- <constraint name="SE" perimeter="0" x="0.93" y="1"/>
- <constraint name="SW" perimeter="0" x="0.18" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="10.13" y="4.46"/>
- <line x="10.45" y="4.46"/>
- <quad x1="10.74" x2="10.88" y1="4.92" y2="5.36"/>
- <quad x1="11.03" x2="11.03" y1="5.8" y2="6.24"/>
- <quad x1="11.03" x2="10.88" y1="6.68" y2="7.12"/>
- <quad x1="10.74" x2="10.45" y1="7.56" y2="8.02"/>
- <line x="10.13" y="8.02"/>
- <quad x1="10.39" x2="10.52" y1="7.57" y2="7.13"/>
- <quad x1="10.65" x2="10.65" y1="6.69" y2="6.24"/>
- <quad x1="10.65" x2="10.52" y1="5.79" y2="5.35"/>
- <quad x1="10.39" x2="10.13" y1="4.91" y2="4.46"/>
- <close/>
- <move x="9.47" y="6.17"/>
- <line x="9.47" y="7.49"/>
- <line x="9.11" y="7.49"/>
- <line x="9.11" y="6.19"/>
- <quad x1="9.11" x2="8.99" y1="5.88" y2="5.72"/>
- <quad x1="8.87" x2="8.62" y1="5.57" y2="5.57"/>
- <quad x1="8.33" x2="8.17" y1="5.57" y2="5.75"/>
- <quad x1="8" x2="8" y1="5.94" y2="6.26"/>
- <line x="8" y="7.49"/>
- <line x="7.64" y="7.49"/>
- <line x="7.64" y="5.31"/>
- <line x="8" y="5.31"/>
- <line x="8" y="5.65"/>
- <quad x1="8.13" x2="8.3" y1="5.45" y2="5.35"/>
- <quad x1="8.48" x2="8.7" y1="5.25" y2="5.25"/>
- <quad x1="9.08" x2="9.28" y1="5.25" y2="5.49"/>
- <quad x1="9.47" x2="9.47" y1="5.72" y2="6.17"/>
- <close/>
- <move x="6.95" y="4.46"/>
- <quad x1="6.69" x2="6.56" y1="4.91" y2="5.35"/>
- <quad x1="6.44" x2="6.44" y1="5.79" y2="6.24"/>
- <quad x1="6.44" x2="6.56" y1="6.69" y2="7.13"/>
- <quad x1="6.69" x2="6.95" y1="7.57" y2="8.02"/>
- <line x="6.64" y="8.02"/>
- <quad x1="6.35" x2="6.2" y1="7.56" y2="7.12"/>
- <quad x1="6.05" x2="6.05" y1="6.68" y2="6.24"/>
- <quad x1="6.05" x2="6.2" y1="5.8" y2="5.36"/>
- <quad x1="6.34" x2="6.64" y1="4.92" y2="4.46"/>
- <line x="6.95" y="4.46"/>
- <close/>
- <move x="5.79" y="4.46"/>
- <line x="5.79" y="4.75"/>
- <line x="5.45" y="4.75"/>
- <quad x1="5.25" x2="5.18" y1="4.75" y2="4.83"/>
- <quad x1="5.1" x2="5.1" y1="4.91" y2="5.11"/>
- <line x="5.1" y="5.31"/>
- <line x="5.69" y="5.31"/>
- <line x="5.69" y="5.59"/>
- <line x="5.1" y="5.59"/>
- <line x="5.1" y="7.49"/>
- <line x="4.74" y="7.49"/>
- <line x="4.74" y="5.59"/>
- <line x="4.4" y="5.59"/>
- <line x="4.4" y="5.31"/>
- <line x="4.74" y="5.31"/>
- <line x="4.74" y="5.15"/>
- <quad x1="4.74" x2="4.91" y1="4.79" y2="4.62"/>
- <quad x1="5.08" x2="5.45" y1="4.46" y2="4.46"/>
- <line x="5.79" y="4.46"/>
- <close/>
- <move x="3.7" y="13.2"/>
- <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
- <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
- <line x="12.2" y="14.8"/>
- <line x="12.5" y="14.8"/>
- <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
- <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
- <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
- <line x="11.1" y="13.1"/>
- <line x="3.7" y="13.2"/>
- <line x="3.7" y="13.2"/>
- <close/>
- <move x="2.4" y="14.8"/>
- <move x="2.9" y="14"/>
- <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
- <line x="3.2" y="12.6"/>
- <line x="3.7" y="12.6"/>
- <line x="11" y="12.6"/>
- <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
- <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
- <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
- <line x="2.8" y="0"/>
- <line x="1" y="0"/>
- <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
- <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
- <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
- <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
- <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
- <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
- <curve x1="2" x2="2.2" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
- <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
- <close/>
- <move x="2.5" y="1.7"/>
- <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
- <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
- <line x="0.2" y="0.3"/>
- <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.7" y3="0.9"/>
- <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
- <line x="2.7" y="2"/>
- <curve x1="2.6" x2="2.6" x3="2.5" y1="1.9" y2="1.8" y3="1.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="86.28" name="Unhealthy" strokewidth="inherit" w="104.55">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.21"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.07" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.76" y="0.02"/>
- <constraint name="NW" perimeter="0" x="0.22" y="0.02"/>
- </connections>
- <foreground>
- <path>
- <move x="51.79" y="86.28"/>
- <arc large-arc-flag="0" rx="120" ry="120" sweep-flag="1" x="28.39" x-axis-rotation="0" y="68.98"/>
- <arc large-arc-flag="0" rx="90" ry="90" sweep-flag="1" x="4.79" x-axis-rotation="0" y="38.68"/>
- <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="8.29" x-axis-rotation="0" y="8.68"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="29.89" x-axis-rotation="0" y="2.58"/>
- <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="1" x="51.99" x-axis-rotation="0" y="18.28"/>
- <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="1" x="68.09" x-axis-rotation="0" y="4.68"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="90.79" x-axis-rotation="0" y="4.68"/>
- <arc large-arc-flag="0" rx="26" ry="27" sweep-flag="1" x="98.19" x-axis-rotation="0" y="39.58"/>
- <arc large-arc-flag="0" rx="90" ry="90" sweep-flag="1" x="72.99" x-axis-rotation="0" y="70.98"/>
- <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="51.79" x-axis-rotation="0" y="86.28"/>
- <close/>
- <move x="67.79" y="65.58"/>
- <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="73.19" x-axis-rotation="0" y="60.08"/>
- <line x="56.39" y="43.88"/>
- <line x="73.09" y="27.38"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="67.59" x-axis-rotation="0" y="22.48"/>
- <line x="51.29" y="38.78"/>
- <line x="34.79" y="22.38"/>
- <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="29.99" x-axis-rotation="0" y="27.88"/>
- <line x="46.09" y="44.08"/>
- <line x="30.29" y="59.78"/>
- <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="35.99" x-axis-rotation="0" y="64.78"/>
- <line x="51.59" y="49.18"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="46.25" name="USB" strokewidth="inherit" w="99.57">
- <connections>
- <constraint name="N" perimeter="0" x="0.58" y="0.01"/>
- <constraint name="S" perimeter="0" x="0.6" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.51"/>
- </connections>
- <foreground>
- <path>
- <move x="17.27" y="25.35"/>
- <arc large-arc-flag="1" rx="8.8" ry="8.8" sweep-flag="1" x="17.27" x-axis-rotation="0" y="20.55"/>
- <line x="27.67" y="20.55"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="30.47" x-axis-rotation="0" y="17.85"/>
- <line x="33.67" y="11.95"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="41.77" x-axis-rotation="0" y="6.75"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50.07" x-axis-rotation="0" y="6.15"/>
- <arc large-arc-flag="1" rx="8" ry="8" sweep-flag="1" x="50.07" x-axis-rotation="0" y="10.85"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="41.17" x-axis-rotation="0" y="11.75"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="37.77" x-axis-rotation="0" y="14.15"/>
- <line x="35.77" y="18.15"/>
- <line x="34.57" y="20.65"/>
- <line x="81.97" y="20.65"/>
- <line x="81.97" y="12.65"/>
- <line x="99.57" y="23.65"/>
- <line x="81.97" y="33.45"/>
- <line x="81.97" y="25.25"/>
- <line x="45.57" y="25.25"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="47.47" x-axis-rotation="0" y="28.95"/>
- <line x="49.47" y="34.15"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="51.57" x-axis-rotation="0" y="36.25"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="55.17" x-axis-rotation="0" y="36.75"/>
- <line x="59.47" y="36.75"/>
- <line x="59.47" y="31.75"/>
- <line x="73.77" y="31.75"/>
- <line x="73.77" y="46.25"/>
- <line x="59.47" y="46.25"/>
- <line x="59.47" y="41.55"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="50.87" x-axis-rotation="0" y="40.95"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45.77" x-axis-rotation="0" y="37.35"/>
- <line x="44.17" y="33.65"/>
- <line x="42.07" y="28.55"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.57" x-axis-rotation="0" y="25.25"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="14.85" name="User Permissions" strokewidth="inherit" w="14.2">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0.37" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.93" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.78" y="0.13"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="8.72" y="8.57"/>
- <curve x1="7.72" x2="6.69" x3="5.85" y1="8.76" y2="8.49" y3="7.86"/>
- <curve x1="4.78" x2="3.99" x3="3.95" y1="7.06" y2="5.71" y3="4.03"/>
- <curve x1="3.95" x2="5.44" x3="7.77" y1="1.95" y2="0" y3="0"/>
- <curve x1="10.08" x2="11.73" x3="11.77" y1="0" y2="2.2" y3="4.6"/>
- <line x="8.87" y="4.6"/>
- <curve x1="8.36" x2="8.15" x3="8.15" y1="4.6" y2="5.08" y3="5.27"/>
- <line x="8.15" y="7.91"/>
- <curve x1="8.15" x2="8.48" x3="8.72" y1="8.27" y2="8.52" y3="8.57"/>
- <close/>
- <move x="10.35" y="9.85"/>
- <line x="10.35" y="13.49"/>
- <curve x1="10.35" x2="10.33" x3="10.26" y1="13.59" y2="13.61" y3="13.6"/>
- <curve x1="10.15" x2="10.16" x3="10.15" y1="13.6" y2="13.55" y3="13.46"/>
- <line x="10.15" y="10.01"/>
- <close/>
- <move x="10.22" y="13.81"/>
- <curve x1="10.51" x2="10.55" x3="10.55" y1="13.81" y2="13.64" y3="13.45"/>
- <line x="10.54" y="8.93"/>
- <curve x1="10.54" x2="10.48" x3="10.26" y1="8.8" y2="8.6" y3="8.6"/>
- <curve x1="10.05" x2="9.95" x3="9.95" y1="8.6" y2="8.8" y3="9"/>
- <line x="9.95" y="13.43"/>
- <curve x1="9.95" x2="10.12" x3="10.22" y1="13.73" y2="13.81" y3="13.81"/>
- <close/>
- <move x="10.73" y="6.2"/>
- <curve x1="10.54" x2="10.25" x3="10.25" y1="6.2" y2="5.99" y3="5.7"/>
- <curve x1="10.25" x2="10.54" x3="10.73" y1="5.43" y2="5.21" y3="5.21"/>
- <curve x1="11.01" x2="11.24" x3="11.24" y1="5.21" y2="5.46" y3="5.7"/>
- <curve x1="11.24" x2="11.09" x3="10.73" y1="5.98" y2="6.19" y3="6.2"/>
- <close/>
- <move x="10.73" y="6.41"/>
- <curve x1="11.18" x2="11.45" x3="11.45" y1="6.41" y2="6.07" y3="5.7"/>
- <curve x1="11.45" x2="11.1" x3="10.74" y1="5.35" y2="5" y3="5"/>
- <curve x1="10.43" x2="10.05" x3="10.05" y1="5" y2="5.32" y3="5.7"/>
- <curve x1="10.05" x2="10.46" x3="10.73" y1="6.12" y2="6.41" y3="6.41"/>
- <close/>
- <move x="9.75" y="8.4"/>
- <line x="8.93" y="8.41"/>
- <curve x1="8.65" x2="8.35" x3="8.35" y1="8.41" y2="8.19" y3="7.87"/>
- <line x="8.35" y="5.31"/>
- <curve x1="8.35" x2="8.56" x3="8.87" y1="5.08" y2="4.8" y3="4.8"/>
- <line x="12.62" y="4.81"/>
- <curve x1="13" x2="13.15" x3="13.15" y1="4.81" y2="5.06" y3="5.3"/>
- <line x="13.15" y="7.97"/>
- <curve x1="13.15" x2="12.9" x3="12.63" y1="8.25" y2="8.5" y3="8.5"/>
- <line x="12.13" y="8.5"/>
- <curve x1="11.7" x2="11.38" x3="11.35" y1="8.83" y2="9.31" y3="9.6"/>
- <line x="11.35" y="9.84"/>
- <curve x1="11.48" x2="11.62" x3="11.83" y1="10.13" y2="10.44" y3="10.71"/>
- <curve x1="11.71" x2="11.66" x3="11.35" y1="10.93" y2="11.09" y3="11.35"/>
- <line x="11.35" y="11.69"/>
- <curve x1="11.34" x2="11.7" x3="11.84" y1="11.93" y2="12.11" y3="12.17"/>
- <line x="11.85" y="12.34"/>
- <curve x1="11.76" x2="11.55" x3="11.55" y1="12.37" y2="12.49" y3="12.72"/>
- <line x="11.55" y="13.2"/>
- <line x="11.35" y="13.2"/>
- <curve x1="11.36" x2="11.07" x3="10.53" y1="13.7" y2="14.1" y3="14.1"/>
- <curve x1="10.08" x2="9.75" x3="9.75" y1="14.1" y2="13.69" y3="13.22"/>
- <close/>
- <move x="0.01" y="14.85"/>
- <curve x1="0" x2="0.32" x3="0.88" y1="13.48" y2="12.25" y3="11.12"/>
- <curve x1="1.29" x2="1.84" x3="2.63" y1="10.35" y2="9.58" y3="9.04"/>
- <curve x1="3.31" x2="4.21" x3="5.03" y1="8.55" y2="8.53" y3="8.98"/>
- <curve x1="5.43" x2="6.21" x3="7.37" y1="9.19" y2="9.84" y3="10.31"/>
- <curve x1="8.17" x2="8.91" x3="9.55" y1="10.64" y2="10.71" y3="10.33"/>
- <line x="9.54" y="13.21"/>
- <curve x1="9.54" x2="9.94" x3="10.54" y1="13.79" y2="14.31" y3="14.31"/>
- <curve x1="11.13" x2="11.51" x3="11.54" y1="14.31" y2="13.83" y3="13.4"/>
- <line x="11.75" y="13.41"/>
- <line x="11.75" y="12.72"/>
- <curve x1="11.75" x2="11.91" x3="12.05" y1="12.59" y2="12.53" y3="12.48"/>
- <line x="12.05" y="12.02"/>
- <curve x1="11.89" x2="11.6" x3="11.55" y1="12" y2="11.84" y3="11.7"/>
- <line x="11.55" y="11.45"/>
- <curve x1="11.8" x2="11.89" x3="12.06" y1="11.23" y2="11.05" y3="10.69"/>
- <curve x1="11.84" x2="11.63" x3="11.53" y1="10.39" y2="10.07" y3="9.67"/>
- <curve x1="11.56" x2="11.63" x3="11.74" y1="9.53" y2="9.38" y3="9.22"/>
- <curve x1="12.27" x2="12.75" x3="13.17" y1="9.42" y2="10.22" y3="10.99"/>
- <curve x1="13.7" x2="14.05" x3="14.2" y1="11.85" y2="13.23" y3="14.85"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Web" strokewidth="inherit" w="100">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
- <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
- <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
- <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
- </connections>
- <foreground>
- <path>
- <move x="50" y="100"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
- <close/>
- <move x="31.3" y="88.5"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="24.5" x-axis-rotation="0" y="79.7"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="21.2" x-axis-rotation="0" y="81.9"/>
- <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="31.3" x-axis-rotation="0" y="88.5"/>
- <close/>
- <move x="46.6" y="90.9"/>
- <line x="46.6" y="73.2"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="29.6" x-axis-rotation="0" y="77"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="46.6" x-axis-rotation="0" y="90.9"/>
- <close/>
- <move x="26.9" y="72"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="46.6" x-axis-rotation="0" y="67.5"/>
- <line x="46.6" y="53.5"/>
- <line x="22.8" y="53.5"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="26.9" x-axis-rotation="0" y="72"/>
- <close/>
- <move x="7.2" y="53.4"/>
- <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="17.3" x-axis-rotation="0" y="77.5"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="22" x-axis-rotation="0" y="74.6"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="17.2" x-axis-rotation="0" y="53.5"/>
- <close/>
- <move x="17.2" y="46.5"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="22.2" x-axis-rotation="0" y="25"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="17.6" x-axis-rotation="0" y="22"/>
- <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="7.2" x-axis-rotation="0" y="46.5"/>
- <close/>
- <move x="46.5" y="32.6"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="27.2" x-axis-rotation="0" y="27.7"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="22.8" x-axis-rotation="0" y="46.4"/>
- <line x="46.5" y="46.5"/>
- <close/>
- <move x="46.5" y="9"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="29.8" x-axis-rotation="0" y="22.7"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="46.5" x-axis-rotation="0" y="26.8"/>
- <close/>
- <move x="24.7" y="19.8"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="31.3" x-axis-rotation="0" y="11.3"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="21.5" x-axis-rotation="0" y="17.9"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="24.7" x-axis-rotation="0" y="19.8"/>
- <close/>
- <move x="53.6" y="26.8"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="70.4" x-axis-rotation="0" y="22.9"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="53.6" x-axis-rotation="0" y="9.2"/>
- <close/>
- <move x="78.8" y="18.2"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="68.8" x-axis-rotation="0" y="11.3"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="75.5" x-axis-rotation="0" y="20.3"/>
- <line x="78.8" y="18.2"/>
- <close/>
- <move x="92.8" y="46.5"/>
- <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="0" x="82.7" x-axis-rotation="0" y="22.3"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="78.1" x-axis-rotation="0" y="25.5"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="82.9" x-axis-rotation="0" y="46.4"/>
- <close/>
- <move x="77.2" y="46.5"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="73" x-axis-rotation="0" y="28"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="53.4" x-axis-rotation="0" y="32.4"/>
- <line x="53.4" y="46.5"/>
- <close/>
- <move x="53.4" y="67.5"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="72.9" x-axis-rotation="0" y="72.4"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="77.2" x-axis-rotation="0" y="53.4"/>
- <line x="53.4" y="53.4"/>
- <close/>
- <move x="53.4" y="90.9"/>
- <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="70.2" x-axis-rotation="0" y="77.4"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="53.4" x-axis-rotation="0" y="73.3"/>
- <close/>
- <move x="75.3" y="80.2"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="68.6" x-axis-rotation="0" y="88.8"/>
- <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="78.4" x-axis-rotation="0" y="82.2"/>
- <close/>
- <move x="82.9" y="53.4"/>
- <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="77.9" x-axis-rotation="0" y="75"/>
- <line x="82.4" y="78"/>
- <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="0" x="92.8" x-axis-rotation="0" y="53.4"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="82.57" name="Website generic" strokewidth="inherit" w="94.75">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.83"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.93" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.83" y="0"/>
- <constraint name="NW" perimeter="0" x="0" y="0"/>
- <constraint name="SE1" perimeter="0" x="0.74" y="1"/>
- <constraint name="SE2" perimeter="0" x="1" y="0.7"/>
- <constraint name="SW" perimeter="0" x="0" y="0.81"/>
- </connections>
- <foreground>
- <path>
- <move x="44.1" y="66.8"/>
- <line x="0" y="66.8"/>
- <line x="0" y="0"/>
- <line x="78.9" y="0"/>
- <line x="78.9" y="31.9"/>
- <line x="76.5" y="31.1"/>
- <line x="76.5" y="15.6"/>
- <line x="2.3" y="15.6"/>
- <line x="2.3" y="64.4"/>
- <line x="43.2" y="64.4"/>
- <close/>
- <move x="10.9" y="59.5"/>
- <line x="10.9" y="48.6"/>
- <line x="17" y="48.6"/>
- <line x="17" y="40"/>
- <line x="38.8" y="40"/>
- <line x="38.8" y="33.9"/>
- <line x="30.4" y="33.9"/>
- <line x="30.4" y="20.7"/>
- <line x="49.8" y="20.7"/>
- <line x="49.8" y="33.9"/>
- <line x="41.1" y="33.9"/>
- <line x="41.1" y="40.1"/>
- <line x="48.8" y="40.1"/>
- <line x="47" y="42.4"/>
- <line x="41.2" y="42.4"/>
- <line x="41.2" y="48.6"/>
- <line x="43.9" y="48.6"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="42.5" x-axis-rotation="0" y="59.6"/>
- <line x="32.8" y="59.6"/>
- <line x="32.8" y="48.6"/>
- <line x="38.9" y="48.6"/>
- <line x="38.9" y="42.4"/>
- <line x="19.2" y="42.4"/>
- <line x="19.2" y="48.6"/>
- <line x="25.3" y="48.6"/>
- <line x="25.3" y="59.6"/>
- <close/>
- <move x="69.75" y="82.37"/>
- <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="45.2" x-axis-rotation="0" y="57.5"/>
- <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="69.75" x-axis-rotation="0" y="32.95"/>
- <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="94.51" x-axis-rotation="0" y="57.5"/>
- <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="1" x="69.75" x-axis-rotation="0" y="82.37"/>
- <close/>
- <move x="62.86" y="77.14"/>
- <arc large-arc-flag="0" rx="14.63" ry="14.63" sweep-flag="1" x="59.83" x-axis-rotation="0" y="70.25"/>
- <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="0" x="54.5" x-axis-rotation="0" y="71.92"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="62.86" x-axis-rotation="0" y="77.25"/>
- <close/>
- <move x="72.16" y="77.35"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="76.02" x-axis-rotation="0" y="69.52"/>
- <arc large-arc-flag="0" rx="41.79" ry="41.79" sweep-flag="0" x="63.8" x-axis-rotation="0" y="69.62"/>
- <arc large-arc-flag="0" rx="15.67" ry="15.67" sweep-flag="0" x="67.77" x-axis-rotation="0" y="77.35"/>
- <arc large-arc-flag="0" rx="2.93" ry="3.13" sweep-flag="0" x="72.16" x-axis-rotation="0" y="77.35"/>
- <close/>
- <move x="62.86" y="66.07"/>
- <arc large-arc-flag="0" rx="36.57" ry="36.56" sweep-flag="1" x="76.86" x-axis-rotation="0" y="66.07"/>
- <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="0" x="77.49" x-axis-rotation="0" y="59.59"/>
- <line x="62.23" y="59.59"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="62.86" x-axis-rotation="0" y="66.07"/>
- <close/>
- <move x="49.07" y="59.59"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="51.99" x-axis-rotation="0" y="68.79"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="59.2" x-axis-rotation="0" y="66.59"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="58.47" x-axis-rotation="0" y="59.59"/>
- <close/>
- <move x="58.47" y="55.62"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="59.31" x-axis-rotation="0" y="48"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="52.62" x-axis-rotation="0" y="45.91"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="48.86" x-axis-rotation="0" y="55.62"/>
- <close/>
- <move x="77.38" y="55.62"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="76.75" x-axis-rotation="0" y="48.73"/>
- <arc large-arc-flag="0" rx="41.79" ry="41.79" sweep-flag="1" x="62.86" x-axis-rotation="0" y="48.73"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="62.23" x-axis-rotation="0" y="55.62"/>
- <close/>
- <move x="67.87" y="37.65"/>
- <arc large-arc-flag="0" rx="14.63" ry="14.63" sweep-flag="0" x="63.9" x-axis-rotation="0" y="45.18"/>
- <arc large-arc-flag="0" rx="36.57" ry="36.56" sweep-flag="0" x="75.81" x-axis-rotation="0" y="45.18"/>
- <arc large-arc-flag="0" rx="18.81" ry="18.8" sweep-flag="0" x="71.84" x-axis-rotation="0" y="37.65"/>
- <arc large-arc-flag="0" rx="2.93" ry="3.13" sweep-flag="0" x="67.87" x-axis-rotation="0" y="37.65"/>
- <close/>
- <move x="60.14" y="44.44"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="62.76" x-axis-rotation="0" y="37.97"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="55.02" x-axis-rotation="0" y="42.88"/>
- <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="0" x="60.14" x-axis-rotation="0" y="44.44"/>
- <close/>
- <close/>
- <close/>
- <close/>
- <close/>
- <move x="84.38" y="42.88"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="77.07" x-axis-rotation="0" y="38.07"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="79.58" x-axis-rotation="0" y="44.44"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="84.38" x-axis-rotation="0" y="42.88"/>
- <close/>
- <move x="90.65" y="55.62"/>
- <arc large-arc-flag="0" rx="21.94" ry="21.94" sweep-flag="0" x="86.99" x-axis-rotation="0" y="46.01"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="80.41" x-axis-rotation="0" y="48.1"/>
- <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="81.14" x-axis-rotation="0" y="55.73"/>
- <close/>
- <move x="79.68" y="70.25"/>
- <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="76.86" x-axis-rotation="0" y="77.35"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="85.22" x-axis-rotation="0" y="71.92"/>
- <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="79.68" x-axis-rotation="0" y="70.25"/>
- <close/>
- <move x="81.14" y="59.7"/>
- <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="80.52" x-axis-rotation="0" y="66.59"/>
- <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="87.52" x-axis-rotation="0" y="68.79"/>
- <arc large-arc-flag="0" rx="21.94" ry="21.94" sweep-flag="0" x="90.65" x-axis-rotation="0" y="59.59"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.8" name="Web Server" strokewidth="inherit" w="75.62">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.64" y="0.49"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE1" perimeter="0" x="1" y="0.76"/>
- <constraint name="SE2" perimeter="0" x="0.69" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="51.7" y="99.6"/>
- <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="28.2" x-axis-rotation="0" y="75.8"/>
- <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="51.7" x-axis-rotation="0" y="52.3"/>
- <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="75.4" x-axis-rotation="0" y="75.8"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="51.7" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="45.1" y="94.6"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="42.2" x-axis-rotation="0" y="88"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="0" x="37.1" x-axis-rotation="0" y="89.6"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="45.1" x-axis-rotation="0" y="94.7"/>
- <close/>
- <move x="54" y="94.8"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="57.7" x-axis-rotation="0" y="87.3"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="46" x-axis-rotation="0" y="87.4"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="49.8" x-axis-rotation="0" y="94.8"/>
- <arc large-arc-flag="0" rx="2.8" ry="3" sweep-flag="0" x="54" x-axis-rotation="0" y="94.8"/>
- <close/>
- <move x="45.1" y="84"/>
- <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="1" x="58.5" x-axis-rotation="0" y="84"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="59.1" x-axis-rotation="0" y="77.8"/>
- <line x="44.5" y="77.8"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="45.1" x-axis-rotation="0" y="84"/>
- <close/>
- <move x="31.9" y="77.8"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="34.7" x-axis-rotation="0" y="86.6"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="41.6" x-axis-rotation="0" y="84.5"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="40.9" x-axis-rotation="0" y="77.8"/>
- <close/>
- <move x="40.9" y="74"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="41.7" x-axis-rotation="0" y="66.7"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="35.3" x-axis-rotation="0" y="64.7"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="31.7" x-axis-rotation="0" y="74"/>
- <close/>
- <move x="59" y="74"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="58.4" x-axis-rotation="0" y="67.4"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="45.1" x-axis-rotation="0" y="67.4"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="44.5" x-axis-rotation="0" y="74"/>
- <close/>
- <move x="49.9" y="56.8"/>
- <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="46.1" x-axis-rotation="0" y="64"/>
- <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="57.5" x-axis-rotation="0" y="64"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="53.7" x-axis-rotation="0" y="56.8"/>
- <arc large-arc-flag="0" rx="2.8" ry="3" sweep-flag="0" x="49.9" x-axis-rotation="0" y="56.8"/>
- <close/>
- <move x="42.5" y="63.3"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="45" x-axis-rotation="0" y="57.1"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="37.6" x-axis-rotation="0" y="61.8"/>
- <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="0" x="42.5" x-axis-rotation="0" y="63.3"/>
- <close/>
- <close/>
- <close/>
- <close/>
- <close/>
- <move x="65.7" y="61.8"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="58.7" x-axis-rotation="0" y="57.2"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="61.1" x-axis-rotation="0" y="63.3"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="65.7" x-axis-rotation="0" y="61.8"/>
- <close/>
- <move x="71.7" y="74"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="68.2" x-axis-rotation="0" y="64.8"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="61.9" x-axis-rotation="0" y="66.8"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62.6" x-axis-rotation="0" y="74.1"/>
- <close/>
- <move x="61.2" y="88"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="58.5" x-axis-rotation="0" y="94.8"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="66.5" x-axis-rotation="0" y="89.6"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="61.2" x-axis-rotation="0" y="88"/>
- <close/>
- <move x="62.6" y="77.9"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62" x-axis-rotation="0" y="84.5"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="68.7" x-axis-rotation="0" y="86.6"/>
- <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="71.7" x-axis-rotation="0" y="77.8"/>
- <close/>
- <move x="0" y="98.8"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.7" x-axis-rotation="0" y="0"/>
- <line x="43.2" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.2" x-axis-rotation="0" y="4.8"/>
- <line x="48.2" y="48.5"/>
- <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="0" x="24.1" x-axis-rotation="0" y="74.7"/>
- <line x="7.2" y="74.7"/>
- <line x="7.2" y="79.6"/>
- <line x="24.3" y="79.6"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="25.4" x-axis-rotation="0" y="84.4"/>
- <line x="7.2" y="84.4"/>
- <line x="7.2" y="89.2"/>
- <line x="27.4" y="89.2"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="36.2" x-axis-rotation="0" y="98.8"/>
- <close/>
- <move x="7.45" y="19.18"/>
- <line x="41.07" y="19.3"/>
- <line x="40.95" y="14.68"/>
- <line x="7.45" y="14.43"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Windows Server" strokewidth="inherit" w="77.4">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
- <constraint name="SE" perimeter="0" x="1" y="1"/>
- <constraint name="SW" perimeter="0" x="0" y="0.99"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="98.8"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.7" x-axis-rotation="0" y="0"/>
- <line x="43.4" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.4" x-axis-rotation="0" y="4.8"/>
- <line x="48.3" y="46.2"/>
- <line x="21.8" y="50.4"/>
- <line x="21.8" y="74.7"/>
- <line x="7.3" y="74.9"/>
- <line x="7.3" y="79.6"/>
- <line x="21.7" y="79.6"/>
- <line x="21.7" y="84.4"/>
- <line x="7.3" y="84.4"/>
- <line x="7.3" y="89.2"/>
- <line x="21.7" y="89.2"/>
- <line x="21.7" y="96.3"/>
- <line x="39.7" y="98.8"/>
- <close/>
- <move x="7.4" y="19.3"/>
- <line x="41.1" y="19.3"/>
- <line x="41.1" y="14.5"/>
- <line x="7.4" y="14.5"/>
- <close/>
- <move x="26.6" y="54.5"/>
- <line x="45.9" y="51.7"/>
- <line x="45.9" y="72.3"/>
- <line x="26.6" y="72.3"/>
- <close/>
- <move x="45.9" y="75"/>
- <line x="45.9" y="95.1"/>
- <line x="26.6" y="92.2"/>
- <line x="26.6" y="75"/>
- <close/>
- <move x="48.4" y="95.5"/>
- <line x="48.4" y="75"/>
- <line x="77.4" y="75"/>
- <line x="77.4" y="99.6"/>
- <close/>
- <move x="77.4" y="72.3"/>
- <line x="48.4" y="72.3"/>
- <line x="48.4" y="51.5"/>
- <line x="77.4" y="47.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.6" name="Wireless Connection" strokewidth="inherit" w="83.35">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0.14"/>
- <constraint name="S" perimeter="0" x="0.5" y="0.86"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
- <constraint name="NE" perimeter="0" x="0.675" y="0"/>
- <constraint name="SE" perimeter="0" x="0.675" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="9.35" y="59.2"/>
- <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="0.05" x-axis-rotation="0" y="50.3"/>
- <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="9.35" x-axis-rotation="0" y="40.8"/>
- <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="18.35" x-axis-rotation="0" y="50.3"/>
- <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="9.35" x-axis-rotation="0" y="59.2"/>
- <close/>
- <move x="21.55" y="65.3"/>
- <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="21.55" x-axis-rotation="0" y="34.4"/>
- <line x="28.55" y="27.5"/>
- <arc large-arc-flag="0" rx="32" ry="32" sweep-flag="1" x="28.35" x-axis-rotation="0" y="72.2"/>
- <close/>
- <move x="35.15" y="78.8"/>
- <arc large-arc-flag="0" rx="40.5" ry="40.5" sweep-flag="0" x="35.15" x-axis-rotation="0" y="20.8"/>
- <line x="42.15" y="13.9"/>
- <arc large-arc-flag="0" rx="51" ry="51" sweep-flag="1" x="42.15" x-axis-rotation="0" y="85.8"/>
- <close/>
- <move x="49.15" y="92.7"/>
- <arc large-arc-flag="0" rx="60.5" ry="60.5" sweep-flag="0" x="49.15" x-axis-rotation="0" y="6.9"/>
- <line x="56.15" y="0"/>
- <arc large-arc-flag="0" rx="71" ry="71" sweep-flag="1" x="56.15" x-axis-rotation="0" y="99.6"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.8" name="Workstation Client" strokewidth="inherit" w="99.72">
- <connections>
- <constraint name="N" perimeter="0" x="0.48" y="0.01"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
- <constraint name="SE" perimeter="0" x="0.86" y="0.99"/>
- <constraint name="SW" perimeter="0" x="0" y="1"/>
- </connections>
- <foreground>
- <path>
- <move x="0" y="99.8"/>
- <line x="0" y="4.8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.8" x-axis-rotation="0" y="0"/>
- <line x="44" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="4.8"/>
- <line x="48.6" y="31.6"/>
- <line x="27.8" y="31.6"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="21.8" x-axis-rotation="0" y="37.8"/>
- <line x="21.8" y="75.4"/>
- <line x="7.2" y="75.4"/>
- <line x="7.2" y="80.2"/>
- <line x="21.8" y="80.2"/>
- <arc large-arc-flag="0" rx="6" ry="10" sweep-flag="0" x="22.4" x-axis-rotation="0" y="85"/>
- <line x="7.2" y="85"/>
- <line x="7.2" y="90"/>
- <line x="42.8" y="89.8"/>
- <arc large-arc-flag="0" rx="8" ry="9" sweep-flag="0" x="35.6" x-axis-rotation="0" y="99.6"/>
- <close/>
- <move x="7.2" y="19.5"/>
- <line x="41.4" y="19.5"/>
- <line x="41.4" y="14.6"/>
- <line x="7.2" y="14.6"/>
- <close/>
- <move x="26.7" y="39.4"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="29.6" x-axis-rotation="0" y="36.5"/>
- <line x="96.6" y="36.5"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="39.5"/>
- <line x="99.6" y="81.6"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.6" x-axis-rotation="0" y="85"/>
- <line x="68" y="85"/>
- <line x="68" y="90.3"/>
- <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="70.8" x-axis-rotation="0" y="93.7"/>
- <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="79.6" x-axis-rotation="0" y="94.1"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="85.1" x-axis-rotation="0" y="96"/>
- <arc large-arc-flag="0" rx="1.5" ry="2" sweep-flag="1" x="84" x-axis-rotation="0" y="99.6"/>
- <line x="77.1" y="99.6"/>
- <line x="69.7" y="97.4"/>
- <line x="55.4" y="97.4"/>
- <line x="49.6" y="99.6"/>
- <line x="41.6" y="99.6"/>
- <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="40.4" x-axis-rotation="0" y="98"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="42.6" x-axis-rotation="0" y="95.2"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="47.8" x-axis-rotation="0" y="93.9"/>
- <line x="55.2" y="93.7"/>
- <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="58.4" x-axis-rotation="0" y="89"/>
- <line x="58.4" y="85"/>
- <line x="29.6" y="85"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="26.8" x-axis-rotation="0" y="81.6"/>
- <close/>
- <move x="34" y="43.7"/>
- <line x="34" y="77.7"/>
- <line x="92.4" y="77.7"/>
- <line x="92.4" y="43.7"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="98.9" name="XML Web Service" strokewidth="inherit" w="99.6">
- <connections>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="SE" perimeter="0" x="1" y="0.84"/>
- <constraint name="SW" perimeter="0" x="0" y="0.84"/>
- </connections>
- <foreground>
- <path>
- <move x="0.6" y="83.2"/>
- <line x="50" y="0"/>
- <line x="99.5" y="82.9"/>
- <close/>
- <move x="22.3" y="71.9"/>
- <line x="50.5" y="71.7"/>
- <line x="35.9" y="48.5"/>
- <close/>
- <move x="77.7" y="71.7"/>
- <line x="64.4" y="48.7"/>
- <line x="50.5" y="71.7"/>
- <close/>
- <move x="63.2" y="46.8"/>
- <line x="50" y="24.2"/>
- <line x="36.8" y="46.8"/>
- <close/>
- <move x="81.5" y="42.3"/>
- <line x="99.6" y="42.3"/>
- <line x="99.6" y="55.8"/>
- <line x="89.6" y="55.8"/>
- <close/>
- <move x="56.6" y="87.6"/>
- <line x="56.6" y="98.9"/>
- <line x="43" y="98.9"/>
- <line x="43" y="87.6"/>
- <close/>
- <move x="10.5" y="55.8"/>
- <line x="0" y="55.8"/>
- <line x="0" y="42.2"/>
- <line x="18.6" y="42.2"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- </shapes>
|