enterprise.xml 257 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289
  1. <shapes name="mxgraph.mscae.enterprise">
  2. <shape aspect="variable" h="99.6" name="AD FS" strokewidth="inherit" w="79.64">
  3. <connections>
  4. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  5. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  6. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  7. <constraint name="E" perimeter="0" x="0.65" y="0.5"/>
  8. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  9. <constraint name="SE" perimeter="0" x="0.995" y="0.99"/>
  10. <constraint name="SW" perimeter="0" x="0" y="1"/>
  11. </connections>
  12. <foreground>
  13. <path>
  14. <move x="0" y="99.6"/>
  15. <line x="0" y="5"/>
  16. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  17. <line x="43.6" y="0"/>
  18. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="5"/>
  19. <line x="48.6" y="43.8"/>
  20. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="44.7" x-axis-rotation="0" y="46.2"/>
  21. <line x="27.2" y="75.3"/>
  22. <line x="7.2" y="75.3"/>
  23. <line x="7.2" y="80.1"/>
  24. <line x="24.3" y="80.1"/>
  25. <line x="21.3" y="85.1"/>
  26. <line x="7.2" y="85.1"/>
  27. <line x="7.2" y="89.8"/>
  28. <line x="18.5" y="89.8"/>
  29. <line x="14.8" y="95.7"/>
  30. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="13.5" x-axis-rotation="0" y="99.6"/>
  31. <close/>
  32. <move x="21" y="99.1"/>
  33. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="19.4" x-axis-rotation="0" y="95.9"/>
  34. <line x="47.5" y="49.1"/>
  35. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="51" x-axis-rotation="0" y="49.1"/>
  36. <line x="79.2" y="96"/>
  37. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="77.6" x-axis-rotation="0" y="99.1"/>
  38. <close/>
  39. <move x="33.9" y="94.7"/>
  40. <line x="46.2" y="94.7"/>
  41. <line x="46.2" y="87.5"/>
  42. <line x="41.4" y="87.5"/>
  43. <line x="41.4" y="82.6"/>
  44. <line x="58.4" y="82.6"/>
  45. <line x="58.4" y="87.5"/>
  46. <line x="53.5" y="87.5"/>
  47. <line x="53.5" y="94.7"/>
  48. <line x="65.6" y="94.7"/>
  49. <line x="65.6" y="87.5"/>
  50. <line x="60.8" y="87.5"/>
  51. <line x="60.8" y="80.1"/>
  52. <line x="51.1" y="80.1"/>
  53. <line x="51.1" y="75.4"/>
  54. <line x="55.9" y="75.4"/>
  55. <line x="55.9" y="68.1"/>
  56. <line x="43.7" y="68.1"/>
  57. <line x="43.7" y="75.4"/>
  58. <line x="48.6" y="75.4"/>
  59. <line x="48.6" y="80.1"/>
  60. <line x="38.9" y="80.1"/>
  61. <line x="38.9" y="87.5"/>
  62. <line x="34" y="87.5"/>
  63. <close/>
  64. <move x="7.4" y="19.5"/>
  65. <line x="41.4" y="19.5"/>
  66. <line x="41.4" y="14.6"/>
  67. <line x="7.4" y="14.6"/>
  68. <close/>
  69. </path>
  70. <fillstroke/>
  71. </foreground>
  72. </shape>
  73. <shape aspect="variable" h="99.63" name="Android Phone" strokewidth="inherit" w="60.79">
  74. <connections>
  75. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  76. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  77. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  78. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  79. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  80. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  81. <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
  82. <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
  83. </connections>
  84. <foreground>
  85. <path>
  86. <move x="2.84" y="99.61"/>
  87. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0.14" x-axis-rotation="0" y="96.11"/>
  88. <line x="0.14" y="3.01"/>
  89. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.84" x-axis-rotation="0" y="0.01"/>
  90. <line x="57.59" y="0.01"/>
  91. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="60.64" x-axis-rotation="0" y="3.01"/>
  92. <line x="60.64" y="96.11"/>
  93. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="57.64" x-axis-rotation="0" y="99.61"/>
  94. <close/>
  95. <move x="30.54" y="97.61"/>
  96. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="34.74" x-axis-rotation="0" y="93.21"/>
  97. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="30.54" x-axis-rotation="0" y="88.71"/>
  98. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="26.04" x-axis-rotation="0" y="93.11"/>
  99. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="30.54" x-axis-rotation="0" y="97.61"/>
  100. <close/>
  101. <move x="54.14" y="86.71"/>
  102. <line x="54.14" y="10.81"/>
  103. <line x="6.54" y="10.81"/>
  104. <line x="6.54" y="86.71"/>
  105. <close/>
  106. <move x="36.74" y="69.81"/>
  107. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="32.54" x-axis-rotation="0" y="69.81"/>
  108. <line x="32.54" y="63.51"/>
  109. <line x="28.14" y="63.51"/>
  110. <line x="28.14" y="69.81"/>
  111. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="24.14" x-axis-rotation="0" y="69.81"/>
  112. <line x="24.14" y="63.51"/>
  113. <line x="22.34" y="63.51"/>
  114. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="19.64" x-axis-rotation="0" y="60.51"/>
  115. <line x="19.64" y="43.61"/>
  116. <line x="41.14" y="43.61"/>
  117. <line x="41.14" y="60.51"/>
  118. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="38.84" x-axis-rotation="0" y="63.61"/>
  119. <line x="36.64" y="63.61"/>
  120. <close/>
  121. <move x="43.34" y="45.41"/>
  122. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="47.64" x-axis-rotation="0" y="45.41"/>
  123. <line x="47.64" y="57.81"/>
  124. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="43.44" x-axis-rotation="0" y="57.81"/>
  125. <close/>
  126. <move x="17.34" y="57.81"/>
  127. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="13.14" x-axis-rotation="0" y="57.81"/>
  128. <line x="13.14" y="45.41"/>
  129. <arc large-arc-flag="0" rx="2.2" ry="2.2" sweep-flag="1" x="17.34" x-axis-rotation="0" y="45.41"/>
  130. <close/>
  131. <move x="18.64" y="41.21"/>
  132. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="24.04" x-axis-rotation="0" y="32.11"/>
  133. <line x="22.14" y="28.81"/>
  134. <arc large-arc-flag="0" rx="0.5" ry="0.5" sweep-flag="1" x="23.14" x-axis-rotation="0" y="28.51"/>
  135. <line x="24.84" y="31.61"/>
  136. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="36.04" x-axis-rotation="0" y="31.61"/>
  137. <line x="37.74" y="28.31"/>
  138. <arc large-arc-flag="0" rx="0.5" ry="0.5" sweep-flag="1" x="38.64" x-axis-rotation="0" y="29.01"/>
  139. <line x="37.04" y="32.01"/>
  140. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="42.14" x-axis-rotation="0" y="41.21"/>
  141. <close/>
  142. <move x="24.84" y="36.81"/>
  143. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="26.14" x-axis-rotation="0" y="35.81"/>
  144. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="25.24" x-axis-rotation="0" y="34.71"/>
  145. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="24.04" x-axis-rotation="0" y="35.81"/>
  146. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="24.84" x-axis-rotation="0" y="36.81"/>
  147. <close/>
  148. <move x="36.34" y="36.81"/>
  149. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="37.04" x-axis-rotation="0" y="35.81"/>
  150. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="36.04" x-axis-rotation="0" y="34.71"/>
  151. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="34.84" x-axis-rotation="0" y="35.81"/>
  152. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="36.34" x-axis-rotation="0" y="36.81"/>
  153. <close/>
  154. <move x="23.84" y="6.61"/>
  155. <line x="37.04" y="6.61"/>
  156. <line x="37.04" y="4.31"/>
  157. <line x="23.84" y="4.31"/>
  158. <close/>
  159. </path>
  160. <fillstroke/>
  161. </foreground>
  162. </shape>
  163. <shape aspect="variable" h="266.1" name="Application" strokewidth="inherit" w="394.8">
  164. <connections>
  165. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  166. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  167. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  168. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  169. <constraint name="NE" perimeter="0" x="1" y="0"/>
  170. <constraint name="NW" perimeter="0" x="0" y="0"/>
  171. <constraint name="SE" perimeter="0" x="1" y="1"/>
  172. <constraint name="SW" perimeter="0" x="0" y="1"/>
  173. </connections>
  174. <foreground>
  175. <path>
  176. <move x="279.2" y="114.7"/>
  177. <curve x1="279.2" x2="276.9" x3="272.3" y1="124.1" y2="131.7" y3="137.3"/>
  178. <curve x1="267.7" x2="261.5" x3="253.8" y1="142.9" y2="145.7" y3="145.7"/>
  179. <curve x1="246.5" x2="240.9" x3="237.1" y1="145.7" y2="142.6" y3="136.3"/>
  180. <line x="236.9" y="136.3"/>
  181. <line x="236.9" y="170"/>
  182. <line x="228" y="170"/>
  183. <line x="228" y="88.5"/>
  184. <line x="236.9" y="88.5"/>
  185. <line x="236.9" y="98.3"/>
  186. <line x="237.1" y="98.3"/>
  187. <curve x1="241.5" x2="247.9" x3="256.4" y1="90.9" y2="87.1" y3="87.1"/>
  188. <curve x1="263.4" x2="268.9" x3="273.1" y1="87.1" y2="89.6" y3="94.5"/>
  189. <curve x1="277.2" x2="279.2" x3="279.2" y1="99.5" y2="106.2" y3="114.7"/>
  190. <close/>
  191. <move x="270.1" y="114.6"/>
  192. <curve x1="270.1" x2="268.7" x3="265.8" y1="108.6" y2="103.8" y3="100.2"/>
  193. <curve x1="263" x2="259.1" x3="254.1" y1="96.6" y2="94.8" y3="94.8"/>
  194. <curve x1="249" x2="244.8" x3="241.6" y1="94.8" y2="96.6" y3="100.1"/>
  195. <curve x1="238.4" x2="236.8" x3="236.8" y1="103.7" y2="108.2" y3="113.7"/>
  196. <line x="236.8" y="121.5"/>
  197. <curve x1="236.8" x2="238.3" x3="241.4" y1="126.2" y2="130.1" y3="133.3"/>
  198. <curve x1="244.5" x2="248.3" x3="252.8" y1="136.5" y2="138" y3="138"/>
  199. <curve x1="258.2" x2="262.4" x3="265.5" y1="138" y2="135.9" y3="131.8"/>
  200. <curve x1="268.6" x2="270.1" x3="270.1" y1="127.7" y2="121.9" y3="114.6"/>
  201. <close/>
  202. <move x="214.1" y="114.7"/>
  203. <curve x1="214.1" x2="211.8" x3="207.2" y1="124.1" y2="131.7" y3="137.3"/>
  204. <curve x1="202.6" x2="196.4" x3="188.7" y1="142.9" y2="145.7" y3="145.7"/>
  205. <curve x1="181.4" x2="175.8" x3="172" y1="145.7" y2="142.6" y3="136.3"/>
  206. <line x="171.8" y="136.3"/>
  207. <line x="171.8" y="170"/>
  208. <line x="162.9" y="170"/>
  209. <line x="162.9" y="88.5"/>
  210. <line x="171.8" y="88.5"/>
  211. <line x="171.8" y="98.3"/>
  212. <line x="172" y="98.3"/>
  213. <curve x1="176.4" x2="182.8" x3="191.3" y1="90.9" y2="87.1" y3="87.1"/>
  214. <curve x1="198.3" x2="203.8" x3="208" y1="87.1" y2="89.6" y3="94.5"/>
  215. <curve x1="212" x2="214.1" x3="214.1" y1="99.5" y2="106.2" y3="114.7"/>
  216. <close/>
  217. <move x="204.9" y="114.6"/>
  218. <curve x1="204.9" x2="203.5" x3="200.6" y1="108.6" y2="103.8" y3="100.2"/>
  219. <curve x1="197.8" x2="193.9" x3="188.9" y1="96.6" y2="94.8" y3="94.8"/>
  220. <curve x1="183.8" x2="179.6" x3="176.4" y1="94.8" y2="96.6" y3="100.1"/>
  221. <curve x1="173.2" x2="171.6" x3="171.6" y1="103.7" y2="108.2" y3="113.7"/>
  222. <line x="171.6" y="121.5"/>
  223. <curve x1="171.6" x2="173.1" x3="176.2" y1="126.2" y2="130.1" y3="133.3"/>
  224. <curve x1="179.3" x2="183.1" x3="187.6" y1="136.5" y2="138" y3="138"/>
  225. <curve x1="193" x2="197.2" x3="200.3" y1="138" y2="135.9" y3="131.8"/>
  226. <curve x1="203.4" x2="204.9" x3="204.9" y1="127.7" y2="121.9" y3="114.6"/>
  227. <close/>
  228. <move x="145.9" y="144.3"/>
  229. <line x="137" y="144.3"/>
  230. <line x="137" y="135.6"/>
  231. <line x="136.8" y="135.6"/>
  232. <curve x1="132.9" x2="127.2" x3="119.6" y1="142.3" y2="145.7" y3="145.7"/>
  233. <curve x1="114.2" x2="109.9" x3="106.7" y1="145.7" y2="144.2" y3="141.3"/>
  234. <curve x1="103.5" x2="101.9" x3="101.9" y1="138.4" y2="134.4" y3="129.5"/>
  235. <curve x1="101.9" x2="108" x3="120.3" y1="119.1" y2="113" y3="111.3"/>
  236. <line x="137" y="109"/>
  237. <curve x1="137" x2="133.2" x3="125.5" y1="99.6" y2="94.8" y3="94.8"/>
  238. <curve x1="118.8" x2="112.7" x3="107.3" y1="94.8" y2="97.1" y3="101.6"/>
  239. <line x="107.3" y="92.4"/>
  240. <curve x1="108.9" x2="111.7" x3="115.7" y1="91.2" y2="90" y3="88.8"/>
  241. <curve x1="119.7" x2="123.2" x3="126.3" y1="87.7" y2="87.1" y3="87.1"/>
  242. <curve x1="139.4" x2="146" x3="146" y1="87.1" y2="94.1" y3="108"/>
  243. <line x="146" y="144.3"/>
  244. <close/>
  245. <move x="137" y="116.1"/>
  246. <line x="123.5" y="118"/>
  247. <curve x1="118.9" x2="115.7" x3="113.8" y1="118.7" y2="119.8" y3="121.3"/>
  248. <curve x1="111.9" x2="111" x3="111" y1="122.8" y2="125.3" y3="128.8"/>
  249. <curve x1="111" x2="112" x3="114" y1="131.6" y2="133.8" y3="135.5"/>
  250. <curve x1="116" x2="118.6" x3="121.7" y1="137.2" y2="138" y3="138"/>
  251. <curve x1="126.1" x2="129.8" x3="132.7" y1="138" y2="136.4" y3="133.3"/>
  252. <curve x1="135.6" x2="137" x3="137" y1="130.2" y2="126.3" y3="121.6"/>
  253. <line x="137" y="116.1"/>
  254. <close/>
  255. <move x="0" y="0"/>
  256. <line x="0" y="266.1"/>
  257. <line x="394.8" y="266.1"/>
  258. <line x="394.8" y="0"/>
  259. <line x="0" y="0"/>
  260. <line x="0" y="0"/>
  261. <close/>
  262. <move x="375.1" y="244.7"/>
  263. <line x="14.6" y="244.7"/>
  264. <line x="14.6" y="55.8"/>
  265. <line x="375.1" y="55.8"/>
  266. <line x="375.1" y="244.7"/>
  267. <close/>
  268. </path>
  269. <fillstroke/>
  270. </foreground>
  271. </shape>
  272. <shape aspect="variable" h="78.8" name="Application blank" strokewidth="inherit" w="91.4">
  273. <connections>
  274. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  275. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  276. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  277. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  278. <constraint name="NE" perimeter="0" x="1" y="0"/>
  279. <constraint name="NW" perimeter="0" x="0" y="0"/>
  280. <constraint name="SE" perimeter="0" x="1" y="1"/>
  281. <constraint name="SW" perimeter="0" x="0" y="1"/>
  282. </connections>
  283. <foreground>
  284. <path>
  285. <move x="0" y="78.8"/>
  286. <line x="0" y="0"/>
  287. <line x="91.4" y="0"/>
  288. <line x="91.4" y="78.8"/>
  289. <close/>
  290. <move x="4.1" y="74.7"/>
  291. <line x="87.3" y="74.7"/>
  292. <line x="87.3" y="20.7"/>
  293. <line x="4.1" y="20.7"/>
  294. <close/>
  295. </path>
  296. <fillstroke/>
  297. </foreground>
  298. </shape>
  299. <shape aspect="variable" h="88.4" name="Application Server" strokewidth="inherit" w="75.56">
  300. <connections>
  301. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  302. <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
  303. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  304. <constraint name="E" perimeter="0" x="0.57" y="0.5"/>
  305. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  306. <constraint name="SE1" perimeter="0" x="1" y="0.99"/>
  307. <constraint name="SE2" perimeter="0" x="1" y="0.62"/>
  308. <constraint name="SW" perimeter="0" x="0" y="1"/>
  309. </connections>
  310. <foreground>
  311. <path>
  312. <move x="0.06" y="88.4"/>
  313. <line x="0.06" y="4.6"/>
  314. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="1" x="4.16" x-axis-rotation="0" y="0"/>
  315. <line x="39.41" y="0"/>
  316. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="1" x="43.16" x-axis-rotation="0" y="4.6"/>
  317. <line x="43.16" y="51.6"/>
  318. <line x="23.76" y="51.6"/>
  319. <line x="23.76" y="66.8"/>
  320. <line x="6.56" y="66.8"/>
  321. <line x="6.56" y="71.3"/>
  322. <line x="23.76" y="71.3"/>
  323. <line x="23.76" y="75.4"/>
  324. <line x="6.56" y="75.4"/>
  325. <line x="6.56" y="79.8"/>
  326. <line x="23.76" y="79.8"/>
  327. <line x="23.76" y="88.4"/>
  328. <close/>
  329. <move x="6.46" y="17.2"/>
  330. <line x="36.66" y="17.2"/>
  331. <line x="36.66" y="12.8"/>
  332. <line x="6.46" y="12.9"/>
  333. <close/>
  334. <move x="26.96" y="55"/>
  335. <line x="75.56" y="55"/>
  336. <line x="75.56" y="87.3"/>
  337. <line x="26.96" y="87.3"/>
  338. <close/>
  339. <move x="29.56" y="64.4"/>
  340. <line x="29.56" y="84.6"/>
  341. <line x="40.46" y="84.6"/>
  342. <line x="40.46" y="64.4"/>
  343. <close/>
  344. <move x="43.26" y="84.6"/>
  345. <line x="72.86" y="84.6"/>
  346. <line x="72.86" y="64.4"/>
  347. <line x="43.26" y="64.4"/>
  348. <close/>
  349. <move x="51.26" y="81.9"/>
  350. <line x="51.26" y="79.3"/>
  351. <line x="65.96" y="79.3"/>
  352. <line x="65.96" y="81.85"/>
  353. <close/>
  354. <move x="65.96" y="77.8"/>
  355. <line x="51.26" y="77.8"/>
  356. <line x="51.26" y="75.2"/>
  357. <line x="65.96" y="75.2"/>
  358. <close/>
  359. <move x="51.26" y="73.8"/>
  360. <line x="51.26" y="71.1"/>
  361. <line x="65.96" y="71.1"/>
  362. <line x="65.96" y="73.8"/>
  363. <close/>
  364. <move x="65.96" y="69.8"/>
  365. <line x="51.26" y="69.8"/>
  366. <line x="51.26" y="67.1"/>
  367. <line x="65.96" y="67.1"/>
  368. <close/>
  369. </path>
  370. <fillstroke/>
  371. </foreground>
  372. </shape>
  373. <shape aspect="variable" h="352" name="Application Server2" strokewidth="inherit" w="303.8">
  374. <connections>
  375. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  376. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  377. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  378. <constraint name="E" perimeter="0" x="0.57" y="0.5"/>
  379. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  380. <constraint name="SE1" perimeter="0" x="1" y="1"/>
  381. <constraint name="SE2" perimeter="0" x="1" y="0.62"/>
  382. <constraint name="SW" perimeter="0" x="0" y="1"/>
  383. </connections>
  384. <foreground>
  385. <path>
  386. <move x="277.2" y="264.4"/>
  387. <line x="212.9" y="264.4"/>
  388. <line x="212.9" y="273"/>
  389. <line x="277.2" y="273"/>
  390. <close/>
  391. <move x="277.2" y="281.5"/>
  392. <line x="212.9" y="281.5"/>
  393. <line x="212.9" y="290.1"/>
  394. <line x="277.2" y="290.1"/>
  395. <close/>
  396. <move x="277.2" y="298.7"/>
  397. <line x="212.9" y="298.7"/>
  398. <line x="212.9" y="307.3"/>
  399. <line x="277.2" y="307.3"/>
  400. <close/>
  401. <move x="277.2" y="315.9"/>
  402. <line x="212.9" y="315.9"/>
  403. <line x="212.9" y="324.5"/>
  404. <line x="277.2" y="324.5"/>
  405. <close/>
  406. <move x="191.4" y="264.4"/>
  407. <line x="131.3" y="264.4"/>
  408. <line x="131.3" y="324.5"/>
  409. <line x="191.4" y="324.5"/>
  410. <close/>
  411. <move x="106.4" y="218.9"/>
  412. <line x="106.4" y="351.9"/>
  413. <line x="303.8" y="351.9"/>
  414. <line x="303.8" y="218.9"/>
  415. <line x="106.4" y="218.9"/>
  416. <close/>
  417. <move x="294.4" y="341.6"/>
  418. <line x="114.2" y="341.6"/>
  419. <line x="114.2" y="247.2"/>
  420. <line x="294.5" y="247.2"/>
  421. <line x="294.5" y="341.6"/>
  422. <close/>
  423. <move x="154.5" y="0"/>
  424. <line x="17.2" y="0"/>
  425. <curve x1="7.8" x2="0" x3="0" y1="0" y2="7.7" y3="17.2"/>
  426. <line x="0" y="352"/>
  427. <line x="94.4" y="352"/>
  428. <line x="94.4" y="317.7"/>
  429. <line x="25.7" y="317.7"/>
  430. <line x="25.7" y="300.5"/>
  431. <line x="94.4" y="300.5"/>
  432. <line x="94.4" y="283.3"/>
  433. <line x="25.7" y="283.3"/>
  434. <line x="25.7" y="266.1"/>
  435. <line x="94.4" y="266.1"/>
  436. <line x="94.4" y="214.6"/>
  437. <line x="94.4" y="206"/>
  438. <line x="103" y="206"/>
  439. <line x="154.5" y="206"/>
  440. <curve x1="159.7" x2="163.1" x3="171.7" y1="206" y2="206" y3="206"/>
  441. <line x="171.7" y="17.2"/>
  442. <curve x1="171.7" x2="163.9" x3="154.5" y1="7.7" y2="0" y3="0"/>
  443. <close/>
  444. <move x="145.9" y="68.7"/>
  445. <line x="25.7" y="68.7"/>
  446. <line x="25.7" y="51.5"/>
  447. <line x="145.9" y="51.5"/>
  448. <curve x1="145.9" x2="145.9" x3="145.9" y1="51.5" y2="68.7" y3="68.7"/>
  449. <close/>
  450. </path>
  451. <fillstroke/>
  452. </foreground>
  453. </shape>
  454. <shape aspect="variable" h="67.3" name="App generic" strokewidth="inherit" w="99.6">
  455. <connections>
  456. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  457. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  458. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  459. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  460. <constraint name="NE" perimeter="0" x="1" y="0"/>
  461. <constraint name="NW" perimeter="0" x="0" y="0"/>
  462. <constraint name="SE" perimeter="0" x="1" y="1"/>
  463. <constraint name="SW" perimeter="0" x="0" y="1"/>
  464. </connections>
  465. <foreground>
  466. <path>
  467. <move x="0" y="67.3"/>
  468. <line x="0" y="0"/>
  469. <line x="99.6" y="0"/>
  470. <line x="99.6" y="67.3"/>
  471. <close/>
  472. <move x="4.3" y="62.9"/>
  473. <line x="95.3" y="62.9"/>
  474. <line x="95.3" y="15.2"/>
  475. <line x="4.3" y="15.2"/>
  476. <close/>
  477. <move x="13.1" y="54.2"/>
  478. <line x="13.1" y="23.9"/>
  479. <line x="43.4" y="23.9"/>
  480. <line x="43.4" y="54.2"/>
  481. <close/>
  482. <move x="54.1" y="54.2"/>
  483. <line x="54.1" y="49.9"/>
  484. <line x="86.6" y="49.9"/>
  485. <line x="86.6" y="54.2"/>
  486. <close/>
  487. <move x="86.6" y="45.5"/>
  488. <line x="54.1" y="45.5"/>
  489. <line x="54.1" y="41.2"/>
  490. <line x="86.6" y="41.2"/>
  491. <close/>
  492. <move x="54.1" y="36.9"/>
  493. <line x="54.1" y="32.5"/>
  494. <line x="86.6" y="32.5"/>
  495. <line x="86.6" y="36.9"/>
  496. <close/>
  497. <move x="86.6" y="28.2"/>
  498. <line x="54.1" y="28.2"/>
  499. <line x="54.1" y="23.9"/>
  500. <line x="86.6" y="23.9"/>
  501. <close/>
  502. </path>
  503. <fillstroke/>
  504. </foreground>
  505. </shape>
  506. <shape aspect="variable" h="99.6" name="Backup local" strokewidth="inherit" w="97.6">
  507. <connections>
  508. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  509. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  510. <constraint name="W" perimeter="0" x="0.19" y="0.5"/>
  511. <constraint name="E" perimeter="0" x="0.81" y="0.5"/>
  512. <constraint name="NE" perimeter="0" x="0.7" y="0.21"/>
  513. <constraint name="NW" perimeter="0" x="0.3" y="0.21"/>
  514. <constraint name="SE" perimeter="0" x="1" y="1"/>
  515. <constraint name="SW" perimeter="0" x="0" y="1"/>
  516. </connections>
  517. <foreground>
  518. <path>
  519. <move x="0" y="99.6"/>
  520. <line x="0" y="78.8"/>
  521. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6.8" x-axis-rotation="0" y="72.8"/>
  522. <line x="90.8" y="72.8"/>
  523. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="97.6" x-axis-rotation="0" y="78.8"/>
  524. <line x="97.6" y="99.6"/>
  525. <close/>
  526. <move x="89.4" y="84.4"/>
  527. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="92.6" x-axis-rotation="0" y="80.8"/>
  528. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="89.1" x-axis-rotation="0" y="77.7"/>
  529. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="86.1" x-axis-rotation="0" y="80.3"/>
  530. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="89.6" x-axis-rotation="0" y="84.4"/>
  531. <close/>
  532. <move x="92.7" y="68.5"/>
  533. <line x="5" y="68.5"/>
  534. <line x="18.7" y="49.8"/>
  535. <line x="40.5" y="49.7"/>
  536. <line x="48.8" y="58"/>
  537. <line x="57.1" y="49.7"/>
  538. <line x="78.8" y="49.7"/>
  539. <close/>
  540. <move x="68.4" y="32.6"/>
  541. <line x="48.8" y="52"/>
  542. <line x="29.1" y="32.6"/>
  543. <line x="29.1" y="20.6"/>
  544. <line x="43.7" y="35.2"/>
  545. <line x="43.7" y="0"/>
  546. <line x="54" y="0"/>
  547. <line x="54" y="35.1"/>
  548. <line x="68.4" y="20.6"/>
  549. <close/>
  550. </path>
  551. <fillstroke/>
  552. </foreground>
  553. </shape>
  554. <shape aspect="variable" h="82.45" name="Backup online" strokewidth="inherit" w="101.52">
  555. <connections>
  556. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  557. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  558. <constraint name="W" perimeter="0" x="0.005" y="0.5"/>
  559. <constraint name="E" perimeter="0" x="0.985" y="0.5"/>
  560. <constraint name="NE" perimeter="0" x="0.85" y="0.17"/>
  561. <constraint name="NW" perimeter="0" x="0.27" y="0.24"/>
  562. <constraint name="SE" perimeter="0" x="0.86" y="0.705"/>
  563. <constraint name="SW" perimeter="0" x="0.14" y="0.705"/>
  564. </connections>
  565. <foreground>
  566. <path>
  567. <move x="35.78" y="58.25"/>
  568. <line x="14.68" y="58.35"/>
  569. <arc large-arc-flag="0" rx="15.5" ry="15.5" sweep-flag="1" x="0.58" x-axis-rotation="0" y="41.85"/>
  570. <arc large-arc-flag="0" rx="15.5" ry="15.5" sweep-flag="1" x="17.38" x-axis-rotation="0" y="26.15"/>
  571. <arc large-arc-flag="0" rx="13.5" ry="13.5" sweep-flag="1" x="32.58" x-axis-rotation="0" y="19.95"/>
  572. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="43.98" x-axis-rotation="0" y="1.75"/>
  573. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.38" x-axis-rotation="0" y="11.65"/>
  574. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="86.58" x-axis-rotation="0" y="14.25"/>
  575. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="91.58" x-axis-rotation="0" y="30.15"/>
  576. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="99.48" x-axis-rotation="0" y="47.85"/>
  577. <arc large-arc-flag="0" rx="14.5" ry="14.5" sweep-flag="1" x="87.18" x-axis-rotation="0" y="58.25"/>
  578. <line x="64.38" y="58.25"/>
  579. <line x="50.08" y="44.05"/>
  580. <close/>
  581. <move x="37.28" y="61.65"/>
  582. <line x="50.08" y="48.85"/>
  583. <line x="63.08" y="61.45"/>
  584. <line x="63.08" y="69.65"/>
  585. <line x="53.38" y="59.85"/>
  586. <line x="53.38" y="82.45"/>
  587. <line x="46.98" y="82.45"/>
  588. <line x="46.98" y="59.85"/>
  589. <line x="37.28" y="69.65"/>
  590. <close/>
  591. </path>
  592. <fillstroke/>
  593. </foreground>
  594. </shape>
  595. <shape aspect="variable" h="334.8" name="Calendar" strokewidth="inherit" w="412">
  596. <connections>
  597. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  598. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  599. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  600. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  601. <constraint name="NE" perimeter="0" x="1" y="0"/>
  602. <constraint name="NW" perimeter="0" x="0" y="0"/>
  603. <constraint name="SE" perimeter="0" x="1" y="1"/>
  604. <constraint name="SW" perimeter="0" x="0" y="1"/>
  605. </connections>
  606. <foreground>
  607. <path>
  608. <move x="0" y="0"/>
  609. <line x="0" y="334.8"/>
  610. <line x="412" y="334.8"/>
  611. <line x="412" y="0"/>
  612. <curve x1="412" x2="0" x3="0" y1="0" y2="0" y3="0"/>
  613. <close/>
  614. <move x="394.8" y="317.6"/>
  615. <line x="17.2" y="317.6"/>
  616. <line x="17.2" y="60.1"/>
  617. <line x="394.9" y="60.1"/>
  618. <line x="394.9" y="317.6"/>
  619. <close/>
  620. <move x="334.7" y="77.3"/>
  621. <line x="377.6" y="77.3"/>
  622. <line x="377.6" y="120.2"/>
  623. <line x="334.7" y="120.2"/>
  624. <close/>
  625. <move x="334.7" y="137.4"/>
  626. <line x="377.6" y="137.4"/>
  627. <line x="377.6" y="180.3"/>
  628. <line x="334.7" y="180.3"/>
  629. <close/>
  630. <move x="334.7" y="197.4"/>
  631. <line x="377.6" y="197.4"/>
  632. <line x="377.6" y="240.3"/>
  633. <line x="334.7" y="240.3"/>
  634. <close/>
  635. <move x="274.7" y="77.3"/>
  636. <line x="317.6" y="77.3"/>
  637. <line x="317.6" y="120.2"/>
  638. <line x="274.7" y="120.2"/>
  639. <close/>
  640. <move x="274.7" y="137.4"/>
  641. <line x="317.6" y="137.4"/>
  642. <line x="317.6" y="180.3"/>
  643. <line x="274.7" y="180.3"/>
  644. <close/>
  645. <move x="274.7" y="197.4"/>
  646. <line x="317.6" y="197.4"/>
  647. <line x="317.6" y="240.3"/>
  648. <line x="274.7" y="240.3"/>
  649. <close/>
  650. <move x="274.7" y="257.5"/>
  651. <line x="317.6" y="257.5"/>
  652. <line x="317.6" y="300.4"/>
  653. <line x="274.7" y="300.4"/>
  654. <close/>
  655. <move x="214.6" y="77.3"/>
  656. <line x="257.5" y="77.3"/>
  657. <line x="257.5" y="120.2"/>
  658. <line x="214.6" y="120.2"/>
  659. <close/>
  660. <move x="214.6" y="137.4"/>
  661. <line x="257.5" y="137.4"/>
  662. <line x="257.5" y="180.3"/>
  663. <line x="214.6" y="180.3"/>
  664. <close/>
  665. <move x="214.6" y="197.4"/>
  666. <line x="257.5" y="197.4"/>
  667. <line x="257.5" y="240.3"/>
  668. <line x="214.6" y="240.3"/>
  669. <close/>
  670. <move x="214.6" y="257.5"/>
  671. <line x="257.5" y="257.5"/>
  672. <line x="257.5" y="300.4"/>
  673. <line x="214.6" y="300.4"/>
  674. <close/>
  675. <move x="154.5" y="77.3"/>
  676. <line x="197.4" y="77.3"/>
  677. <line x="197.4" y="120.2"/>
  678. <line x="154.5" y="120.2"/>
  679. <close/>
  680. <move x="154.5" y="137.4"/>
  681. <line x="197.4" y="137.4"/>
  682. <line x="197.4" y="180.3"/>
  683. <line x="154.5" y="180.3"/>
  684. <close/>
  685. <move x="154.5" y="197.4"/>
  686. <line x="197.4" y="197.4"/>
  687. <line x="197.4" y="240.3"/>
  688. <line x="154.5" y="240.3"/>
  689. <close/>
  690. <move x="154.5" y="257.5"/>
  691. <line x="197.4" y="257.5"/>
  692. <line x="197.4" y="300.4"/>
  693. <line x="154.5" y="300.4"/>
  694. <close/>
  695. <move x="94.4" y="77.3"/>
  696. <line x="137.3" y="77.3"/>
  697. <line x="137.3" y="120.2"/>
  698. <line x="94.4" y="120.2"/>
  699. <close/>
  700. <move x="94.4" y="137.4"/>
  701. <line x="137.3" y="137.4"/>
  702. <line x="137.3" y="180.3"/>
  703. <line x="94.4" y="180.3"/>
  704. <close/>
  705. <move x="94.4" y="197.4"/>
  706. <line x="137.3" y="197.4"/>
  707. <line x="137.3" y="240.3"/>
  708. <line x="94.4" y="240.3"/>
  709. <close/>
  710. <move x="94.4" y="257.5"/>
  711. <line x="137.3" y="257.5"/>
  712. <line x="137.3" y="300.4"/>
  713. <line x="94.4" y="300.4"/>
  714. <close/>
  715. <move x="34.3" y="137.4"/>
  716. <line x="77.2" y="137.4"/>
  717. <line x="77.2" y="180.3"/>
  718. <line x="34.3" y="180.3"/>
  719. <close/>
  720. <move x="34.3" y="197.4"/>
  721. <line x="77.2" y="197.4"/>
  722. <line x="77.2" y="240.3"/>
  723. <line x="34.3" y="240.3"/>
  724. <close/>
  725. <move x="34.3" y="257.5"/>
  726. <line x="77.2" y="257.5"/>
  727. <line x="77.2" y="300.4"/>
  728. <line x="34.3" y="300.4"/>
  729. <close/>
  730. <move x="0" y="0"/>
  731. <line x="0" y="334.8"/>
  732. <line x="412" y="334.8"/>
  733. <line x="412" y="0"/>
  734. <curve x1="412" x2="0" x3="0" y1="0" y2="0" y3="0"/>
  735. <close/>
  736. <move x="394.8" y="317.6"/>
  737. <line x="17.2" y="317.6"/>
  738. <line x="17.2" y="60.1"/>
  739. <line x="394.9" y="60.1"/>
  740. <line x="394.9" y="317.6"/>
  741. <close/>
  742. </path>
  743. <fillstroke/>
  744. </foreground>
  745. </shape>
  746. <shape aspect="variable" h="63.42" name="Client Application" strokewidth="inherit" w="99.85">
  747. <connections>
  748. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  749. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  750. <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
  751. <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
  752. <constraint name="NE" perimeter="0" x="0.91" y="0.03"/>
  753. <constraint name="NW" perimeter="0" x="0.1" y="0.03"/>
  754. <constraint name="SE" perimeter="0" x="0.99" y="0.98"/>
  755. <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
  756. </connections>
  757. <foreground>
  758. <path>
  759. <move x="4.24" y="63.4"/>
  760. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0.24" x-axis-rotation="0" y="58.6"/>
  761. <line x="8.24" y="49.7"/>
  762. <line x="8.24" y="5.8"/>
  763. <arc large-arc-flag="0" rx="5.5" ry="7" sweep-flag="1" x="13.94" x-axis-rotation="0" y="0.2"/>
  764. <line x="88.94" y="0.2"/>
  765. <arc large-arc-flag="0" rx="5.5" ry="7" sweep-flag="1" x="91.84" x-axis-rotation="0" y="5.8"/>
  766. <line x="91.84" y="49.6"/>
  767. <line x="99.74" y="59"/>
  768. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="95.94" x-axis-rotation="0" y="63.4"/>
  769. <close/>
  770. <move x="40.44" y="58.8"/>
  771. <arc large-arc-flag="0" rx="3" ry="1" sweep-flag="0" x="42.14" x-axis-rotation="0" y="59.8"/>
  772. <line x="58.14" y="59.7"/>
  773. <arc large-arc-flag="0" rx="3" ry="1" sweep-flag="0" x="59.34" x-axis-rotation="0" y="58.8"/>
  774. <line x="57.54" y="56"/>
  775. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="55.74" x-axis-rotation="0" y="55.4"/>
  776. <line x="44.14" y="55.4"/>
  777. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42.24" x-axis-rotation="0" y="56.1"/>
  778. <close/>
  779. <move x="11.34" y="49.2"/>
  780. <line x="88.74" y="49.2"/>
  781. <line x="88.74" y="5.3"/>
  782. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="86.94" x-axis-rotation="0" y="3.4"/>
  783. <line x="13.94" y="3.4"/>
  784. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="11.34" x-axis-rotation="0" y="5.8"/>
  785. <close/>
  786. <move x="22.44" y="46"/>
  787. <line x="22.44" y="8.2"/>
  788. <line x="79.14" y="8.2"/>
  789. <line x="79.14" y="46"/>
  790. <close/>
  791. <move x="25.54" y="42.8"/>
  792. <line x="38.24" y="42.8"/>
  793. <line x="38.24" y="19.3"/>
  794. <line x="25.54" y="19.3"/>
  795. <close/>
  796. <move x="41.34" y="19.3"/>
  797. <line x="41.34" y="43"/>
  798. <line x="76.14" y="43"/>
  799. <line x="76.14" y="19.3"/>
  800. <close/>
  801. <move x="50.84" y="39.7"/>
  802. <line x="50.84" y="36.6"/>
  803. <line x="68.04" y="36.6"/>
  804. <line x="68.04" y="39.7"/>
  805. <close/>
  806. <move x="68.04" y="34.8"/>
  807. <line x="50.84" y="34.8"/>
  808. <line x="50.84" y="32"/>
  809. <line x="68.04" y="32"/>
  810. <close/>
  811. <move x="50.84" y="30.2"/>
  812. <line x="50.84" y="27.2"/>
  813. <line x="68.04" y="27.2"/>
  814. <line x="68.04" y="30.2"/>
  815. <close/>
  816. <move x="68.04" y="25.4"/>
  817. <line x="50.84" y="25.4"/>
  818. <line x="50.84" y="22.4"/>
  819. <line x="68.04" y="22.4"/>
  820. <close/>
  821. </path>
  822. <fillstroke/>
  823. </foreground>
  824. </shape>
  825. <shape aspect="variable" h="99.6" name="Cluster Server" strokewidth="inherit" w="80.48">
  826. <connections>
  827. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  828. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  829. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  830. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  831. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  832. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  833. <constraint name="SE" perimeter="0" x="1" y="0.79"/>
  834. <constraint name="SW" perimeter="0" x="0" y="0.79"/>
  835. </connections>
  836. <foreground>
  837. <path>
  838. <move x="0.08" y="78.5"/>
  839. <line x="0.08" y="3.8"/>
  840. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="3.28" x-axis-rotation="0" y="0"/>
  841. <line x="34.28" y="0"/>
  842. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="38.28" x-axis-rotation="0" y="3.8"/>
  843. <line x="38.28" y="17.2"/>
  844. <line x="23.98" y="17.2"/>
  845. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="17.38" x-axis-rotation="0" y="23.8"/>
  846. <line x="17.38" y="59.3"/>
  847. <line x="5.78" y="59.3"/>
  848. <line x="5.78" y="63.2"/>
  849. <line x="17.38" y="63.2"/>
  850. <line x="17.38" y="67.1"/>
  851. <line x="5.78" y="67.1"/>
  852. <line x="5.78" y="70.8"/>
  853. <line x="17.38" y="70.8"/>
  854. <line x="17.38" y="78.5"/>
  855. <close/>
  856. <move x="21.18" y="24.8"/>
  857. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="24.28" x-axis-rotation="0" y="21.1"/>
  858. <line x="55.28" y="21.1"/>
  859. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="59.48" x-axis-rotation="0" y="24.8"/>
  860. <line x="59.48" y="99.6"/>
  861. <line x="21.18" y="99.6"/>
  862. <close/>
  863. <move x="5.78" y="15.2"/>
  864. <line x="32.58" y="15.18"/>
  865. <line x="32.58" y="11.5"/>
  866. <line x="5.78" y="11.5"/>
  867. <close/>
  868. <move x="26.98" y="32.7"/>
  869. <line x="26.98" y="36.4"/>
  870. <line x="53.58" y="36.4"/>
  871. <line x="53.58" y="32.7"/>
  872. <close/>
  873. <move x="53.78" y="80.5"/>
  874. <line x="26.78" y="80.5"/>
  875. <line x="26.78" y="84.3"/>
  876. <line x="53.78" y="84.3"/>
  877. <close/>
  878. <move x="26.78" y="88.1"/>
  879. <line x="26.78" y="92"/>
  880. <line x="53.78" y="92"/>
  881. <line x="53.78" y="87.6"/>
  882. <close/>
  883. <move x="80.48" y="78.5"/>
  884. <line x="63.28" y="78.5"/>
  885. <line x="63.28" y="70.8"/>
  886. <line x="74.68" y="70.8"/>
  887. <line x="74.68" y="67.1"/>
  888. <line x="63.28" y="67.1"/>
  889. <line x="63.28" y="63.2"/>
  890. <line x="74.78" y="63.2"/>
  891. <line x="74.78" y="59.3"/>
  892. <line x="63.28" y="59.3"/>
  893. <line x="63.28" y="23.8"/>
  894. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="55.28" x-axis-rotation="0" y="17.2"/>
  895. <line x="42.28" y="17.2"/>
  896. <line x="42.28" y="3.8"/>
  897. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="45.98" x-axis-rotation="0" y="0"/>
  898. <line x="77.03" y="0.3"/>
  899. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="80.48" x-axis-rotation="0" y="3.8"/>
  900. <close/>
  901. <move x="74.68" y="15.3"/>
  902. <line x="74.68" y="11.5"/>
  903. <line x="47.78" y="11.5"/>
  904. <line x="47.78" y="15.3"/>
  905. <close/>
  906. </path>
  907. <fillstroke/>
  908. </foreground>
  909. </shape>
  910. <shape aspect="variable" h="267.7" name="Code File" strokewidth="inherit" w="258.3">
  911. <connections>
  912. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  913. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  914. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  915. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  916. <constraint name="NE" perimeter="0" x="0.9" y="0.1"/>
  917. <constraint name="NW" perimeter="0" x="0.04" y="0.04"/>
  918. <constraint name="SE" perimeter="0" x="0.96" y="0.96"/>
  919. <constraint name="SW" perimeter="0" x="0.04" y="0.96"/>
  920. </connections>
  921. <foreground>
  922. <path>
  923. <move x="214.9" y="167"/>
  924. <line x="206.9" y="167"/>
  925. <curve x1="213.3" x2="216.5" x3="216.5" y1="158.9" y2="149.8" y3="139.7"/>
  926. <curve x1="216.5" x2="213.3" x3="206.9" y1="129.7" y2="120.5" y3="112"/>
  927. <line x="215" y="112"/>
  928. <curve x1="221.8" x2="225.1" x3="225.1" y1="120" y2="129.2" y3="139.7"/>
  929. <curve x1="225.1" x2="221.7" x3="214.9" y1="150.3" y2="159.5" y3="167"/>
  930. <close/>
  931. <move x="188.2" y="167"/>
  932. <line x="180.1" y="167"/>
  933. <curve x1="173.4" x2="170" x3="170" y1="159.6" y2="150.5" y3="139.7"/>
  934. <curve x1="170" x2="173.4" x3="180.1" y1="129.3" y2="120" y3="112"/>
  935. <line x="188.1" y="112"/>
  936. <curve x1="181.8" x2="178.6" x3="178.6" y1="120.4" y2="129.6" y3="139.7"/>
  937. <curve x1="178.6" x2="181.8" x3="188.2" y1="149.8" y2="158.8" y3="167"/>
  938. <close/>
  939. <move x="162.8" y="155.6"/>
  940. <curve x1="160.6" x2="157.4" x3="153.1" y1="156.9" y2="157.5" y3="157.5"/>
  941. <curve x1="148.2" x2="144.2" x3="141.2" y1="157.5" y2="156" y3="153"/>
  942. <curve x1="138.2" x2="136.6" x3="136.6" y1="150" y2="146.2" y3="141.5"/>
  943. <curve x1="136.6" x2="138.2" x3="141.5" y1="136.1" y2="131.8" y3="128.6"/>
  944. <curve x1="144.8" x2="149.1" x3="154.6" y1="125.5" y2="123.9" y3="123.9"/>
  945. <curve x1="158.4" x2="161.1" x3="162.8" y1="123.9" y2="124.4" y3="125.4"/>
  946. <line x="162.8" y="133.8"/>
  947. <curve x1="160.7" x2="158.4" x3="155.9" y1="132.3" y2="131.5" y3="131.5"/>
  948. <curve x1="153.1" x2="150.8" x3="149.2" y1="131.5" y2="132.3" y3="134"/>
  949. <curve x1="147.6" x2="146.7" x3="146.7" y1="135.7" y2="137.9" y3="140.9"/>
  950. <curve x1="146.7" x2="147.5" x3="149.1" y1="143.7" y2="146" y3="147.6"/>
  951. <curve x1="150.7" x2="152.9" x3="155.6" y1="149.2" y2="150" y3="150"/>
  952. <curve x1="158.1" x2="160.5" x3="162.8" y1="150" y2="149.2" y3="147.7"/>
  953. <line x="162.8" y="155.6"/>
  954. <close/>
  955. <move x="130.7" y="156.8"/>
  956. <line x="120.9" y="156.8"/>
  957. <line x="120.9" y="139"/>
  958. <curve x1="120.9" x2="119.1" x3="115.6" y1="134" y2="131.6" y3="131.6"/>
  959. <curve x1="113.9" x2="112.5" x3="111.4" y1="131.6" y2="132.3" y3="133.6"/>
  960. <curve x1="110.3" x2="109.7" x3="109.7" y1="134.9" y2="136.6" y3="138.6"/>
  961. <line x="109.7" y="156.9"/>
  962. <line x="99.8" y="156.9"/>
  963. <line x="99.8" y="124.9"/>
  964. <line x="109.7" y="124.9"/>
  965. <line x="109.7" y="130"/>
  966. <line x="109.8" y="130"/>
  967. <curve x1="112.2" x2="115.6" x3="120.1" y1="126.1" y2="124.2" y3="124.2"/>
  968. <curve x1="127.2" x2="130.7" x3="130.7" y1="124.2" y2="128.6" y3="137.4"/>
  969. <line x="130.7" y="156.8"/>
  970. <close/>
  971. <move x="91.5" y="156.8"/>
  972. <line x="81.7" y="156.8"/>
  973. <line x="81.7" y="151.9"/>
  974. <line x="81.5" y="151.9"/>
  975. <curve x1="79.1" x2="75.8" x3="71.7" y1="155.7" y2="157.6" y3="157.6"/>
  976. <curve x1="64.3" x2="60.6" x3="60.6" y1="157.6" y2="153.1" y3="144.1"/>
  977. <line x="60.6" y="124.8"/>
  978. <line x="70.4" y="124.8"/>
  979. <line x="70.4" y="143.2"/>
  980. <curve x1="70.4" x2="72.2" x3="75.8" y1="147.7" y2="150" y3="150"/>
  981. <curve x1="77.6" x2="79" x3="80.1" y1="150" y2="149.4" y3="148.1"/>
  982. <curve x1="81.2" x2="81.7" x3="81.7" y1="146.9" y2="145.2" y3="143.1"/>
  983. <line x="81.7" y="124.8"/>
  984. <line x="91.5" y="124.8"/>
  985. <line x="91.5" y="156.8"/>
  986. <close/>
  987. <move x="57.4" y="117"/>
  988. <curve x1="56.1" x2="54.9" x3="53.7" y1="116.5" y2="116.2" y3="116.2"/>
  989. <curve x1="50.5" x2="48.9" x3="48.9" y1="116.2" y2="117.9" y3="121.4"/>
  990. <line x="48.9" y="124.8"/>
  991. <line x="56.2" y="124.8"/>
  992. <line x="56.2" y="132.1"/>
  993. <line x="48.9" y="132.1"/>
  994. <line x="48.9" y="156.8"/>
  995. <line x="39.1" y="156.8"/>
  996. <line x="39.1" y="132.1"/>
  997. <line x="33.7" y="132.1"/>
  998. <line x="33.7" y="124.8"/>
  999. <line x="39.1" y="124.8"/>
  1000. <line x="39.1" y="120.8"/>
  1001. <curve x1="39.1" x2="40.3" x3="42.7" y1="117.2" y2="114.2" y3="112"/>
  1002. <curve x1="45.1" x2="48.3" x3="52.4" y1="109.8" y2="108.7" y3="108.7"/>
  1003. <curve x1="54.4" x2="56.1" x3="57.4" y1="108.7" y2="108.9" y3="109.3"/>
  1004. <line x="57.4" y="117"/>
  1005. <close/>
  1006. <move x="204.4" y="0"/>
  1007. <line x="35.9" y="0"/>
  1008. <curve x1="16.2" x2="0" x3="0" y1="0" y2="16.3" y3="35.9"/>
  1009. <line x="0" y="231.8"/>
  1010. <curve x1="0" x2="16.3" x3="35.9" y1="251.5" y2="267.7" y3="267.7"/>
  1011. <line x="222.4" y="267.7"/>
  1012. <curve x1="242.1" x2="258.3" x3="258.3" y1="267.7" y2="251.4" y3="231.8"/>
  1013. <line x="258.3" y="53"/>
  1014. <line x="204.4" y="0"/>
  1015. <close/>
  1016. <move x="236.1" y="231.8"/>
  1017. <curve x1="236.1" x2="230.1" x3="222.4" y1="239.5" y2="245.5" y3="245.5"/>
  1018. <line x="35.9" y="245.5"/>
  1019. <curve x1="28.2" x2="22.2" x3="22.2" y1="245.5" y2="239.5" y3="231.8"/>
  1020. <line x="22.2" y="35.9"/>
  1021. <curve x1="22.2" x2="28.2" x3="35.9" y1="28.2" y2="22.2" y3="22.2"/>
  1022. <line x="193.3" y="22.2"/>
  1023. <line x="193.3" y="65"/>
  1024. <line x="236.1" y="65"/>
  1025. <line x="236.1" y="231.8"/>
  1026. <line x="236.1" y="231.8"/>
  1027. <close/>
  1028. </path>
  1029. <fillstroke/>
  1030. </foreground>
  1031. </shape>
  1032. <shape aspect="variable" h="67.28" name="Connectors" strokewidth="inherit" w="99.53">
  1033. <connections>
  1034. <constraint name="N" perimeter="0" x="0.5" y="0.03"/>
  1035. <constraint name="S" perimeter="0" x="0.5" y="0.97"/>
  1036. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1037. <constraint name="E" perimeter="0" x="1" y="0.505"/>
  1038. </connections>
  1039. <foreground>
  1040. <path>
  1041. <move x="5.23" y="39.46"/>
  1042. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="5.23" x-axis-rotation="0" y="27.56"/>
  1043. <line x="20.23" y="27.56"/>
  1044. <arc large-arc-flag="0" rx="31.5" ry="31.5" sweep-flag="1" x="72.03" x-axis-rotation="0" y="9.86"/>
  1045. <line x="65.63" y="16.26"/>
  1046. <arc large-arc-flag="1" rx="22.5" ry="22.5" sweep-flag="0" x="66.23" x-axis-rotation="0" y="50.36"/>
  1047. <line x="72.63" y="56.86"/>
  1048. <arc large-arc-flag="0" rx="31.5" ry="31.5" sweep-flag="1" x="20.23" x-axis-rotation="0" y="39.46"/>
  1049. <close/>
  1050. <move x="59.53" y="39.46"/>
  1051. <arc large-arc-flag="1" rx="10.8" ry="10.8" sweep-flag="1" x="59.33" x-axis-rotation="0" y="27.76"/>
  1052. <line x="79.03" y="27.76"/>
  1053. <line x="79.03" y="20.16"/>
  1054. <line x="99.53" y="34.16"/>
  1055. <line x="79.03" y="47.56"/>
  1056. <line x="79.03" y="39.46"/>
  1057. <close/>
  1058. </path>
  1059. <fillstroke/>
  1060. </foreground>
  1061. </shape>
  1062. <shape aspect="variable" h="99.55" name="D" strokewidth="inherit" w="80.52">
  1063. <connections>
  1064. <constraint name="N" perimeter="0" x="0.5" y="0.045"/>
  1065. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1066. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1067. <constraint name="E" perimeter="0" x="0.62" y="0.525"/>
  1068. <constraint name="NE1" perimeter="0" x="0.73" y="0"/>
  1069. <constraint name="NE2" perimeter="0" x="1" y="0.38"/>
  1070. <constraint name="NE3" perimeter="0" x="0.88" y="0.2"/>
  1071. <constraint name="NW" perimeter="0" x="0.02" y="0.06"/>
  1072. <constraint name="SE" perimeter="0" x="0.92" y="0.825"/>
  1073. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1074. </connections>
  1075. <foreground>
  1076. <path>
  1077. <move x="0.08" y="99.55"/>
  1078. <line x="0.08" y="9.75"/>
  1079. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5.08" x-axis-rotation="0" y="4.45"/>
  1080. <line x="43.88" y="4.45"/>
  1081. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.68" x-axis-rotation="0" y="8.05"/>
  1082. <line x="34.28" y="34.45"/>
  1083. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="38.08" x-axis-rotation="0" y="43.65"/>
  1084. <line x="49.18" y="43.65"/>
  1085. <line x="49.18" y="47.65"/>
  1086. <line x="41.58" y="47.65"/>
  1087. <line x="27.38" y="62.65"/>
  1088. <line x="36.48" y="72.15"/>
  1089. <line x="9.68" y="72.15"/>
  1090. <line x="9.68" y="76.45"/>
  1091. <line x="37.08" y="76.45"/>
  1092. <line x="37.08" y="84.55"/>
  1093. <line x="9.68" y="84.55"/>
  1094. <line x="9.68" y="88.85"/>
  1095. <line x="48.98" y="88.85"/>
  1096. <line x="48.98" y="99.55"/>
  1097. <close/>
  1098. <move x="41.28" y="79.15"/>
  1099. <line x="65.18" y="79.15"/>
  1100. <line x="57.08" y="71.15"/>
  1101. <line x="63.88" y="71.15"/>
  1102. <line x="74.18" y="81.95"/>
  1103. <line x="63.88" y="92.65"/>
  1104. <line x="57.08" y="92.65"/>
  1105. <line x="65.08" y="84.65"/>
  1106. <line x="41.18" y="84.65"/>
  1107. <close/>
  1108. <move x="43.68" y="73.75"/>
  1109. <line x="33.08" y="62.95"/>
  1110. <line x="43.48" y="52.15"/>
  1111. <line x="49.98" y="52.15"/>
  1112. <line x="41.98" y="60.15"/>
  1113. <line x="66.78" y="60.15"/>
  1114. <line x="66.78" y="65.55"/>
  1115. <line x="41.98" y="65.55"/>
  1116. <line x="50.28" y="73.75"/>
  1117. <close/>
  1118. <move x="39.28" y="39.55"/>
  1119. <arc large-arc-flag="0" rx="1.6" ry="1.6" sweep-flag="1" x="37.58" x-axis-rotation="0" y="37.25"/>
  1120. <line x="57.58" y="0.75"/>
  1121. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="60.18" x-axis-rotation="0" y="0.75"/>
  1122. <line x="80.38" y="37.75"/>
  1123. <arc large-arc-flag="0" rx="1.6" ry="1.6" sweep-flag="1" x="79.28" x-axis-rotation="0" y="39.55"/>
  1124. <close/>
  1125. <move x="49.88" y="35.75"/>
  1126. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="53.68" x-axis-rotation="0" y="32.05"/>
  1127. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.88" x-axis-rotation="0" y="27.95"/>
  1128. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="45.88" x-axis-rotation="0" y="32.05"/>
  1129. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.88" x-axis-rotation="0" y="35.75"/>
  1130. <close/>
  1131. <move x="68.08" y="35.75"/>
  1132. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="71.88" x-axis-rotation="0" y="32.05"/>
  1133. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="68.08" x-axis-rotation="0" y="27.95"/>
  1134. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="63.98" x-axis-rotation="0" y="32.05"/>
  1135. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="68.08" x-axis-rotation="0" y="35.75"/>
  1136. <close/>
  1137. <move x="63.08" y="33.15"/>
  1138. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="63.08" x-axis-rotation="0" y="30.65"/>
  1139. <line x="54.58" y="30.65"/>
  1140. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="54.58" x-axis-rotation="0" y="33.15"/>
  1141. <close/>
  1142. <move x="64.68" y="28.05"/>
  1143. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="66.98" x-axis-rotation="0" y="27.15"/>
  1144. <line x="62.18" y="17.95"/>
  1145. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="60.18" x-axis-rotation="0" y="18.95"/>
  1146. <close/>
  1147. <move x="57.48" y="19.25"/>
  1148. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="55.38" x-axis-rotation="0" y="18.05"/>
  1149. <line x="50.38" y="27.25"/>
  1150. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="52.48" x-axis-rotation="0" y="28.25"/>
  1151. <close/>
  1152. <move x="59.08" y="18.25"/>
  1153. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="62.88" x-axis-rotation="0" y="14.75"/>
  1154. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="59.08" x-axis-rotation="0" y="10.55"/>
  1155. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="54.98" x-axis-rotation="0" y="14.25"/>
  1156. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="59.08" x-axis-rotation="0" y="18.25"/>
  1157. <close/>
  1158. <move x="39.58" y="16.55"/>
  1159. <line x="9.88" y="16.55"/>
  1160. <line x="9.88" y="20.65"/>
  1161. <line x="39.58" y="20.65"/>
  1162. <close/>
  1163. </path>
  1164. <fillstroke/>
  1165. </foreground>
  1166. </shape>
  1167. <shape aspect="variable" h="102.79" name="Database generic" strokewidth="inherit" w="76">
  1168. <connections>
  1169. <constraint name="N" perimeter="0" x="0.5" y="0.01"/>
  1170. <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
  1171. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1172. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1173. <constraint name="NE" perimeter="0" x="1" y="0.14"/>
  1174. <constraint name="NW" perimeter="0" x="0" y="0.14"/>
  1175. <constraint name="SE" perimeter="0" x="1" y="0.85"/>
  1176. <constraint name="SW" perimeter="0" x="0" y="0.85"/>
  1177. </connections>
  1178. <foreground>
  1179. <path>
  1180. <move x="0" y="15.15"/>
  1181. <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="11" x-axis-rotation="0" y="5.65"/>
  1182. <arc large-arc-flag="0" rx="39" ry="16" sweep-flag="1" x="63.6" x-axis-rotation="0" y="5.55"/>
  1183. <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="76" x-axis-rotation="0" y="15.15"/>
  1184. <line x="76" y="87.15"/>
  1185. <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="63" x-axis-rotation="0" y="97.35"/>
  1186. <arc large-arc-flag="0" rx="39" ry="17" sweep-flag="1" x="11" x-axis-rotation="0" y="96.15"/>
  1187. <arc large-arc-flag="0" rx="39" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="87.15"/>
  1188. <close/>
  1189. <move x="64" y="17.15"/>
  1190. <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="64" x-axis-rotation="0" y="12.55"/>
  1191. <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="12" x-axis-rotation="0" y="12.55"/>
  1192. <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="12" x-axis-rotation="0" y="17.15"/>
  1193. <arc large-arc-flag="0" rx="27" ry="8" sweep-flag="0" x="64" x-axis-rotation="0" y="17.15"/>
  1194. <close/>
  1195. </path>
  1196. <fillstroke/>
  1197. </foreground>
  1198. </shape>
  1199. <shape aspect="variable" h="100.09" name="Database server" strokewidth="inherit" w="75.21">
  1200. <connections>
  1201. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1202. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1203. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1204. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1205. <constraint name="NE" perimeter="0" x="0.75" y="0.395"/>
  1206. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  1207. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  1208. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1209. </connections>
  1210. <foreground>
  1211. <path>
  1212. <move x="0" y="99.6"/>
  1213. <line x="0" y="4.8"/>
  1214. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.6" x-axis-rotation="0" y="0"/>
  1215. <line x="43.6" y="0"/>
  1216. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.4" x-axis-rotation="0" y="4.8"/>
  1217. <line x="48.4" y="35.2"/>
  1218. <arc large-arc-flag="0" rx="20" ry="11" sweep-flag="0" x="31.5" x-axis-rotation="0" y="45.3"/>
  1219. <line x="31.5" y="75.3"/>
  1220. <line x="7.3" y="75.3"/>
  1221. <line x="7.3" y="80.1"/>
  1222. <line x="31.5" y="80.1"/>
  1223. <line x="31.5" y="85"/>
  1224. <line x="7.3" y="85"/>
  1225. <line x="7.3" y="89.8"/>
  1226. <line x="31.5" y="89.8"/>
  1227. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="36.8" x-axis-rotation="0" y="99.6"/>
  1228. <close/>
  1229. <move x="7.3" y="19.5"/>
  1230. <line x="41.4" y="19.5"/>
  1231. <line x="41.4" y="14.6"/>
  1232. <line x="7.3" y="14.6"/>
  1233. <close/>
  1234. <move x="55.4" y="39.6"/>
  1235. <arc large-arc-flag="1" rx="16.5" ry="6" sweep-flag="0" x="56.1" x-axis-rotation="0" y="53.5"/>
  1236. <arc large-arc-flag="1" rx="16.5" ry="6" sweep-flag="0" x="56.1" x-axis-rotation="0" y="39.6"/>
  1237. <close/>
  1238. <move x="36.5" y="51.3"/>
  1239. <arc large-arc-flag="0" rx="20" ry="6.6" sweep-flag="0" x="75.2" x-axis-rotation="0" y="51.3"/>
  1240. <line x="75.2" y="91.8"/>
  1241. <arc large-arc-flag="0" rx="22" ry="9" sweep-flag="1" x="68.3" x-axis-rotation="0" y="97.5"/>
  1242. <arc large-arc-flag="0" rx="20" ry="9" sweep-flag="1" x="44.4" x-axis-rotation="0" y="97.8"/>
  1243. <arc large-arc-flag="0" rx="15" ry="8" sweep-flag="1" x="36.5" x-axis-rotation="0" y="91.8"/>
  1244. <close/>
  1245. </path>
  1246. <fillstroke/>
  1247. </foreground>
  1248. </shape>
  1249. <shape aspect="variable" h="99.62" name="Database synchronization" strokewidth="inherit" w="77.82">
  1250. <connections>
  1251. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1252. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1253. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1254. <constraint name="E" perimeter="0" x="0.625" y="0.49"/>
  1255. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  1256. <constraint name="SE" perimeter="0" x="0.92" y="0.93"/>
  1257. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1258. </connections>
  1259. <foreground>
  1260. <path>
  1261. <move x="0" y="99.6"/>
  1262. <line x="0" y="5"/>
  1263. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1264. <line x="43.5" y="0"/>
  1265. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.5" x-axis-rotation="0" y="5"/>
  1266. <line x="48.5" y="49.1"/>
  1267. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="0" x="26.7" x-axis-rotation="0" y="75.3"/>
  1268. <line x="7.1" y="75.3"/>
  1269. <line x="7.1" y="80.2"/>
  1270. <line x="26.9" y="80.2"/>
  1271. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="27.8" x-axis-rotation="0" y="85"/>
  1272. <line x="7.1" y="85"/>
  1273. <line x="7.1" y="90"/>
  1274. <line x="30.2" y="90"/>
  1275. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="38.8" x-axis-rotation="0" y="99.6"/>
  1276. <close/>
  1277. <move x="7.3" y="19.6"/>
  1278. <line x="41.2" y="19.6"/>
  1279. <line x="41.3" y="14.6"/>
  1280. <line x="7.3" y="14.6"/>
  1281. <close/>
  1282. <move x="77.6" y="77.3"/>
  1283. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="54.8" x-axis-rotation="0" y="99.5"/>
  1284. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="31.6" x-axis-rotation="0" y="77.3"/>
  1285. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="54.8" x-axis-rotation="0" y="53.5"/>
  1286. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="77.6" x-axis-rotation="0" y="77.3"/>
  1287. <close/>
  1288. <move x="64.8" y="67.1"/>
  1289. <arc large-arc-flag="0" rx="14.2" ry="14.2" sweep-flag="0" x="39.9" x-axis-rotation="0" y="74.7"/>
  1290. <line x="44.8" y="74.7"/>
  1291. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="62.2" x-axis-rotation="0" y="70.6"/>
  1292. <line x="54.7" y="70.6"/>
  1293. <line x="59.2" y="74.6"/>
  1294. <line x="68.8" y="74.6"/>
  1295. <line x="68.8" y="64.7"/>
  1296. <line x="64.8" y="60.6"/>
  1297. <close/>
  1298. <move x="63.7" y="77.8"/>
  1299. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="46" x-axis-rotation="0" y="81.6"/>
  1300. <line x="53.3" y="81.6"/>
  1301. <line x="49.9" y="77.9"/>
  1302. <line x="39.6" y="77.9"/>
  1303. <line x="39.6" y="88"/>
  1304. <line x="43.6" y="92.1"/>
  1305. <line x="43.6" y="85"/>
  1306. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="68.6" x-axis-rotation="0" y="77.8"/>
  1307. <close/>
  1308. </path>
  1309. <fillstroke/>
  1310. </foreground>
  1311. </shape>
  1312. <shape aspect="variable" h="51" name="Device" strokewidth="inherit" w="99.61">
  1313. <connections>
  1314. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1315. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1316. <constraint name="W" perimeter="0" x="0.03" y="0.5"/>
  1317. <constraint name="E" perimeter="0" x="0.97" y="0.5"/>
  1318. <constraint name="NE" perimeter="0" x="0.82" y="0"/>
  1319. <constraint name="NW" perimeter="0" x="0.18" y="0"/>
  1320. <constraint name="SE" perimeter="0" x="0.99" y="0.98"/>
  1321. <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
  1322. </connections>
  1323. <foreground>
  1324. <path>
  1325. <move x="3.8" y="51"/>
  1326. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="47"/>
  1327. <line x="0" y="29.5"/>
  1328. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="3.8" x-axis-rotation="0" y="25.5"/>
  1329. <line x="95.8" y="25.5"/>
  1330. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="99.6" x-axis-rotation="0" y="29.5"/>
  1331. <line x="99.6" y="47"/>
  1332. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="95.8" x-axis-rotation="0" y="51"/>
  1333. <close/>
  1334. <move x="14.8" y="43.3"/>
  1335. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="20.5" x-axis-rotation="0" y="38.5"/>
  1336. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="14.8" x-axis-rotation="0" y="33.2"/>
  1337. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10.2" x-axis-rotation="0" y="38.5"/>
  1338. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="14.8" x-axis-rotation="0" y="43.3"/>
  1339. <close/>
  1340. <move x="37.8" y="43.3"/>
  1341. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="43.4" x-axis-rotation="0" y="38.5"/>
  1342. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.8" x-axis-rotation="0" y="33.2"/>
  1343. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="33.2" x-axis-rotation="0" y="38.5"/>
  1344. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.8" x-axis-rotation="0" y="43.3"/>
  1345. <close/>
  1346. <move x="61.3" y="43.3"/>
  1347. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="66.4" x-axis-rotation="0" y="38.5"/>
  1348. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="0" y="33.2"/>
  1349. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="56.2" x-axis-rotation="0" y="38.5"/>
  1350. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="61.3" x-axis-rotation="0" y="43.3"/>
  1351. <close/>
  1352. <move x="84.8" y="43.3"/>
  1353. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="89.4" x-axis-rotation="0" y="38.5"/>
  1354. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="84.8" x-axis-rotation="0" y="33.2"/>
  1355. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="79.2" x-axis-rotation="0" y="38.5"/>
  1356. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="84.8" x-axis-rotation="0" y="43.3"/>
  1357. <close/>
  1358. <move x="99.4" y="17.8"/>
  1359. <line x="0.2" y="17.8"/>
  1360. <line x="18.4" y="0"/>
  1361. <line x="81.1" y="0"/>
  1362. <close/>
  1363. </path>
  1364. <fillstroke/>
  1365. </foreground>
  1366. </shape>
  1367. <shape aspect="variable" h="88.9" name="Direct Access feature" strokewidth="inherit" w="99.44">
  1368. <connections>
  1369. <constraint name="N" perimeter="0" x="0.61" y="0"/>
  1370. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1371. <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
  1372. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1373. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  1374. <constraint name="NW" perimeter="0" x="0.5" y="0.395"/>
  1375. <constraint name="SE" perimeter="0" x="1" y="0.95"/>
  1376. <constraint name="SW" perimeter="0" x="0" y="0.99"/>
  1377. </connections>
  1378. <foreground>
  1379. <path>
  1380. <move x="1.14" y="88.82"/>
  1381. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="0.14" x-axis-rotation="0" y="87.42"/>
  1382. <line x="6.84" y="75.92"/>
  1383. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="9.34" x-axis-rotation="0" y="74.42"/>
  1384. <line x="60.64" y="74.42"/>
  1385. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="62.84" x-axis-rotation="0" y="75.42"/>
  1386. <line x="69.94" y="87.62"/>
  1387. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="1" x="68.74" x-axis-rotation="0" y="88.82"/>
  1388. <close/>
  1389. <move x="16.94" y="84.92"/>
  1390. <line x="52.24" y="84.92"/>
  1391. <line x="49.44" y="80.52"/>
  1392. <line x="19.44" y="80.52"/>
  1393. <close/>
  1394. <move x="13.84" y="70.22"/>
  1395. <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="8.44" x-axis-rotation="0" y="65.02"/>
  1396. <line x="8.44" y="39.92"/>
  1397. <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="13.94" x-axis-rotation="0" y="35.17"/>
  1398. <line x="56.84" y="35.17"/>
  1399. <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="62.04" x-axis-rotation="0" y="39.92"/>
  1400. <line x="62.04" y="65.22"/>
  1401. <arc large-arc-flag="0" rx="5.5" ry="5.5" sweep-flag="1" x="56.84" x-axis-rotation="0" y="70.12"/>
  1402. <close/>
  1403. <move x="14.44" y="64.12"/>
  1404. <line x="56.04" y="64.12"/>
  1405. <line x="56.04" y="41.22"/>
  1406. <line x="14.44" y="41.22"/>
  1407. <close/>
  1408. <move x="38.64" y="56.42"/>
  1409. <line x="46.84" y="48.32"/>
  1410. <line x="39.84" y="48.32"/>
  1411. <line x="42.74" y="45.42"/>
  1412. <line x="51.74" y="45.42"/>
  1413. <line x="51.74" y="54.72"/>
  1414. <line x="49.04" y="57.62"/>
  1415. <line x="49.04" y="50.42"/>
  1416. <line x="40.84" y="58.72"/>
  1417. <close/>
  1418. <move x="66.34" y="64.12"/>
  1419. <line x="66.34" y="39.42"/>
  1420. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="58.04" x-axis-rotation="0" y="31.22"/>
  1421. <line x="58.04" y="3.42"/>
  1422. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="61.84" x-axis-rotation="0" y="0.02"/>
  1423. <line x="95.44" y="0.02"/>
  1424. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="99.44" x-axis-rotation="0" y="3.42"/>
  1425. <line x="99.44" y="84.82"/>
  1426. <line x="73.24" y="84.82"/>
  1427. <line x="68.44" y="76.62"/>
  1428. <line x="91.24" y="76.62"/>
  1429. <line x="91.24" y="72.32"/>
  1430. <line x="66.34" y="72.32"/>
  1431. <line x="66.34" y="68.22"/>
  1432. <line x="91.24" y="68.22"/>
  1433. <line x="91.24" y="64.12"/>
  1434. <close/>
  1435. <move x="91.24" y="16.42"/>
  1436. <line x="91.24" y="12.32"/>
  1437. <line x="66.24" y="12.32"/>
  1438. <line x="66.24" y="16.42"/>
  1439. <close/>
  1440. </path>
  1441. <fillstroke/>
  1442. </foreground>
  1443. </shape>
  1444. <shape aspect="variable" h="99.6" name="Document" strokewidth="inherit" w="79.8">
  1445. <connections>
  1446. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1447. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1448. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1449. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1450. <constraint name="NE" perimeter="0" x="0.87" y="0.145"/>
  1451. <constraint name="NW" perimeter="0" x="0" y="0"/>
  1452. <constraint name="SE" perimeter="0" x="1" y="1"/>
  1453. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1454. </connections>
  1455. <foreground>
  1456. <path>
  1457. <move x="0" y="99.6"/>
  1458. <line x="0" y="0"/>
  1459. <line x="54.8" y="0"/>
  1460. <line x="79.8" y="25"/>
  1461. <line x="79.8" y="99.6"/>
  1462. <close/>
  1463. <move x="5" y="94.6"/>
  1464. <line x="74.9" y="94.6"/>
  1465. <line x="74.9" y="27.3"/>
  1466. <line x="52.5" y="27.3"/>
  1467. <line x="52.5" y="5"/>
  1468. <line x="5" y="5"/>
  1469. <close/>
  1470. <move x="17.6" y="82.2"/>
  1471. <line x="17.6" y="77.2"/>
  1472. <line x="62.4" y="77.2"/>
  1473. <line x="62.4" y="82.2"/>
  1474. <close/>
  1475. <move x="62.4" y="69.7"/>
  1476. <line x="17.6" y="69.7"/>
  1477. <line x="17.6" y="64.7"/>
  1478. <line x="62.4" y="64.7"/>
  1479. <close/>
  1480. <move x="17.6" y="57.2"/>
  1481. <line x="17.6" y="52.4"/>
  1482. <line x="62.4" y="52.4"/>
  1483. <line x="62.4" y="57.2"/>
  1484. <close/>
  1485. <move x="62.4" y="44.7"/>
  1486. <line x="17.6" y="44.7"/>
  1487. <line x="17.6" y="39.8"/>
  1488. <line x="62.4" y="39.8"/>
  1489. <close/>
  1490. </path>
  1491. <fillstroke/>
  1492. </foreground>
  1493. </shape>
  1494. <shape aspect="variable" h="99.6" name="Domain Controller" strokewidth="inherit" w="72.61">
  1495. <connections>
  1496. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1497. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1498. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1499. <constraint name="E" perimeter="0" x="0.665" y="0.5"/>
  1500. <constraint name="NE" perimeter="0" x="0.65" y="0.02"/>
  1501. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  1502. <constraint name="SE" perimeter="0" x="1" y="0.99"/>
  1503. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1504. </connections>
  1505. <foreground>
  1506. <path>
  1507. <move x="0" y="99.6"/>
  1508. <line x="0" y="4.8"/>
  1509. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.3" x-axis-rotation="0" y="0"/>
  1510. <line x="43.3" y="0"/>
  1511. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.3" x-axis-rotation="0" y="4.8"/>
  1512. <line x="48.3" y="55.9"/>
  1513. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="43.3" x-axis-rotation="0" y="59"/>
  1514. <line x="33.8" y="75.3"/>
  1515. <line x="7.1" y="75.3"/>
  1516. <line x="7.1" y="80.2"/>
  1517. <line x="31" y="80.2"/>
  1518. <line x="28.2" y="85"/>
  1519. <line x="7.1" y="85"/>
  1520. <line x="7.1" y="90"/>
  1521. <line x="25.3" y="90"/>
  1522. <line x="22.6" y="94.8"/>
  1523. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="22" x-axis-rotation="0" y="99.6"/>
  1524. <close/>
  1525. <move x="7.1" y="19.5"/>
  1526. <line x="41.2" y="19.5"/>
  1527. <line x="41.2" y="14.6"/>
  1528. <line x="7.1" y="14.6"/>
  1529. <close/>
  1530. <move x="48" y="61.9"/>
  1531. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="51.2" x-axis-rotation="0" y="61.9"/>
  1532. <line x="72.3" y="97"/>
  1533. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="71.3" x-axis-rotation="0" y="99.6"/>
  1534. <line x="28.6" y="99.6"/>
  1535. <arc large-arc-flag="0" rx="1.8" ry="1.8" sweep-flag="1" x="27.1" x-axis-rotation="0" y="97"/>
  1536. <close/>
  1537. </path>
  1538. <fillstroke/>
  1539. </foreground>
  1540. </shape>
  1541. <shape aspect="variable" h="404.6" name="Enterprise Building" strokewidth="inherit" w="254.9">
  1542. <connections>
  1543. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1544. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1545. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1546. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1547. <constraint name="NE" perimeter="0" x="1" y="0"/>
  1548. <constraint name="NW" perimeter="0" x="0" y="0"/>
  1549. <constraint name="SE" perimeter="0" x="1" y="1"/>
  1550. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1551. </connections>
  1552. <foreground>
  1553. <path>
  1554. <move x="0" y="404.6"/>
  1555. <line x="130" y="404.6"/>
  1556. <line x="130" y="0"/>
  1557. <line x="0" y="0"/>
  1558. <line x="0" y="404.6"/>
  1559. <close/>
  1560. <move x="107.8" y="171"/>
  1561. <line x="72.7" y="171"/>
  1562. <line x="72.7" y="136"/>
  1563. <line x="107.8" y="136"/>
  1564. <line x="107.8" y="171"/>
  1565. <close/>
  1566. <move x="20.5" y="118.9"/>
  1567. <line x="20.5" y="83.8"/>
  1568. <line x="55.6" y="83.8"/>
  1569. <line x="55.6" y="118.9"/>
  1570. <line x="20.5" y="118.9"/>
  1571. <close/>
  1572. <move x="73.5" y="118.9"/>
  1573. <line x="73.5" y="83.8"/>
  1574. <line x="108.6" y="83.8"/>
  1575. <line x="108.6" y="118.9"/>
  1576. <line x="73.5" y="118.9"/>
  1577. <close/>
  1578. <move x="72.7" y="31.6"/>
  1579. <line x="107.8" y="31.6"/>
  1580. <line x="107.8" y="66.7"/>
  1581. <line x="72.7" y="66.7"/>
  1582. <line x="72.7" y="31.6"/>
  1583. <close/>
  1584. <move x="20.5" y="31.6"/>
  1585. <line x="55.6" y="31.6"/>
  1586. <line x="55.6" y="66.7"/>
  1587. <line x="20.5" y="66.7"/>
  1588. <line x="20.5" y="31.6"/>
  1589. <close/>
  1590. <move x="20.5" y="136"/>
  1591. <line x="55.6" y="136"/>
  1592. <line x="55.6" y="171.1"/>
  1593. <line x="20.5" y="171.1"/>
  1594. <line x="20.5" y="136"/>
  1595. <close/>
  1596. <move x="107.8" y="328.4"/>
  1597. <line x="72.7" y="328.4"/>
  1598. <line x="72.7" y="293.3"/>
  1599. <line x="107.8" y="293.3"/>
  1600. <line x="107.8" y="328.4"/>
  1601. <close/>
  1602. <move x="20.5" y="276.3"/>
  1603. <line x="20.5" y="241.2"/>
  1604. <line x="55.6" y="241.2"/>
  1605. <line x="55.6" y="276.3"/>
  1606. <line x="20.5" y="276.3"/>
  1607. <close/>
  1608. <move x="73.5" y="276.3"/>
  1609. <line x="73.5" y="241.2"/>
  1610. <line x="108.6" y="241.2"/>
  1611. <line x="108.6" y="276.3"/>
  1612. <line x="73.5" y="276.3"/>
  1613. <close/>
  1614. <move x="72.7" y="189"/>
  1615. <line x="107.8" y="189"/>
  1616. <line x="107.8" y="224.1"/>
  1617. <line x="72.7" y="224.1"/>
  1618. <line x="72.7" y="189"/>
  1619. <close/>
  1620. <move x="20.5" y="189"/>
  1621. <line x="55.6" y="189"/>
  1622. <line x="55.6" y="224.1"/>
  1623. <line x="20.5" y="224.1"/>
  1624. <line x="20.5" y="189"/>
  1625. <close/>
  1626. <move x="20.5" y="293.4"/>
  1627. <line x="55.6" y="293.4"/>
  1628. <line x="55.6" y="328.5"/>
  1629. <line x="20.5" y="328.5"/>
  1630. <line x="20.5" y="293.4"/>
  1631. <close/>
  1632. <move x="238.6" y="131.7"/>
  1633. <line x="238.6" y="89.8"/>
  1634. <line x="219.8" y="89.8"/>
  1635. <line x="219.8" y="49.6"/>
  1636. <line x="206.1" y="49.6"/>
  1637. <line x="206.1" y="12"/>
  1638. <line x="195" y="12"/>
  1639. <line x="195" y="49.6"/>
  1640. <line x="181.3" y="49.6"/>
  1641. <line x="181.3" y="89.8"/>
  1642. <line x="162.5" y="89.8"/>
  1643. <line x="162.5" y="131.7"/>
  1644. <line x="147.1" y="131.7"/>
  1645. <line x="147.1" y="404.6"/>
  1646. <line x="254.9" y="404.6"/>
  1647. <line x="254.9" y="131.7"/>
  1648. <line x="238.6" y="131.7"/>
  1649. <close/>
  1650. <move x="199.3" y="295.9"/>
  1651. <line x="164.2" y="295.9"/>
  1652. <line x="164.2" y="260.8"/>
  1653. <line x="199.3" y="260.8"/>
  1654. <line x="199.3" y="295.9"/>
  1655. <close/>
  1656. <move x="199.3" y="189"/>
  1657. <line x="164.2" y="189"/>
  1658. <line x="164.2" y="153.9"/>
  1659. <line x="199.3" y="153.9"/>
  1660. <line x="199.3" y="189"/>
  1661. <close/>
  1662. <move x="240.3" y="242"/>
  1663. <line x="205.2" y="242"/>
  1664. <line x="205.2" y="207"/>
  1665. <line x="240.3" y="207"/>
  1666. <curve x1="240.3" x2="240.3" x3="240.3" y1="207" y2="242" y3="242"/>
  1667. <close/>
  1668. </path>
  1669. <fillstroke/>
  1670. </foreground>
  1671. </shape>
  1672. <shape aspect="variable" h="89.6" name="Filter" strokewidth="inherit" w="99.6">
  1673. <connections>
  1674. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1675. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1676. <constraint name="W" perimeter="0" x="0.4" y="0.5"/>
  1677. <constraint name="E" perimeter="0" x="0.6" y="0.5"/>
  1678. <constraint name="NE" perimeter="0" x="1" y="0"/>
  1679. <constraint name="NW" perimeter="0" x="0" y="0"/>
  1680. </connections>
  1681. <foreground>
  1682. <path>
  1683. <move x="44.8" y="89.6"/>
  1684. <line x="39.9" y="44.8"/>
  1685. <line x="0" y="5"/>
  1686. <line x="0" y="0"/>
  1687. <line x="99.6" y="0"/>
  1688. <line x="99.6" y="5"/>
  1689. <line x="59.7" y="44.8"/>
  1690. <line x="54.8" y="89.6"/>
  1691. <close/>
  1692. </path>
  1693. <fillstroke/>
  1694. </foreground>
  1695. </shape>
  1696. <shape aspect="variable" h="87.2" name="Firewall" strokewidth="inherit" w="99.6">
  1697. <connections>
  1698. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1699. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1700. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1701. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1702. <constraint name="NE" perimeter="0" x="1" y="0"/>
  1703. <constraint name="NW" perimeter="0" x="0" y="0"/>
  1704. <constraint name="SE" perimeter="0" x="1" y="1"/>
  1705. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1706. </connections>
  1707. <foreground>
  1708. <path>
  1709. <move x="0" y="87.2"/>
  1710. <line x="0" y="67.4"/>
  1711. <line x="47.1" y="67.4"/>
  1712. <line x="47.1" y="87.2"/>
  1713. <close/>
  1714. <move x="49.8" y="67.4"/>
  1715. <line x="99.6" y="67.4"/>
  1716. <line x="99.6" y="87.2"/>
  1717. <line x="49.8" y="87.2"/>
  1718. <close/>
  1719. <move x="74.7" y="64.9"/>
  1720. <line x="74.7" y="45"/>
  1721. <line x="99.6" y="45"/>
  1722. <line x="99.6" y="64.9"/>
  1723. <close/>
  1724. <move x="71.8" y="45"/>
  1725. <line x="71.8" y="64.9"/>
  1726. <line x="27.7" y="64.9"/>
  1727. <line x="27.7" y="45"/>
  1728. <close/>
  1729. <move x="25" y="64.9"/>
  1730. <line x="0" y="64.9"/>
  1731. <line x="0" y="44.9"/>
  1732. <line x="25" y="44.9"/>
  1733. <close/>
  1734. <move x="47" y="42.5"/>
  1735. <line x="0" y="42.5"/>
  1736. <line x="0" y="22.6"/>
  1737. <line x="47" y="22.6"/>
  1738. <close/>
  1739. <move x="49.8" y="22.6"/>
  1740. <line x="99.6" y="22.6"/>
  1741. <line x="99.6" y="42.5"/>
  1742. <line x="50" y="42.5"/>
  1743. <close/>
  1744. <move x="74.7" y="20"/>
  1745. <line x="74.7" y="0"/>
  1746. <line x="99.6" y="0"/>
  1747. <line x="99.6" y="20"/>
  1748. <close/>
  1749. <move x="71.8" y="0.1"/>
  1750. <line x="71.8" y="20"/>
  1751. <line x="27.7" y="20"/>
  1752. <line x="27.7" y="0.1"/>
  1753. <close/>
  1754. <move x="24.8" y="20"/>
  1755. <line x="0" y="20"/>
  1756. <line x="0" y="0.1"/>
  1757. <line x="24.8" y="0.1"/>
  1758. <close/>
  1759. </path>
  1760. <fillstroke/>
  1761. </foreground>
  1762. </shape>
  1763. <shape aspect="variable" h="85.4" name="Folder" strokewidth="inherit" w="99.6">
  1764. <connections>
  1765. <constraint name="N" perimeter="0" x="0.4" y="0"/>
  1766. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1767. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1768. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1769. <constraint name="NE" perimeter="0" x="0.98" y="0.19"/>
  1770. <constraint name="NW" perimeter="0" x="0.06" y="0.07"/>
  1771. <constraint name="SE" perimeter="0" x="0.98" y="0.97"/>
  1772. <constraint name="SW" perimeter="0" x="0.02" y="0.97"/>
  1773. </connections>
  1774. <foreground>
  1775. <path>
  1776. <move x="7" y="85.4"/>
  1777. <arc large-arc-flag="0" rx="7.5" ry="7.5" sweep-flag="1" x="0" x-axis-rotation="0" y="78.4"/>
  1778. <line x="0" y="16.7"/>
  1779. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="4.4" x-axis-rotation="0" y="8"/>
  1780. <line x="9.8" y="2.8"/>
  1781. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="17.9" x-axis-rotation="0" y="0"/>
  1782. <line x="38.6" y="0"/>
  1783. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="46.2" x-axis-rotation="0" y="3.9"/>
  1784. <line x="53.4" y="11.9"/>
  1785. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="58.4" x-axis-rotation="0" y="14.2"/>
  1786. <line x="92.4" y="14.2"/>
  1787. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="99.6" x-axis-rotation="0" y="21.2"/>
  1788. <line x="99.6" y="77.7"/>
  1789. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="92.8" x-axis-rotation="0" y="85.4"/>
  1790. <close/>
  1791. </path>
  1792. <fillstroke/>
  1793. </foreground>
  1794. </shape>
  1795. <shape aspect="variable" h="100" name="Gateway" strokewidth="inherit" w="100">
  1796. <connections>
  1797. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1798. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1799. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1800. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1801. <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
  1802. <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
  1803. <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
  1804. <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
  1805. </connections>
  1806. <foreground>
  1807. <path>
  1808. <move x="50" y="100"/>
  1809. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  1810. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
  1811. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
  1812. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
  1813. <close/>
  1814. <move x="54.5" y="90.8"/>
  1815. <line x="54.5" y="74.9"/>
  1816. <line x="59.1" y="74.9"/>
  1817. <line x="50" y="56.5"/>
  1818. <line x="40.9" y="74.9"/>
  1819. <line x="45.4" y="74.9"/>
  1820. <line x="45.4" y="90.8"/>
  1821. <close/>
  1822. <move x="74.8" y="59.2"/>
  1823. <line x="93.2" y="50"/>
  1824. <line x="74.8" y="40.8"/>
  1825. <line x="74.8" y="45.5"/>
  1826. <line x="59.1" y="45.5"/>
  1827. <line x="59.1" y="54.5"/>
  1828. <line x="74.8" y="54.5"/>
  1829. <close/>
  1830. <move x="59" y="22.8"/>
  1831. <line x="54.5" y="22.8"/>
  1832. <line x="54.5" y="7"/>
  1833. <line x="45.4" y="7"/>
  1834. <line x="45.4" y="22.8"/>
  1835. <line x="40.8" y="22.8"/>
  1836. <line x="50" y="41.3"/>
  1837. <close/>
  1838. <move x="41" y="45.5"/>
  1839. <line x="25" y="45.5"/>
  1840. <line x="25" y="40.9"/>
  1841. <line x="6.7" y="50"/>
  1842. <line x="25" y="59"/>
  1843. <line x="25" y="54.5"/>
  1844. <line x="41" y="54.5"/>
  1845. <close/>
  1846. </path>
  1847. <fillstroke/>
  1848. </foreground>
  1849. </shape>
  1850. <shape aspect="variable" h="266.1" name="Generic App" strokewidth="inherit" w="394.8">
  1851. <connections>
  1852. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1853. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1854. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1855. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1856. <constraint name="NE" perimeter="0" x="1" y="0"/>
  1857. <constraint name="NW" perimeter="0" x="0" y="0"/>
  1858. <constraint name="SE" perimeter="0" x="1" y="1"/>
  1859. <constraint name="SW" perimeter="0" x="0" y="1"/>
  1860. </connections>
  1861. <foreground>
  1862. <path>
  1863. <move x="279.2" y="114.7"/>
  1864. <curve x1="279.2" x2="276.9" x3="272.3" y1="124.1" y2="131.7" y3="137.3"/>
  1865. <curve x1="267.7" x2="261.5" x3="253.8" y1="142.9" y2="145.7" y3="145.7"/>
  1866. <curve x1="246.5" x2="240.9" x3="237.1" y1="145.7" y2="142.6" y3="136.3"/>
  1867. <line x="236.9" y="136.3"/>
  1868. <line x="236.9" y="170"/>
  1869. <line x="228" y="170"/>
  1870. <line x="228" y="88.5"/>
  1871. <line x="236.9" y="88.5"/>
  1872. <line x="236.9" y="98.3"/>
  1873. <line x="237.1" y="98.3"/>
  1874. <curve x1="241.5" x2="247.9" x3="256.4" y1="90.9" y2="87.1" y3="87.1"/>
  1875. <curve x1="263.4" x2="268.9" x3="273.1" y1="87.1" y2="89.6" y3="94.5"/>
  1876. <curve x1="277.2" x2="279.2" x3="279.2" y1="99.5" y2="106.2" y3="114.7"/>
  1877. <close/>
  1878. <move x="270.1" y="114.6"/>
  1879. <curve x1="270.1" x2="268.7" x3="265.8" y1="108.6" y2="103.8" y3="100.2"/>
  1880. <curve x1="263" x2="259.1" x3="254.1" y1="96.6" y2="94.8" y3="94.8"/>
  1881. <curve x1="249" x2="244.8" x3="241.6" y1="94.8" y2="96.6" y3="100.1"/>
  1882. <curve x1="238.4" x2="236.8" x3="236.8" y1="103.7" y2="108.2" y3="113.7"/>
  1883. <line x="236.8" y="121.5"/>
  1884. <curve x1="236.8" x2="238.3" x3="241.4" y1="126.2" y2="130.1" y3="133.3"/>
  1885. <curve x1="244.5" x2="248.3" x3="252.8" y1="136.5" y2="138" y3="138"/>
  1886. <curve x1="258.2" x2="262.4" x3="265.5" y1="138" y2="135.9" y3="131.8"/>
  1887. <curve x1="268.6" x2="270.1" x3="270.1" y1="127.7" y2="121.9" y3="114.6"/>
  1888. <close/>
  1889. <move x="214.1" y="114.7"/>
  1890. <curve x1="214.1" x2="211.8" x3="207.2" y1="124.1" y2="131.7" y3="137.3"/>
  1891. <curve x1="202.6" x2="196.4" x3="188.7" y1="142.9" y2="145.7" y3="145.7"/>
  1892. <curve x1="181.4" x2="175.8" x3="172" y1="145.7" y2="142.6" y3="136.3"/>
  1893. <line x="171.8" y="136.3"/>
  1894. <line x="171.8" y="170"/>
  1895. <line x="162.9" y="170"/>
  1896. <line x="162.9" y="88.5"/>
  1897. <line x="171.8" y="88.5"/>
  1898. <line x="171.8" y="98.3"/>
  1899. <line x="172" y="98.3"/>
  1900. <curve x1="176.4" x2="182.8" x3="191.3" y1="90.9" y2="87.1" y3="87.1"/>
  1901. <curve x1="198.3" x2="203.8" x3="208" y1="87.1" y2="89.6" y3="94.5"/>
  1902. <curve x1="212" x2="214.1" x3="214.1" y1="99.5" y2="106.2" y3="114.7"/>
  1903. <close/>
  1904. <move x="204.9" y="114.6"/>
  1905. <curve x1="204.9" x2="203.5" x3="200.6" y1="108.6" y2="103.8" y3="100.2"/>
  1906. <curve x1="197.8" x2="193.9" x3="188.9" y1="96.6" y2="94.8" y3="94.8"/>
  1907. <curve x1="183.8" x2="179.6" x3="176.4" y1="94.8" y2="96.6" y3="100.1"/>
  1908. <curve x1="173.2" x2="171.6" x3="171.6" y1="103.7" y2="108.2" y3="113.7"/>
  1909. <line x="171.6" y="121.5"/>
  1910. <curve x1="171.6" x2="173.1" x3="176.2" y1="126.2" y2="130.1" y3="133.3"/>
  1911. <curve x1="179.3" x2="183.1" x3="187.6" y1="136.5" y2="138" y3="138"/>
  1912. <curve x1="193" x2="197.2" x3="200.3" y1="138" y2="135.9" y3="131.8"/>
  1913. <curve x1="203.4" x2="204.9" x3="204.9" y1="127.7" y2="121.9" y3="114.6"/>
  1914. <close/>
  1915. <move x="145.9" y="144.3"/>
  1916. <line x="137" y="144.3"/>
  1917. <line x="137" y="135.6"/>
  1918. <line x="136.8" y="135.6"/>
  1919. <curve x1="132.9" x2="127.2" x3="119.6" y1="142.3" y2="145.7" y3="145.7"/>
  1920. <curve x1="114.2" x2="109.9" x3="106.7" y1="145.7" y2="144.2" y3="141.3"/>
  1921. <curve x1="103.5" x2="101.9" x3="101.9" y1="138.4" y2="134.4" y3="129.5"/>
  1922. <curve x1="101.9" x2="108" x3="120.3" y1="119.1" y2="113" y3="111.3"/>
  1923. <line x="137" y="109"/>
  1924. <curve x1="137" x2="133.2" x3="125.5" y1="99.6" y2="94.8" y3="94.8"/>
  1925. <curve x1="118.8" x2="112.7" x3="107.3" y1="94.8" y2="97.1" y3="101.6"/>
  1926. <line x="107.3" y="92.4"/>
  1927. <curve x1="108.9" x2="111.7" x3="115.7" y1="91.2" y2="90" y3="88.8"/>
  1928. <curve x1="119.7" x2="123.2" x3="126.3" y1="87.7" y2="87.1" y3="87.1"/>
  1929. <curve x1="139.4" x2="146" x3="146" y1="87.1" y2="94.1" y3="108"/>
  1930. <line x="146" y="144.3"/>
  1931. <close/>
  1932. <move x="137" y="116.1"/>
  1933. <line x="123.5" y="118"/>
  1934. <curve x1="118.9" x2="115.7" x3="113.8" y1="118.7" y2="119.8" y3="121.3"/>
  1935. <curve x1="111.9" x2="111" x3="111" y1="122.8" y2="125.3" y3="128.8"/>
  1936. <curve x1="111" x2="112" x3="114" y1="131.6" y2="133.8" y3="135.5"/>
  1937. <curve x1="116" x2="118.6" x3="121.7" y1="137.2" y2="138" y3="138"/>
  1938. <curve x1="126.1" x2="129.8" x3="132.7" y1="138" y2="136.4" y3="133.3"/>
  1939. <curve x1="135.6" x2="137" x3="137" y1="130.2" y2="126.3" y3="121.6"/>
  1940. <line x="137" y="116.1"/>
  1941. <close/>
  1942. <move x="0" y="0"/>
  1943. <line x="0" y="266.1"/>
  1944. <line x="394.8" y="266.1"/>
  1945. <line x="394.8" y="0"/>
  1946. <line x="0" y="0"/>
  1947. <line x="0" y="0"/>
  1948. <close/>
  1949. <move x="375.1" y="244.7"/>
  1950. <line x="14.6" y="244.7"/>
  1951. <line x="14.6" y="55.8"/>
  1952. <line x="375.1" y="55.8"/>
  1953. <line x="375.1" y="244.7"/>
  1954. <close/>
  1955. </path>
  1956. <fillstroke/>
  1957. </foreground>
  1958. </shape>
  1959. <shape aspect="variable" h="99.6" name="Import generic" strokewidth="inherit" w="79.71">
  1960. <connections>
  1961. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1962. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1963. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1964. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1965. <constraint name="NE" perimeter="0" x="0.9" y="0.09"/>
  1966. <constraint name="NW" perimeter="0" x="0.04" y="0.03"/>
  1967. <constraint name="SE" perimeter="0" x="0.96" y="0.97"/>
  1968. <constraint name="SW" perimeter="0" x="0.04" y="0.97"/>
  1969. </connections>
  1970. <foreground>
  1971. <path>
  1972. <move x="8.81" y="99.6"/>
  1973. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="0.01" x-axis-rotation="0" y="88.8"/>
  1974. <line x="0.01" y="10.8"/>
  1975. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="8.81" x-axis-rotation="0" y="0"/>
  1976. <line x="62.81" y="0"/>
  1977. <line x="79.71" y="16.6"/>
  1978. <line x="79.71" y="88.8"/>
  1979. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="68.81" x-axis-rotation="0" y="99.6"/>
  1980. <close/>
  1981. <move x="67.81" y="93"/>
  1982. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="73.01" x-axis-rotation="0" y="88.8"/>
  1983. <line x="72.81" y="20.2"/>
  1984. <line x="59.61" y="20.2"/>
  1985. <line x="59.61" y="6.6"/>
  1986. <line x="10.81" y="6.6"/>
  1987. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="6.71" x-axis-rotation="0" y="10.3"/>
  1988. <line x="6.71" y="44.7"/>
  1989. <line x="34.61" y="44.7"/>
  1990. <line x="34.61" y="33.3"/>
  1991. <line x="60.41" y="52.6"/>
  1992. <line x="34.61" y="72"/>
  1993. <line x="34.61" y="62.3"/>
  1994. <line x="6.71" y="62.3"/>
  1995. <line x="6.71" y="88.8"/>
  1996. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="10.81" x-axis-rotation="0" y="93"/>
  1997. <close/>
  1998. </path>
  1999. <fillstroke/>
  2000. </foreground>
  2001. </shape>
  2002. <shape aspect="variable" h="62.11" name="Internet" strokewidth="inherit" w="100.76">
  2003. <connections>
  2004. <constraint name="N" perimeter="0" x="0.5" y="0.03"/>
  2005. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2006. <constraint name="W" perimeter="0" x="0.08" y="0.5"/>
  2007. <constraint name="E" perimeter="0" x="0.91" y="0.5"/>
  2008. <constraint name="NE" perimeter="0" x="0.82" y="0.2"/>
  2009. <constraint name="NW" perimeter="0" x="0.325" y="0.35"/>
  2010. <constraint name="SE" perimeter="0" x="0.87" y="1"/>
  2011. <constraint name="SW" perimeter="0" x="0.14" y="1"/>
  2012. </connections>
  2013. <foreground>
  2014. <path>
  2015. <move x="15.39" y="62.11"/>
  2016. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="0.69" x-axis-rotation="0" y="44.91"/>
  2017. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="17.69" x-axis-rotation="0" y="28.61"/>
  2018. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="32.79" x-axis-rotation="0" y="22.11"/>
  2019. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="45.39" x-axis-rotation="0" y="2.71"/>
  2020. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.49" x-axis-rotation="0" y="13.41"/>
  2021. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="84.89" x-axis-rotation="0" y="14.51"/>
  2022. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="91.69" x-axis-rotation="0" y="33.01"/>
  2023. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="100.19" x-axis-rotation="0" y="47.91"/>
  2024. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="87.39" x-axis-rotation="0" y="62.11"/>
  2025. <close/>
  2026. </path>
  2027. <fillstroke/>
  2028. </foreground>
  2029. </shape>
  2030. <shape aspect="variable" h="61.8" name="Internet hollow" strokewidth="inherit" w="100.68">
  2031. <connections>
  2032. <constraint name="N" perimeter="0" x="0.5" y="0.02"/>
  2033. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2034. <constraint name="W" perimeter="0" x="0.06" y="0.5"/>
  2035. <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
  2036. <constraint name="NE" perimeter="0" x="0.85" y="0.225"/>
  2037. <constraint name="NW" perimeter="0" x="0.32" y="0.33"/>
  2038. <constraint name="SE" perimeter="0" x="0.87" y="1"/>
  2039. <constraint name="SW" perimeter="0" x="0.13" y="1"/>
  2040. </connections>
  2041. <foreground>
  2042. <path>
  2043. <move x="14.52" y="61.8"/>
  2044. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="0.82" x-axis-rotation="0" y="46.5"/>
  2045. <arc large-arc-flag="0" rx="16.5" ry="16.5" sweep-flag="1" x="17.72" x-axis-rotation="0" y="27.3"/>
  2046. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="32.72" x-axis-rotation="0" y="21"/>
  2047. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="47.72" x-axis-rotation="0" y="1.5"/>
  2048. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="66.72" x-axis-rotation="0" y="12.2"/>
  2049. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="85.72" x-axis-rotation="0" y="14.3"/>
  2050. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="1" x="92.12" x-axis-rotation="0" y="32.2"/>
  2051. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="100.32" x-axis-rotation="0" y="46.5"/>
  2052. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="87.52" x-axis-rotation="0" y="61.8"/>
  2053. <close/>
  2054. <move x="87.52" y="60.2"/>
  2055. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="98.72" x-axis-rotation="0" y="46.5"/>
  2056. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="90.52" x-axis-rotation="0" y="32.9"/>
  2057. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="0" x="84.52" x-axis-rotation="0" y="15.3"/>
  2058. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="66.12" x-axis-rotation="0" y="14.2"/>
  2059. <arc large-arc-flag="0" rx="16.5" ry="17" sweep-flag="0" x="47.02" x-axis-rotation="0" y="3.1"/>
  2060. <arc large-arc-flag="0" rx="19" ry="19" sweep-flag="0" x="34.12" x-axis-rotation="0" y="23"/>
  2061. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="18.72" x-axis-rotation="0" y="28.9"/>
  2062. <arc large-arc-flag="0" rx="14.5" ry="16" sweep-flag="0" x="2.32" x-axis-rotation="0" y="43"/>
  2063. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="14.52" x-axis-rotation="0" y="60.3"/>
  2064. <close/>
  2065. </path>
  2066. <fillstroke/>
  2067. </foreground>
  2068. </shape>
  2069. <shape aspect="variable" h="45" name="iPhone" strokewidth="inherit" w="27.7">
  2070. <connections>
  2071. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2072. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2073. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2074. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2075. <constraint name="NE" perimeter="0" x="0.97" y="0.02"/>
  2076. <constraint name="NW" perimeter="0" x="0.03" y="0.02"/>
  2077. <constraint name="SE" perimeter="0" x="0.97" y="0.98"/>
  2078. <constraint name="SW" perimeter="0" x="0.03" y="0.98"/>
  2079. </connections>
  2080. <foreground>
  2081. <path>
  2082. <move x="17.53" y="11.47"/>
  2083. <curve x1="15.83" x2="14.23" x3="14.23" y1="11.97" y2="13.27" y3="15.47"/>
  2084. <curve x1="14.23" x2="14.33" x3="14.33" y1="15.67" y2="15.87" y3="16.17"/>
  2085. <line x="14.33" y="16.27"/>
  2086. <curve x1="16.03" x2="17.53" x3="17.53" y1="15.77" y2="14.47" y3="12.17"/>
  2087. <curve x1="17.53" x2="17.53" x3="17.53" y1="11.97" y2="11.77" y3="11.47"/>
  2088. <line x="17.53" y="11.47"/>
  2089. <close/>
  2090. <move x="24.9" y="0"/>
  2091. <line x="2.7" y="0"/>
  2092. <curve x1="1.2" x2="0" x3="0" y1="0" y2="1.3" y3="2.8"/>
  2093. <line x="0" y="42.2"/>
  2094. <curve x1="0" x2="1.6" x3="3.1" y1="43.7" y2="45" y3="45"/>
  2095. <line x="24.6" y="45"/>
  2096. <curve x1="26.1" x2="27.7" x3="27.7" y1="45" y2="44" y3="42.2"/>
  2097. <line x="27.7" y="2.8"/>
  2098. <curve x1="27.6" x2="26.4" x3="24.9" y1="1.3" y2="0" y3="0"/>
  2099. <close/>
  2100. <move x="11.2" y="3.1"/>
  2101. <line x="16.3" y="3.1"/>
  2102. <line x="16.3" y="4.1"/>
  2103. <line x="11.2" y="4.1"/>
  2104. <line x="11.2" y="3.1"/>
  2105. <close/>
  2106. <move x="13.8" y="43"/>
  2107. <curve x1="12.8" x2="12" x3="12" y1="43" y2="42.2" y3="41.2"/>
  2108. <curve x1="12" x2="12.8" x3="13.8" y1="40.2" y2="39.4" y3="39.4"/>
  2109. <curve x1="14.8" x2="15.6" x3="15.6" y1="39.4" y2="40.2" y3="41.2"/>
  2110. <curve x1="15.6" x2="14.8" x3="13.8" y1="42.2" y2="43" y3="43"/>
  2111. <close/>
  2112. <move x="24.5" y="37.8"/>
  2113. <line x="3" y="37.8"/>
  2114. <line x="3" y="5.1"/>
  2115. <line x="24.5" y="5.1"/>
  2116. <line x="24.5" y="37.8"/>
  2117. <close/>
  2118. <move x="21.4" y="25.3"/>
  2119. <curve x1="19.9" x2="19.1" x3="19.1" y1="24.5" y2="23.3" y3="21.6"/>
  2120. <curve x1="19.1" x2="19.7" x3="20.8" y1="20.2" y2="19" y3="18.2"/>
  2121. <line x="20.9" y="18.2"/>
  2122. <curve x1="20.2" x2="19.2" x3="17.7" y1="17.3" y2="16.4" y3="16.4"/>
  2123. <curve x1="16.6" x2="15.8" x3="14.3" y1="16.4" y2="17.5" y3="17.5"/>
  2124. <curve x1="13.1" x2="12.7" x3="11.4" y1="17.5" y2="16.5" y3="16.5"/>
  2125. <curve x1="8.8" x2="6.2" x3="6.2" y1="16.5" y2="18.8" y3="21.9"/>
  2126. <curve x1="6.2" x2="6.7" x3="7.9" y1="23.5" y2="26" y3="28.2"/>
  2127. <curve x1="8.8" x2="9.8" x3="11" y1="29.8" y2="30.8" y3="30.8"/>
  2128. <curve x1="11.9" x2="12.9" x3="14.1" y1="30.8" y2="29.9" y3="29.9"/>
  2129. <curve x1="15.2" x2="16.1" x3="17.1" y1="29.9" y2="30.7" y3="30.7"/>
  2130. <curve x1="19.4" x2="21.5" x3="21.5" y1="30.7" y2="27.7" y3="25.7"/>
  2131. <curve x1="21.5" x2="21.5" x3="21.5" y1="25.6" y2="25.5" y3="25.4"/>
  2132. <line x="21.5" y="25.3"/>
  2133. <close/>
  2134. </path>
  2135. <fillstroke/>
  2136. </foreground>
  2137. </shape>
  2138. <shape aspect="variable" h="60.1" name="Keyboard" strokewidth="inherit" w="99.71">
  2139. <connections>
  2140. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2141. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2142. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2143. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2144. <constraint name="NE" perimeter="0" x="0.98" y="0.02"/>
  2145. <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
  2146. <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
  2147. <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
  2148. </connections>
  2149. <foreground>
  2150. <path>
  2151. <move x="4.36" y="60.1"/>
  2152. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0.06" x-axis-rotation="0" y="55.1"/>
  2153. <line x="0.06" y="5.1"/>
  2154. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.86" x-axis-rotation="0" y="0"/>
  2155. <line x="94.86" y="0"/>
  2156. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="99.66" x-axis-rotation="0" y="5.1"/>
  2157. <line x="99.66" y="55.1"/>
  2158. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="94.86" x-axis-rotation="0" y="60.1"/>
  2159. <close/>
  2160. <move x="8.16" y="52"/>
  2161. <line x="91.56" y="52"/>
  2162. <line x="91.56" y="8.3"/>
  2163. <line x="8.16" y="8.3"/>
  2164. <close/>
  2165. <move x="14.66" y="47.7"/>
  2166. <line x="14.66" y="37.4"/>
  2167. <line x="26.86" y="37.4"/>
  2168. <line x="26.86" y="47.7"/>
  2169. <close/>
  2170. <move x="31.26" y="37.3"/>
  2171. <line x="68.56" y="37.3"/>
  2172. <line x="68.56" y="47.8"/>
  2173. <line x="31.26" y="47.8"/>
  2174. <close/>
  2175. <move x="72.76" y="47.8"/>
  2176. <line x="72.76" y="37.4"/>
  2177. <line x="85.06" y="37.4"/>
  2178. <line x="85.06" y="47.8"/>
  2179. <close/>
  2180. <move x="85.06" y="33.1"/>
  2181. <line x="76.86" y="33.1"/>
  2182. <line x="76.86" y="24.9"/>
  2183. <line x="85.06" y="24.9"/>
  2184. <close/>
  2185. <move x="72.66" y="24.9"/>
  2186. <line x="72.66" y="33.1"/>
  2187. <line x="64.36" y="33.1"/>
  2188. <line x="64.36" y="24.9"/>
  2189. <close/>
  2190. <move x="60.16" y="33.1"/>
  2191. <line x="52.06" y="33.1"/>
  2192. <line x="52.06" y="24.9"/>
  2193. <line x="60.16" y="24.9"/>
  2194. <close/>
  2195. <move x="47.76" y="24.9"/>
  2196. <line x="47.76" y="33.1"/>
  2197. <line x="39.36" y="33.1"/>
  2198. <line x="39.36" y="24.9"/>
  2199. <close/>
  2200. <move x="35.26" y="33.1"/>
  2201. <line x="27.06" y="33.1"/>
  2202. <line x="27.06" y="24.9"/>
  2203. <line x="35.26" y="24.9"/>
  2204. <close/>
  2205. <move x="22.86" y="33.1"/>
  2206. <line x="14.66" y="33.1"/>
  2207. <line x="14.66" y="24.9"/>
  2208. <line x="22.86" y="24.9"/>
  2209. <close/>
  2210. <move x="14.66" y="20.6"/>
  2211. <line x="14.66" y="12.5"/>
  2212. <line x="22.86" y="12.5"/>
  2213. <line x="22.86" y="20.6"/>
  2214. <close/>
  2215. <move x="27.06" y="12.5"/>
  2216. <line x="35.26" y="12.5"/>
  2217. <line x="35.26" y="20.6"/>
  2218. <line x="27.06" y="20.6"/>
  2219. <close/>
  2220. <move x="39.36" y="20.6"/>
  2221. <line x="39.36" y="12.5"/>
  2222. <line x="47.76" y="12.5"/>
  2223. <line x="47.76" y="20.6"/>
  2224. <close/>
  2225. <move x="52.06" y="12.5"/>
  2226. <line x="60.16" y="12.5"/>
  2227. <line x="60.16" y="20.6"/>
  2228. <line x="52.06" y="20.6"/>
  2229. <close/>
  2230. <move x="64.36" y="20.6"/>
  2231. <line x="64.36" y="12.5"/>
  2232. <line x="72.66" y="12.5"/>
  2233. <line x="72.66" y="20.6"/>
  2234. <close/>
  2235. <move x="76.86" y="12.5"/>
  2236. <line x="85.06" y="12.5"/>
  2237. <line x="85.06" y="20.6"/>
  2238. <line x="76.86" y="20.6"/>
  2239. <close/>
  2240. </path>
  2241. <fillstroke/>
  2242. </foreground>
  2243. </shape>
  2244. <shape aspect="variable" h="99.74" name="Key Permissions" strokewidth="inherit" w="52">
  2245. <connections>
  2246. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2247. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2248. <constraint name="W" perimeter="0" x="0.28" y="0.5"/>
  2249. <constraint name="E" perimeter="0" x="0.64" y="0.5"/>
  2250. <constraint name="NE" perimeter="0" x="0.97" y="0.02"/>
  2251. <constraint name="NW" perimeter="0" x="0.03" y="0.02"/>
  2252. </connections>
  2253. <foreground>
  2254. <path>
  2255. <move x="6" y="40.3"/>
  2256. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="33.8"/>
  2257. <line x="0" y="5.3"/>
  2258. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  2259. <line x="45.5" y="0"/>
  2260. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="52" x-axis-rotation="0" y="5.3"/>
  2261. <line x="52" y="33.8"/>
  2262. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="46.25" x-axis-rotation="0" y="39.7"/>
  2263. <line x="40" y="39.7"/>
  2264. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="33.8" x-axis-rotation="0" y="47.4"/>
  2265. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="33.4" x-axis-rotation="0" y="53.8"/>
  2266. <line x="38.9" y="62.1"/>
  2267. <line x="35.3" y="67.2"/>
  2268. <line x="33" y="69.6"/>
  2269. <line x="33" y="73.1"/>
  2270. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="38.6" x-axis-rotation="0" y="77.1"/>
  2271. <line x="38.7" y="80.1"/>
  2272. <line x="36.3" y="81.8"/>
  2273. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="35.7" x-axis-rotation="0" y="84.5"/>
  2274. <line x="35.6" y="90.1"/>
  2275. <line x="33" y="90.5"/>
  2276. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="24" x-axis-rotation="0" y="99.6"/>
  2277. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="14.5" x-axis-rotation="0" y="90.8"/>
  2278. <line x="14.5" y="40.3"/>
  2279. <close/>
  2280. <move x="18.6" y="91.3"/>
  2281. <arc large-arc-flag="0" rx="2.5" ry="5" sweep-flag="0" x="22.9" x-axis-rotation="0" y="91.3"/>
  2282. <line x="22.9" y="43.6"/>
  2283. <arc large-arc-flag="0" rx="2.5" ry="5" sweep-flag="0" x="18.6" x-axis-rotation="0" y="43.6"/>
  2284. <close/>
  2285. <move x="26" y="16.8"/>
  2286. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="32" x-axis-rotation="0" y="10.8"/>
  2287. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="26" x-axis-rotation="0" y="4.6"/>
  2288. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="20" x-axis-rotation="0" y="10.8"/>
  2289. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="26" x-axis-rotation="0" y="16.8"/>
  2290. <close/>
  2291. </path>
  2292. <fillstroke/>
  2293. </foreground>
  2294. </shape>
  2295. <shape aspect="variable" h="99.6" name="Load Testing" strokewidth="inherit" w="95.6">
  2296. <connections>
  2297. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2298. <constraint name="S" perimeter="0" x="0.5" y="0.81"/>
  2299. <constraint name="W" perimeter="0" x="0.255" y="0.5"/>
  2300. <constraint name="E" perimeter="0" x="0.74" y="0.5"/>
  2301. <constraint name="NE" perimeter="0" x="0.98" y="0.11"/>
  2302. <constraint name="NW" perimeter="0" x="0.02" y="0.11"/>
  2303. <constraint name="SE" perimeter="0" x="0.78" y="1"/>
  2304. <constraint name="SW" perimeter="0" x="0.22" y="1"/>
  2305. </connections>
  2306. <foreground>
  2307. <path>
  2308. <move x="21" y="99.6"/>
  2309. <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="36.2" x-axis-rotation="0" y="75.5"/>
  2310. <line x="33.1" y="56.8"/>
  2311. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="17.4" x-axis-rotation="0" y="30.5"/>
  2312. <line x="24.4" y="30.5"/>
  2313. <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="0" x="47.8" x-axis-rotation="0" y="53.8"/>
  2314. <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="0" x="71" x-axis-rotation="0" y="30.5"/>
  2315. <line x="78" y="30.5"/>
  2316. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62" x-axis-rotation="0" y="56.8"/>
  2317. <line x="59" y="75.5"/>
  2318. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="74.4" x-axis-rotation="0" y="99.6"/>
  2319. <line x="66.8" y="99.6"/>
  2320. <arc large-arc-flag="0" rx="19.5" ry="19.5" sweep-flag="0" x="47.8" x-axis-rotation="0" y="80.4"/>
  2321. <arc large-arc-flag="0" rx="19.5" ry="19.5" sweep-flag="0" x="28.2" x-axis-rotation="0" y="99.6"/>
  2322. <close/>
  2323. <move x="47.8" y="50.8"/>
  2324. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="39.1" x-axis-rotation="0" y="41.8"/>
  2325. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="47.8" x-axis-rotation="0" y="33.3"/>
  2326. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="56.5" x-axis-rotation="0" y="41.8"/>
  2327. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="47.8" x-axis-rotation="0" y="50.8"/>
  2328. <close/>
  2329. <move x="14.6" y="39.9"/>
  2330. <line x="9" y="39.9"/>
  2331. <line x="9" y="27.6"/>
  2332. <line x="7.5" y="27.6"/>
  2333. <line x="7.5" y="39.9"/>
  2334. <line x="1.8" y="39.9"/>
  2335. <line x="1.8" y="27.6"/>
  2336. <line x="0" y="27.6"/>
  2337. <line x="0" y="23"/>
  2338. <line x="1.8" y="23"/>
  2339. <line x="1.8" y="11.3"/>
  2340. <line x="7.5" y="11.3"/>
  2341. <line x="7.5" y="23"/>
  2342. <line x="9" y="23"/>
  2343. <line x="9" y="11.3"/>
  2344. <line x="14.6" y="11.3"/>
  2345. <line x="14.6" y="23"/>
  2346. <line x="81" y="23"/>
  2347. <line x="81" y="11.3"/>
  2348. <line x="86.6" y="11.3"/>
  2349. <line x="86.6" y="23"/>
  2350. <line x="88.1" y="23"/>
  2351. <line x="88.1" y="11.3"/>
  2352. <line x="93.7" y="11.3"/>
  2353. <line x="93.7" y="23"/>
  2354. <line x="95.6" y="23"/>
  2355. <line x="95.6" y="27.6"/>
  2356. <line x="93.7" y="27.6"/>
  2357. <line x="93.7" y="39.9"/>
  2358. <line x="88.1" y="39.9"/>
  2359. <line x="88.1" y="27.6"/>
  2360. <line x="86.6" y="27.6"/>
  2361. <line x="86.6" y="39.9"/>
  2362. <line x="81" y="39.9"/>
  2363. <line x="81" y="27.6"/>
  2364. <line x="14.6" y="27.6"/>
  2365. <close/>
  2366. <move x="47.8" y="17.6"/>
  2367. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="45.7" x-axis-rotation="0" y="15.6"/>
  2368. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="47.8" x-axis-rotation="0" y="13.6"/>
  2369. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="50" x-axis-rotation="0" y="15.6"/>
  2370. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="47.8" x-axis-rotation="0" y="17.6"/>
  2371. <close/>
  2372. <move x="46.1" y="11.9"/>
  2373. <line x="46.1" y="0"/>
  2374. <line x="49.5" y="0"/>
  2375. <line x="49.5" y="11.9"/>
  2376. <close/>
  2377. </path>
  2378. <fillstroke/>
  2379. </foreground>
  2380. </shape>
  2381. <shape aspect="variable" h="100.58" name="Lock" strokewidth="inherit" w="77.3">
  2382. <connections>
  2383. <constraint name="N" perimeter="0" x="0.5" y="0.005"/>
  2384. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2385. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2386. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2387. <constraint name="NE" perimeter="0" x="0.8" y="0.11"/>
  2388. <constraint name="NW" perimeter="0" x="0.2" y="0.11"/>
  2389. <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
  2390. <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
  2391. </connections>
  2392. <foreground>
  2393. <path>
  2394. <move x="4.6" y="100.58"/>
  2395. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="95.78"/>
  2396. <line x="0" y="45.28"/>
  2397. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="4.6" x-axis-rotation="0" y="40.18"/>
  2398. <line x="10.3" y="40.18"/>
  2399. <line x="10.3" y="26.78"/>
  2400. <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="37.6" x-axis-rotation="0" y="0.98"/>
  2401. <arc large-arc-flag="0" rx="26" ry="26" sweep-flag="1" x="67" x-axis-rotation="0" y="26.78"/>
  2402. <line x="67" y="40.18"/>
  2403. <line x="71.9" y="40.18"/>
  2404. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="77.3" x-axis-rotation="0" y="45.28"/>
  2405. <line x="77.3" y="95.78"/>
  2406. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="72.4" x-axis-rotation="0" y="100.58"/>
  2407. <close/>
  2408. <move x="42.5" y="90.68"/>
  2409. <line x="42.5" y="69.78"/>
  2410. <arc large-arc-flag="1" rx="8.7" ry="8.7" sweep-flag="0" x="35" x-axis-rotation="0" y="69.78"/>
  2411. <line x="35" y="90.68"/>
  2412. <close/>
  2413. <move x="57.7" y="40.18"/>
  2414. <line x="57.7" y="26.28"/>
  2415. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="38.6" x-axis-rotation="0" y="9.78"/>
  2416. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="19.7" x-axis-rotation="0" y="26.28"/>
  2417. <line x="19.7" y="40.18"/>
  2418. <close/>
  2419. </path>
  2420. <fillstroke/>
  2421. </foreground>
  2422. </shape>
  2423. <shape aspect="variable" h="99.75" name="Lock unlocked" strokewidth="inherit" w="74">
  2424. <connections>
  2425. <constraint name="N" perimeter="0" x="0.5" y="0.005"/>
  2426. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2427. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2428. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2429. <constraint name="NE" perimeter="0" x="0.8" y="0.11"/>
  2430. <constraint name="NW" perimeter="0" x="0.2" y="0.11"/>
  2431. <constraint name="SE" perimeter="0" x="0.98" y="0.98"/>
  2432. <constraint name="SW" perimeter="0" x="0.02" y="0.98"/>
  2433. </connections>
  2434. <foreground>
  2435. <path>
  2436. <move x="5" y="99.75"/>
  2437. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="94.95"/>
  2438. <line x="0" y="46.95"/>
  2439. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="5" x-axis-rotation="0" y="41.85"/>
  2440. <line x="55.6" y="41.85"/>
  2441. <line x="55.6" y="25.95"/>
  2442. <arc large-arc-flag="0" rx="17.5" ry="19" sweep-flag="0" x="37" x-axis-rotation="0" y="8.65"/>
  2443. <arc large-arc-flag="0" rx="17.5" ry="19" sweep-flag="0" x="19.1" x-axis-rotation="0" y="29.65"/>
  2444. <line x="9.6" y="29.65"/>
  2445. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="37" x-axis-rotation="0" y="0.15"/>
  2446. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="64.3" x-axis-rotation="0" y="26.95"/>
  2447. <line x="64.3" y="41.85"/>
  2448. <line x="69.7" y="41.85"/>
  2449. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="74" x-axis-rotation="0" y="46.95"/>
  2450. <line x="74" y="94.95"/>
  2451. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="69.2" x-axis-rotation="0" y="99.75"/>
  2452. <close/>
  2453. <move x="40.7" y="90.35"/>
  2454. <line x="40.7" y="70.35"/>
  2455. <arc large-arc-flag="1" rx="8.3" ry="8.3" sweep-flag="0" x="33.5" x-axis-rotation="0" y="70.35"/>
  2456. <line x="33.5" y="90.35"/>
  2457. <close/>
  2458. </path>
  2459. <fillstroke/>
  2460. </foreground>
  2461. </shape>
  2462. <shape aspect="variable" h="99.65" name="Maintenance" strokewidth="inherit" w="68.63">
  2463. <connections>
  2464. <constraint name="N" perimeter="0" x="0.575" y="0.01"/>
  2465. <constraint name="S" perimeter="0" x="0.71" y="1"/>
  2466. <constraint name="W" perimeter="0" x="0.075" y="0.5"/>
  2467. <constraint name="E" perimeter="0" x="0.845" y="0.5"/>
  2468. <constraint name="NE" perimeter="0" x="0.93" y="0.06"/>
  2469. <constraint name="NW" perimeter="0" x="0.05" y="0"/>
  2470. <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
  2471. </connections>
  2472. <foreground>
  2473. <path>
  2474. <move x="2.8" y="99.6"/>
  2475. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="96.8"/>
  2476. <line x="0" y="72.5"/>
  2477. <line x="16.1" y="72.5"/>
  2478. <line x="16.1" y="96.8"/>
  2479. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="13.3" x-axis-rotation="0" y="99.6"/>
  2480. <close/>
  2481. <move x="16.1" y="68.8"/>
  2482. <line x="0" y="68.8"/>
  2483. <line x="0" y="60.4"/>
  2484. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.4" x-axis-rotation="0" y="58"/>
  2485. <line x="5.3" y="58"/>
  2486. <line x="5.3" y="21.8"/>
  2487. <line x="3.5" y="12.5"/>
  2488. <line x="3.5" y="0"/>
  2489. <line x="12.6" y="0"/>
  2490. <line x="12.6" y="12.5"/>
  2491. <line x="10.7" y="21.8"/>
  2492. <line x="10.7" y="58"/>
  2493. <line x="13.3" y="58"/>
  2494. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="16.1" x-axis-rotation="0" y="60.4"/>
  2495. <close/>
  2496. <move x="39.7" y="36.8"/>
  2497. <arc large-arc-flag="0" rx="20.3" ry="20.3" sweep-flag="1" x="39.5" x-axis-rotation="0" y="1"/>
  2498. <line x="41.5" y="1.8"/>
  2499. <line x="41.5" y="18.3"/>
  2500. <arc large-arc-flag="0" rx="7.7" ry="7.7" sweep-flag="0" x="56.1" x-axis-rotation="0" y="18.3"/>
  2501. <line x="56.1" y="1.8"/>
  2502. <line x="57.9" y="1"/>
  2503. <arc large-arc-flag="0" rx="20.3" ry="20.3" sweep-flag="1" x="57.9" x-axis-rotation="0" y="36.8"/>
  2504. <line x="57.9" y="91.8"/>
  2505. <arc large-arc-flag="0" rx="9.2" ry="9.2" sweep-flag="1" x="39.7" x-axis-rotation="0" y="91.8"/>
  2506. <close/>
  2507. <move x="45.1" y="90.8"/>
  2508. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.3" x-axis-rotation="0" y="94.1"/>
  2509. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="52.4" x-axis-rotation="0" y="90.8"/>
  2510. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="49.3" x-axis-rotation="0" y="87"/>
  2511. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="45.1" x-axis-rotation="0" y="90.8"/>
  2512. <close/>
  2513. </path>
  2514. <fillstroke/>
  2515. </foreground>
  2516. </shape>
  2517. <shape aspect="variable" h="67.1" name="Management Console" strokewidth="inherit" w="99.6">
  2518. <connections>
  2519. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2520. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2521. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2522. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2523. <constraint name="NE" perimeter="0" x="1" y="0"/>
  2524. <constraint name="NW" perimeter="0" x="0" y="0"/>
  2525. <constraint name="SE" perimeter="0" x="1" y="1"/>
  2526. <constraint name="SW" perimeter="0" x="0" y="1"/>
  2527. </connections>
  2528. <foreground>
  2529. <path>
  2530. <move x="0" y="67.1"/>
  2531. <line x="0" y="0"/>
  2532. <line x="99.6" y="0"/>
  2533. <line x="99.6" y="67.1"/>
  2534. <close/>
  2535. <move x="4.2" y="62.9"/>
  2536. <line x="95.3" y="62.9"/>
  2537. <line x="95.3" y="15.2"/>
  2538. <line x="4.2" y="15.2"/>
  2539. <close/>
  2540. <move x="15.2" y="56.3"/>
  2541. <line x="15.2" y="41.1"/>
  2542. <line x="30.2" y="41.3"/>
  2543. <line x="30.2" y="56.3"/>
  2544. <close/>
  2545. <move x="41.2" y="41.1"/>
  2546. <line x="56.3" y="41.1"/>
  2547. <line x="56.3" y="56.3"/>
  2548. <line x="41.2" y="56.3"/>
  2549. <close/>
  2550. <move x="43" y="43"/>
  2551. <line x="43" y="54.5"/>
  2552. <line x="54.5" y="54.5"/>
  2553. <line x="54.5" y="43"/>
  2554. <close/>
  2555. <move x="67.2" y="56.3"/>
  2556. <line x="67.2" y="41.3"/>
  2557. <line x="82.2" y="41.3"/>
  2558. <line x="82.2" y="56.3"/>
  2559. <close/>
  2560. <move x="82.2" y="36.9"/>
  2561. <line x="67.2" y="36.9"/>
  2562. <line x="67.2" y="21.8"/>
  2563. <line x="82.2" y="21.8"/>
  2564. <close/>
  2565. <move x="80.5" y="35"/>
  2566. <line x="80.5" y="23.6"/>
  2567. <line x="69" y="23.6"/>
  2568. <line x="69" y="35"/>
  2569. <close/>
  2570. <move x="56.4" y="21.7"/>
  2571. <line x="56.4" y="36.9"/>
  2572. <line x="41.2" y="36.9"/>
  2573. <line x="41.2" y="21.7"/>
  2574. <close/>
  2575. <move x="30.2" y="36.9"/>
  2576. <line x="15.2" y="36.9"/>
  2577. <line x="15.2" y="21.8"/>
  2578. <line x="30.2" y="21.8"/>
  2579. <close/>
  2580. <move x="28.5" y="35"/>
  2581. <line x="28.5" y="23.5"/>
  2582. <line x="17" y="23.5"/>
  2583. <line x="17" y="35"/>
  2584. <close/>
  2585. </path>
  2586. <fillstroke/>
  2587. </foreground>
  2588. </shape>
  2589. <shape aspect="variable" h="78.82" name="Monitor Running Apps" strokewidth="inherit" w="99.68">
  2590. <connections>
  2591. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2592. <constraint name="S" perimeter="0" x="0.5" y="0.8"/>
  2593. <constraint name="W" perimeter="0" x="0.13" y="0.5"/>
  2594. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2595. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  2596. <constraint name="SW" perimeter="0" x="0.01" y="0.98"/>
  2597. </connections>
  2598. <foreground>
  2599. <path>
  2600. <move x="13.52" y="59.66"/>
  2601. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="16.42" x-axis-rotation="0" y="58.96"/>
  2602. <line x="19.22" y="56.56"/>
  2603. <arc large-arc-flag="1" rx="25.5" ry="25.5" sweep-flag="1" x="22.32" x-axis-rotation="0" y="59.66"/>
  2604. <line x="19.92" y="62.16"/>
  2605. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="19.42" x-axis-rotation="0" y="64.86"/>
  2606. <line x="6.22" y="78.16"/>
  2607. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="1.52" x-axis-rotation="0" y="77.76"/>
  2608. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0.92" x-axis-rotation="0" y="72.26"/>
  2609. <close/>
  2610. <move x="21.42" y="45.76"/>
  2611. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="20.22" x-axis-rotation="0" y="41.36"/>
  2612. <line x="25.82" y="41.36"/>
  2613. <line x="33.52" y="29.66"/>
  2614. <line x="43.72" y="43.76"/>
  2615. <line x="53.22" y="28.66"/>
  2616. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="55.92" x-axis-rotation="0" y="33.06"/>
  2617. <line x="44.02" y="51.96"/>
  2618. <line x="33.72" y="37.26"/>
  2619. <line x="28.12" y="45.76"/>
  2620. <close/>
  2621. <move x="32.12" y="11.86"/>
  2622. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="25.72" x-axis-rotation="0" y="14.36"/>
  2623. <line x="25.72" y="2.86"/>
  2624. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="28.82" x-axis-rotation="0" y="0.06"/>
  2625. <line x="96.82" y="0.06"/>
  2626. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.62" x-axis-rotation="0" y="3.06"/>
  2627. <line x="99.62" y="49.86"/>
  2628. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.82" x-axis-rotation="0" y="53.06"/>
  2629. <line x="64.42" y="53.06"/>
  2630. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="66.72" x-axis-rotation="0" y="46.66"/>
  2631. <line x="93.22" y="46.66"/>
  2632. <line x="93.22" y="6.36"/>
  2633. <line x="32.12" y="6.36"/>
  2634. <close/>
  2635. <move x="66.02" y="12.76"/>
  2636. <line x="73.72" y="28.26"/>
  2637. <line x="81.22" y="20.76"/>
  2638. <line x="85.62" y="29.16"/>
  2639. <line x="88.52" y="29.16"/>
  2640. <line x="88.52" y="31.76"/>
  2641. <line x="84.02" y="31.76"/>
  2642. <line x="80.62" y="24.86"/>
  2643. <line x="73.12" y="32.56"/>
  2644. <line x="65.72" y="17.76"/>
  2645. <line x="61.52" y="24.26"/>
  2646. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="59.92" x-axis-rotation="0" y="22.06"/>
  2647. <close/>
  2648. <move x="39.82" y="60.76"/>
  2649. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="59.52" x-axis-rotation="0" y="39.36"/>
  2650. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="39.82" x-axis-rotation="0" y="19.26"/>
  2651. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="18.02" x-axis-rotation="0" y="39.36"/>
  2652. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="39.82" x-axis-rotation="0" y="60.76"/>
  2653. <close/>
  2654. </path>
  2655. <fillstroke/>
  2656. </foreground>
  2657. </shape>
  2658. <shape aspect="variable" h="100.53" name="Mouse" strokewidth="inherit" w="59.4">
  2659. <connections>
  2660. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2661. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2662. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2663. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2664. <constraint name="NE" perimeter="0" x="0.85" y="0.07"/>
  2665. <constraint name="NW" perimeter="0" x="0.15" y="0.07"/>
  2666. <constraint name="SE" perimeter="0" x="0.85" y="0.93"/>
  2667. <constraint name="SW" perimeter="0" x="0.15" y="0.93"/>
  2668. </connections>
  2669. <foreground>
  2670. <path>
  2671. <move x="0" y="52.43"/>
  2672. <line x="59.4" y="52.43"/>
  2673. <line x="59.4" y="74.03"/>
  2674. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="29.7" x-axis-rotation="0" y="99.63"/>
  2675. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="0" x-axis-rotation="0" y="74.03"/>
  2676. <close/>
  2677. <move x="0" y="47.73"/>
  2678. <line x="0" y="27.03"/>
  2679. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="1" x="27.9" x-axis-rotation="0" y="0.33"/>
  2680. <line x="27.9" y="10.43"/>
  2681. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="21" x-axis-rotation="0" y="17.23"/>
  2682. <line x="21" y="32.53"/>
  2683. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="28" x-axis-rotation="0" y="38.13"/>
  2684. <line x="28" y="47.73"/>
  2685. <close/>
  2686. <move x="31.5" y="38.13"/>
  2687. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="38.4" x-axis-rotation="0" y="32.03"/>
  2688. <line x="38.4" y="16.53"/>
  2689. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="31.5" x-axis-rotation="0" y="10.43"/>
  2690. <line x="31.5" y="0.33"/>
  2691. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="1" x="59.2" x-axis-rotation="0" y="27.03"/>
  2692. <line x="59.2" y="47.73"/>
  2693. <line x="31.5" y="47.73"/>
  2694. <close/>
  2695. <move x="26.7" y="34.43"/>
  2696. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="24.5" x-axis-rotation="0" y="31.03"/>
  2697. <line x="24.5" y="17.33"/>
  2698. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="27.2" x-axis-rotation="0" y="14.03"/>
  2699. <line x="32.2" y="14.03"/>
  2700. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="34.9" x-axis-rotation="0" y="17.03"/>
  2701. <line x="34.9" y="31.03"/>
  2702. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="32.2" x-axis-rotation="0" y="34.43"/>
  2703. <close/>
  2704. </path>
  2705. <fillstroke/>
  2706. </foreground>
  2707. </shape>
  2708. <shape aspect="variable" h="70.8" name="Network Card" strokewidth="inherit" w="99.6">
  2709. <connections>
  2710. <constraint name="N" perimeter="0" x="0.5" y="0.08"/>
  2711. <constraint name="S" perimeter="0" x="0.5" y="0.975"/>
  2712. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2713. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2714. <constraint name="NE" perimeter="0" x="1" y="0.08"/>
  2715. <constraint name="NW" perimeter="0" x="0" y="0"/>
  2716. <constraint name="SE" perimeter="0" x="1" y="0.89"/>
  2717. <constraint name="SW" perimeter="0" x="0" y="1"/>
  2718. </connections>
  2719. <foreground>
  2720. <path>
  2721. <move x="0" y="70.8"/>
  2722. <line x="0" y="0"/>
  2723. <line x="5.7" y="0"/>
  2724. <line x="5.7" y="5.7"/>
  2725. <line x="99.6" y="5.7"/>
  2726. <line x="99.6" y="63"/>
  2727. <line x="92" y="63"/>
  2728. <line x="92" y="68.9"/>
  2729. <line x="72.8" y="68.9"/>
  2730. <line x="72.8" y="62.9"/>
  2731. <line x="63.3" y="62.9"/>
  2732. <line x="63.3" y="68.9"/>
  2733. <line x="30.6" y="68.9"/>
  2734. <line x="30.6" y="63"/>
  2735. <line x="9.6" y="63"/>
  2736. <line x="9.6" y="55.3"/>
  2737. <line x="5.7" y="55.3"/>
  2738. <line x="5.7" y="70.8"/>
  2739. <close/>
  2740. <move x="5.7" y="49.8"/>
  2741. <line x="9.7" y="49.8"/>
  2742. <line x="9.7" y="34.3"/>
  2743. <line x="25" y="34.3"/>
  2744. <line x="24.9" y="49.8"/>
  2745. <line x="59.4" y="49.8"/>
  2746. <line x="59.4" y="55.5"/>
  2747. <line x="92" y="55.5"/>
  2748. <line x="92.1" y="42"/>
  2749. <line x="59.4" y="42"/>
  2750. <line x="59.4" y="47.8"/>
  2751. <line x="26.8" y="47.8"/>
  2752. <line x="26.8" y="32.4"/>
  2753. <line x="9.7" y="32.4"/>
  2754. <line x="9.7" y="26.7"/>
  2755. <line x="32.6" y="26.7"/>
  2756. <line x="32.6" y="36.4"/>
  2757. <line x="57.5" y="36.4"/>
  2758. <line x="57.5" y="15.1"/>
  2759. <line x="32.6" y="15.1"/>
  2760. <line x="32.6" y="24.8"/>
  2761. <line x="9.7" y="24.8"/>
  2762. <line x="9.7" y="20.9"/>
  2763. <line x="5.7" y="20.9"/>
  2764. <close/>
  2765. </path>
  2766. <fillstroke/>
  2767. </foreground>
  2768. </shape>
  2769. <shape aspect="variable" h="35" name="Not Allowed" strokewidth="inherit" w="35">
  2770. <connections>
  2771. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2772. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2773. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2774. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2775. <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
  2776. <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
  2777. <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
  2778. <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
  2779. </connections>
  2780. <foreground>
  2781. <path>
  2782. <move x="17.5" y="0"/>
  2783. <curve x1="7.8" x2="0" x3="0" y1="0" y2="7.9" y3="17.5"/>
  2784. <curve x1="0" x2="7.8" x3="17.5" y1="27.2" y2="35" y3="35"/>
  2785. <curve x1="27.1" x2="35" x3="35" y1="35" y2="27.2" y3="17.5"/>
  2786. <curve x1="35" x2="27.2" x3="17.5" y1="7.9" y2="0" y3="0"/>
  2787. <close/>
  2788. <move x="4.1" y="17.5"/>
  2789. <curve x1="4.1" x2="5.1" x3="6.7" y1="14.6" y2="11.8" y3="9.6"/>
  2790. <line x="25.4" y="28.3"/>
  2791. <curve x1="23.2" x2="20.5" x3="17.5" y1="30" y2="30.9" y3="30.9"/>
  2792. <curve x1="10.1" x2="4.1" x3="4.1" y1="30.9" y2="24.9" y3="17.5"/>
  2793. <close/>
  2794. <move x="28.3" y="25.4"/>
  2795. <line x="9.6" y="6.7"/>
  2796. <curve x1="11.8" x2="14.5" x3="17.5" y1="5.1" y2="4.1" y3="4.1"/>
  2797. <curve x1="24.9" x2="30.9" x3="30.9" y1="4.1" y2="10.1" y3="17.5"/>
  2798. <curve x1="30.9" x2="29.9" x3="28.3" y1="20.5" y2="23.2" y3="25.4"/>
  2799. <close/>
  2800. </path>
  2801. <fillstroke/>
  2802. </foreground>
  2803. </shape>
  2804. <shape aspect="variable" h="57.4" name="Pack" strokewidth="inherit" w="64.1">
  2805. <connections>
  2806. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2807. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2808. <constraint name="W" perimeter="0" x="0.005" y="0.55"/>
  2809. <constraint name="E" perimeter="0" x="0.995" y="0.55"/>
  2810. <constraint name="NE" perimeter="0" x="0.715" y="0.005"/>
  2811. <constraint name="NW" perimeter="0" x="0.285" y="0.005"/>
  2812. <constraint name="SE" perimeter="0" x="0.92" y="1"/>
  2813. <constraint name="SW" perimeter="0" x="0.07" y="1"/>
  2814. </connections>
  2815. <foreground>
  2816. <path>
  2817. <move x="39.9" y="40.7"/>
  2818. <curve x1="37.7" x2="35.1" x3="32.5" y1="42.4" y2="43.2" y3="43.2"/>
  2819. <curve x1="29.7" x2="27" x3="24.7" y1="43.2" y2="42.2" y3="40.4"/>
  2820. <curve x1="24.6" x2="24.7" x3="25.5" y1="39.1" y2="37" y3="34.9"/>
  2821. <curve x1="26.1" x2="26.6" x3="27.3" y1="34.9" y2="34.9" y3="34.6"/>
  2822. <curve x1="27.6" x2="27.9" x3="28.4" y1="34.9" y2="35.2" y3="35.4"/>
  2823. <curve x1="29.6" x2="30.9" x3="31.9" y1="36.3" y2="37.1" y3="37.7"/>
  2824. <curve x1="31.8" x2="32" x3="32.4" y1="38.3" y2="38.9" y3="39.4"/>
  2825. <curve x1="33.2" x2="34.8" x3="35.8" y1="40.5" y2="40.7" y3="39.8"/>
  2826. <curve x1="36" x2="36.2" x3="36.3" y1="39.6" y2="39.4" y3="39.2"/>
  2827. <curve x1="38.2" x2="39.8" x3="41" y1="39.6" y2="39.7" y3="39.7"/>
  2828. <curve x1="40.6" x2="40.4" x3="39.9" y1="40.1" y2="40.4" y3="40.7"/>
  2829. <close/>
  2830. <move x="22.5" y="24.1"/>
  2831. <curve x1="22.2" x2="22.1" x3="23" y1="25.3" y2="27" y3="29"/>
  2832. <curve x1="21.9" x2="21.9" x3="23" y1="30.3" y2="32.1" y3="33.4"/>
  2833. <line x="23.3" y="33.7"/>
  2834. <curve x1="22.9" x2="22.7" x3="22.6" y1="35.2" y2="36.7" y3="37.9"/>
  2835. <curve x1="19.5" x2="19.7" x3="22.5" y1="33.7" y2="28.2" y3="24.1"/>
  2836. <close/>
  2837. <move x="25.1" y="21.4"/>
  2838. <curve x1="25.7" x2="26.4" x3="27.1" y1="20.9" y2="20.5" y3="20.1"/>
  2839. <curve x1="28" x2="29.1" x3="30.4" y1="21.5" y2="22.9" y3="24.2"/>
  2840. <curve x1="29.3" x2="28.2" x3="27" y1="25" y2="25.9" y3="27.1"/>
  2841. <curve x1="26.9" x2="26.7" x3="26.6" y1="27.3" y2="27.4" y3="27.6"/>
  2842. <curve x1="25.9" x2="25.3" x3="24.6" y1="27.5" y2="27.5" y3="27.7"/>
  2843. <curve x1="23.5" x2="23.5" x3="23.7" y1="25.4" y2="23.5" y3="22.4"/>
  2844. <curve x1="24.2" x2="24.5" x3="25.1" y1="22.1" y2="21.8" y3="21.4"/>
  2845. <close/>
  2846. <move x="40.4" y="21.7"/>
  2847. <curve x1="38.5" x2="35.6" x3="32.3" y1="21.3" y2="21.4" y3="23.2"/>
  2848. <curve x1="31.2" x2="30.1" x3="28.9" y1="22" y2="20.7" y3="19.5"/>
  2849. <curve x1="30.1" x2="31.4" x3="32.7" y1="19.1" y2="18.9" y3="18.9"/>
  2850. <curve x1="35.3" x2="38" x3="40.4" y1="18.9" y2="19.9" y3="21.7"/>
  2851. <close/>
  2852. <move x="36.6" y="37.5"/>
  2853. <curve x1="36.5" x2="36.4" x3="36.2" y1="37.2" y2="36.8" y3="36.5"/>
  2854. <curve x1="35.4" x2="34" x3="33" y1="35.5" y2="35.3" y3="35.9"/>
  2855. <curve x1="31.9" x2="30.8" x3="29.7" y1="35.3" y2="34.6" y3="33.7"/>
  2856. <curve x1="29.5" x2="29.3" x3="29" y1="33.5" y2="33.3" y3="33.1"/>
  2857. <curve x1="29.7" x2="29.8" x3="29.1" y1="32" y2="30.6" y3="29.4"/>
  2858. <line x="29.5" y="29"/>
  2859. <curve x1="30.6" x2="31.7" x3="32.7" y1="27.9" y2="27.1" y3="26.4"/>
  2860. <curve x1="34.2" x2="35.9" x3="37.4" y1="27.8" y2="29.1" y3="30.3"/>
  2861. <curve x1="37" x2="37.1" x3="37.7" y1="31.2" y2="32.2" y3="33"/>
  2862. <curve x1="38.6" x2="40.2" x3="41.5" y1="34.2" y2="34.4" y3="33.5"/>
  2863. <curve x1="41.6" x2="41.6" x3="41.7" y1="33.5" y2="33.4" y3="33.4"/>
  2864. <curve x1="42.8" x2="43.7" x3="44.2" y1="34.2" y2="34.8" y3="35.1"/>
  2865. <curve x1="43.9" x2="43.4" x3="42.8" y1="36" y2="36.9" y3="37.8"/>
  2866. <curve x1="41.8" x2="39.7" x3="36.6" y1="38.1" y2="38.4" y3="37.5"/>
  2867. <close/>
  2868. <move x="44.3" y="34.2"/>
  2869. <curve x1="43.8" x2="43.1" x3="42.2" y1="33.8" y2="33.3" y3="32.6"/>
  2870. <curve x1="42.5" x2="42.4" x3="41.8" y1="31.8" y2="30.8" y3="30.1"/>
  2871. <curve x1="41" x2="39.4" x3="38.4" y1="29" y2="28.8" y3="29.4"/>
  2872. <curve x1="37.2" x2="35.8" x3="34.4" y1="28.3" y2="26.9" y3="25.5"/>
  2873. <curve x1="38.6" x2="41.8" x3="42.1" y1="23.2" y2="23.4" y3="23.4"/>
  2874. <curve x1="42.1" x2="42.2" x3="42.3" y1="23.5" y2="23.5" y3="23.6"/>
  2875. <curve x1="44.6" x2="45.2" x3="44.3" y1="26.7" y2="30.7" y3="34.2"/>
  2876. <close/>
  2877. <move x="43.6" y="22.6"/>
  2878. <curve x1="40.9" x2="36.6" x3="32.5" y1="19" y2="17.1" y3="17.1"/>
  2879. <curve x1="29.4" x2="26.5" x3="24" y1="17.1" y2="18" y3="20"/>
  2880. <curve x1="17.9" x2="16.6" x3="21.4" y1="24.7" y2="33.5" y3="39.6"/>
  2881. <curve x1="24.2" x2="28.4" x3="32.5" y1="43.2" y2="45.1" y3="45.1"/>
  2882. <curve x1="35.6" x2="38.5" x3="41" y1="45.1" y2="44.2" y3="42.2"/>
  2883. <curve x1="47.1" x2="48.3" x3="43.6" y1="37.5" y2="28.6" y3="22.6"/>
  2884. <close/>
  2885. <move x="8.6" y="44.7"/>
  2886. <line x="12.9" y="47.3"/>
  2887. <line x="12.9" y="42"/>
  2888. <line x="8.6" y="39.5"/>
  2889. <line x="8.6" y="44.7"/>
  2890. <close/>
  2891. <move x="50.1" y="42"/>
  2892. <line x="50.1" y="47.3"/>
  2893. <line x="54.4" y="44.7"/>
  2894. <line x="54.4" y="39.5"/>
  2895. <line x="50.1" y="42"/>
  2896. <close/>
  2897. <move x="31.5" y="4.5"/>
  2898. <line x="27" y="6.8"/>
  2899. <line x="31.5" y="9.6"/>
  2900. <line x="36" y="6.8"/>
  2901. <line x="31.5" y="4.5"/>
  2902. <close/>
  2903. <move x="47.27" y="39.51"/>
  2904. <line x="49.5" y="40.9"/>
  2905. <line x="54" y="38.1"/>
  2906. <line x="49.5" y="35.9"/>
  2907. <line x="48.69" y="36.3"/>
  2908. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="47.27" x-axis-rotation="0" y="39.51"/>
  2909. <close/>
  2910. <move x="44.6" y="43.04"/>
  2911. <line x="44.6" y="44.7"/>
  2912. <line x="48.9" y="47.3"/>
  2913. <line x="48.9" y="42"/>
  2914. <line x="46.57" y="40.64"/>
  2915. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="44.6" x-axis-rotation="0" y="43.04"/>
  2916. <close/>
  2917. <move x="36" y="47.74"/>
  2918. <line x="36" y="50.3"/>
  2919. <curve x1="36" x2="36.7" x3="37.5" y1="51.2" y2="51.9" y3="51.9"/>
  2920. <line x="46" y="51.9"/>
  2921. <curve x1="47" x2="45.7" x3="40.2" y1="55.2" y2="55.7" y3="55.7"/>
  2922. <line x="40.2" y="57.4"/>
  2923. <line x="58.8" y="57.4"/>
  2924. <line x="58.8" y="55.6"/>
  2925. <curve x1="53.4" x2="52.8" x3="53.7" y1="55.6" y2="55.1" y3="51.9"/>
  2926. <line x="62.3" y="51.9"/>
  2927. <curve x1="63.2" x2="64" x3="64" y1="51.9" y2="51.1" y3="50.3"/>
  2928. <line x="64" y="32.9"/>
  2929. <curve x1="64.1" x2="63.2" x3="62.4" y1="32.1" y2="31.3" y3="31.3"/>
  2930. <line x="49.5" y="31.3"/>
  2931. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="49.32" x-axis-rotation="0" y="33.6"/>
  2932. <line x="61.9" y="33.6"/>
  2933. <line x="61.9" y="49.8"/>
  2934. <line x="38.2" y="49.8"/>
  2935. <line x="38.2" y="47.12"/>
  2936. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="36" x-axis-rotation="0" y="47.74"/>
  2937. <close/>
  2938. <move x="17.87" y="39.75"/>
  2939. <line x="14" y="42"/>
  2940. <line x="14" y="47.3"/>
  2941. <line x="18.3" y="44.7"/>
  2942. <line x="18.3" y="40.45"/>
  2943. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="17.87" x-axis-rotation="0" y="39.75"/>
  2944. <close/>
  2945. <move x="16.75" y="37.49"/>
  2946. <line x="13.5" y="35.9"/>
  2947. <line x="8.9" y="38.1"/>
  2948. <line x="13.5" y="40.9"/>
  2949. <line x="17.23" y="38.58"/>
  2950. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="16.75" x-axis-rotation="0" y="37.49"/>
  2951. <close/>
  2952. <move x="15.5" y="31.3"/>
  2953. <line x="1.5" y="31.3"/>
  2954. <curve x1="0.7" x2="0" x3="0" y1="31.3" y2="32" y3="32.9"/>
  2955. <line x="0" y="50.3"/>
  2956. <curve x1="0" x2="0.7" x3="1.5" y1="51.2" y2="51.9" y3="51.9"/>
  2957. <line x="10" y="51.9"/>
  2958. <curve x1="11" x2="9.7" x3="4.2" y1="55.2" y2="55.7" y3="55.7"/>
  2959. <line x="4.2" y="57.4"/>
  2960. <line x="22.8" y="57.4"/>
  2961. <line x="22.8" y="55.6"/>
  2962. <curve x1="17.4" x2="16.8" x3="17.7" y1="55.6" y2="55.1" y3="51.9"/>
  2963. <line x="26.3" y="51.9"/>
  2964. <curve x1="27.2" x2="28" x3="28" y1="51.9" y2="51.1" y3="50.3"/>
  2965. <line x="28" y="47.49"/>
  2966. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="25.9" x-axis-rotation="0" y="46.77"/>
  2967. <line x="25.9" y="49.8"/>
  2968. <line x="2.2" y="49.8"/>
  2969. <line x="2.2" y="33.6"/>
  2970. <line x="15.68" y="33.6"/>
  2971. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="15.5" x-axis-rotation="0" y="31.3"/>
  2972. <close/>
  2973. <move x="30.9" y="14.18"/>
  2974. <line x="30.9" y="10.6"/>
  2975. <line x="26.6" y="8.1"/>
  2976. <line x="26.6" y="13.4"/>
  2977. <line x="28.59" y="14.56"/>
  2978. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="30.9" x-axis-rotation="0" y="14.18"/>
  2979. <close/>
  2980. <move x="34.82" y="14.26"/>
  2981. <line x="36.3" y="13.4"/>
  2982. <line x="36.3" y="8.2"/>
  2983. <line x="32" y="10.6"/>
  2984. <line x="32" y="14.11"/>
  2985. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="34.82" x-axis-rotation="0" y="14.26"/>
  2986. <close/>
  2987. <move x="45.38" y="20"/>
  2988. <curve x1="45.75" x2="46" x3="46" y1="19.69" y2="19.25" y3="18.8"/>
  2989. <line x="46" y="1.4"/>
  2990. <curve x1="46.1" x2="45.2" x3="44.4" y1="0.7" y2="0" y3="0"/>
  2991. <line x="19.5" y="0"/>
  2992. <curve x1="18.7" x2="18" x3="18" y1="0" y2="0.7" y3="1.6"/>
  2993. <line x="18" y="19"/>
  2994. <curve x1="18" x2="18.51" x3="19.16" y1="19.77" y2="20.39" y3="20.56"/>
  2995. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="21.2" x-axis-rotation="0" y="18.4"/>
  2996. <line x="20.2" y="18.4"/>
  2997. <line x="20.2" y="2.2"/>
  2998. <line x="43.9" y="2.2"/>
  2999. <line x="43.9" y="18.4"/>
  3000. <line x="43.8" y="18.4"/>
  3001. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="45.38" x-axis-rotation="0" y="20"/>
  3002. <close/>
  3003. </path>
  3004. <fillstroke/>
  3005. </foreground>
  3006. </shape>
  3007. <shape aspect="variable" h="100" name="Performance" strokewidth="inherit" w="100">
  3008. <connections>
  3009. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3010. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3011. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3012. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3013. <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
  3014. <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
  3015. <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
  3016. <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
  3017. </connections>
  3018. <foreground>
  3019. <path>
  3020. <move x="50" y="100"/>
  3021. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  3022. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
  3023. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
  3024. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
  3025. <close/>
  3026. <move x="50" y="91.2"/>
  3027. <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="91.2" x-axis-rotation="0" y="50"/>
  3028. <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="50" x-axis-rotation="0" y="8.8"/>
  3029. <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="8.8" x-axis-rotation="0" y="50"/>
  3030. <arc large-arc-flag="0" rx="41.2" ry="41.2" sweep-flag="0" x="50" x-axis-rotation="0" y="91.2"/>
  3031. <close/>
  3032. <move x="50" y="83.7"/>
  3033. <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="16.3" x-axis-rotation="0" y="50"/>
  3034. <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="50" x-axis-rotation="0" y="16.3"/>
  3035. <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="83.7" x-axis-rotation="0" y="50"/>
  3036. <arc large-arc-flag="0" rx="33.7" ry="33.7" sweep-flag="1" x="50" x-axis-rotation="0" y="83.7"/>
  3037. <close/>
  3038. <move x="80.5" y="37.3"/>
  3039. <line x="79" y="33.9"/>
  3040. <line x="58" y="41.9"/>
  3041. <arc large-arc-flag="1" rx="10.8" ry="10.8" sweep-flag="0" x="60.8" x-axis-rotation="0" y="48.2"/>
  3042. <close/>
  3043. </path>
  3044. <fillstroke/>
  3045. </foreground>
  3046. </shape>
  3047. <shape aspect="variable" h="71.6" name="Performance monitor" strokewidth="inherit" w="99.98">
  3048. <connections>
  3049. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3050. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3051. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3052. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3053. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  3054. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  3055. <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
  3056. <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
  3057. </connections>
  3058. <foreground>
  3059. <path>
  3060. <move x="2.99" y="71.6"/>
  3061. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="0.19" x-axis-rotation="0" y="67.8"/>
  3062. <line x="0.19" y="3.3"/>
  3063. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="2.99" x-axis-rotation="0" y="0"/>
  3064. <line x="96.99" y="0"/>
  3065. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="99.79" x-axis-rotation="0" y="3.3"/>
  3066. <line x="99.79" y="67.8"/>
  3067. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="96.99" x-axis-rotation="0" y="71.6"/>
  3068. <close/>
  3069. <move x="8.79" y="63"/>
  3070. <line x="91.29" y="63"/>
  3071. <line x="91.29" y="8.7"/>
  3072. <line x="8.79" y="8.7"/>
  3073. <close/>
  3074. <move x="12.19" y="39.9"/>
  3075. <line x="12.19" y="35.6"/>
  3076. <line x="15.29" y="35.6"/>
  3077. <line x="20.79" y="24.3"/>
  3078. <line x="30.19" y="34.5"/>
  3079. <line x="40.79" y="13.4"/>
  3080. <line x="57.89" y="49.9"/>
  3081. <line x="77.79" y="21.1"/>
  3082. <line x="85.19" y="44.3"/>
  3083. <line x="87.89" y="44.3"/>
  3084. <line x="87.89" y="48.6"/>
  3085. <line x="81.99" y="48.6"/>
  3086. <line x="76.39" y="30.5"/>
  3087. <line x="57.29" y="58.3"/>
  3088. <line x="40.69" y="23.1"/>
  3089. <line x="31.39" y="42"/>
  3090. <line x="21.79" y="31.6"/>
  3091. <line x="17.79" y="39.8"/>
  3092. <close/>
  3093. </path>
  3094. <fillstroke/>
  3095. </foreground>
  3096. </shape>
  3097. <shape aspect="variable" h="99.6" name="Plug and Play" strokewidth="inherit" w="79.5">
  3098. <connections>
  3099. <constraint name="N" perimeter="0" x="0.5" y="0.25"/>
  3100. <constraint name="S" perimeter="0" x="0.5" y="0.75"/>
  3101. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3102. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3103. <constraint name="NW" perimeter="0" x="0" y="0"/>
  3104. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3105. </connections>
  3106. <foreground>
  3107. <path>
  3108. <move x="0" y="99.6"/>
  3109. <line x="0" y="53"/>
  3110. <line x="7.8" y="53"/>
  3111. <line x="7.8" y="56.6"/>
  3112. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="12.2" x-axis-rotation="0" y="60.7"/>
  3113. <line x="28" y="60.7"/>
  3114. <line x="28" y="64"/>
  3115. <line x="31.1" y="64"/>
  3116. <line x="31.1" y="57.6"/>
  3117. <line x="45.2" y="57.6"/>
  3118. <line x="45.2" y="53.6"/>
  3119. <line x="31.1" y="53.6"/>
  3120. <line x="31.1" y="46"/>
  3121. <line x="45.2" y="45.8"/>
  3122. <line x="45.2" y="42"/>
  3123. <line x="31.1" y="42"/>
  3124. <line x="31.1" y="35.7"/>
  3125. <line x="28" y="35.7"/>
  3126. <line x="28" y="38.8"/>
  3127. <line x="12.2" y="38.8"/>
  3128. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="7.7" x-axis-rotation="0" y="43.3"/>
  3129. <line x="7.7" y="46.6"/>
  3130. <line x="0" y="46.6"/>
  3131. <line x="0" y="0"/>
  3132. <line x="79.5" y="49.8"/>
  3133. <close/>
  3134. </path>
  3135. <fillstroke/>
  3136. </foreground>
  3137. </shape>
  3138. <shape aspect="variable" h="68.2" name="Protocol Stack" strokewidth="inherit" w="99.61">
  3139. <connections>
  3140. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3141. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3142. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3143. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3144. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  3145. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  3146. <constraint name="SE" perimeter="0" x="0.99" y="0.99"/>
  3147. <constraint name="SW" perimeter="0" x="0.01" y="0.99"/>
  3148. </connections>
  3149. <foreground>
  3150. <path>
  3151. <move x="2.8" y="68.2"/>
  3152. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="65.2"/>
  3153. <line x="0" y="53.7"/>
  3154. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="50.8"/>
  3155. <line x="46.9" y="50.8"/>
  3156. <line x="46.9" y="46.9"/>
  3157. <line x="41" y="46.9"/>
  3158. <line x="49.8" y="37.1"/>
  3159. <line x="58.6" y="46.9"/>
  3160. <line x="52.6" y="46.9"/>
  3161. <line x="52.6" y="50.9"/>
  3162. <line x="96.8" y="50.8"/>
  3163. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="53.7"/>
  3164. <line x="99.6" y="65.2"/>
  3165. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="68.2"/>
  3166. <close/>
  3167. <move x="39.4" y="42.9"/>
  3168. <line x="2.8" y="42.9"/>
  3169. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="40.2"/>
  3170. <line x="0" y="28.2"/>
  3171. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="25.5"/>
  3172. <line x="46.9" y="25.5"/>
  3173. <line x="46.9" y="21.5"/>
  3174. <line x="41.1" y="21.5"/>
  3175. <line x="49.8" y="11.8"/>
  3176. <line x="58.5" y="21.5"/>
  3177. <line x="52.6" y="21.5"/>
  3178. <line x="52.6" y="25.5"/>
  3179. <line x="96.8" y="25.5"/>
  3180. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="28.2"/>
  3181. <line x="99.6" y="40.2"/>
  3182. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="42.9"/>
  3183. <line x="60.3" y="42.9"/>
  3184. <line x="49.8" y="31.2"/>
  3185. <close/>
  3186. <move x="2.8" y="17.6"/>
  3187. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="14.6"/>
  3188. <line x="0" y="3"/>
  3189. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="0"/>
  3190. <line x="96.8" y="0"/>
  3191. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="3"/>
  3192. <line x="99.6" y="14.6"/>
  3193. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.8" x-axis-rotation="0" y="17.6"/>
  3194. <line x="60.4" y="17.6"/>
  3195. <line x="49.8" y="5.8"/>
  3196. <line x="39.3" y="17.6"/>
  3197. <close/>
  3198. </path>
  3199. <fillstroke/>
  3200. </foreground>
  3201. </shape>
  3202. <shape aspect="variable" h="79.2" name="RMS Connector" strokewidth="inherit" w="60.4">
  3203. <connections>
  3204. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3205. <constraint name="S" perimeter="0" x="0.5" y="0.98"/>
  3206. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3207. <constraint name="E" perimeter="0" x="0.825" y="0.5"/>
  3208. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  3209. <constraint name="SE" perimeter="0" x="1" y="0.975"/>
  3210. <constraint name="SW" perimeter="0" x="0" y="0.975"/>
  3211. </connections>
  3212. <foreground>
  3213. <path>
  3214. <move x="17.1" y="77.3"/>
  3215. <line x="0" y="77.3"/>
  3216. <line x="0" y="2.8"/>
  3217. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="3.1" x-axis-rotation="0" y="0"/>
  3218. <line x="34.7" y="0"/>
  3219. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="37.7" x-axis-rotation="0" y="2.8"/>
  3220. <line x="37.7" y="26.5"/>
  3221. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="30" x-axis-rotation="0" y="31.3"/>
  3222. <arc large-arc-flag="0" rx="12" ry="16" sweep-flag="0" x="28.1" x-axis-rotation="0" y="41.7"/>
  3223. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="24.5" x-axis-rotation="0" y="45.3"/>
  3224. <line x="24.5" y="58.5"/>
  3225. <line x="5.7" y="58.5"/>
  3226. <line x="5.7" y="62.2"/>
  3227. <line x="24.5" y="62.2"/>
  3228. <line x="24.5" y="66"/>
  3229. <line x="5.7" y="66"/>
  3230. <line x="5.7" y="69.9"/>
  3231. <line x="17" y="69.9"/>
  3232. <close/>
  3233. <move x="5.7" y="15.1"/>
  3234. <line x="32" y="15.1"/>
  3235. <line x="32" y="11.2"/>
  3236. <line x="5.7" y="11.2"/>
  3237. <close/>
  3238. <move x="28.4" y="45.8"/>
  3239. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="30.1" x-axis-rotation="0" y="43.6"/>
  3240. <line x="31.5" y="43.6"/>
  3241. <line x="31.5" y="38.3"/>
  3242. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="40.6" x-axis-rotation="0" y="30.2"/>
  3243. <arc large-arc-flag="0" rx="8.5" ry="8.5" sweep-flag="1" x="49.6" x-axis-rotation="0" y="38.3"/>
  3244. <line x="49.6" y="43.6"/>
  3245. <line x="51.1" y="43.6"/>
  3246. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="52.8" x-axis-rotation="0" y="45.8"/>
  3247. <line x="52.8" y="62.1"/>
  3248. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="51.1" x-axis-rotation="0" y="64.1"/>
  3249. <line x="43.4" y="64.1"/>
  3250. <line x="43.4" y="69.8"/>
  3251. <line x="45.4" y="69.8"/>
  3252. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="46.9" x-axis-rotation="0" y="71.7"/>
  3253. <line x="60.4" y="71.7"/>
  3254. <line x="60.4" y="77.3"/>
  3255. <line x="46.9" y="77.3"/>
  3256. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="45.1" x-axis-rotation="0" y="79.2"/>
  3257. <line x="35.6" y="79.2"/>
  3258. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="34" x-axis-rotation="0" y="77.3"/>
  3259. <line x="20.8" y="77.3"/>
  3260. <line x="20.8" y="71.7"/>
  3261. <line x="34" y="71.7"/>
  3262. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="35.6" x-axis-rotation="0" y="69.8"/>
  3263. <line x="37.8" y="69.8"/>
  3264. <line x="37.8" y="64.1"/>
  3265. <line x="30.4" y="64.1"/>
  3266. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="28.4" x-axis-rotation="0" y="62.1"/>
  3267. <close/>
  3268. <move x="39.4" y="60.8"/>
  3269. <line x="41.8" y="60.8"/>
  3270. <line x="41.8" y="53.5"/>
  3271. <arc large-arc-flag="1" rx="2.8" ry="2.8" sweep-flag="0" x="39.4" x-axis-rotation="0" y="53.5"/>
  3272. <close/>
  3273. <move x="46.8" y="43.6"/>
  3274. <line x="46.8" y="38.8"/>
  3275. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="40.8" x-axis-rotation="0" y="33.1"/>
  3276. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="34.5" x-axis-rotation="0" y="38.8"/>
  3277. <line x="34.5" y="43.6"/>
  3278. <close/>
  3279. <move x="41.5" y="64.1"/>
  3280. <line x="39.5" y="64.1"/>
  3281. <line x="39.5" y="69.8"/>
  3282. <line x="41.5" y="69.8"/>
  3283. <close/>
  3284. <move x="45.3" y="71.6"/>
  3285. <line x="35.9" y="71.6"/>
  3286. <line x="35.9" y="77.3"/>
  3287. <line x="45.3" y="77.3"/>
  3288. <close/>
  3289. </path>
  3290. <fillstroke/>
  3291. </foreground>
  3292. </shape>
  3293. <shape aspect="variable" h="76.4" name="Router" strokewidth="inherit" w="98.8">
  3294. <connections>
  3295. <constraint name="N" perimeter="0" x="0.5" y="0.22"/>
  3296. <constraint name="S" perimeter="0" x="0.5" y="0.71"/>
  3297. <constraint name="W" perimeter="0" x="0.13" y="0.5"/>
  3298. <constraint name="E" perimeter="0" x="0.87" y="0.5"/>
  3299. <constraint name="NE" perimeter="0" x="1" y="0"/>
  3300. <constraint name="NW" perimeter="0" x="0" y="0"/>
  3301. <constraint name="SE" perimeter="0" x="1" y="1"/>
  3302. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3303. </connections>
  3304. <foreground>
  3305. <path>
  3306. <move x="16" y="54.1"/>
  3307. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="13.1" x-axis-rotation="0" y="51.9"/>
  3308. <line x="13.1" y="38"/>
  3309. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="16" x-axis-rotation="0" y="35.5"/>
  3310. <line x="82.7" y="35.5"/>
  3311. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="85.7" x-axis-rotation="0" y="38"/>
  3312. <line x="85.7" y="51.9"/>
  3313. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="82.7" x-axis-rotation="0" y="53.9"/>
  3314. <close/>
  3315. <move x="24.2" y="48.5"/>
  3316. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="27.9" x-axis-rotation="0" y="44.9"/>
  3317. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="41"/>
  3318. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="20.4" x-axis-rotation="0" y="44.9"/>
  3319. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="48.5"/>
  3320. <close/>
  3321. <move x="41" y="48.5"/>
  3322. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="44.8" x-axis-rotation="0" y="44.9"/>
  3323. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="41" x-axis-rotation="0" y="41"/>
  3324. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="37.2" x-axis-rotation="0" y="44.9"/>
  3325. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="41" x-axis-rotation="0" y="48.5"/>
  3326. <close/>
  3327. <move x="57.8" y="48.5"/>
  3328. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="61.5" x-axis-rotation="0" y="44.9"/>
  3329. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="57.8" x-axis-rotation="0" y="41"/>
  3330. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="54.1" x-axis-rotation="0" y="44.9"/>
  3331. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="57.8" x-axis-rotation="0" y="48.5"/>
  3332. <close/>
  3333. <move x="74.6" y="48.5"/>
  3334. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="78.3" x-axis-rotation="0" y="44.9"/>
  3335. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="74.6" x-axis-rotation="0" y="41"/>
  3336. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="70.8" x-axis-rotation="0" y="44.9"/>
  3337. <arc large-arc-flag="0" rx="3.7" ry="3.7" sweep-flag="0" x="74.6" x-axis-rotation="0" y="48.5"/>
  3338. <close/>
  3339. <move x="85.7" y="29.8"/>
  3340. <line x="13" y="29.8"/>
  3341. <line x="26.4" y="16.8"/>
  3342. <line x="72.3" y="16.8"/>
  3343. <close/>
  3344. <move x="84.3" y="17"/>
  3345. <line x="81.7" y="14.4"/>
  3346. <line x="93" y="3.2"/>
  3347. <line x="82.5" y="3.2"/>
  3348. <line x="85.8" y="0"/>
  3349. <line x="98.8" y="0"/>
  3350. <line x="98.8" y="13.2"/>
  3351. <line x="95.6" y="16.4"/>
  3352. <line x="95.6" y="5.8"/>
  3353. <close/>
  3354. <move x="16.4" y="3.2"/>
  3355. <line x="5.8" y="3.2"/>
  3356. <line x="17" y="14.4"/>
  3357. <line x="14.5" y="17"/>
  3358. <line x="3.2" y="5.8"/>
  3359. <line x="3.2" y="16.4"/>
  3360. <line x="0" y="13.2"/>
  3361. <line x="0" y="0"/>
  3362. <line x="13.1" y="0"/>
  3363. <close/>
  3364. <move x="3.2" y="60.2"/>
  3365. <line x="3.2" y="70.7"/>
  3366. <line x="14.5" y="59.3"/>
  3367. <line x="17" y="62"/>
  3368. <line x="5.8" y="73.2"/>
  3369. <line x="16.4" y="73.2"/>
  3370. <line x="13.1" y="76.4"/>
  3371. <line x="0" y="76.4"/>
  3372. <line x="0" y="63.2"/>
  3373. <close/>
  3374. <move x="82.5" y="73.2"/>
  3375. <line x="92.9" y="73.2"/>
  3376. <line x="81.7" y="61.9"/>
  3377. <line x="84.4" y="59.3"/>
  3378. <line x="95.5" y="70.7"/>
  3379. <line x="95.5" y="60.1"/>
  3380. <line x="98.8" y="63.3"/>
  3381. <line x="98.8" y="76.4"/>
  3382. <line x="85.8" y="76.4"/>
  3383. <close/>
  3384. </path>
  3385. <fillstroke/>
  3386. </foreground>
  3387. </shape>
  3388. <shape aspect="variable" h="99.6" name="Secondary Site" strokewidth="inherit" w="82.9">
  3389. <connections>
  3390. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3391. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3392. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3393. <constraint name="E" perimeter="0" x="0.99" y="0.56"/>
  3394. <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
  3395. <constraint name="SE" perimeter="0" x="0.995" y="0.99"/>
  3396. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3397. </connections>
  3398. <foreground>
  3399. <path>
  3400. <move x="0" y="99.2"/>
  3401. <line x="0" y="6"/>
  3402. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  3403. <line x="45" y="0"/>
  3404. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="51" x-axis-rotation="0" y="6"/>
  3405. <line x="51" y="51.1"/>
  3406. <line x="30.5" y="51.1"/>
  3407. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="23.5" x-axis-rotation="0" y="58.1"/>
  3408. <line x="23.5" y="70.7"/>
  3409. <line x="9.9" y="70.7"/>
  3410. <line x="9.9" y="75.1"/>
  3411. <line x="23.5" y="75.1"/>
  3412. <line x="23.5" y="83.5"/>
  3413. <line x="9.9" y="83.5"/>
  3414. <line x="9.9" y="87.8"/>
  3415. <line x="23.5" y="87.8"/>
  3416. <line x="23.5" y="97.3"/>
  3417. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="24.2" x-axis-rotation="0" y="99.2"/>
  3418. <close/>
  3419. <move x="9.9" y="17.2"/>
  3420. <line x="41" y="17.2"/>
  3421. <line x="41" y="12.8"/>
  3422. <line x="9.9" y="12.8"/>
  3423. <close/>
  3424. <move x="30.5" y="99.6"/>
  3425. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="27.5" x-axis-rotation="0" y="96.6"/>
  3426. <line x="27.5" y="58.6"/>
  3427. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30.5" x-axis-rotation="0" y="55.6"/>
  3428. <line x="79.9" y="55.6"/>
  3429. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="82.9" x-axis-rotation="0" y="58.6"/>
  3430. <line x="82.9" y="96.6"/>
  3431. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="79.9" x-axis-rotation="0" y="99.6"/>
  3432. <close/>
  3433. <move x="30.4" y="96.7"/>
  3434. <line x="80.2" y="96.7"/>
  3435. <line x="80.2" y="63.8"/>
  3436. <line x="30.4" y="63.8"/>
  3437. <close/>
  3438. <move x="65.9" y="61.3"/>
  3439. <line x="68.8" y="61.3"/>
  3440. <line x="68.8" y="58.3"/>
  3441. <line x="65.9" y="58.3"/>
  3442. <close/>
  3443. <move x="71.6" y="61.3"/>
  3444. <line x="74.5" y="61.3"/>
  3445. <line x="74.5" y="58.5"/>
  3446. <line x="71.6" y="58.5"/>
  3447. <close/>
  3448. <move x="77.4" y="61.3"/>
  3449. <line x="80.2" y="61.3"/>
  3450. <line x="80.2" y="58.5"/>
  3451. <line x="77.4" y="58.5"/>
  3452. <close/>
  3453. </path>
  3454. <fillstroke/>
  3455. </foreground>
  3456. </shape>
  3457. <shape aspect="variable" h="76.8" name="Secure Virtual Machine" strokewidth="inherit" w="99.85">
  3458. <connections>
  3459. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3460. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3461. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3462. <constraint name="E" perimeter="0" x="0.84" y="0.5"/>
  3463. <constraint name="NE" perimeter="0" x="0.82" y="0.01"/>
  3464. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  3465. <constraint name="SE" perimeter="0" x="0.9" y="0.915"/>
  3466. <constraint name="SW" perimeter="0" x="0.155" y="1"/>
  3467. </connections>
  3468. <foreground>
  3469. <path>
  3470. <move x="3.8" y="61.3"/>
  3471. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="57.3"/>
  3472. <line x="0" y="3.8"/>
  3473. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="3.8" x-axis-rotation="0" y="0"/>
  3474. <line x="79.3" y="0"/>
  3475. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="83.4" x-axis-rotation="0" y="3.8"/>
  3476. <line x="83.4" y="33.1"/>
  3477. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="77" x-axis-rotation="0" y="32.5"/>
  3478. <line x="77" y="6.5"/>
  3479. <line x="6.4" y="6.5"/>
  3480. <line x="6.4" y="54.9"/>
  3481. <line x="56.1" y="54.9"/>
  3482. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="58" x-axis-rotation="0" y="61.3"/>
  3483. <line x="52.4" y="61.3"/>
  3484. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="51.5" x-axis-rotation="0" y="66.6"/>
  3485. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="55" x-axis-rotation="0" y="71"/>
  3486. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="64.5" x-axis-rotation="0" y="71.8"/>
  3487. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="68.2" x-axis-rotation="0" y="75.5"/>
  3488. <line x="68.2" y="76.7"/>
  3489. <line x="15.4" y="76.7"/>
  3490. <line x="15.4" y="71.9"/>
  3491. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="26.4" x-axis-rotation="0" y="71.3"/>
  3492. <arc large-arc-flag="0" rx="4.7" ry="4.2" sweep-flag="0" x="31.1" x-axis-rotation="0" y="66.5"/>
  3493. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="29.8" x-axis-rotation="0" y="61.3"/>
  3494. <close/>
  3495. <move x="26.5" y="38.5"/>
  3496. <line x="26.5" y="23.7"/>
  3497. <line x="39.5" y="31.1"/>
  3498. <line x="39.5" y="45.8"/>
  3499. <close/>
  3500. <move x="27.8" y="21"/>
  3501. <line x="40.7" y="13.4"/>
  3502. <line x="53.7" y="20.8"/>
  3503. <line x="40.7" y="28.4"/>
  3504. <close/>
  3505. <move x="54.9" y="23.8"/>
  3506. <line x="54.9" y="38.5"/>
  3507. <line x="41.8" y="45.8"/>
  3508. <line x="41.8" y="31.2"/>
  3509. <close/>
  3510. <move x="59.4" y="42.9"/>
  3511. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="62.3" x-axis-rotation="0" y="40.8"/>
  3512. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="69.5" x-axis-rotation="0" y="42.2"/>
  3513. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="76.1" x-axis-rotation="0" y="38.1"/>
  3514. <arc large-arc-flag="0" rx="4.7" ry="4.5" sweep-flag="1" x="82.1" x-axis-rotation="0" y="37.6"/>
  3515. <line x="85.9" y="40.9"/>
  3516. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="0" x="92.8" x-axis-rotation="0" y="42.1"/>
  3517. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="96.4" x-axis-rotation="0" y="40.9"/>
  3518. <arc large-arc-flag="0" rx="2.5" ry="2.5" sweep-flag="1" x="99.4" x-axis-rotation="0" y="42.7"/>
  3519. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="95.9" x-axis-rotation="0" y="62"/>
  3520. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="79.4" x-axis-rotation="0" y="76.8"/>
  3521. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="64.1" x-axis-rotation="0" y="63.8"/>
  3522. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="59.4" x-axis-rotation="0" y="42.9"/>
  3523. <close/>
  3524. </path>
  3525. <fillstroke/>
  3526. </foreground>
  3527. </shape>
  3528. <shape aspect="variable" h="99.6" name="Server Directory" strokewidth="inherit" w="77.6">
  3529. <connections>
  3530. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3531. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3532. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3533. <constraint name="E" perimeter="0" x="0.625" y="0.5"/>
  3534. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  3535. <constraint name="SE" perimeter="0" x="0.98" y="1"/>
  3536. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3537. </connections>
  3538. <foreground>
  3539. <path>
  3540. <move x="0" y="99.6"/>
  3541. <line x="0" y="4.8"/>
  3542. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  3543. <line x="43.5" y="0"/>
  3544. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.5" x-axis-rotation="0" y="4.8"/>
  3545. <line x="48.5" y="58.4"/>
  3546. <line x="29.1" y="58.4"/>
  3547. <line x="29.1" y="60.7"/>
  3548. <line x="26.6" y="60.7"/>
  3549. <line x="26.6" y="75.3"/>
  3550. <line x="7.2" y="75.3"/>
  3551. <line x="7.2" y="80.2"/>
  3552. <line x="26.6" y="80.2"/>
  3553. <line x="26.6" y="85"/>
  3554. <line x="7.2" y="85"/>
  3555. <line x="7.2" y="89.9"/>
  3556. <line x="26.6" y="89.9"/>
  3557. <line x="26.6" y="99.6"/>
  3558. <close/>
  3559. <move x="7.2" y="19.5"/>
  3560. <line x="41.3" y="19.5"/>
  3561. <line x="41.3" y="14.6"/>
  3562. <line x="7.2" y="14.6"/>
  3563. <close/>
  3564. <move x="34" y="63.2"/>
  3565. <line x="45.5" y="63.2"/>
  3566. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="51.8" x-axis-rotation="0" y="64.5"/>
  3567. <line x="54.5" y="65.6"/>
  3568. <line x="58.8" y="64"/>
  3569. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="64.4" x-axis-rotation="0" y="63.2"/>
  3570. <line x="75.2" y="63.2"/>
  3571. <line x="75.2" y="65.7"/>
  3572. <line x="77.6" y="65.7"/>
  3573. <line x="77.6" y="72.8"/>
  3574. <line x="75.2" y="72.8"/>
  3575. <line x="75.2" y="75.6"/>
  3576. <line x="77.6" y="75.6"/>
  3577. <line x="77.6" y="82.5"/>
  3578. <line x="75.2" y="82.5"/>
  3579. <line x="75.2" y="85.1"/>
  3580. <line x="77.6" y="85.1"/>
  3581. <line x="77.6" y="92.2"/>
  3582. <line x="75.2" y="92.2"/>
  3583. <line x="75.2" y="94.3"/>
  3584. <line x="76.3" y="94.3"/>
  3585. <line x="76.3" y="99.6"/>
  3586. <line x="31.6" y="99.6"/>
  3587. <line x="31.6" y="65.6"/>
  3588. <line x="34" y="65.6"/>
  3589. <close/>
  3590. <move x="35.7" y="64.9"/>
  3591. <line x="35.7" y="97"/>
  3592. <line x="46.5" y="97"/>
  3593. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="50.8" x-axis-rotation="0" y="97.6"/>
  3594. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="54.1" x-axis-rotation="0" y="98.9"/>
  3595. <line x="54.1" y="66.9"/>
  3596. <line x="50.8" y="65.6"/>
  3597. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="46.5" x-axis-rotation="0" y="64.7"/>
  3598. <close/>
  3599. <move x="42" y="72.8"/>
  3600. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="44.8" x-axis-rotation="0" y="70.1"/>
  3601. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="47.8" x-axis-rotation="0" y="72.8"/>
  3602. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="44.8" x-axis-rotation="0" y="76.2"/>
  3603. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="42" x-axis-rotation="0" y="72.8"/>
  3604. <close/>
  3605. <move x="43" y="77.2"/>
  3606. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="44.9" x-axis-rotation="0" y="80.3"/>
  3607. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="47" x-axis-rotation="0" y="77.2"/>
  3608. <line x="48" y="77.5"/>
  3609. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="50.1" x-axis-rotation="0" y="78.9"/>
  3610. <line x="50.5" y="80.7"/>
  3611. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="49.6" x-axis-rotation="0" y="82.2"/>
  3612. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="40.1" x-axis-rotation="0" y="82.2"/>
  3613. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="39.3" x-axis-rotation="0" y="80.93"/>
  3614. <line x="39.9" y="79"/>
  3615. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="41.3" x-axis-rotation="0" y="77.6"/>
  3616. <close/>
  3617. <move x="38.8" y="86.8"/>
  3618. <line x="50.9" y="86.8"/>
  3619. <line x="50.9" y="89.2"/>
  3620. <line x="38.8" y="89.2"/>
  3621. <close/>
  3622. <move x="50.9" y="91.7"/>
  3623. <line x="50.9" y="94.1"/>
  3624. <line x="38.9" y="94.1"/>
  3625. <line x="38.9" y="91.7"/>
  3626. <close/>
  3627. <move x="58.3" y="91.7"/>
  3628. <line x="70.5" y="91.7"/>
  3629. <line x="70.5" y="94.1"/>
  3630. <line x="58.3" y="94.1"/>
  3631. <close/>
  3632. <move x="58.3" y="89.2"/>
  3633. <line x="58.3" y="86.8"/>
  3634. <line x="70.5" y="86.8"/>
  3635. <line x="70.5" y="89.2"/>
  3636. <close/>
  3637. <move x="59.8" y="82.3"/>
  3638. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="58.5" x-axis-rotation="0" y="80.5"/>
  3639. <line x="58.8" y="78.8"/>
  3640. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="60.3" x-axis-rotation="0" y="77.7"/>
  3641. <line x="62.1" y="77.2"/>
  3642. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="64.2" x-axis-rotation="0" y="80.3"/>
  3643. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="66.3" x-axis-rotation="0" y="77.2"/>
  3644. <line x="68.4" y="77.8"/>
  3645. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="69.5" x-axis-rotation="0" y="79.1"/>
  3646. <line x="69.8" y="80.8"/>
  3647. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="69.3" x-axis-rotation="0" y="82"/>
  3648. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="59.8" x-axis-rotation="0" y="82.3"/>
  3649. <close/>
  3650. <move x="64.1" y="75.9"/>
  3651. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="61.1" x-axis-rotation="0" y="73"/>
  3652. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.1" x-axis-rotation="0" y="70.1"/>
  3653. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="67.4" x-axis-rotation="0" y="73"/>
  3654. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.1" x-axis-rotation="0" y="75.9"/>
  3655. <close/>
  3656. <move x="55.2" y="98.9"/>
  3657. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="58.3" x-axis-rotation="0" y="97.6"/>
  3658. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="63.3" x-axis-rotation="0" y="97"/>
  3659. <line x="73.5" y="97"/>
  3660. <line x="73.5" y="64.7"/>
  3661. <line x="63.8" y="64.7"/>
  3662. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="59.8" x-axis-rotation="0" y="65.2"/>
  3663. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="55.2" x-axis-rotation="0" y="67"/>
  3664. <close/>
  3665. </path>
  3666. <fillstroke/>
  3667. </foreground>
  3668. </shape>
  3669. <shape aspect="variable" h="63.41" name="Server Farm" strokewidth="inherit" w="99.6">
  3670. <connections>
  3671. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3672. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3673. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3674. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3675. <constraint name="NE" perimeter="0" x="0.99" y="0.01"/>
  3676. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  3677. <constraint name="SE" perimeter="0" x="1" y="1"/>
  3678. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3679. </connections>
  3680. <foreground>
  3681. <path>
  3682. <move x="0" y="63.41"/>
  3683. <line x="0" y="2.61"/>
  3684. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="2.8" x-axis-rotation="0" y="0.01"/>
  3685. <line x="27.8" y="0.01"/>
  3686. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30.8" x-axis-rotation="0" y="3.11"/>
  3687. <line x="30.8" y="63.41"/>
  3688. <close/>
  3689. <move x="5.4" y="58.01"/>
  3690. <line x="25.4" y="58.01"/>
  3691. <line x="25.4" y="54.21"/>
  3692. <line x="5.4" y="54.21"/>
  3693. <close/>
  3694. <move x="25.4" y="50.61"/>
  3695. <line x="25.4" y="47.01"/>
  3696. <line x="5.4" y="47.01"/>
  3697. <line x="5.4" y="50.81"/>
  3698. <line x="25.4" y="50.81"/>
  3699. <close/>
  3700. <move x="25.4" y="12.71"/>
  3701. <line x="25.4" y="9.01"/>
  3702. <line x="5.4" y="9.01"/>
  3703. <line x="5.4" y="12.71"/>
  3704. <close/>
  3705. <move x="34.4" y="63.41"/>
  3706. <line x="34.4" y="2.61"/>
  3707. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="37.4" x-axis-rotation="0" y="0.01"/>
  3708. <line x="62.3" y="0.01"/>
  3709. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="65.2" x-axis-rotation="0" y="2.61"/>
  3710. <line x="65.2" y="63.41"/>
  3711. <close/>
  3712. <move x="39.8" y="58.01"/>
  3713. <line x="59.8" y="58.01"/>
  3714. <line x="59.8" y="54.21"/>
  3715. <line x="39.8" y="54.21"/>
  3716. <close/>
  3717. <move x="59.8" y="50.81"/>
  3718. <line x="59.8" y="47.01"/>
  3719. <line x="39.8" y="47.01"/>
  3720. <line x="39.8" y="50.81"/>
  3721. <close/>
  3722. <move x="39.8" y="12.71"/>
  3723. <line x="59.8" y="12.71"/>
  3724. <line x="59.8" y="9.01"/>
  3725. <line x="39.8" y="9.01"/>
  3726. <close/>
  3727. <move x="68.9" y="63.41"/>
  3728. <line x="68.9" y="2.61"/>
  3729. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="71.3" x-axis-rotation="0" y="0.01"/>
  3730. <line x="96.8" y="0.01"/>
  3731. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="2.61"/>
  3732. <line x="99.6" y="63.41"/>
  3733. <close/>
  3734. <move x="74.2" y="58.01"/>
  3735. <line x="94.3" y="58.01"/>
  3736. <line x="94.3" y="54.21"/>
  3737. <line x="74.2" y="54.21"/>
  3738. <close/>
  3739. <move x="94.3" y="50.81"/>
  3740. <line x="94.3" y="47.01"/>
  3741. <line x="74.2" y="47.01"/>
  3742. <line x="74.2" y="50.81"/>
  3743. <close/>
  3744. <move x="74.2" y="12.71"/>
  3745. <line x="94.3" y="12.71"/>
  3746. <line x="94.3" y="9.01"/>
  3747. <line x="74.2" y="9.01"/>
  3748. <close/>
  3749. </path>
  3750. <fillstroke/>
  3751. </foreground>
  3752. </shape>
  3753. <shape aspect="variable" h="99.6" name="Server generic" strokewidth="inherit" w="48.6">
  3754. <connections>
  3755. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3756. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3757. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3758. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3759. <constraint name="NE" perimeter="0" x="0.98" y="0.02"/>
  3760. <constraint name="NW" perimeter="0" x="0.02" y="0.02"/>
  3761. <constraint name="SE" perimeter="0" x="1" y="1"/>
  3762. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3763. </connections>
  3764. <foreground>
  3765. <path>
  3766. <move x="0" y="99.6"/>
  3767. <line x="0" y="5"/>
  3768. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  3769. <line x="43.6" y="0"/>
  3770. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="5"/>
  3771. <line x="48.6" y="99.6"/>
  3772. <close/>
  3773. <move x="7.3" y="89.8"/>
  3774. <line x="41.3" y="89.8"/>
  3775. <line x="41.3" y="85"/>
  3776. <line x="7.3" y="85"/>
  3777. <close/>
  3778. <move x="41.3" y="80.2"/>
  3779. <line x="41.3" y="75.3"/>
  3780. <line x="7.3" y="75.3"/>
  3781. <line x="7.3" y="80.2"/>
  3782. <close/>
  3783. <move x="7.3" y="19.5"/>
  3784. <line x="41.3" y="19.5"/>
  3785. <line x="41.3" y="14.6"/>
  3786. <line x="7.3" y="14.6"/>
  3787. <close/>
  3788. </path>
  3789. <fillstroke/>
  3790. </foreground>
  3791. </shape>
  3792. <shape aspect="variable" h="99.77" name="Settings" strokewidth="inherit" w="100.03">
  3793. <connections>
  3794. <constraint name="N" perimeter="0" x="0.5" y="0.12"/>
  3795. <constraint name="S" perimeter="0" x="0.5" y="0.88"/>
  3796. <constraint name="W" perimeter="0" x="0.12" y="0.5"/>
  3797. <constraint name="E" perimeter="0" x="0.88" y="0.5"/>
  3798. <constraint name="NE" perimeter="0" x="0.75" y="0.05"/>
  3799. <constraint name="NW" perimeter="0" x="0.25" y="0.05"/>
  3800. <constraint name="SE" perimeter="0" x="0.75" y="0.95"/>
  3801. <constraint name="SW" perimeter="0" x="0.25" y="0.95"/>
  3802. </connections>
  3803. <foreground>
  3804. <path>
  3805. <move x="12.62" y="56.77"/>
  3806. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="12.62" x-axis-rotation="0" y="43.17"/>
  3807. <line x="1.62" y="38.47"/>
  3808. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0.12" x-axis-rotation="0" y="35.57"/>
  3809. <line x="4.62" y="24.97"/>
  3810. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="8.12" x-axis-rotation="0" y="24.17"/>
  3811. <line x="18.72" y="28.37"/>
  3812. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="28.32" x-axis-rotation="0" y="18.87"/>
  3813. <line x="24.12" y="8.07"/>
  3814. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="25.52" x-axis-rotation="0" y="4.27"/>
  3815. <line x="35.32" y="0.27"/>
  3816. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="38.52" x-axis-rotation="0" y="1.67"/>
  3817. <line x="43.12" y="12.67"/>
  3818. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="56.72" x-axis-rotation="0" y="12.67"/>
  3819. <line x="61.32" y="1.97"/>
  3820. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="64.52" x-axis-rotation="0" y="0.27"/>
  3821. <line x="74.92" y="4.67"/>
  3822. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="76.12" x-axis-rotation="0" y="7.37"/>
  3823. <line x="71.52" y="18.67"/>
  3824. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="81.12" x-axis-rotation="0" y="28.37"/>
  3825. <line x="91.92" y="23.97"/>
  3826. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="95.52" x-axis-rotation="0" y="25.57"/>
  3827. <line x="99.32" y="34.57"/>
  3828. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="98.32" x-axis-rotation="0" y="38.47"/>
  3829. <line x="87.32" y="42.87"/>
  3830. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="87.32" x-axis-rotation="0" y="56.87"/>
  3831. <line x="98.12" y="61.37"/>
  3832. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.72" x-axis-rotation="0" y="64.57"/>
  3833. <line x="95.32" y="74.77"/>
  3834. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="91.92" x-axis-rotation="0" y="75.87"/>
  3835. <line x="81.22" y="71.57"/>
  3836. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="71.52" x-axis-rotation="0" y="81.37"/>
  3837. <line x="75.82" y="91.77"/>
  3838. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="74.92" x-axis-rotation="0" y="95.27"/>
  3839. <line x="63.92" y="99.77"/>
  3840. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="61.32" x-axis-rotation="0" y="98.17"/>
  3841. <line x="56.92" y="87.37"/>
  3842. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="43.22" x-axis-rotation="0" y="87.37"/>
  3843. <line x="38.52" y="97.97"/>
  3844. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="35.22" x-axis-rotation="0" y="99.47"/>
  3845. <line x="24.72" y="95.27"/>
  3846. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="23.72" x-axis-rotation="0" y="92.57"/>
  3847. <line x="28.32" y="81.37"/>
  3848. <arc large-arc-flag="0" rx="38" ry="38" sweep-flag="1" x="18.62" x-axis-rotation="0" y="71.57"/>
  3849. <line x="8.32" y="75.77"/>
  3850. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="4.42" x-axis-rotation="0" y="74.77"/>
  3851. <line x="0.52" y="64.77"/>
  3852. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="1.92" x-axis-rotation="0" y="61.27"/>
  3853. <close/>
  3854. <close/>
  3855. <move x="23.42" y="49.97"/>
  3856. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="49.92" x-axis-rotation="0" y="76.47"/>
  3857. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="76.42" x-axis-rotation="0" y="49.97"/>
  3858. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="49.92" x-axis-rotation="0" y="23.47"/>
  3859. <arc large-arc-flag="0" rx="26.5" ry="26.5" sweep-flag="0" x="23.42" x-axis-rotation="0" y="49.97"/>
  3860. <close/>
  3861. </path>
  3862. <fillstroke/>
  3863. </foreground>
  3864. </shape>
  3865. <shape aspect="variable" h="99.98" name="Shared Folder" strokewidth="inherit" w="85.56">
  3866. <connections>
  3867. <constraint name="N" perimeter="0" x="0.5" y="0.07"/>
  3868. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3869. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3870. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3871. <constraint name="NE" perimeter="0" x="0.94" y="0.06"/>
  3872. <constraint name="NW" perimeter="0" x="0.02" y="0.15"/>
  3873. <constraint name="SE" perimeter="0" x="1" y="0.93"/>
  3874. <constraint name="SW" perimeter="0" x="0" y="0.93"/>
  3875. </connections>
  3876. <foreground>
  3877. <path>
  3878. <move x="6.7" y="73.88"/>
  3879. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="0" x-axis-rotation="0" y="67.48"/>
  3880. <line x="0" y="18.48"/>
  3881. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="6.5" x-axis-rotation="0" y="12.68"/>
  3882. <line x="36.5" y="12.68"/>
  3883. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="39.9" x-axis-rotation="0" y="10.18"/>
  3884. <line x="45.1" y="4.48"/>
  3885. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="54.4" x-axis-rotation="0" y="0.38"/>
  3886. <line x="69.5" y="0.38"/>
  3887. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="76.7" x-axis-rotation="0" y="2.48"/>
  3888. <line x="82.3" y="7.98"/>
  3889. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="85.4" x-axis-rotation="0" y="15.28"/>
  3890. <line x="85.4" y="66.68"/>
  3891. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="79.7" x-axis-rotation="0" y="73.88"/>
  3892. <line x="45" y="73.88"/>
  3893. <line x="45" y="78.58"/>
  3894. <line x="40.2" y="78.58"/>
  3895. <line x="40.2" y="73.88"/>
  3896. <close/>
  3897. <move x="28.5" y="88.08"/>
  3898. <line x="28.5" y="92.88"/>
  3899. <line x="0" y="92.88"/>
  3900. <line x="0" y="88.08"/>
  3901. <close/>
  3902. <move x="31" y="84.78"/>
  3903. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="34.7" x-axis-rotation="0" y="81.08"/>
  3904. <line x="50.3" y="81.08"/>
  3905. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="54.5" x-axis-rotation="0" y="85.18"/>
  3906. <line x="54.5" y="95.18"/>
  3907. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50.3" x-axis-rotation="0" y="99.98"/>
  3908. <line x="34.7" y="99.98"/>
  3909. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="31" x-axis-rotation="0" y="95.18"/>
  3910. <close/>
  3911. <move x="35.5" y="85.78"/>
  3912. <line x="35.5" y="95.18"/>
  3913. <line x="49.7" y="95.18"/>
  3914. <line x="49.7" y="85.78"/>
  3915. <close/>
  3916. <move x="57" y="92.88"/>
  3917. <line x="57" y="88.08"/>
  3918. <line x="85.5" y="88.08"/>
  3919. <line x="85.5" y="92.88"/>
  3920. <close/>
  3921. </path>
  3922. <fillstroke/>
  3923. </foreground>
  3924. </shape>
  3925. <shape aspect="variable" h="63.5" name="Smartcard" strokewidth="inherit" w="99.6">
  3926. <connections>
  3927. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3928. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3929. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3930. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3931. <constraint name="NE" perimeter="0" x="1" y="0"/>
  3932. <constraint name="NW" perimeter="0" x="0" y="0"/>
  3933. <constraint name="SE" perimeter="0" x="1" y="1"/>
  3934. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3935. </connections>
  3936. <foreground>
  3937. <path>
  3938. <move x="0" y="63.5"/>
  3939. <line x="0" y="0"/>
  3940. <line x="99.6" y="0"/>
  3941. <line x="99.6" y="63.5"/>
  3942. <close/>
  3943. <move x="52.8" y="50"/>
  3944. <line x="88.7" y="50"/>
  3945. <line x="88.7" y="13.1"/>
  3946. <line x="52.8" y="13.1"/>
  3947. <close/>
  3948. <move x="55.1" y="48.1"/>
  3949. <line x="55.1" y="39.6"/>
  3950. <line x="63.1" y="39.6"/>
  3951. <line x="63.1" y="48.1"/>
  3952. <close/>
  3953. <move x="66.8" y="39.6"/>
  3954. <line x="74.7" y="39.6"/>
  3955. <line x="74.7" y="48.1"/>
  3956. <line x="66.8" y="48.1"/>
  3957. <close/>
  3958. <move x="78.3" y="48.1"/>
  3959. <line x="78.3" y="39.6"/>
  3960. <line x="86.2" y="39.6"/>
  3961. <line x="86.2" y="48.1"/>
  3962. <close/>
  3963. <move x="86.3" y="36.5"/>
  3964. <line x="55.1" y="36.5"/>
  3965. <line x="55.1" y="26.7"/>
  3966. <line x="86.3" y="26.7"/>
  3967. <close/>
  3968. <move x="78.2" y="23.5"/>
  3969. <line x="78.2" y="15"/>
  3970. <line x="86.2" y="15"/>
  3971. <line x="86.2" y="23.5"/>
  3972. <close/>
  3973. <move x="74.7" y="15"/>
  3974. <line x="74.7" y="23.5"/>
  3975. <line x="66.8" y="23.5"/>
  3976. <line x="66.8" y="15"/>
  3977. <close/>
  3978. <move x="63.1" y="23.5"/>
  3979. <line x="55.1" y="23.5"/>
  3980. <line x="55.1" y="15"/>
  3981. <line x="63.1" y="15"/>
  3982. <close/>
  3983. </path>
  3984. <fillstroke/>
  3985. </foreground>
  3986. </shape>
  3987. <shape aspect="variable" h="82.6" name="Storage" strokewidth="inherit" w="99.6">
  3988. <connections>
  3989. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3990. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3991. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3992. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3993. <constraint name="NE" perimeter="0" x="1" y="0"/>
  3994. <constraint name="NW" perimeter="0" x="0" y="0"/>
  3995. <constraint name="SE" perimeter="0" x="1" y="1"/>
  3996. <constraint name="SW" perimeter="0" x="0" y="1"/>
  3997. </connections>
  3998. <foreground>
  3999. <path>
  4000. <move x="0" y="82.6"/>
  4001. <line x="0" y="0"/>
  4002. <line x="8.5" y="0"/>
  4003. <line x="8.5" y="74.2"/>
  4004. <line x="91.2" y="74.2"/>
  4005. <line x="91.2" y="0"/>
  4006. <line x="99.6" y="0"/>
  4007. <line x="99.6" y="82.6"/>
  4008. <close/>
  4009. <move x="14.8" y="67.8"/>
  4010. <line x="14.8" y="50.8"/>
  4011. <line x="84.7" y="50.8"/>
  4012. <line x="84.7" y="67.8"/>
  4013. <close/>
  4014. <move x="84.7" y="42.3"/>
  4015. <line x="14.8" y="42.3"/>
  4016. <line x="14.8" y="25.5"/>
  4017. <line x="84.7" y="25.5"/>
  4018. <close/>
  4019. <move x="14.8" y="16.9"/>
  4020. <line x="14.8" y="0"/>
  4021. <line x="84.7" y="0"/>
  4022. <line x="84.7" y="16.9"/>
  4023. <close/>
  4024. </path>
  4025. <fillstroke/>
  4026. </foreground>
  4027. </shape>
  4028. <shape aspect="variable" h="14.8" name="Stored Procedures" strokewidth="inherit" w="13.6">
  4029. <connections>
  4030. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4031. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4032. <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
  4033. <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
  4034. <constraint name="NE" perimeter="0" x="0.82" y="0"/>
  4035. <constraint name="NW" perimeter="0" x="0.03" y="0"/>
  4036. <constraint name="SE" perimeter="0" x="0.93" y="1"/>
  4037. <constraint name="SW" perimeter="0" x="0.18" y="1"/>
  4038. </connections>
  4039. <foreground>
  4040. <path>
  4041. <move x="2.5" y="1.6"/>
  4042. <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
  4043. <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
  4044. <line x="0.2" y="0.3"/>
  4045. <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.6" y3="0.9"/>
  4046. <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
  4047. <line x="2.7" y="2"/>
  4048. <curve x1="2.6" x2="2.5" x3="2.5" y1="1.9" y2="1.8" y3="1.6"/>
  4049. <close/>
  4050. <move x="2.9" y="14"/>
  4051. <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
  4052. <line x="3.2" y="12.6"/>
  4053. <line x="3.7" y="12.6"/>
  4054. <line x="11" y="12.6"/>
  4055. <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
  4056. <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
  4057. <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
  4058. <line x="2.8" y="0"/>
  4059. <line x="1" y="0"/>
  4060. <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
  4061. <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
  4062. <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
  4063. <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
  4064. <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
  4065. <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
  4066. <curve x1="2" x2="2.2" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
  4067. <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
  4068. <close/>
  4069. <move x="2.4" y="14.8"/>
  4070. <move x="3.7" y="13.2"/>
  4071. <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
  4072. <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
  4073. <line x="12.2" y="14.8"/>
  4074. <line x="12.5" y="14.8"/>
  4075. <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
  4076. <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
  4077. <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
  4078. <line x="11.1" y="13.1"/>
  4079. <line x="3.7" y="13.2"/>
  4080. <line x="3.7" y="13.2"/>
  4081. <close/>
  4082. <move x="6.5" y="8.1"/>
  4083. <curve x1="6.2" x2="5.9" x3="5.8" y1="8.2" y2="8.1" y3="7.8"/>
  4084. <curve x1="5.7" x2="5.8" x3="6.1" y1="7.5" y2="7.2" y3="7.1"/>
  4085. <curve x1="6.4" x2="6.7" x3="6.8" y1="7" y2="7.1" y3="7.4"/>
  4086. <curve x1="6.9" x2="6.8" x3="6.5" y1="7.7" y2="8" y3="8.1"/>
  4087. <close/>
  4088. <move x="8" y="6.6"/>
  4089. <curve x1="8" x2="8.1" x3="8.2" y1="6.6" y2="6.7" y3="7"/>
  4090. <curve x1="8.3" x2="8.3" x3="8.3" y1="7.1" y2="7.2" y3="7.2"/>
  4091. <curve x1="8.3" x2="8.3" x3="8.2" y1="7.2" y2="7.3" y3="7.3"/>
  4092. <line x="8" y="7.4"/>
  4093. <curve x1="7.9" x2="7.9" x3="7.9" y1="7.5" y2="7.5" y3="7.6"/>
  4094. <line x="7.9" y="7.8"/>
  4095. <curve x1="7.9" x2="7.9" x3="8" y1="7.8" y2="7.9" y3="7.9"/>
  4096. <line x="8.1" y="8"/>
  4097. <curve x1="8.2" x2="8.2" x3="8.2" y1="8" y2="8" y3="8.1"/>
  4098. <line x="8" y="8.6"/>
  4099. <curve x1="8" x2="8" x3="7.9" y1="8.7" y2="8.7" y3="8.7"/>
  4100. <line x="7.7" y="8.6"/>
  4101. <curve x1="7.6" x2="7.5" x3="7.5" y1="8.5" y2="8.6" y3="8.6"/>
  4102. <line x="7.3" y="8.8"/>
  4103. <curve x1="7.3" x2="7.3" x3="7.3" y1="8.9" y2="8.9" y3="9"/>
  4104. <line x="7.4" y="9.2"/>
  4105. <curve x1="7.4" x2="7.3" x3="7.3" y1="9.3" y2="9.4" y3="9.4"/>
  4106. <curve x1="7.3" x2="7.2" x3="7" y1="9.4" y2="9.5" y3="9.5"/>
  4107. <curve x1="6.9" x2="6.8" x3="6.8" y1="9.6" y2="9.6" y3="9.6"/>
  4108. <curve x1="6.8" x2="6.7" x3="6.7" y1="9.6" y2="9.6" y3="9.5"/>
  4109. <line x="6.6" y="9.3"/>
  4110. <curve x1="6.5" x2="6.5" x3="6.4" y1="9.2" y2="9.2" y3="9.2"/>
  4111. <line x="6.2" y="9.2"/>
  4112. <curve x1="6.2" x2="6.1" x3="6.1" y1="9.2" y2="9.2" y3="9.3"/>
  4113. <line x="6" y="9.5"/>
  4114. <curve x1="6" x2="6" x3="5.9" y1="9.6" y2="9.6" y3="9.6"/>
  4115. <line x="5.4" y="9.4"/>
  4116. <curve x1="5.3" x2="5.3" x3="5.3" y1="9.4" y2="9.4" y3="9.3"/>
  4117. <line x="5.3" y="9"/>
  4118. <curve x1="5.4" x2="5.3" x3="5.3" y1="8.9" y2="8.8" y3="8.8"/>
  4119. <line x="5.1" y="8.6"/>
  4120. <curve x1="5" x2="5" x3="4.9" y1="8.6" y2="8.6" y3="8.6"/>
  4121. <line x="4.7" y="8.7"/>
  4122. <curve x1="4.6" x2="4.5" x3="4.5" y1="8.7" y2="8.6" y3="8.6"/>
  4123. <curve x1="4.5" x2="4.5" x3="4.4" y1="8.6" y2="8.5" y3="8.4"/>
  4124. <curve x1="4.3" x2="4.3" x3="4.3" y1="8.3" y2="8.2" y3="8.2"/>
  4125. <curve x1="4.3" x2="4.3" x3="4.4" y1="8.2" y2="8.1" y3="8.1"/>
  4126. <line x="4.6" y="7.9"/>
  4127. <curve x1="4.7" x2="4.7" x3="4.7" y1="7.8" y2="7.8" y3="7.7"/>
  4128. <line x="4.7" y="7.5"/>
  4129. <curve x1="4.7" x2="4.7" x3="4.6" y1="7.5" y2="7.4" y3="7.4"/>
  4130. <line x="4.4" y="7.3"/>
  4131. <curve x1="4.3" x2="4.3" x3="4.3" y1="7.3" y2="7.3" y3="7.2"/>
  4132. <line x="4.5" y="6.7"/>
  4133. <curve x1="4.5" x2="4.5" x3="4.6" y1="6.6" y2="6.6" y3="6.6"/>
  4134. <line x="4.9" y="6.7"/>
  4135. <curve x1="5" x2="5.1" x3="5.1" y1="6.8" y2="6.7" y3="6.7"/>
  4136. <line x="5.2" y="6.5"/>
  4137. <curve x1="5.2" x2="5.2" x3="5.2" y1="6.4" y2="6.4" y3="6.3"/>
  4138. <line x="5.1" y="6.1"/>
  4139. <curve x1="5.1" x2="5.2" x3="5.2" y1="6" y2="5.9" y3="5.9"/>
  4140. <curve x1="5.2" x2="5.3" x3="5.5" y1="5.9" y2="5.8" y3="5.8"/>
  4141. <curve x1="5.6" x2="5.7" x3="5.7" y1="5.7" y2="5.7" y3="5.7"/>
  4142. <curve x1="5.7" x2="5.8" x3="5.8" y1="5.7" y2="5.7" y3="5.8"/>
  4143. <line x="6" y="6"/>
  4144. <curve x1="6" x2="6.1" x3="6.2" y1="6" y2="6.1" y3="6.1"/>
  4145. <line x="6.4" y="6.1"/>
  4146. <curve x1="6.4" x2="6.5" x3="6.5" y1="6.1" y2="6.1" y3="6"/>
  4147. <line x="6.7" y="5.8"/>
  4148. <curve x1="6.7" x2="6.7" x3="6.8" y1="5.7" y2="5.7" y3="5.7"/>
  4149. <line x="7.3" y="5.9"/>
  4150. <curve x1="7.4" x2="7.4" x3="7.4" y1="5.9" y2="5.9" y3="6"/>
  4151. <line x="7.3" y="6.2"/>
  4152. <curve x1="7.2" x2="7.3" x3="7.3" y1="6.3" y2="6.4" y3="6.4"/>
  4153. <line x="7.4" y="6.6"/>
  4154. <curve x1="7.5" x2="7.5" x3="7.6" y1="6.6" y2="6.6" y3="6.6"/>
  4155. <line x="7.8" y="6.5"/>
  4156. <curve x1="7.9" x2="8" x3="8" y1="6.5" y2="6.6" y3="6.6"/>
  4157. <close/>
  4158. <move x="8.8" y="5.5"/>
  4159. <curve x1="8.5" x2="8.3" x3="8.3" y1="5.5" y2="5.3" y3="5"/>
  4160. <curve x1="8.3" x2="8.5" x3="8.8" y1="4.7" y2="4.5" y3="4.5"/>
  4161. <curve x1="9.1" x2="9.3" x3="9.3" y1="4.5" y2="4.7" y3="5"/>
  4162. <curve x1="9.3" x2="9.1" x3="8.8" y1="5.3" y2="5.5" y3="5.5"/>
  4163. <close/>
  4164. <move x="10.6" y="4.8"/>
  4165. <curve x1="10.6" x2="10.6" x3="10.5" y1="4.8" y2="4.9" y3="5"/>
  4166. <curve x1="10.5" x2="10.5" x3="10.5" y1="5.1" y2="5.2" y3="5.2"/>
  4167. <curve x1="10.5" x2="10.5" x3="10.4" y1="5.3" y2="5.3" y3="5.3"/>
  4168. <line x="10.2" y="5.3"/>
  4169. <curve x1="10.2" x2="10.1" x3="10.1" y1="5.3" y2="5.4" y3="5.4"/>
  4170. <line x="10.1" y="5.7"/>
  4171. <curve x1="10.1" x2="10.1" x3="10.1" y1="5.7" y2="5.8" y3="5.8"/>
  4172. <line x="10.2" y="6"/>
  4173. <curve x1="10.2" x2="10.2" x3="10.2" y1="6" y2="6.1" y3="6.1"/>
  4174. <line x="9.9" y="6.4"/>
  4175. <curve x1="9.9" x2="9.8" x3="9.8" y1="6.4" y2="6.4" y3="6.4"/>
  4176. <line x="9.4" y="6.3"/>
  4177. <curve x1="9.4" x2="9.3" x3="9.3" y1="6.3" y2="6.3" y3="6.3"/>
  4178. <line x="9.1" y="6.4"/>
  4179. <curve x1="9" x2="9" x3="9" y1="6.4" y2="6.4" y3="6.5"/>
  4180. <line x="9" y="6.7"/>
  4181. <curve x1="9" x2="8.9" x3="8.9" y1="6.7" y2="6.8" y3="6.8"/>
  4182. <curve x1="8.9" x2="8.8" x3="8.7" y1="6.8" y2="6.8" y3="6.8"/>
  4183. <curve x1="8.6" x2="8.5" x3="8.5" y1="6.8" y2="6.8" y3="6.8"/>
  4184. <curve x1="8.4" x2="8.4" x3="8.4" y1="6.8" y2="6.8" y3="6.7"/>
  4185. <line x="8.4" y="6.5"/>
  4186. <curve x1="8.4" x2="8.3" x3="8.3" y1="6.5" y2="6.4" y3="6.4"/>
  4187. <line x="8.1" y="6.3"/>
  4188. <curve x1="8.1" x2="8" x3="8" y1="6.3" y2="6.3" y3="6.3"/>
  4189. <line x="7.8" y="6.4"/>
  4190. <curve x1="7.8" x2="7.7" x3="7.7" y1="6.4" y2="6.4" y3="6.4"/>
  4191. <line x="7.4" y="6.1"/>
  4192. <curve x1="7.4" x2="7.4" x3="7.4" y1="6.1" y2="6" y3="6"/>
  4193. <line x="7.6" y="5.7"/>
  4194. <curve x1="7.6" x2="7.6" x3="7.6" y1="5.7" y2="5.6" y3="5.6"/>
  4195. <line x="7.5" y="5.4"/>
  4196. <curve x1="7.5" x2="7.5" x3="7.4" y1="5.3" y2="5.3" y3="5.3"/>
  4197. <line x="7.2" y="5.3"/>
  4198. <curve x1="7.2" x2="7.1" x3="7.1" y1="5.3" y2="5.2" y3="5.2"/>
  4199. <curve x1="7.1" x2="7.1" x3="7.1" y1="5.2" y2="5.1" y3="5"/>
  4200. <curve x1="7.1" x2="7.1" x3="7.1" y1="4.9" y2="4.8" y3="4.8"/>
  4201. <curve x1="7.1" x2="7.1" x3="7.2" y1="4.7" y2="4.7" y3="4.7"/>
  4202. <line x="7.4" y="4.7"/>
  4203. <curve x1="7.4" x2="7.5" x3="7.5" y1="4.7" y2="4.6" y3="4.6"/>
  4204. <line x="7.5" y="4.4"/>
  4205. <curve x1="7.5" x2="7.5" x3="7.5" y1="4.4" y2="4.3" y3="4.3"/>
  4206. <line x="7.4" y="4.1"/>
  4207. <curve x1="7.4" x2="7.4" x3="7.4" y1="4.1" y2="4" y3="4"/>
  4208. <line x="7.8" y="3.6"/>
  4209. <curve x1="7.8" x2="7.9" x3="7.9" y1="3.6" y2="3.6" y3="3.6"/>
  4210. <line x="8.1" y="3.8"/>
  4211. <curve x1="8.1" x2="8.2" x3="8.2" y1="3.8" y2="3.8" y3="3.8"/>
  4212. <line x="8.4" y="3.7"/>
  4213. <curve x1="8.5" x2="8.5" x3="8.5" y1="3.7" y2="3.7" y3="3.6"/>
  4214. <line x="8.5" y="3.4"/>
  4215. <curve x1="8.5" x2="8.6" x3="8.6" y1="3.4" y2="3.3" y3="3.3"/>
  4216. <curve x1="8.6" x2="8.7" x3="8.8" y1="3.3" y2="3.3" y3="3.3"/>
  4217. <curve x1="8.9" x2="9" x3="9" y1="3.3" y2="3.3" y3="3.3"/>
  4218. <curve x1="9.1" x2="9.1" x3="9.1" y1="3.3" y2="3.3" y3="3.4"/>
  4219. <line x="9.1" y="3.6"/>
  4220. <curve x1="9.1" x2="9.2" x3="9.2" y1="3.6" y2="3.7" y3="3.7"/>
  4221. <line x="9.4" y="3.8"/>
  4222. <curve x1="9.4" x2="9.5" x3="9.5" y1="3.8" y2="3.8" y3="3.8"/>
  4223. <line x="9.7" y="3.7"/>
  4224. <curve x1="9.7" x2="9.8" x3="9.8" y1="3.7" y2="3.7" y3="3.7"/>
  4225. <line x="10.1" y="4"/>
  4226. <curve x1="10.1" x2="10.1" x3="10.1" y1="4" y2="4.1" y3="4.1"/>
  4227. <line x="10" y="4.3"/>
  4228. <curve x1="10" x2="10" x3="10" y1="4.3" y2="4.4" y3="4.4"/>
  4229. <line x="10.2" y="4.6"/>
  4230. <curve x1="10.2" x2="10.2" x3="10.3" y1="4.7" y2="4.7" y3="4.7"/>
  4231. <line x="10.5" y="4.7"/>
  4232. <curve x1="10.5" x2="10.6" x3="10.6" y1="4.7" y2="4.8" y3="4.8"/>
  4233. <close/>
  4234. </path>
  4235. <fillstroke/>
  4236. </foreground>
  4237. </shape>
  4238. <shape aspect="variable" h="99.6" name="Table" strokewidth="inherit" w="99.6">
  4239. <connections>
  4240. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4241. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4242. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4243. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  4244. <constraint name="NE" perimeter="0" x="1" y="0"/>
  4245. <constraint name="NW" perimeter="0" x="0" y="0"/>
  4246. <constraint name="SE" perimeter="0" x="1" y="1"/>
  4247. <constraint name="SW" perimeter="0" x="0" y="1"/>
  4248. </connections>
  4249. <foreground>
  4250. <path>
  4251. <move x="0" y="99.6"/>
  4252. <line x="0" y="0"/>
  4253. <line x="4.8" y="0"/>
  4254. <line x="4.8" y="94.8"/>
  4255. <line x="99.6" y="94.8"/>
  4256. <line x="99.6" y="99.6"/>
  4257. <close/>
  4258. <move x="9.8" y="89.8"/>
  4259. <line x="9.8" y="63.1"/>
  4260. <line x="36.5" y="63.1"/>
  4261. <line x="36.5" y="89.8"/>
  4262. <close/>
  4263. <move x="41.4" y="63.1"/>
  4264. <line x="68" y="63.17"/>
  4265. <line x="68" y="89.8"/>
  4266. <line x="41.4" y="89.92"/>
  4267. <close/>
  4268. <move x="73" y="89.8"/>
  4269. <line x="73" y="63.1"/>
  4270. <line x="99.6" y="63.1"/>
  4271. <line x="99.6" y="89.8"/>
  4272. <close/>
  4273. <move x="99.6" y="58.3"/>
  4274. <line x="73" y="58.3"/>
  4275. <line x="73" y="31.6"/>
  4276. <line x="99.6" y="31.6"/>
  4277. <close/>
  4278. <move x="68" y="31.6"/>
  4279. <line x="68" y="58.3"/>
  4280. <line x="41.4" y="58.3"/>
  4281. <line x="41.4" y="31.6"/>
  4282. <close/>
  4283. <move x="36.5" y="58.3"/>
  4284. <line x="9.8" y="58.3"/>
  4285. <line x="9.8" y="31.6"/>
  4286. <line x="36.5" y="31.6"/>
  4287. <close/>
  4288. <move x="9.8" y="26.7"/>
  4289. <line x="9.8" y="0"/>
  4290. <line x="36.5" y="0"/>
  4291. <line x="36.5" y="26.7"/>
  4292. <close/>
  4293. <move x="41.4" y="0"/>
  4294. <line x="68" y="0"/>
  4295. <line x="68" y="26.7"/>
  4296. <line x="41.4" y="26.7"/>
  4297. <close/>
  4298. <move x="73" y="26.7"/>
  4299. <line x="73" y="0"/>
  4300. <line x="99.6" y="0"/>
  4301. <line x="99.6" y="26.7"/>
  4302. <close/>
  4303. </path>
  4304. <fillstroke/>
  4305. </foreground>
  4306. </shape>
  4307. <shape aspect="variable" h="94.4" name="Tool" strokewidth="inherit" w="100.86">
  4308. <connections>
  4309. <constraint name="N" perimeter="0" x="0.49" y="0.36"/>
  4310. <constraint name="S" perimeter="0" x="0.5" y="0.67"/>
  4311. <constraint name="W" perimeter="0" x="0.34" y="0.5"/>
  4312. <constraint name="E" perimeter="0" x="0.62" y="0.5"/>
  4313. <constraint name="NE" perimeter="0" x="0.92" y="0.075"/>
  4314. <constraint name="NW" perimeter="0" x="0.17" y="0.03"/>
  4315. <constraint name="SE" perimeter="0" x="0.92" y="0.96"/>
  4316. <constraint name="SW" perimeter="0" x="0.05" y="0.98"/>
  4317. </connections>
  4318. <foreground>
  4319. <path>
  4320. <move x="29.16" y="42.2"/>
  4321. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="9.56" x-axis-rotation="0" y="39"/>
  4322. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="1.96" x-axis-rotation="0" y="17.4"/>
  4323. <line x="13.96" y="29.2"/>
  4324. <line x="25.86" y="26.1"/>
  4325. <line x="28.96" y="14.5"/>
  4326. <line x="16.96" y="3"/>
  4327. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="37.36" x-axis-rotation="0" y="8.2"/>
  4328. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="1" x="42.96" x-axis-rotation="0" y="28.3"/>
  4329. <line x="48.86" y="34"/>
  4330. <line x="44.86" y="34"/>
  4331. <line x="35.66" y="43"/>
  4332. <line x="41.16" y="48.4"/>
  4333. <line x="38.26" y="51.2"/>
  4334. <close/>
  4335. <move x="46.96" y="37.4"/>
  4336. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="58.36" x-axis-rotation="0" y="26.3"/>
  4337. <line x="85.56" y="0"/>
  4338. <line x="100.86" y="14.7"/>
  4339. <line x="73.86" y="40.8"/>
  4340. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="62.16" x-axis-rotation="0" y="52.1"/>
  4341. <line x="55.86" y="58.2"/>
  4342. <line x="50.46" y="52.8"/>
  4343. <line x="23.46" y="78.9"/>
  4344. <line x="24.56" y="79.9"/>
  4345. <line x="20.36" y="84.9"/>
  4346. <line x="6.66" y="93.3"/>
  4347. <line x="4.46" y="91.1"/>
  4348. <line x="13.06" y="78"/>
  4349. <line x="18.26" y="73.9"/>
  4350. <line x="19.26" y="75"/>
  4351. <line x="46.36" y="48.8"/>
  4352. <line x="40.76" y="43.4"/>
  4353. <close/>
  4354. <move x="65.96" y="50.5"/>
  4355. <line x="93.86" y="77.6"/>
  4356. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="93.06" x-axis-rotation="0" y="90"/>
  4357. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="79.06" x-axis-rotation="0" y="90.8"/>
  4358. <line x="48.26" y="60.7"/>
  4359. <line x="51.26" y="57.9"/>
  4360. <line x="56.66" y="63.2"/>
  4361. <line x="65.96" y="54.3"/>
  4362. <close/>
  4363. </path>
  4364. <fillstroke/>
  4365. </foreground>
  4366. </shape>
  4367. <shape aspect="variable" h="14.8" name="Triggers" strokewidth="inherit" w="13.6">
  4368. <connections>
  4369. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4370. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4371. <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
  4372. <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
  4373. <constraint name="NE" perimeter="0" x="0.82" y="0"/>
  4374. <constraint name="NW" perimeter="0" x="0.03" y="0"/>
  4375. <constraint name="SE" perimeter="0" x="0.93" y="1"/>
  4376. <constraint name="SW" perimeter="0" x="0.18" y="1"/>
  4377. </connections>
  4378. <foreground>
  4379. <path>
  4380. <move x="9.8" y="3.7"/>
  4381. <line x="7.5" y="5.8"/>
  4382. <line x="9.5" y="5.8"/>
  4383. <line x="5.6" y="9.4"/>
  4384. <line x="7.2" y="6.4"/>
  4385. <line x="5.4" y="6.4"/>
  4386. <line x="7.4" y="3.4"/>
  4387. <line x="9.8" y="3.4"/>
  4388. <line x="9.8" y="3.7"/>
  4389. <close/>
  4390. <move x="3.7" y="13.2"/>
  4391. <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
  4392. <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
  4393. <line x="12.2" y="14.8"/>
  4394. <line x="12.5" y="14.8"/>
  4395. <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
  4396. <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
  4397. <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
  4398. <line x="11.1" y="13.1"/>
  4399. <line x="3.7" y="13.2"/>
  4400. <line x="3.7" y="13.2"/>
  4401. <close/>
  4402. <move x="2.4" y="14.8"/>
  4403. <move x="2.9" y="14"/>
  4404. <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
  4405. <line x="3.2" y="12.6"/>
  4406. <line x="3.7" y="12.6"/>
  4407. <line x="11" y="12.6"/>
  4408. <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
  4409. <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
  4410. <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
  4411. <line x="2.8" y="0"/>
  4412. <line x="1" y="0"/>
  4413. <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
  4414. <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
  4415. <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
  4416. <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
  4417. <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
  4418. <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
  4419. <curve x1="2" x2="2.1" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
  4420. <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
  4421. <close/>
  4422. <move x="2.5" y="1.6"/>
  4423. <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
  4424. <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
  4425. <line x="0.2" y="0.3"/>
  4426. <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.6" y3="0.9"/>
  4427. <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
  4428. <line x="2.7" y="2"/>
  4429. <curve x1="2.6" x2="2.6" x3="2.5" y1="1.9" y2="1.8" y3="1.6"/>
  4430. <close/>
  4431. </path>
  4432. <fillstroke/>
  4433. </foreground>
  4434. </shape>
  4435. <shape aspect="variable" h="14.8" name="UDF Function" strokewidth="inherit" w="13.6">
  4436. <connections>
  4437. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4438. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4439. <constraint name="W" perimeter="0" x="0.16" y="0.5"/>
  4440. <constraint name="E" perimeter="0" x="0.9" y="0.5"/>
  4441. <constraint name="NE" perimeter="0" x="0.82" y="0"/>
  4442. <constraint name="NW" perimeter="0" x="0.03" y="0"/>
  4443. <constraint name="SE" perimeter="0" x="0.93" y="1"/>
  4444. <constraint name="SW" perimeter="0" x="0.18" y="1"/>
  4445. </connections>
  4446. <foreground>
  4447. <path>
  4448. <move x="10.13" y="4.46"/>
  4449. <line x="10.45" y="4.46"/>
  4450. <quad x1="10.74" x2="10.88" y1="4.92" y2="5.36"/>
  4451. <quad x1="11.03" x2="11.03" y1="5.8" y2="6.24"/>
  4452. <quad x1="11.03" x2="10.88" y1="6.68" y2="7.12"/>
  4453. <quad x1="10.74" x2="10.45" y1="7.56" y2="8.02"/>
  4454. <line x="10.13" y="8.02"/>
  4455. <quad x1="10.39" x2="10.52" y1="7.57" y2="7.13"/>
  4456. <quad x1="10.65" x2="10.65" y1="6.69" y2="6.24"/>
  4457. <quad x1="10.65" x2="10.52" y1="5.79" y2="5.35"/>
  4458. <quad x1="10.39" x2="10.13" y1="4.91" y2="4.46"/>
  4459. <close/>
  4460. <move x="9.47" y="6.17"/>
  4461. <line x="9.47" y="7.49"/>
  4462. <line x="9.11" y="7.49"/>
  4463. <line x="9.11" y="6.19"/>
  4464. <quad x1="9.11" x2="8.99" y1="5.88" y2="5.72"/>
  4465. <quad x1="8.87" x2="8.62" y1="5.57" y2="5.57"/>
  4466. <quad x1="8.33" x2="8.17" y1="5.57" y2="5.75"/>
  4467. <quad x1="8" x2="8" y1="5.94" y2="6.26"/>
  4468. <line x="8" y="7.49"/>
  4469. <line x="7.64" y="7.49"/>
  4470. <line x="7.64" y="5.31"/>
  4471. <line x="8" y="5.31"/>
  4472. <line x="8" y="5.65"/>
  4473. <quad x1="8.13" x2="8.3" y1="5.45" y2="5.35"/>
  4474. <quad x1="8.48" x2="8.7" y1="5.25" y2="5.25"/>
  4475. <quad x1="9.08" x2="9.28" y1="5.25" y2="5.49"/>
  4476. <quad x1="9.47" x2="9.47" y1="5.72" y2="6.17"/>
  4477. <close/>
  4478. <move x="6.95" y="4.46"/>
  4479. <quad x1="6.69" x2="6.56" y1="4.91" y2="5.35"/>
  4480. <quad x1="6.44" x2="6.44" y1="5.79" y2="6.24"/>
  4481. <quad x1="6.44" x2="6.56" y1="6.69" y2="7.13"/>
  4482. <quad x1="6.69" x2="6.95" y1="7.57" y2="8.02"/>
  4483. <line x="6.64" y="8.02"/>
  4484. <quad x1="6.35" x2="6.2" y1="7.56" y2="7.12"/>
  4485. <quad x1="6.05" x2="6.05" y1="6.68" y2="6.24"/>
  4486. <quad x1="6.05" x2="6.2" y1="5.8" y2="5.36"/>
  4487. <quad x1="6.34" x2="6.64" y1="4.92" y2="4.46"/>
  4488. <line x="6.95" y="4.46"/>
  4489. <close/>
  4490. <move x="5.79" y="4.46"/>
  4491. <line x="5.79" y="4.75"/>
  4492. <line x="5.45" y="4.75"/>
  4493. <quad x1="5.25" x2="5.18" y1="4.75" y2="4.83"/>
  4494. <quad x1="5.1" x2="5.1" y1="4.91" y2="5.11"/>
  4495. <line x="5.1" y="5.31"/>
  4496. <line x="5.69" y="5.31"/>
  4497. <line x="5.69" y="5.59"/>
  4498. <line x="5.1" y="5.59"/>
  4499. <line x="5.1" y="7.49"/>
  4500. <line x="4.74" y="7.49"/>
  4501. <line x="4.74" y="5.59"/>
  4502. <line x="4.4" y="5.59"/>
  4503. <line x="4.4" y="5.31"/>
  4504. <line x="4.74" y="5.31"/>
  4505. <line x="4.74" y="5.15"/>
  4506. <quad x1="4.74" x2="4.91" y1="4.79" y2="4.62"/>
  4507. <quad x1="5.08" x2="5.45" y1="4.46" y2="4.46"/>
  4508. <line x="5.79" y="4.46"/>
  4509. <close/>
  4510. <move x="3.7" y="13.2"/>
  4511. <curve x1="3.7" x2="3.5" x3="3.3" y1="13.7" y2="14.2" y3="14.4"/>
  4512. <curve x1="3" x2="2.4" x3="2.4" y1="14.7" y2="14.8" y3="14.8"/>
  4513. <line x="12.2" y="14.8"/>
  4514. <line x="12.5" y="14.8"/>
  4515. <curve x1="12.5" x2="12.5" x3="12.5" y1="14.8" y2="14.8" y3="14.8"/>
  4516. <curve x1="12.8" x2="13.1" x3="13.3" y1="14.8" y2="14.6" y3="14.3"/>
  4517. <curve x1="13.5" x2="13.6" x3="13.6" y1="14" y2="13.6" y3="13.1"/>
  4518. <line x="11.1" y="13.1"/>
  4519. <line x="3.7" y="13.2"/>
  4520. <line x="3.7" y="13.2"/>
  4521. <close/>
  4522. <move x="2.4" y="14.8"/>
  4523. <move x="2.9" y="14"/>
  4524. <curve x1="3.1" x2="3.2" x3="3.2" y1="13.8" y2="13.5" y3="13.1"/>
  4525. <line x="3.2" y="12.6"/>
  4526. <line x="3.7" y="12.6"/>
  4527. <line x="11" y="12.6"/>
  4528. <curve x1="11" x2="11" x3="11" y1="12.4" y2="12.2" y3="12.1"/>
  4529. <curve x1="11" x2="13.3" x3="13.3" y1="9.5" y2="5.7" y3="2.7"/>
  4530. <curve x1="13.3" x2="11" x3="11" y1="0.3" y2="0" y3="0"/>
  4531. <line x="2.8" y="0"/>
  4532. <line x="1" y="0"/>
  4533. <curve x1="1" x2="2.8" x3="3.2" y1="0" y2="0.4" y3="2"/>
  4534. <curve x1="3.3" x2="3.3" x3="3.3" y1="2.2" y2="2.4" y3="2.7"/>
  4535. <curve x1="3.3" x2="1" x3="1" y1="5.7" y2="9.5" y3="12.1"/>
  4536. <curve x1="1" x2="1" x3="1.1" y1="12.4" y2="12.8" y3="13.1"/>
  4537. <curve x1="1.2" x2="1.3" x3="1.5" y1="13.4" y2="13.6" y3="13.8"/>
  4538. <curve x1="1.6" x2="1.7" x3="1.9" y1="13.9" y2="14" y3="14.1"/>
  4539. <curve x1="2" x2="2.2" x3="2.3" y1="14.2" y2="14.3" y3="14.3"/>
  4540. <curve x1="2.5" x2="2.7" x3="2.9" y1="14.3" y2="14.2" y3="14"/>
  4541. <close/>
  4542. <move x="2.5" y="1.7"/>
  4543. <curve x1="2.3" x2="2.1" x3="1.9" y1="1.4" y2="1.2" y3="1"/>
  4544. <curve x1="1.4" x2="0.9" x3="0.9" y1="0.7" y2="0.5" y3="0.5"/>
  4545. <line x="0.2" y="0.3"/>
  4546. <curve x1="0.1" x2="0" x3="0" y1="0.5" y2="0.7" y3="0.9"/>
  4547. <curve x1="0" x2="0.3" x3="0.3" y1="1.8" y2="2" y3="2"/>
  4548. <line x="2.7" y="2"/>
  4549. <curve x1="2.6" x2="2.6" x3="2.5" y1="1.9" y2="1.8" y3="1.7"/>
  4550. <close/>
  4551. </path>
  4552. <fillstroke/>
  4553. </foreground>
  4554. </shape>
  4555. <shape aspect="variable" h="86.28" name="Unhealthy" strokewidth="inherit" w="104.55">
  4556. <connections>
  4557. <constraint name="N" perimeter="0" x="0.5" y="0.21"/>
  4558. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4559. <constraint name="W" perimeter="0" x="0.07" y="0.5"/>
  4560. <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
  4561. <constraint name="NE" perimeter="0" x="0.76" y="0.02"/>
  4562. <constraint name="NW" perimeter="0" x="0.22" y="0.02"/>
  4563. </connections>
  4564. <foreground>
  4565. <path>
  4566. <move x="51.79" y="86.28"/>
  4567. <arc large-arc-flag="0" rx="120" ry="120" sweep-flag="1" x="28.39" x-axis-rotation="0" y="68.98"/>
  4568. <arc large-arc-flag="0" rx="90" ry="90" sweep-flag="1" x="4.79" x-axis-rotation="0" y="38.68"/>
  4569. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="8.29" x-axis-rotation="0" y="8.68"/>
  4570. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="29.89" x-axis-rotation="0" y="2.58"/>
  4571. <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="1" x="51.99" x-axis-rotation="0" y="18.28"/>
  4572. <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="1" x="68.09" x-axis-rotation="0" y="4.68"/>
  4573. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="90.79" x-axis-rotation="0" y="4.68"/>
  4574. <arc large-arc-flag="0" rx="26" ry="27" sweep-flag="1" x="98.19" x-axis-rotation="0" y="39.58"/>
  4575. <arc large-arc-flag="0" rx="90" ry="90" sweep-flag="1" x="72.99" x-axis-rotation="0" y="70.98"/>
  4576. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="51.79" x-axis-rotation="0" y="86.28"/>
  4577. <close/>
  4578. <move x="67.79" y="65.58"/>
  4579. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="73.19" x-axis-rotation="0" y="60.08"/>
  4580. <line x="56.39" y="43.88"/>
  4581. <line x="73.09" y="27.38"/>
  4582. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="0" x="67.59" x-axis-rotation="0" y="22.48"/>
  4583. <line x="51.29" y="38.78"/>
  4584. <line x="34.79" y="22.38"/>
  4585. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="29.99" x-axis-rotation="0" y="27.88"/>
  4586. <line x="46.09" y="44.08"/>
  4587. <line x="30.29" y="59.78"/>
  4588. <arc large-arc-flag="1" rx="2" ry="2" sweep-flag="0" x="35.99" x-axis-rotation="0" y="64.78"/>
  4589. <line x="51.59" y="49.18"/>
  4590. <close/>
  4591. </path>
  4592. <fillstroke/>
  4593. </foreground>
  4594. </shape>
  4595. <shape aspect="variable" h="46.25" name="USB" strokewidth="inherit" w="99.57">
  4596. <connections>
  4597. <constraint name="N" perimeter="0" x="0.58" y="0.01"/>
  4598. <constraint name="S" perimeter="0" x="0.6" y="1"/>
  4599. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4600. <constraint name="E" perimeter="0" x="1" y="0.51"/>
  4601. </connections>
  4602. <foreground>
  4603. <path>
  4604. <move x="17.27" y="25.35"/>
  4605. <arc large-arc-flag="1" rx="8.8" ry="8.8" sweep-flag="1" x="17.27" x-axis-rotation="0" y="20.55"/>
  4606. <line x="27.67" y="20.55"/>
  4607. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="30.47" x-axis-rotation="0" y="17.85"/>
  4608. <line x="33.67" y="11.95"/>
  4609. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="41.77" x-axis-rotation="0" y="6.75"/>
  4610. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50.07" x-axis-rotation="0" y="6.15"/>
  4611. <arc large-arc-flag="1" rx="8" ry="8" sweep-flag="1" x="50.07" x-axis-rotation="0" y="10.85"/>
  4612. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="41.17" x-axis-rotation="0" y="11.75"/>
  4613. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="37.77" x-axis-rotation="0" y="14.15"/>
  4614. <line x="35.77" y="18.15"/>
  4615. <line x="34.57" y="20.65"/>
  4616. <line x="81.97" y="20.65"/>
  4617. <line x="81.97" y="12.65"/>
  4618. <line x="99.57" y="23.65"/>
  4619. <line x="81.97" y="33.45"/>
  4620. <line x="81.97" y="25.25"/>
  4621. <line x="45.57" y="25.25"/>
  4622. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="47.47" x-axis-rotation="0" y="28.95"/>
  4623. <line x="49.47" y="34.15"/>
  4624. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="51.57" x-axis-rotation="0" y="36.25"/>
  4625. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="55.17" x-axis-rotation="0" y="36.75"/>
  4626. <line x="59.47" y="36.75"/>
  4627. <line x="59.47" y="31.75"/>
  4628. <line x="73.77" y="31.75"/>
  4629. <line x="73.77" y="46.25"/>
  4630. <line x="59.47" y="46.25"/>
  4631. <line x="59.47" y="41.55"/>
  4632. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="50.87" x-axis-rotation="0" y="40.95"/>
  4633. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45.77" x-axis-rotation="0" y="37.35"/>
  4634. <line x="44.17" y="33.65"/>
  4635. <line x="42.07" y="28.55"/>
  4636. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="37.57" x-axis-rotation="0" y="25.25"/>
  4637. <close/>
  4638. </path>
  4639. <fillstroke/>
  4640. </foreground>
  4641. </shape>
  4642. <shape aspect="variable" h="14.85" name="User Permissions" strokewidth="inherit" w="14.2">
  4643. <connections>
  4644. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4645. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4646. <constraint name="W" perimeter="0" x="0.37" y="0.5"/>
  4647. <constraint name="E" perimeter="0" x="0.93" y="0.5"/>
  4648. <constraint name="NE" perimeter="0" x="0.78" y="0.13"/>
  4649. <constraint name="SE" perimeter="0" x="1" y="1"/>
  4650. <constraint name="SW" perimeter="0" x="0" y="1"/>
  4651. </connections>
  4652. <foreground>
  4653. <path>
  4654. <move x="8.72" y="8.57"/>
  4655. <curve x1="7.72" x2="6.69" x3="5.85" y1="8.76" y2="8.49" y3="7.86"/>
  4656. <curve x1="4.78" x2="3.99" x3="3.95" y1="7.06" y2="5.71" y3="4.03"/>
  4657. <curve x1="3.95" x2="5.44" x3="7.77" y1="1.95" y2="0" y3="0"/>
  4658. <curve x1="10.08" x2="11.73" x3="11.77" y1="0" y2="2.2" y3="4.6"/>
  4659. <line x="8.87" y="4.6"/>
  4660. <curve x1="8.36" x2="8.15" x3="8.15" y1="4.6" y2="5.08" y3="5.27"/>
  4661. <line x="8.15" y="7.91"/>
  4662. <curve x1="8.15" x2="8.48" x3="8.72" y1="8.27" y2="8.52" y3="8.57"/>
  4663. <close/>
  4664. <move x="10.35" y="9.85"/>
  4665. <line x="10.35" y="13.49"/>
  4666. <curve x1="10.35" x2="10.33" x3="10.26" y1="13.59" y2="13.61" y3="13.6"/>
  4667. <curve x1="10.15" x2="10.16" x3="10.15" y1="13.6" y2="13.55" y3="13.46"/>
  4668. <line x="10.15" y="10.01"/>
  4669. <close/>
  4670. <move x="10.22" y="13.81"/>
  4671. <curve x1="10.51" x2="10.55" x3="10.55" y1="13.81" y2="13.64" y3="13.45"/>
  4672. <line x="10.54" y="8.93"/>
  4673. <curve x1="10.54" x2="10.48" x3="10.26" y1="8.8" y2="8.6" y3="8.6"/>
  4674. <curve x1="10.05" x2="9.95" x3="9.95" y1="8.6" y2="8.8" y3="9"/>
  4675. <line x="9.95" y="13.43"/>
  4676. <curve x1="9.95" x2="10.12" x3="10.22" y1="13.73" y2="13.81" y3="13.81"/>
  4677. <close/>
  4678. <move x="10.73" y="6.2"/>
  4679. <curve x1="10.54" x2="10.25" x3="10.25" y1="6.2" y2="5.99" y3="5.7"/>
  4680. <curve x1="10.25" x2="10.54" x3="10.73" y1="5.43" y2="5.21" y3="5.21"/>
  4681. <curve x1="11.01" x2="11.24" x3="11.24" y1="5.21" y2="5.46" y3="5.7"/>
  4682. <curve x1="11.24" x2="11.09" x3="10.73" y1="5.98" y2="6.19" y3="6.2"/>
  4683. <close/>
  4684. <move x="10.73" y="6.41"/>
  4685. <curve x1="11.18" x2="11.45" x3="11.45" y1="6.41" y2="6.07" y3="5.7"/>
  4686. <curve x1="11.45" x2="11.1" x3="10.74" y1="5.35" y2="5" y3="5"/>
  4687. <curve x1="10.43" x2="10.05" x3="10.05" y1="5" y2="5.32" y3="5.7"/>
  4688. <curve x1="10.05" x2="10.46" x3="10.73" y1="6.12" y2="6.41" y3="6.41"/>
  4689. <close/>
  4690. <move x="9.75" y="8.4"/>
  4691. <line x="8.93" y="8.41"/>
  4692. <curve x1="8.65" x2="8.35" x3="8.35" y1="8.41" y2="8.19" y3="7.87"/>
  4693. <line x="8.35" y="5.31"/>
  4694. <curve x1="8.35" x2="8.56" x3="8.87" y1="5.08" y2="4.8" y3="4.8"/>
  4695. <line x="12.62" y="4.81"/>
  4696. <curve x1="13" x2="13.15" x3="13.15" y1="4.81" y2="5.06" y3="5.3"/>
  4697. <line x="13.15" y="7.97"/>
  4698. <curve x1="13.15" x2="12.9" x3="12.63" y1="8.25" y2="8.5" y3="8.5"/>
  4699. <line x="12.13" y="8.5"/>
  4700. <curve x1="11.7" x2="11.38" x3="11.35" y1="8.83" y2="9.31" y3="9.6"/>
  4701. <line x="11.35" y="9.84"/>
  4702. <curve x1="11.48" x2="11.62" x3="11.83" y1="10.13" y2="10.44" y3="10.71"/>
  4703. <curve x1="11.71" x2="11.66" x3="11.35" y1="10.93" y2="11.09" y3="11.35"/>
  4704. <line x="11.35" y="11.69"/>
  4705. <curve x1="11.34" x2="11.7" x3="11.84" y1="11.93" y2="12.11" y3="12.17"/>
  4706. <line x="11.85" y="12.34"/>
  4707. <curve x1="11.76" x2="11.55" x3="11.55" y1="12.37" y2="12.49" y3="12.72"/>
  4708. <line x="11.55" y="13.2"/>
  4709. <line x="11.35" y="13.2"/>
  4710. <curve x1="11.36" x2="11.07" x3="10.53" y1="13.7" y2="14.1" y3="14.1"/>
  4711. <curve x1="10.08" x2="9.75" x3="9.75" y1="14.1" y2="13.69" y3="13.22"/>
  4712. <close/>
  4713. <move x="0.01" y="14.85"/>
  4714. <curve x1="0" x2="0.32" x3="0.88" y1="13.48" y2="12.25" y3="11.12"/>
  4715. <curve x1="1.29" x2="1.84" x3="2.63" y1="10.35" y2="9.58" y3="9.04"/>
  4716. <curve x1="3.31" x2="4.21" x3="5.03" y1="8.55" y2="8.53" y3="8.98"/>
  4717. <curve x1="5.43" x2="6.21" x3="7.37" y1="9.19" y2="9.84" y3="10.31"/>
  4718. <curve x1="8.17" x2="8.91" x3="9.55" y1="10.64" y2="10.71" y3="10.33"/>
  4719. <line x="9.54" y="13.21"/>
  4720. <curve x1="9.54" x2="9.94" x3="10.54" y1="13.79" y2="14.31" y3="14.31"/>
  4721. <curve x1="11.13" x2="11.51" x3="11.54" y1="14.31" y2="13.83" y3="13.4"/>
  4722. <line x="11.75" y="13.41"/>
  4723. <line x="11.75" y="12.72"/>
  4724. <curve x1="11.75" x2="11.91" x3="12.05" y1="12.59" y2="12.53" y3="12.48"/>
  4725. <line x="12.05" y="12.02"/>
  4726. <curve x1="11.89" x2="11.6" x3="11.55" y1="12" y2="11.84" y3="11.7"/>
  4727. <line x="11.55" y="11.45"/>
  4728. <curve x1="11.8" x2="11.89" x3="12.06" y1="11.23" y2="11.05" y3="10.69"/>
  4729. <curve x1="11.84" x2="11.63" x3="11.53" y1="10.39" y2="10.07" y3="9.67"/>
  4730. <curve x1="11.56" x2="11.63" x3="11.74" y1="9.53" y2="9.38" y3="9.22"/>
  4731. <curve x1="12.27" x2="12.75" x3="13.17" y1="9.42" y2="10.22" y3="10.99"/>
  4732. <curve x1="13.7" x2="14.05" x3="14.2" y1="11.85" y2="13.23" y3="14.85"/>
  4733. <close/>
  4734. </path>
  4735. <fillstroke/>
  4736. </foreground>
  4737. </shape>
  4738. <shape aspect="variable" h="100" name="Web" strokewidth="inherit" w="100">
  4739. <connections>
  4740. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4741. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4742. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4743. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  4744. <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
  4745. <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
  4746. <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
  4747. <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
  4748. </connections>
  4749. <foreground>
  4750. <path>
  4751. <move x="50" y="100"/>
  4752. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  4753. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
  4754. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="50"/>
  4755. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
  4756. <close/>
  4757. <move x="31.3" y="88.5"/>
  4758. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="24.5" x-axis-rotation="0" y="79.7"/>
  4759. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="21.2" x-axis-rotation="0" y="81.9"/>
  4760. <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="31.3" x-axis-rotation="0" y="88.5"/>
  4761. <close/>
  4762. <move x="46.6" y="90.9"/>
  4763. <line x="46.6" y="73.2"/>
  4764. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="29.6" x-axis-rotation="0" y="77"/>
  4765. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="46.6" x-axis-rotation="0" y="90.9"/>
  4766. <close/>
  4767. <move x="26.9" y="72"/>
  4768. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="46.6" x-axis-rotation="0" y="67.5"/>
  4769. <line x="46.6" y="53.5"/>
  4770. <line x="22.8" y="53.5"/>
  4771. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="26.9" x-axis-rotation="0" y="72"/>
  4772. <close/>
  4773. <move x="7.2" y="53.4"/>
  4774. <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="17.3" x-axis-rotation="0" y="77.5"/>
  4775. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="22" x-axis-rotation="0" y="74.6"/>
  4776. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="17.2" x-axis-rotation="0" y="53.5"/>
  4777. <close/>
  4778. <move x="17.2" y="46.5"/>
  4779. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="22.2" x-axis-rotation="0" y="25"/>
  4780. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="17.6" x-axis-rotation="0" y="22"/>
  4781. <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="0" x="7.2" x-axis-rotation="0" y="46.5"/>
  4782. <close/>
  4783. <move x="46.5" y="32.6"/>
  4784. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="27.2" x-axis-rotation="0" y="27.7"/>
  4785. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="22.8" x-axis-rotation="0" y="46.4"/>
  4786. <line x="46.5" y="46.5"/>
  4787. <close/>
  4788. <move x="46.5" y="9"/>
  4789. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="29.8" x-axis-rotation="0" y="22.7"/>
  4790. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="46.5" x-axis-rotation="0" y="26.8"/>
  4791. <close/>
  4792. <move x="24.7" y="19.8"/>
  4793. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="31.3" x-axis-rotation="0" y="11.3"/>
  4794. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="21.5" x-axis-rotation="0" y="17.9"/>
  4795. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="24.7" x-axis-rotation="0" y="19.8"/>
  4796. <close/>
  4797. <move x="53.6" y="26.8"/>
  4798. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="70.4" x-axis-rotation="0" y="22.9"/>
  4799. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="53.6" x-axis-rotation="0" y="9.2"/>
  4800. <close/>
  4801. <move x="78.8" y="18.2"/>
  4802. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="68.8" x-axis-rotation="0" y="11.3"/>
  4803. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="75.5" x-axis-rotation="0" y="20.3"/>
  4804. <line x="78.8" y="18.2"/>
  4805. <close/>
  4806. <move x="92.8" y="46.5"/>
  4807. <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="0" x="82.7" x-axis-rotation="0" y="22.3"/>
  4808. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="78.1" x-axis-rotation="0" y="25.5"/>
  4809. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="82.9" x-axis-rotation="0" y="46.4"/>
  4810. <close/>
  4811. <move x="77.2" y="46.5"/>
  4812. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="73" x-axis-rotation="0" y="28"/>
  4813. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="53.4" x-axis-rotation="0" y="32.4"/>
  4814. <line x="53.4" y="46.5"/>
  4815. <close/>
  4816. <move x="53.4" y="67.5"/>
  4817. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="72.9" x-axis-rotation="0" y="72.4"/>
  4818. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="77.2" x-axis-rotation="0" y="53.4"/>
  4819. <line x="53.4" y="53.4"/>
  4820. <close/>
  4821. <move x="53.4" y="90.9"/>
  4822. <arc large-arc-flag="0" rx="27" ry="27" sweep-flag="0" x="70.2" x-axis-rotation="0" y="77.4"/>
  4823. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="53.4" x-axis-rotation="0" y="73.3"/>
  4824. <close/>
  4825. <move x="75.3" y="80.2"/>
  4826. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="1" x="68.6" x-axis-rotation="0" y="88.8"/>
  4827. <arc large-arc-flag="0" rx="55" ry="55" sweep-flag="0" x="78.4" x-axis-rotation="0" y="82.2"/>
  4828. <close/>
  4829. <move x="82.9" y="53.4"/>
  4830. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="77.9" x-axis-rotation="0" y="75"/>
  4831. <line x="82.4" y="78"/>
  4832. <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="0" x="92.8" x-axis-rotation="0" y="53.4"/>
  4833. <close/>
  4834. </path>
  4835. <fillstroke/>
  4836. </foreground>
  4837. </shape>
  4838. <shape aspect="variable" h="82.57" name="Website generic" strokewidth="inherit" w="94.75">
  4839. <connections>
  4840. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4841. <constraint name="S" perimeter="0" x="0.5" y="0.83"/>
  4842. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4843. <constraint name="E" perimeter="0" x="0.93" y="0.5"/>
  4844. <constraint name="NE" perimeter="0" x="0.83" y="0"/>
  4845. <constraint name="NW" perimeter="0" x="0" y="0"/>
  4846. <constraint name="SE1" perimeter="0" x="0.74" y="1"/>
  4847. <constraint name="SE2" perimeter="0" x="1" y="0.7"/>
  4848. <constraint name="SW" perimeter="0" x="0" y="0.81"/>
  4849. </connections>
  4850. <foreground>
  4851. <path>
  4852. <move x="44.1" y="66.8"/>
  4853. <line x="0" y="66.8"/>
  4854. <line x="0" y="0"/>
  4855. <line x="78.9" y="0"/>
  4856. <line x="78.9" y="31.9"/>
  4857. <line x="76.5" y="31.1"/>
  4858. <line x="76.5" y="15.6"/>
  4859. <line x="2.3" y="15.6"/>
  4860. <line x="2.3" y="64.4"/>
  4861. <line x="43.2" y="64.4"/>
  4862. <close/>
  4863. <move x="10.9" y="59.5"/>
  4864. <line x="10.9" y="48.6"/>
  4865. <line x="17" y="48.6"/>
  4866. <line x="17" y="40"/>
  4867. <line x="38.8" y="40"/>
  4868. <line x="38.8" y="33.9"/>
  4869. <line x="30.4" y="33.9"/>
  4870. <line x="30.4" y="20.7"/>
  4871. <line x="49.8" y="20.7"/>
  4872. <line x="49.8" y="33.9"/>
  4873. <line x="41.1" y="33.9"/>
  4874. <line x="41.1" y="40.1"/>
  4875. <line x="48.8" y="40.1"/>
  4876. <line x="47" y="42.4"/>
  4877. <line x="41.2" y="42.4"/>
  4878. <line x="41.2" y="48.6"/>
  4879. <line x="43.9" y="48.6"/>
  4880. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="42.5" x-axis-rotation="0" y="59.6"/>
  4881. <line x="32.8" y="59.6"/>
  4882. <line x="32.8" y="48.6"/>
  4883. <line x="38.9" y="48.6"/>
  4884. <line x="38.9" y="42.4"/>
  4885. <line x="19.2" y="42.4"/>
  4886. <line x="19.2" y="48.6"/>
  4887. <line x="25.3" y="48.6"/>
  4888. <line x="25.3" y="59.6"/>
  4889. <close/>
  4890. <move x="69.75" y="82.37"/>
  4891. <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="45.2" x-axis-rotation="0" y="57.5"/>
  4892. <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="69.75" x-axis-rotation="0" y="32.95"/>
  4893. <arc large-arc-flag="0" rx="24.55" ry="24.55" sweep-flag="1" x="94.51" x-axis-rotation="0" y="57.5"/>
  4894. <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="1" x="69.75" x-axis-rotation="0" y="82.37"/>
  4895. <close/>
  4896. <move x="62.86" y="77.14"/>
  4897. <arc large-arc-flag="0" rx="14.63" ry="14.63" sweep-flag="1" x="59.83" x-axis-rotation="0" y="70.25"/>
  4898. <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="0" x="54.5" x-axis-rotation="0" y="71.92"/>
  4899. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="62.86" x-axis-rotation="0" y="77.25"/>
  4900. <close/>
  4901. <move x="72.16" y="77.35"/>
  4902. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="76.02" x-axis-rotation="0" y="69.52"/>
  4903. <arc large-arc-flag="0" rx="41.79" ry="41.79" sweep-flag="0" x="63.8" x-axis-rotation="0" y="69.62"/>
  4904. <arc large-arc-flag="0" rx="15.67" ry="15.67" sweep-flag="0" x="67.77" x-axis-rotation="0" y="77.35"/>
  4905. <arc large-arc-flag="0" rx="2.93" ry="3.13" sweep-flag="0" x="72.16" x-axis-rotation="0" y="77.35"/>
  4906. <close/>
  4907. <move x="62.86" y="66.07"/>
  4908. <arc large-arc-flag="0" rx="36.57" ry="36.56" sweep-flag="1" x="76.86" x-axis-rotation="0" y="66.07"/>
  4909. <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="0" x="77.49" x-axis-rotation="0" y="59.59"/>
  4910. <line x="62.23" y="59.59"/>
  4911. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="62.86" x-axis-rotation="0" y="66.07"/>
  4912. <close/>
  4913. <move x="49.07" y="59.59"/>
  4914. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="51.99" x-axis-rotation="0" y="68.79"/>
  4915. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="59.2" x-axis-rotation="0" y="66.59"/>
  4916. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="58.47" x-axis-rotation="0" y="59.59"/>
  4917. <close/>
  4918. <move x="58.47" y="55.62"/>
  4919. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="59.31" x-axis-rotation="0" y="48"/>
  4920. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="52.62" x-axis-rotation="0" y="45.91"/>
  4921. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="48.86" x-axis-rotation="0" y="55.62"/>
  4922. <close/>
  4923. <move x="77.38" y="55.62"/>
  4924. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="76.75" x-axis-rotation="0" y="48.73"/>
  4925. <arc large-arc-flag="0" rx="41.79" ry="41.79" sweep-flag="1" x="62.86" x-axis-rotation="0" y="48.73"/>
  4926. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="62.23" x-axis-rotation="0" y="55.62"/>
  4927. <close/>
  4928. <move x="67.87" y="37.65"/>
  4929. <arc large-arc-flag="0" rx="14.63" ry="14.63" sweep-flag="0" x="63.9" x-axis-rotation="0" y="45.18"/>
  4930. <arc large-arc-flag="0" rx="36.57" ry="36.56" sweep-flag="0" x="75.81" x-axis-rotation="0" y="45.18"/>
  4931. <arc large-arc-flag="0" rx="18.81" ry="18.8" sweep-flag="0" x="71.84" x-axis-rotation="0" y="37.65"/>
  4932. <arc large-arc-flag="0" rx="2.93" ry="3.13" sweep-flag="0" x="67.87" x-axis-rotation="0" y="37.65"/>
  4933. <close/>
  4934. <move x="60.14" y="44.44"/>
  4935. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="62.76" x-axis-rotation="0" y="37.97"/>
  4936. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="55.02" x-axis-rotation="0" y="42.88"/>
  4937. <arc large-arc-flag="0" rx="24.03" ry="24.03" sweep-flag="0" x="60.14" x-axis-rotation="0" y="44.44"/>
  4938. <close/>
  4939. <close/>
  4940. <close/>
  4941. <close/>
  4942. <close/>
  4943. <move x="84.38" y="42.88"/>
  4944. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="77.07" x-axis-rotation="0" y="38.07"/>
  4945. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="79.58" x-axis-rotation="0" y="44.44"/>
  4946. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="0" x="84.38" x-axis-rotation="0" y="42.88"/>
  4947. <close/>
  4948. <move x="90.65" y="55.62"/>
  4949. <arc large-arc-flag="0" rx="21.94" ry="21.94" sweep-flag="0" x="86.99" x-axis-rotation="0" y="46.01"/>
  4950. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="80.41" x-axis-rotation="0" y="48.1"/>
  4951. <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="81.14" x-axis-rotation="0" y="55.73"/>
  4952. <close/>
  4953. <move x="79.68" y="70.25"/>
  4954. <arc large-arc-flag="0" rx="26.12" ry="26.12" sweep-flag="1" x="76.86" x-axis-rotation="0" y="77.35"/>
  4955. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="85.22" x-axis-rotation="0" y="71.92"/>
  4956. <arc large-arc-flag="0" rx="20.89" ry="20.89" sweep-flag="0" x="79.68" x-axis-rotation="0" y="70.25"/>
  4957. <close/>
  4958. <move x="81.14" y="59.7"/>
  4959. <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="80.52" x-axis-rotation="0" y="66.59"/>
  4960. <arc large-arc-flag="0" rx="31.34" ry="31.34" sweep-flag="1" x="87.52" x-axis-rotation="0" y="68.79"/>
  4961. <arc large-arc-flag="0" rx="21.94" ry="21.94" sweep-flag="0" x="90.65" x-axis-rotation="0" y="59.59"/>
  4962. <close/>
  4963. </path>
  4964. <fillstroke/>
  4965. </foreground>
  4966. </shape>
  4967. <shape aspect="variable" h="99.8" name="Web Server" strokewidth="inherit" w="75.62">
  4968. <connections>
  4969. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4970. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4971. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4972. <constraint name="E" perimeter="0" x="0.64" y="0.49"/>
  4973. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  4974. <constraint name="SE1" perimeter="0" x="1" y="0.76"/>
  4975. <constraint name="SE2" perimeter="0" x="0.69" y="1"/>
  4976. <constraint name="SW" perimeter="0" x="0" y="1"/>
  4977. </connections>
  4978. <foreground>
  4979. <path>
  4980. <move x="51.7" y="99.6"/>
  4981. <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="28.2" x-axis-rotation="0" y="75.8"/>
  4982. <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="51.7" x-axis-rotation="0" y="52.3"/>
  4983. <arc large-arc-flag="0" rx="23.5" ry="23.5" sweep-flag="1" x="75.4" x-axis-rotation="0" y="75.8"/>
  4984. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="1" x="51.7" x-axis-rotation="0" y="99.6"/>
  4985. <close/>
  4986. <move x="45.1" y="94.6"/>
  4987. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="42.2" x-axis-rotation="0" y="88"/>
  4988. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="0" x="37.1" x-axis-rotation="0" y="89.6"/>
  4989. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="45.1" x-axis-rotation="0" y="94.7"/>
  4990. <close/>
  4991. <move x="54" y="94.8"/>
  4992. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="57.7" x-axis-rotation="0" y="87.3"/>
  4993. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="46" x-axis-rotation="0" y="87.4"/>
  4994. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="49.8" x-axis-rotation="0" y="94.8"/>
  4995. <arc large-arc-flag="0" rx="2.8" ry="3" sweep-flag="0" x="54" x-axis-rotation="0" y="94.8"/>
  4996. <close/>
  4997. <move x="45.1" y="84"/>
  4998. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="1" x="58.5" x-axis-rotation="0" y="84"/>
  4999. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="59.1" x-axis-rotation="0" y="77.8"/>
  5000. <line x="44.5" y="77.8"/>
  5001. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="45.1" x-axis-rotation="0" y="84"/>
  5002. <close/>
  5003. <move x="31.9" y="77.8"/>
  5004. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="34.7" x-axis-rotation="0" y="86.6"/>
  5005. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="41.6" x-axis-rotation="0" y="84.5"/>
  5006. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="40.9" x-axis-rotation="0" y="77.8"/>
  5007. <close/>
  5008. <move x="40.9" y="74"/>
  5009. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="41.7" x-axis-rotation="0" y="66.7"/>
  5010. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="35.3" x-axis-rotation="0" y="64.7"/>
  5011. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="31.7" x-axis-rotation="0" y="74"/>
  5012. <close/>
  5013. <move x="59" y="74"/>
  5014. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="58.4" x-axis-rotation="0" y="67.4"/>
  5015. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="45.1" x-axis-rotation="0" y="67.4"/>
  5016. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="44.5" x-axis-rotation="0" y="74"/>
  5017. <close/>
  5018. <move x="49.9" y="56.8"/>
  5019. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="46.1" x-axis-rotation="0" y="64"/>
  5020. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="57.5" x-axis-rotation="0" y="64"/>
  5021. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="53.7" x-axis-rotation="0" y="56.8"/>
  5022. <arc large-arc-flag="0" rx="2.8" ry="3" sweep-flag="0" x="49.9" x-axis-rotation="0" y="56.8"/>
  5023. <close/>
  5024. <move x="42.5" y="63.3"/>
  5025. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="45" x-axis-rotation="0" y="57.1"/>
  5026. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="37.6" x-axis-rotation="0" y="61.8"/>
  5027. <arc large-arc-flag="0" rx="23" ry="23" sweep-flag="0" x="42.5" x-axis-rotation="0" y="63.3"/>
  5028. <close/>
  5029. <close/>
  5030. <close/>
  5031. <close/>
  5032. <close/>
  5033. <move x="65.7" y="61.8"/>
  5034. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="58.7" x-axis-rotation="0" y="57.2"/>
  5035. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="61.1" x-axis-rotation="0" y="63.3"/>
  5036. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="65.7" x-axis-rotation="0" y="61.8"/>
  5037. <close/>
  5038. <move x="71.7" y="74"/>
  5039. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="68.2" x-axis-rotation="0" y="64.8"/>
  5040. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="61.9" x-axis-rotation="0" y="66.8"/>
  5041. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62.6" x-axis-rotation="0" y="74.1"/>
  5042. <close/>
  5043. <move x="61.2" y="88"/>
  5044. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="58.5" x-axis-rotation="0" y="94.8"/>
  5045. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="66.5" x-axis-rotation="0" y="89.6"/>
  5046. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="61.2" x-axis-rotation="0" y="88"/>
  5047. <close/>
  5048. <move x="62.6" y="77.9"/>
  5049. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="62" x-axis-rotation="0" y="84.5"/>
  5050. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="68.7" x-axis-rotation="0" y="86.6"/>
  5051. <arc large-arc-flag="0" rx="21" ry="21" sweep-flag="0" x="71.7" x-axis-rotation="0" y="77.8"/>
  5052. <close/>
  5053. <move x="0" y="98.8"/>
  5054. <line x="0" y="4.8"/>
  5055. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.7" x-axis-rotation="0" y="0"/>
  5056. <line x="43.2" y="0"/>
  5057. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.2" x-axis-rotation="0" y="4.8"/>
  5058. <line x="48.2" y="48.5"/>
  5059. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="0" x="24.1" x-axis-rotation="0" y="74.7"/>
  5060. <line x="7.2" y="74.7"/>
  5061. <line x="7.2" y="79.6"/>
  5062. <line x="24.3" y="79.6"/>
  5063. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="25.4" x-axis-rotation="0" y="84.4"/>
  5064. <line x="7.2" y="84.4"/>
  5065. <line x="7.2" y="89.2"/>
  5066. <line x="27.4" y="89.2"/>
  5067. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="36.2" x-axis-rotation="0" y="98.8"/>
  5068. <close/>
  5069. <move x="7.45" y="19.18"/>
  5070. <line x="41.07" y="19.3"/>
  5071. <line x="40.95" y="14.68"/>
  5072. <line x="7.45" y="14.43"/>
  5073. <close/>
  5074. </path>
  5075. <fillstroke/>
  5076. </foreground>
  5077. </shape>
  5078. <shape aspect="variable" h="99.6" name="Windows Server" strokewidth="inherit" w="77.4">
  5079. <connections>
  5080. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  5081. <constraint name="S" perimeter="0" x="0.5" y="0.99"/>
  5082. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  5083. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  5084. <constraint name="NW" perimeter="0" x="0.02" y="0.01"/>
  5085. <constraint name="SE" perimeter="0" x="1" y="1"/>
  5086. <constraint name="SW" perimeter="0" x="0" y="0.99"/>
  5087. </connections>
  5088. <foreground>
  5089. <path>
  5090. <move x="0" y="98.8"/>
  5091. <line x="0" y="4.8"/>
  5092. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.7" x-axis-rotation="0" y="0"/>
  5093. <line x="43.4" y="0"/>
  5094. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.4" x-axis-rotation="0" y="4.8"/>
  5095. <line x="48.3" y="46.2"/>
  5096. <line x="21.8" y="50.4"/>
  5097. <line x="21.8" y="74.7"/>
  5098. <line x="7.3" y="74.9"/>
  5099. <line x="7.3" y="79.6"/>
  5100. <line x="21.7" y="79.6"/>
  5101. <line x="21.7" y="84.4"/>
  5102. <line x="7.3" y="84.4"/>
  5103. <line x="7.3" y="89.2"/>
  5104. <line x="21.7" y="89.2"/>
  5105. <line x="21.7" y="96.3"/>
  5106. <line x="39.7" y="98.8"/>
  5107. <close/>
  5108. <move x="7.4" y="19.3"/>
  5109. <line x="41.1" y="19.3"/>
  5110. <line x="41.1" y="14.5"/>
  5111. <line x="7.4" y="14.5"/>
  5112. <close/>
  5113. <move x="26.6" y="54.5"/>
  5114. <line x="45.9" y="51.7"/>
  5115. <line x="45.9" y="72.3"/>
  5116. <line x="26.6" y="72.3"/>
  5117. <close/>
  5118. <move x="45.9" y="75"/>
  5119. <line x="45.9" y="95.1"/>
  5120. <line x="26.6" y="92.2"/>
  5121. <line x="26.6" y="75"/>
  5122. <close/>
  5123. <move x="48.4" y="95.5"/>
  5124. <line x="48.4" y="75"/>
  5125. <line x="77.4" y="75"/>
  5126. <line x="77.4" y="99.6"/>
  5127. <close/>
  5128. <move x="77.4" y="72.3"/>
  5129. <line x="48.4" y="72.3"/>
  5130. <line x="48.4" y="51.5"/>
  5131. <line x="77.4" y="47.6"/>
  5132. <close/>
  5133. </path>
  5134. <fillstroke/>
  5135. </foreground>
  5136. </shape>
  5137. <shape aspect="variable" h="99.6" name="Wireless Connection" strokewidth="inherit" w="83.35">
  5138. <connections>
  5139. <constraint name="N" perimeter="0" x="0.5" y="0.14"/>
  5140. <constraint name="S" perimeter="0" x="0.5" y="0.86"/>
  5141. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  5142. <constraint name="E" perimeter="0" x="0.92" y="0.5"/>
  5143. <constraint name="NE" perimeter="0" x="0.675" y="0"/>
  5144. <constraint name="SE" perimeter="0" x="0.675" y="1"/>
  5145. </connections>
  5146. <foreground>
  5147. <path>
  5148. <move x="9.35" y="59.2"/>
  5149. <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="0.05" x-axis-rotation="0" y="50.3"/>
  5150. <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="9.35" x-axis-rotation="0" y="40.8"/>
  5151. <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="18.35" x-axis-rotation="0" y="50.3"/>
  5152. <arc large-arc-flag="0" rx="9.3" ry="9.3" sweep-flag="1" x="9.35" x-axis-rotation="0" y="59.2"/>
  5153. <close/>
  5154. <move x="21.55" y="65.3"/>
  5155. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="21.55" x-axis-rotation="0" y="34.4"/>
  5156. <line x="28.55" y="27.5"/>
  5157. <arc large-arc-flag="0" rx="32" ry="32" sweep-flag="1" x="28.35" x-axis-rotation="0" y="72.2"/>
  5158. <close/>
  5159. <move x="35.15" y="78.8"/>
  5160. <arc large-arc-flag="0" rx="40.5" ry="40.5" sweep-flag="0" x="35.15" x-axis-rotation="0" y="20.8"/>
  5161. <line x="42.15" y="13.9"/>
  5162. <arc large-arc-flag="0" rx="51" ry="51" sweep-flag="1" x="42.15" x-axis-rotation="0" y="85.8"/>
  5163. <close/>
  5164. <move x="49.15" y="92.7"/>
  5165. <arc large-arc-flag="0" rx="60.5" ry="60.5" sweep-flag="0" x="49.15" x-axis-rotation="0" y="6.9"/>
  5166. <line x="56.15" y="0"/>
  5167. <arc large-arc-flag="0" rx="71" ry="71" sweep-flag="1" x="56.15" x-axis-rotation="0" y="99.6"/>
  5168. <close/>
  5169. </path>
  5170. <fillstroke/>
  5171. </foreground>
  5172. </shape>
  5173. <shape aspect="variable" h="99.8" name="Workstation Client" strokewidth="inherit" w="99.72">
  5174. <connections>
  5175. <constraint name="N" perimeter="0" x="0.48" y="0.01"/>
  5176. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  5177. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  5178. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  5179. <constraint name="NW" perimeter="0" x="0.01" y="0.01"/>
  5180. <constraint name="SE" perimeter="0" x="0.86" y="0.99"/>
  5181. <constraint name="SW" perimeter="0" x="0" y="1"/>
  5182. </connections>
  5183. <foreground>
  5184. <path>
  5185. <move x="0" y="99.8"/>
  5186. <line x="0" y="4.8"/>
  5187. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="4.8" x-axis-rotation="0" y="0"/>
  5188. <line x="44" y="0"/>
  5189. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48.6" x-axis-rotation="0" y="4.8"/>
  5190. <line x="48.6" y="31.6"/>
  5191. <line x="27.8" y="31.6"/>
  5192. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="21.8" x-axis-rotation="0" y="37.8"/>
  5193. <line x="21.8" y="75.4"/>
  5194. <line x="7.2" y="75.4"/>
  5195. <line x="7.2" y="80.2"/>
  5196. <line x="21.8" y="80.2"/>
  5197. <arc large-arc-flag="0" rx="6" ry="10" sweep-flag="0" x="22.4" x-axis-rotation="0" y="85"/>
  5198. <line x="7.2" y="85"/>
  5199. <line x="7.2" y="90"/>
  5200. <line x="42.8" y="89.8"/>
  5201. <arc large-arc-flag="0" rx="8" ry="9" sweep-flag="0" x="35.6" x-axis-rotation="0" y="99.6"/>
  5202. <close/>
  5203. <move x="7.2" y="19.5"/>
  5204. <line x="41.4" y="19.5"/>
  5205. <line x="41.4" y="14.6"/>
  5206. <line x="7.2" y="14.6"/>
  5207. <close/>
  5208. <move x="26.7" y="39.4"/>
  5209. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="29.6" x-axis-rotation="0" y="36.5"/>
  5210. <line x="96.6" y="36.5"/>
  5211. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="99.6" x-axis-rotation="0" y="39.5"/>
  5212. <line x="99.6" y="81.6"/>
  5213. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96.6" x-axis-rotation="0" y="85"/>
  5214. <line x="68" y="85"/>
  5215. <line x="68" y="90.3"/>
  5216. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="70.8" x-axis-rotation="0" y="93.7"/>
  5217. <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="79.6" x-axis-rotation="0" y="94.1"/>
  5218. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="85.1" x-axis-rotation="0" y="96"/>
  5219. <arc large-arc-flag="0" rx="1.5" ry="2" sweep-flag="1" x="84" x-axis-rotation="0" y="99.6"/>
  5220. <line x="77.1" y="99.6"/>
  5221. <line x="69.7" y="97.4"/>
  5222. <line x="55.4" y="97.4"/>
  5223. <line x="49.6" y="99.6"/>
  5224. <line x="41.6" y="99.6"/>
  5225. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="40.4" x-axis-rotation="0" y="98"/>
  5226. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="42.6" x-axis-rotation="0" y="95.2"/>
  5227. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="47.8" x-axis-rotation="0" y="93.9"/>
  5228. <line x="55.2" y="93.7"/>
  5229. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="58.4" x-axis-rotation="0" y="89"/>
  5230. <line x="58.4" y="85"/>
  5231. <line x="29.6" y="85"/>
  5232. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="26.8" x-axis-rotation="0" y="81.6"/>
  5233. <close/>
  5234. <move x="34" y="43.7"/>
  5235. <line x="34" y="77.7"/>
  5236. <line x="92.4" y="77.7"/>
  5237. <line x="92.4" y="43.7"/>
  5238. <close/>
  5239. </path>
  5240. <fillstroke/>
  5241. </foreground>
  5242. </shape>
  5243. <shape aspect="variable" h="98.9" name="XML Web Service" strokewidth="inherit" w="99.6">
  5244. <connections>
  5245. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  5246. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  5247. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  5248. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  5249. <constraint name="SE" perimeter="0" x="1" y="0.84"/>
  5250. <constraint name="SW" perimeter="0" x="0" y="0.84"/>
  5251. </connections>
  5252. <foreground>
  5253. <path>
  5254. <move x="0.6" y="83.2"/>
  5255. <line x="50" y="0"/>
  5256. <line x="99.5" y="82.9"/>
  5257. <close/>
  5258. <move x="22.3" y="71.9"/>
  5259. <line x="50.5" y="71.7"/>
  5260. <line x="35.9" y="48.5"/>
  5261. <close/>
  5262. <move x="77.7" y="71.7"/>
  5263. <line x="64.4" y="48.7"/>
  5264. <line x="50.5" y="71.7"/>
  5265. <close/>
  5266. <move x="63.2" y="46.8"/>
  5267. <line x="50" y="24.2"/>
  5268. <line x="36.8" y="46.8"/>
  5269. <close/>
  5270. <move x="81.5" y="42.3"/>
  5271. <line x="99.6" y="42.3"/>
  5272. <line x="99.6" y="55.8"/>
  5273. <line x="89.6" y="55.8"/>
  5274. <close/>
  5275. <move x="56.6" y="87.6"/>
  5276. <line x="56.6" y="98.9"/>
  5277. <line x="43" y="98.9"/>
  5278. <line x="43" y="87.6"/>
  5279. <close/>
  5280. <move x="10.5" y="55.8"/>
  5281. <line x="0" y="55.8"/>
  5282. <line x="0" y="42.2"/>
  5283. <line x="18.6" y="42.2"/>
  5284. <close/>
  5285. </path>
  5286. <fillstroke/>
  5287. </foreground>
  5288. </shape>
  5289. </shapes>