123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128 |
- <shapes name="mxGraph.rack.cisco">
- <shape name="Cisco 1905 Serial Integrated Services Router" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="5" w="149" h="9.8"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="6" y="0" w="22" h="8"/>
- <fillstroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 1921 Integrated Services Router" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="4" w="149" h="25.6"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="6" y="0" w="22" h="8"/>
- <fillstroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="4"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 1941 Series Integrated Services Router" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <path>
- <move x="6" y="29.6"/>
- <line x="6" y="5"/>
- <arc rx="5" ry="5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="11" y="0"/>
- <line x="149.9" y="0"/>
- <arc rx="5" ry="5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="154.9" y="5"/>
- <line x="154.9" y="29.6"/>
- <close/>
- </path>
- <fillstroke/>
- <rect x="8" y="16.8" w="116" h="6"/>
- <stroke/>
- <rect x="11" y="22.8" w="23" h="4"/>
- <stroke/>
- <rect x="40" y="22.8" w="23" h="4"/>
- <stroke/>
- <path>
- <move x="46.67" y="16.8"/>
- <line x="46.67" y="22.8"/>
- </path>
- <stroke/>
- <path>
- <move x="85.34" y="16.8"/>
- <line x="85.34" y="22.8"/>
- </path>
- <stroke/>
- <rect x="128" y="16.8" w="5" h="4"/>
- <stroke/>
- <rect x="128" y="22.8" w="5" h="4"/>
- <stroke/>
- <rect x="135" y="22.8" w="5" h="4"/>
- <stroke/>
- <rect x="143" y="16.8" w="5" h="10"/>
- <stroke/>
- <rect x="38" y="3" w="40" h="11"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 2901 Integrated Services Router" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="8" y="2" w="116" h="6"/>
- <stroke/>
- <rect x="11" y="8" w="23" h="4"/>
- <stroke/>
- <rect x="40" y="8" w="23" h="4"/>
- <stroke/>
- <path>
- <move x="37" y="2"/>
- <line x="37" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="66" y="2"/>
- <line x="66" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="95" y="2"/>
- <line x="95" y="8"/>
- </path>
- <stroke/>
- <rect x="128" y="2" w="5" h="4"/>
- <stroke/>
- <rect x="128" y="8" w="5" h="4"/>
- <stroke/>
- <rect x="135" y="8" w="5" h="4"/>
- <stroke/>
- <rect x="143" y="2" w="5" h="10"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 2911 Integrated Services Router" h="44.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="44.35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="8" w="149" h="36.4"/>
- <fillstroke/>
- <rect x="35" y="34.2" w="18" h="10"/>
- <stroke/>
- <path>
- <move x="6" y="0"/>
- <line x="6" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="10"/>
- <line x="153" y="10"/>
- <line x="153" y="40"/>
- <line x="55" y="40"/>
- <line x="55" y="32"/>
- <line x="33" y="32"/>
- <line x="33" y="40"/>
- <line x="8" y="40"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="80" y="34.2" w="18" h="10"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 2921 Integrated Services Router" h="44.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="44.35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="8" w="149" h="36.4"/>
- <fillstroke/>
- <rect x="35" y="34.2" w="18" h="10"/>
- <stroke/>
- <path>
- <move x="6" y="0"/>
- <line x="6" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="10"/>
- <line x="153" y="10"/>
- <line x="153" y="43"/>
- <line x="55" y="43"/>
- <line x="55" y="32"/>
- <line x="33" y="32"/>
- <line x="33" y="43"/>
- <line x="8" y="43"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="105" y="30.2" w="22" h="14"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 2951 Integrated Services Router" h="44.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="44.35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="8" w="149" h="36.4"/>
- <fillstroke/>
- <rect x="35" y="34.2" w="18" h="10"/>
- <stroke/>
- <path>
- <move x="6" y="0"/>
- <line x="6" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="10"/>
- <line x="153" y="10"/>
- <line x="153" y="43"/>
- <line x="55" y="43"/>
- <line x="55" y="32"/>
- <line x="33" y="32"/>
- <line x="33" y="43"/>
- <line x="8" y="43"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="105" y="30.2" w="22" h="14"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 3925 Integrated Services Router" h="44.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="44.35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="8" w="149" h="36.4"/>
- <fillstroke/>
- <rect x="35" y="34.2" w="18" h="10"/>
- <stroke/>
- <rect x="108" y="34.2" w="18" h="10"/>
- <stroke/>
- <path>
- <move x="6" y="0"/>
- <line x="6" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="10"/>
- <line x="153" y="10"/>
- <line x="153" y="40"/>
- <line x="128" y="40"/>
- <line x="128" y="32"/>
- <line x="106" y="32"/>
- <line x="106" y="40"/>
- <line x="55" y="40"/>
- <line x="55" y="32"/>
- <line x="33" y="32"/>
- <line x="33" y="40"/>
- <line x="8" y="40"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco 3945 Integrated Servies Router" h="44.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="44.35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="8" w="149" h="36.4"/>
- <fillstroke/>
- <rect x="35" y="34.2" w="18" h="10"/>
- <stroke/>
- <rect x="108" y="34.2" w="18" h="10"/>
- <stroke/>
- <path>
- <move x="6" y="0"/>
- <line x="6" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="155" y="0"/>
- <line x="155" y="8"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="10"/>
- <line x="153" y="10"/>
- <line x="153" y="40"/>
- <line x="128" y="40"/>
- <line x="128" y="32"/>
- <line x="106" y="32"/>
- <line x="106" y="40"/>
- <line x="55" y="40"/>
- <line x="55" y="32"/>
- <line x="33" y="32"/>
- <line x="33" y="40"/>
- <line x="8" y="40"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco 7603 Router" h="59.3" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="59.3"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149.32" h="59.3"/>
- <fillstroke/>
- <path>
- <move x="18" y="0"/>
- <line x="18" y="59.2"/>
- <move x="18" y="12"/>
- <line x="155" y="12"/>
- <move x="18" y="24"/>
- <line x="155" y="24"/>
- <move x="18" y="50"/>
- <line x="155" y="50"/>
- <move x="18" y="36"/>
- <line x="155" y="36"/>
- <move x="80.5" y="24"/>
- <line x="80.5" y="36"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 7604 Router" h="74" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="74"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149.32" h="74"/>
- <fillstroke/>
- <path>
- <move x="18" y="0"/>
- <line x="18" y="74"/>
- <move x="18" y="10"/>
- <line x="155" y="10"/>
- <move x="18" y="26"/>
- <line x="155" y="26"/>
- <move x="18" y="58"/>
- <line x="155" y="58"/>
- <move x="18" y="42"/>
- <line x="155" y="42"/>
- </path>
- <stroke/>
- <roundrect x="10" y="23" w="3" h="32" arcsize="27.34375"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 7606 Router" h="103.6" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="103.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149.32" h="103.6"/>
- <fillstroke/>
- <path>
- <move x="18" y="0"/>
- <line x="18" y="103.6"/>
- <move x="18" y="10"/>
- <line x="155" y="10"/>
- <move x="18" y="25"/>
- <line x="155" y="25"/>
- <move x="18" y="55"/>
- <line x="155" y="55"/>
- <move x="18" y="40"/>
- <line x="155" y="40"/>
- </path>
- <stroke/>
- <roundrect x="10" y="37" w="3" h="32" arcsize="50"/>
- <stroke/>
- <path>
- <move x="18" y="72"/>
- <line x="155" y="72"/>
- <move x="18" y="89"/>
- <line x="155" y="89"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 7609 Router" h="310.8" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="310.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="310.8"/>
- <fillstroke/>
- <path>
- <move x="6" y="45"/>
- <line x="155" y="45"/>
- <move x="6" y="65"/>
- <line x="155" y="65"/>
- <move x="6" y="180"/>
- <line x="155" y="180"/>
- <move x="6" y="230"/>
- <line x="155" y="230"/>
- <move x="12" y="65"/>
- <line x="12" y="180"/>
- <move x="149" y="65"/>
- <line x="149" y="180"/>
- <move x="27.22" y="65"/>
- <line x="27.22" y="180"/>
- <move x="42.44" y="65"/>
- <line x="42.44" y="180"/>
- <move x="57.66" y="65"/>
- <line x="57.66" y="180"/>
- <move x="72.88" y="65"/>
- <line x="72.88" y="180"/>
- <move x="88.1" y="65"/>
- <line x="88.1" y="180"/>
- <move x="103.22" y="65"/>
- <line x="103.22" y="180"/>
- <move x="118.54" y="65"/>
- <line x="118.54" y="180"/>
- <move x="133.76" y="65"/>
- <line x="133.76" y="180"/>
- <move x="80.5" y="180.75"/>
- <line x="80.5" y="229.75"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="8" y="182" w="70.5" h="46" arcsize="3.5923527597903173"/>
- <fill/>
- <roundrect x="82.5" y="182" w="70.5" h="46" arcsize="3.5923527597903173"/>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="17.5" y="232.5" w="126" h="75"/>
- <stroke/>
- <path>
- <move x="80.5" y="232.5"/>
- <line x="80.5" y="307.5"/>
- </path>
- <stroke/>
- <fillcolor color="#999999"/>
- <ellipse x="34.5" y="236.5" w="42" h="42"/>
- <fill/>
- <ellipse x="97.5" y="236.5" w="42" h="42"/>
- <fill/>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="31.5" y="256" w="45" h="3" arcsize="26.666666666666668"/>
- <fillstroke/>
- <roundrect x="94.5" y="256" w="45" h="3" arcsize="26.666666666666668"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Cisco 7613 Router" h="266.4" w="160.85">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="266.4"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="266.4"/>
- <fillstroke/>
- <path>
- <move x="15" y="12.5"/>
- <line x="155" y="12.5"/>
- <move x="15" y="25"/>
- <line x="155" y="25"/>
- <move x="6" y="180"/>
- <line x="155" y="180"/>
- </path>
- <stroke/>
- <rect x="17.5" y="191.4" w="126" h="75"/>
- <stroke/>
- <path>
- <move x="80.5" y="191.4"/>
- <line x="80.5" y="266.4"/>
- </path>
- <stroke/>
- <fillcolor color="#999999"/>
- <ellipse x="34.5" y="195.4" w="42" h="42"/>
- <fillstroke/>
- <ellipse x="97.5" y="195.4" w="42" h="42"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="31.5" y="214.9" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <roundrect x="94.5" y="214.9" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <rect x="15" y="0" w="140" h="175"/>
- <stroke/>
- <path>
- <move x="15" y="37.5"/>
- <line x="155" y="37.5"/>
- <move x="15" y="50"/>
- <line x="155" y="50"/>
- <move x="15" y="62.5"/>
- <line x="155" y="62.5"/>
- <move x="15" y="75"/>
- <line x="155" y="75"/>
- <move x="15" y="87.5"/>
- <line x="155" y="87.5"/>
- <move x="15" y="100"/>
- <line x="155" y="100"/>
- <move x="15" y="112.5"/>
- <line x="155" y="112.5"/>
- <move x="15" y="125"/>
- <line x="155" y="125"/>
- <move x="15" y="137.5"/>
- <line x="155" y="137.5"/>
- <move x="15" y="150"/>
- <line x="155" y="150"/>
- <move x="15" y="162.5"/>
- <line x="155" y="162.5"/>
- </path>
- <stroke/>
- <roundrect x="9.5" y="62" w="3" h="37.5" arcsize="50"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco 8340 Application-Oriented Networking Appliance" h="44.4" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="44.4"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="44.4"/>
- <fillstroke/>
- <rect x="9" y="2" w="26" h="6"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="58" y="18" w="45" h="22.5"/>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="37" y="2" w="26" h="6"/>
- <stroke/>
- <rect x="65" y="2" w="26" h="6"/>
- <stroke/>
- <rect x="94" y="2" w="26" h="5"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="9" y="18"/>
- <line x="56" y="18"/>
- <line x="56" y="40"/>
- <line x="20" y="40"/>
- <line x="20" y="36"/>
- <line x="9" y="36"/>
- <close/>
- </path>
- <fill/>
- <path>
- <move x="105" y="18"/>
- <line x="152" y="18"/>
- <line x="152" y="36"/>
- <line x="141" y="36"/>
- <line x="141" y="40"/>
- <line x="105" y="40"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="9" y="9" w="26" h="6"/>
- <stroke/>
- <rect x="37" y="9" w="26" h="6"/>
- <stroke/>
- <rect x="65" y="9" w="26" h="6"/>
- <stroke/>
- <path>
- <move x="94" y="10"/>
- <line x="142" y="10"/>
- <line x="142" y="13"/>
- <line x="132" y="13"/>
- <line x="132" y="15"/>
- <line x="94" y="15"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASA 5585-X Adaptive Security Appliance" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <path>
- <move x="80.5" y="0"/>
- <line x="80.5" y="29.6"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <path>
- <move x="8" y="7"/>
- <line x="16" y="7"/>
- <line x="20" y="2"/>
- <line x="67" y="2"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="70" y="5"/>
- <line x="70" y="25"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="67" y="28"/>
- <line x="11" y="28"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="8" y="25"/>
- <close/>
- <move x="153" y="7"/>
- <line x="145" y="7"/>
- <line x="141" y="2"/>
- <line x="94" y="2"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="91" y="5"/>
- <line x="91" y="25"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="94" y="28"/>
- <line x="150" y="28"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="153" y="25"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <path>
- <move x="21" y="14"/>
- <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="23" y="14"/>
- <line x="23" y="20"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="25" y="22"/>
- <line x="50" y="22"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="52" y="20"/>
- <line x="52" y="14"/>
- <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="54" y="14"/>
- <line x="54" y="20"/>
- <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="50" y="24"/>
- <line x="25" y="24"/>
- <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="21" y="20"/>
- <close/>
- <move x="107" y="14"/>
- <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="109" y="14"/>
- <line x="109" y="20"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="111" y="22"/>
- <line x="136" y="22"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="138" y="20"/>
- <line x="138" y="14"/>
- <arc rx="1.5" ry="1.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="1" x="140" y="14"/>
- <line x="140" y="20"/>
- <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="136" y="24"/>
- <line x="111" y="24"/>
- <arc rx="4" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="107" y="20"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1001 Router" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="37" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="45" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="53" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="75" y="10" w="5" h="3"/>
- <stroke/>
- <rect x="83" y="10" w="5" h="3"/>
- <stroke/>
- <rect x="91" y="10" w="5" h="3"/>
- <stroke/>
- <rect x="99" y="10" w="5" h="3"/>
- <stroke/>
- <rect x="112" y="1" w="40" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1002 Router" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="25" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="30" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="70" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="75" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="18" y="23" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="23" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="17" w="60" h="5"/>
- <stroke/>
- <rect x="35" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="20" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="51" y="16" w="5" h="3"/>
- <stroke/>
- <rect x="62" y="16" w="5" h="3"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1002-X Router" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="30" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="30" y="13" w="6" h="4"/>
- <stroke/>
- <rect x="15" y="7" w="6" h="10"/>
- <stroke/>
- <rect x="42" y="9" w="5" h="3"/>
- <stroke/>
- <rect x="50" y="9" w="5" h="3"/>
- <stroke/>
- <rect x="75" y="9" w="5" h="3"/>
- <stroke/>
- <rect x="75" y="14" w="5" h="3"/>
- <stroke/>
- <rect x="18" y="23" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="23" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="17" w="60" h="5"/>
- <stroke/>
- <rect x="58" y="9" w="5" h="3"/>
- <stroke/>
- <rect x="42" y="14" w="5" h="3"/>
- <stroke/>
- <rect x="50" y="14" w="5" h="3"/>
- <stroke/>
- <rect x="58" y="14" w="5" h="3"/>
- <stroke/>
- <rect x="110" y="7" w="35" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1004 Router" h="59.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="59.2"/>
- <fillstroke/>
- <rect x="99" y="52" w="5" h="4"/>
- <stroke/>
- <rect x="104" y="52" w="5" h="4"/>
- <stroke/>
- <rect x="18" y="11" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="11" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="5" w="60" h="5"/>
- <stroke/>
- <rect x="80" y="52" w="5" h="4"/>
- <stroke/>
- <rect x="91" y="52" w="5" h="4"/>
- <stroke/>
- <path>
- <move x="6" y="3.2"/>
- <line x="155" y="3.2"/>
- <move x="6" y="17.2"/>
- <line x="155" y="17.2"/>
- <move x="6" y="31.2"/>
- <line x="155" y="31.2"/>
- <move x="6" y="45.2"/>
- <line x="155" y="45.2"/>
- </path>
- <stroke/>
- <rect x="18" y="5" w="60" h="5"/>
- <stroke/>
- <rect x="18" y="19" w="60" h="5"/>
- <stroke/>
- <rect x="18" y="25" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="19" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="25" w="60" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1006 Router" h="88.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="88.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="88.8"/>
- <fillstroke/>
- <rect x="99" y="66" w="5" h="4"/>
- <stroke/>
- <rect x="104" y="66" w="5" h="4"/>
- <stroke/>
- <rect x="18" y="11" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="11" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="5" w="60" h="5"/>
- <stroke/>
- <rect x="80" y="66" w="5" h="4"/>
- <stroke/>
- <rect x="91" y="66" w="5" h="4"/>
- <stroke/>
- <path>
- <move x="6" y="3.2"/>
- <line x="155" y="3.2"/>
- <move x="6" y="17.2"/>
- <line x="155" y="17.2"/>
- <move x="6" y="31.2"/>
- <line x="155" y="31.2"/>
- <move x="6" y="45.2"/>
- <line x="155" y="45.2"/>
- </path>
- <stroke/>
- <rect x="18" y="5" w="60" h="5"/>
- <stroke/>
- <rect x="18" y="19" w="60" h="5"/>
- <stroke/>
- <rect x="18" y="25" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="19" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="25" w="60" h="5"/>
- <stroke/>
- <path>
- <move x="6" y="59.2"/>
- <line x="155" y="59.2"/>
- <move x="6" y="73.2"/>
- <line x="155" y="73.2"/>
- </path>
- <stroke/>
- <rect x="18" y="33" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="33" w="60" h="5"/>
- <stroke/>
- <rect x="18" y="39" w="60" h="5"/>
- <stroke/>
- <rect x="90" y="39" w="60" h="5"/>
- <stroke/>
- <rect x="104" y="80" w="5" h="4"/>
- <stroke/>
- <rect x="99" y="80" w="5" h="4"/>
- <stroke/>
- <rect x="91" y="80" w="5" h="4"/>
- <stroke/>
- <rect x="80" y="80" w="5" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 1013 Router" h="192.4" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="192.4"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="192.4"/>
- <fillstroke/>
- <path>
- <move x="6" y="10"/>
- <line x="155" y="10"/>
- <move x="12" y="24"/>
- <line x="149" y="24"/>
- <move x="12" y="38"/>
- <line x="149" y="38"/>
- <move x="6" y="52"/>
- <line x="155" y="52"/>
- <move x="6" y="58"/>
- <line x="155" y="58"/>
- <move x="6" y="68"/>
- <line x="155" y="68"/>
- <move x="6" y="78"/>
- <line x="155" y="78"/>
- <move x="6" y="88"/>
- <line x="155" y="88"/>
- <move x="6" y="98"/>
- <line x="155" y="98"/>
- <move x="6" y="108"/>
- <line x="155" y="108"/>
- <move x="6" y="118"/>
- <line x="155" y="118"/>
- <move x="6" y="128"/>
- <line x="155" y="128"/>
- <move x="6" y="132"/>
- <line x="155" y="132"/>
- <move x="6" y="142"/>
- <line x="155" y="142"/>
- <move x="6" y="156"/>
- <line x="155" y="156"/>
- <move x="6" y="170"/>
- <line x="155" y="170"/>
- <move x="6" y="184"/>
- <line x="155" y="184"/>
- <move x="12" y="10"/>
- <line x="12" y="52"/>
- <move x="149" y="10"/>
- <line x="149" y="52"/>
- <move x="12" y="58"/>
- <line x="12" y="68"/>
- <move x="149" y="58"/>
- <line x="149" y="68"/>
- <move x="149" y="88"/>
- <line x="149" y="98"/>
- <move x="12" y="88"/>
- <line x="12" y="98"/>
- <move x="12" y="118"/>
- <line x="12" y="128"/>
- <move x="12" y="132"/>
- <line x="12" y="184"/>
- <move x="149" y="118"/>
- <line x="149" y="128"/>
- <move x="149" y="132"/>
- <line x="149" y="184"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 9001" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="9" y="3" w="28" h="8"/>
- <stroke/>
- <rect x="40" y="3" w="28" h="8"/>
- <stroke/>
- <rect x="80" y="0" w="50" h="11"/>
- <stroke/>
- <rect x="60" y="14" w="5" h="4"/>
- <stroke/>
- <rect x="60" y="20" w="5" h="4"/>
- <stroke/>
- <rect x="79" y="14" w="5" h="4"/>
- <stroke/>
- <rect x="79" y="20" w="5" h="4"/>
- <stroke/>
- <rect x="87" y="14" w="5" h="4"/>
- <stroke/>
- <rect x="87" y="20" w="5" h="4"/>
- <stroke/>
- <rect x="115" y="15" w="6" h="10"/>
- <stroke/>
- <rect x="124" y="15" w="6" h="10"/>
- <stroke/>
- <rect x="133" y="15" w="6" h="10"/>
- <stroke/>
- <roundrect x="145" y="8" w="3" h="13.6" arcsize="50"/>
- <stroke/>
- <rect x="8" y="15" w="17" h="14.6"/>
- <stroke/>
- <rect x="27" y="15" w="17" h="14.6"/>
- <stroke/>
- <rect x="95" y="14" w="5" h="4"/>
- <stroke/>
- <rect x="95" y="20" w="5" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 9006" h="148" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="148"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="10" y="8" w="140" h="132"/>
- <fillstroke/>
- <path>
- <move x="6" y="25"/>
- <line x="155" y="25"/>
- <move x="6" y="41"/>
- <line x="155" y="41"/>
- <move x="6" y="57"/>
- <line x="155" y="57"/>
- <move x="6" y="73"/>
- <line x="155" y="73"/>
- <move x="6" y="89"/>
- <line x="155" y="89"/>
- <move x="6" y="105"/>
- <line x="155" y="105"/>
- <move x="55.66" y="121"/>
- <line x="55.66" y="148"/>
- <move x="105.33" y="121"/>
- <line x="105.33" y="148"/>
- <move x="6" y="121"/>
- <line x="155" y="121"/>
- <move x="26" y="7"/>
- <line x="26" y="25"/>
- <move x="80.5" y="7"/>
- <line x="80.5" y="25"/>
- </path>
- <stroke/>
- <fillcolor color="#e8e8e8"/>
- <path>
- <move x="6" y="12"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="0"/>
- <line x="143" y="0"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="12"/>
- <line x="155" y="136"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="148"/>
- <line x="18" y="148"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="136"/>
- <close/>
- <move x="16" y="130"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="138"/>
- <line x="137" y="138"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="130"/>
- <line x="145" y="18"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="10"/>
- <line x="24" y="10"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="18"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 9010" h="239" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="239"/>
- <fillstroke/>
- <rect x="6" y="0" w="149" h="239"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="10" y="8" w="140" h="132"/>
- <fillstroke/>
- <path>
- <move x="24" y="8"/>
- <line x="24" y="140"/>
- <move x="38" y="8"/>
- <line x="38" y="140"/>
- <move x="52" y="8"/>
- <line x="52" y="140"/>
- <move x="66" y="8"/>
- <line x="66" y="140"/>
- <move x="80" y="8"/>
- <line x="80" y="140"/>
- <move x="94" y="8"/>
- <line x="94" y="140"/>
- <move x="108" y="8"/>
- <line x="108" y="140"/>
- <move x="122" y="8"/>
- <line x="122" y="140"/>
- <move x="136" y="8"/>
- <line x="136" y="140"/>
- </path>
- <stroke/>
- <fillcolor color="#e8e8e8"/>
- <path>
- <move x="6" y="12"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="0"/>
- <line x="143" y="0"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="12"/>
- <line x="155" y="136"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="148"/>
- <line x="18" y="148"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="136"/>
- <close/>
- <move x="16" y="130"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="138"/>
- <line x="137" y="138"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="130"/>
- <line x="145" y="18"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="10"/>
- <line x="24" y="10"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="18"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="6" y="239"/>
- <line x="6" y="177"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="165"/>
- <line x="143" y="165"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="177"/>
- <line x="155" y="239"/>
- <line x="150" y="239"/>
- <line x="150" y="180"/>
- <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="140" y="170"/>
- <line x="21" y="170"/>
- <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="11" y="180"/>
- <line x="11" y="239"/>
- <close/>
- </path>
- <fillstroke/>
- <rect x="11" y="209" w="139" h="30"/>
- <stroke/>
- <path>
- <move x="57.33" y="209"/>
- <line x="57.33" y="239"/>
- <move x="103.67" y="209"/>
- <line x="103.67" y="239"/>
- <move x="11" y="224"/>
- <line x="150" y="224"/>
- <move x="6" y="148"/>
- <line x="155" y="148"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ASR 9922" h="651.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="651.2"/>
- <fillstroke/>
- <rect x="6" y="0" w="149" h="651.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="11" y="471" w="140" h="132"/>
- <fillstroke/>
- <rect x="10" y="76" w="140" h="132"/>
- <fillstroke/>
- <path>
- <move x="24" y="76"/>
- <line x="24" y="208"/>
- <move x="38" y="76"/>
- <line x="38" y="208"/>
- <move x="52" y="76"/>
- <line x="52" y="208"/>
- <move x="66" y="76"/>
- <line x="66" y="208"/>
- <move x="80" y="76"/>
- <line x="80" y="208"/>
- <move x="94" y="76"/>
- <line x="94" y="208"/>
- <move x="108" y="76"/>
- <line x="108" y="208"/>
- <move x="122" y="76"/>
- <line x="122" y="208"/>
- <move x="136" y="76"/>
- <line x="136" y="208"/>
- </path>
- <stroke/>
- <fillcolor color="#e8e8e8"/>
- <path>
- <move x="6" y="80"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="68"/>
- <line x="143" y="68"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="80"/>
- <line x="155" y="204"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="216"/>
- <line x="18" y="216"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="204"/>
- <close/>
- <move x="16" y="198"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="206"/>
- <line x="137" y="206"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="198"/>
- <line x="145" y="86"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="78"/>
- <line x="24" y="78"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="86"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="136" y="471"/>
- <line x="136" y="603"/>
- <move x="122" y="471"/>
- <line x="122" y="603"/>
- <move x="108" y="471"/>
- <line x="108" y="603"/>
- <move x="94" y="471"/>
- <line x="94" y="603"/>
- <move x="80" y="471"/>
- <line x="80" y="603"/>
- <move x="66" y="471"/>
- <line x="66" y="603"/>
- <move x="52" y="471"/>
- <line x="52" y="603"/>
- <move x="38" y="471"/>
- <line x="38" y="603"/>
- <move x="24" y="471"/>
- <line x="24" y="603"/>
- </path>
- <stroke/>
- <fillcolor color="#e8e8e8"/>
- <path>
- <move x="6" y="475"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="18" y="463"/>
- <line x="143" y="463"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="155" y="475"/>
- <line x="155" y="599"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="143" y="611"/>
- <line x="18" y="611"/>
- <arc rx="12" ry="12" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="6" y="599"/>
- <close/>
- <move x="16" y="593"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="24" y="601"/>
- <line x="137" y="601"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="145" y="593"/>
- <line x="145" y="481"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="137" y="473"/>
- <line x="24" y="473"/>
- <arc rx="8" ry="8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="16" y="481"/>
- <close/>
- </path>
- <fillstroke/>
- <rect x="6" y="5" w="149" h="60"/>
- <fillstroke/>
- <path>
- <move x="6" y="20"/>
- <line x="155" y="20"/>
- <move x="6" y="35"/>
- <line x="155" y="35"/>
- <move x="6" y="50"/>
- <line x="155" y="50"/>
- <move x="80.5" y="5"/>
- <line x="80.5" y="65"/>
- <move x="43.25" y="5"/>
- <line x="43.25" y="65"/>
- <move x="117.75" y="5"/>
- <line x="117.75" y="65"/>
- </path>
- <stroke/>
- <rect x="6" y="255" w="149" h="160"/>
- <stroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="255" w="18" h="160"/>
- <fillstroke/>
- <path>
- <move x="6" y="335"/>
- <line x="24" y="335"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Blade Switch 3030" h="71" w="18.62">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18.62" h="71"/>
- <fillstroke/>
- <rect x="2" y="49" w="7" h="8"/>
- <stroke/>
- <rect x="3" y="28" w="6" h="7"/>
- <stroke/>
- <rect x="2" y="59" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="41" w="7" h="8"/>
- <stroke/>
- <rect x="3" y="21" w="6" h="7"/>
- <stroke/>
- <rect x="3" y="14" w="6" h="7"/>
- <stroke/>
- <rect x="3" y="7" w="6" h="7"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Carrier Packet Transport 200" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <path>
- <move x="20" y="0"/>
- <line x="20" y="29.6"/>
- <move x="20" y="9"/>
- <line x="155" y="9"/>
- <move x="20" y="18"/>
- <line x="155" y="18"/>
- <move x="20" y="27"/>
- <line x="155" y="27"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Carrier Packet Transport 50" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="107" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="3" w="5" h="6"/>
- <stroke/>
- <rect x="107" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="75" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="11" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="75" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="28" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Carrier Packet Transport 600" h="88.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="88.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="88.8"/>
- <fillstroke/>
- <path>
- <move x="20" y="13"/>
- <line x="20" y="88.8"/>
- <move x="20" y="67"/>
- <line x="155" y="67"/>
- <move x="20" y="76"/>
- <line x="155" y="76"/>
- <move x="20" y="85"/>
- <line x="155" y="85"/>
- <move x="20" y="58"/>
- <line x="155" y="58"/>
- <move x="20" y="49"/>
- <line x="155" y="49"/>
- <move x="20" y="40"/>
- <line x="155" y="40"/>
- <move x="20" y="31"/>
- <line x="155" y="31"/>
- <move x="20" y="22"/>
- <line x="155" y="22"/>
- </path>
- <stroke/>
- <path>
- <move x="6" y="13"/>
- <line x="155" y="13"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 4900M Switch" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="22" y="2" w="62" h="16"/>
- <stroke/>
- <rect x="22" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="90" y="2" w="62" h="16"/>
- <stroke/>
- <rect x="38" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="54" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="70" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="90" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="106" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="122" y="20" w="14" h="6"/>
- <stroke/>
- <rect x="138" y="20" w="14" h="6"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 4928 10 Gigabit Ethernet Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="20" h="4"/>
- <stroke/>
- <rect x="59" y="8" w="20" h="4"/>
- <stroke/>
- <rect x="115" y="8" w="15" h="6"/>
- <stroke/>
- <rect x="59" y="2" w="20" h="4"/>
- <stroke/>
- <rect x="35" y="2" w="20" h="4"/>
- <stroke/>
- <rect x="35" y="8" w="20" h="4"/>
- <stroke/>
- <rect x="11" y="8" w="20" h="4"/>
- <stroke/>
- <rect x="84" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="84" y="8" w="6" h="4"/>
- <stroke/>
- <rect x="136" y="8" w="15" h="6"/>
- <stroke/>
- <rect x="97" y="3" w="6" h="4"/>
- <stroke/>
- <rect x="105" y="3" w="6" h="4"/>
- <stroke/>
- <rect x="105" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="97" y="9" w="6" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 4948 10 Gigabit Ethernet Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="89" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="136" y="1" w="15" h="6"/>
- <stroke/>
- <rect x="89" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="50" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="50" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="11" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="129" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="129" y="8" w="6" h="4"/>
- <stroke/>
- <rect x="136" y="8" w="15" h="6"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 4948 Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="89" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="138" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="89" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="50" y="2" w="37" h="4"/>
- <stroke/>
- <rect x="50" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="11" y="8" w="37" h="4"/>
- <stroke/>
- <rect x="138" y="8" w="6" h="4"/>
- <stroke/>
- <rect x="145" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="145" y="8" w="6" h="4"/>
- <stroke/>
- <rect x="129" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="129" y="8" w="6" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 6503-E Switch" h="59.2" w="147">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="147" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="14" y="13" w="126.33" h="40"/>
- <fillstroke/>
- <path>
- <move x="14" y="26.33"/>
- <line x="140.5" y="26.33"/>
- <move x="14" y="39.67"/>
- <line x="140.5" y="39.67"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 6504-E Switch" h="74" w="147">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="147" h="74"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="14" y="13" w="126.33" h="53.33"/>
- <fillstroke/>
- <path>
- <move x="14" y="26.33"/>
- <line x="140.5" y="26.33"/>
- <move x="14" y="39.67"/>
- <line x="140.5" y="39.67"/>
- <move x="14" y="53"/>
- <line x="140.5" y="53"/>
- </path>
- <stroke/>
- <roundrect x="5" y="24" w="3" h="30" arcsize="50"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 6506-E Switch" h="177.6" w="147">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="147" h="177.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="14" y="13" w="126.33" h="79.98"/>
- <fillstroke/>
- <path>
- <move x="14" y="26.33"/>
- <line x="140.5" y="26.33"/>
- <move x="14" y="39.67"/>
- <line x="140.5" y="39.67"/>
- <move x="14" y="53"/>
- <line x="140.5" y="53"/>
- </path>
- <stroke/>
- <roundrect x="5" y="24" w="3" h="30" arcsize="50"/>
- <stroke/>
- <path>
- <move x="14" y="66.33"/>
- <line x="140.5" y="66.33"/>
- <move x="14" y="79.67"/>
- <line x="140.5" y="79.67"/>
- </path>
- <stroke/>
- <rect x="14" y="98" w="126" h="75"/>
- <stroke/>
- <path>
- <move x="77" y="98"/>
- <line x="77" y="173"/>
- </path>
- <stroke/>
- <fillcolor color="#999999"/>
- <ellipse x="31" y="102" w="42" h="42"/>
- <fill/>
- <ellipse x="94" y="102" w="42" h="42"/>
- <fill/>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="28" y="121.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <roundrect x="91" y="121.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 6509 Switch" h="222" w="147">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="147" h="222"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="14" y="13" w="126.33" h="119.97"/>
- <fillstroke/>
- <path>
- <move x="14" y="26.33"/>
- <line x="140.5" y="26.33"/>
- <move x="14" y="39.67"/>
- <line x="140.5" y="39.67"/>
- <move x="14" y="53"/>
- <line x="140.5" y="53"/>
- </path>
- <stroke/>
- <roundrect x="5" y="57" w="3" h="35" arcsize="50"/>
- <stroke/>
- <path>
- <move x="14" y="66.33"/>
- <line x="140.5" y="66.33"/>
- <move x="14" y="79.67"/>
- <line x="140.5" y="79.67"/>
- </path>
- <stroke/>
- <rect x="14" y="145" w="126" h="75"/>
- <stroke/>
- <path>
- <move x="77" y="145"/>
- <line x="77" y="220"/>
- </path>
- <stroke/>
- <fillcolor color="#999999"/>
- <ellipse x="31" y="149" w="42" h="42"/>
- <fill/>
- <ellipse x="94" y="149" w="42" h="42"/>
- <fill/>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="28" y="168.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <roundrect x="91" y="168.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <path>
- <move x="14" y="93"/>
- <line x="140.5" y="93"/>
- <move x="14" y="106.33"/>
- <line x="140.5" y="106.33"/>
- <move x="14" y="119.67"/>
- <line x="140.5" y="119.67"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst 6513-E" h="296" w="147">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="147" h="296"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="14" y="13" w="126.33" h="173.33"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <path>
- <move x="14" y="26.33"/>
- <line x="140.5" y="26.33"/>
- <move x="14" y="39.67"/>
- <line x="140.5" y="39.67"/>
- <move x="14" y="53"/>
- <line x="140.5" y="53"/>
- <move x="14" y="66.33"/>
- <line x="140.5" y="66.33"/>
- <move x="14" y="79.67"/>
- <line x="140.5" y="79.67"/>
- </path>
- <stroke/>
- <rect x="14" y="221" w="126" h="75"/>
- <stroke/>
- <path>
- <move x="77" y="221"/>
- <line x="77" y="296"/>
- </path>
- <stroke/>
- <fillcolor color="#999999"/>
- <ellipse x="31" y="225" w="42" h="42"/>
- <fillstroke/>
- <ellipse x="94" y="225" w="42" h="42"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="28" y="244.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <roundrect x="91" y="244.5" w="45" h="3" arcsize="50"/>
- <fillstroke/>
- <path>
- <move x="14" y="93"/>
- <line x="140.5" y="93"/>
- <move x="14" y="106.33"/>
- <line x="140.5" y="106.33"/>
- <move x="14" y="119.67"/>
- <line x="140.5" y="119.67"/>
- <move x="14" y="133"/>
- <line x="140.5" y="133"/>
- <move x="14" y="146.33"/>
- <line x="140.5" y="146.33"/>
- <move x="14" y="159.67"/>
- <line x="140.5" y="159.67"/>
- <move x="14" y="173"/>
- <line x="140.5" y="173"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3020 for HP" h="120" w="18">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18" h="120"/>
- <fillstroke/>
- <rect x="2" y="21" w="7" h="8"/>
- <stroke/>
- <rect x="4" y="95" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="13" w="7" h="8"/>
- <stroke/>
- <rect x="9" y="21" w="7" h="8"/>
- <stroke/>
- <rect x="9" y="13" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="5" w="7" h="8"/>
- <stroke/>
- <rect x="9" y="5" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="29" w="7" h="8"/>
- <stroke/>
- <rect x="9" y="29" w="7" h="8"/>
- <stroke/>
- <rect x="7" y="50" w="7" h="8"/>
- <stroke/>
- <rect x="7" y="58" w="7" h="8"/>
- <stroke/>
- <rect x="7" y="66" w="7" h="8"/>
- <stroke/>
- <rect x="7" y="74" w="7" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3032 for Dell" h="142.16" w="18.62">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18.62" h="142.16"/>
- <fillstroke/>
- <rect x="5" y="37" w="11" h="32"/>
- <stroke/>
- <rect x="5" y="73" w="11" h="32"/>
- <stroke/>
- <rect x="7" y="3" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="5" y="130" w="4" h="10"/>
- <stroke/>
- <rect x="10" y="130" w="4" h="10"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3040 for Dell" h="71" w="18.62">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18.62" h="71"/>
- <fillstroke/>
- <rect x="2" y="49" w="7" h="8"/>
- <stroke/>
- <rect x="3" y="28" w="6" h="7"/>
- <stroke/>
- <rect x="2" y="59" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="41" w="7" h="8"/>
- <stroke/>
- <rect x="3" y="21" w="6" h="7"/>
- <stroke/>
- <rect x="3" y="14" w="6" h="7"/>
- <stroke/>
- <rect x="3" y="7" w="6" h="7"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3100 for Dell" h="142.16" w="18.62">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18.62" h="142.16"/>
- <fillstroke/>
- <rect x="5" y="37" w="11" h="32"/>
- <stroke/>
- <rect x="5" y="73" w="11" h="32"/>
- <stroke/>
- <rect x="7" y="3" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="5" y="130" w="4" h="10"/>
- <stroke/>
- <rect x="10" y="130" w="4" h="10"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3120 for HP" h="120" w="18">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18" h="120"/>
- <fillstroke/>
- <rect x="2" y="21" w="7" h="8"/>
- <stroke/>
- <rect x="4" y="100" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="13" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="2" w="4" h="10"/>
- <stroke/>
- <rect x="5" y="2" w="4" h="10"/>
- <stroke/>
- <rect x="9" y="21" w="7" h="8"/>
- <stroke/>
- <rect x="9" y="13" w="7" h="8"/>
- <stroke/>
- <rect x="3" y="31" w="13" h="30"/>
- <stroke/>
- <rect x="3" y="68" w="13" h="30"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Catalyst Blade Switch 3130 for Dell" h="142.16" w="18.62">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#dbdbdb"/>
- <rect x="0" y="0" w="18.62" h="142.16"/>
- <fillstroke/>
- <rect x="5" y="37" w="11" h="32"/>
- <stroke/>
- <rect x="5" y="73" w="11" h="32"/>
- <stroke/>
- <rect x="7" y="3" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="112" w="7" h="8"/>
- <stroke/>
- <rect x="2" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="10" y="120" w="7" h="8"/>
- <stroke/>
- <rect x="5" y="130" w="4" h="10"/>
- <stroke/>
- <rect x="10" y="130" w="4" h="10"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Identity Services Engine" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.8"/>
- <fillstroke/>
- <path>
- <move x="70" y="0"/>
- <line x="70" y="14.8"/>
- </path>
- <stroke/>
- <rect x="10" y="7" w="50" h="5"/>
- <stroke/>
- <rect x="72" y="4" w="38" h="8"/>
- <stroke/>
- <rect x="113" y="4" w="38" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco IPS 4500 Sensor" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <path>
- <move x="6" y="7.4"/>
- <line x="155" y="7"/>
- </path>
- <stroke/>
- <path>
- <move x="6" y="14.8"/>
- <line x="155" y="14.8"/>
- </path>
- <stroke/>
- <path>
- <move x="6" y="22.2"/>
- <line x="155" y="22.2"/>
- </path>
- <stroke/>
- <strokecolor color="none"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="10" y="3" w="142" h="2"/>
- <fillstroke/>
- <rect x="10" y="17.8" w="142" h="2"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <rect x="11" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="15" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="23" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="27" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="40" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="44" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="48" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="52" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="56" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="60" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="68" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="72" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="78" y="9" w="4" h="4"/>
- <stroke/>
- <rect x="140" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="136" y="10" w="4" h="3"/>
- <stroke/>
- <rect x="11" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="15" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="23" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="27" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="40" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="44" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="48" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="52" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="56" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="60" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="68" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="72" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="78" y="23.5" w="4" h="4"/>
- <stroke/>
- <rect x="136" y="24.5" w="4" h="3"/>
- <stroke/>
- <rect x="140" y="24.5" w="4" h="3"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Network Access Control" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="88" y="7" w="50" h="5"/>
- <stroke/>
- <rect x="8" y="2" w="38" h="10"/>
- <stroke/>
- <rect x="48" y="2" w="38" h="10"/>
- <stroke/>
- <rect x="142" y="7" w="4" h="2"/>
- <stroke/>
- <rect x="142" y="9" w="4" h="2"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 1010 Virtual Services Appliance" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#000000"/>
- <rect x="38" y="6.5" w="6" h="5"/>
- <fillstroke/>
- <rect x="7" y="5" w="148" h="8"/>
- <stroke/>
- <fillcolor color="#000000"/>
- <rect x="75" y="6.5" w="6" h="5"/>
- <fillstroke/>
- <rect x="112" y="6.5" w="6" h="5"/>
- <fillstroke/>
- <rect x="149" y="6.5" w="6" h="5"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="60" y="1" w="48" h="3"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2148T Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="107" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="107" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="75" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="11" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="75" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="28" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2224TP GE Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="138" y="8" w="12" h="4"/>
- <stroke/>
- <rect x="45" y="8" w="30" h="5"/>
- <stroke/>
- <rect x="45" y="2" w="30" h="5"/>
- <stroke/>
- <rect x="85" y="2" w="30" h="5"/>
- <stroke/>
- <rect x="85" y="8" w="30" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2232PP 10GE Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="15" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="129" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="129" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="71" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="15" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="71" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="100" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="100" y="8" w="21" h="5"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="37" y="2" w="5" h="11"/>
- <fill/>
- <rect x="65" y="2" w="5" h="11"/>
- <fill/>
- <rect x="93.5" y="2" w="5" h="11"/>
- <fill/>
- <rect x="122.5" y="2" w="5" h="11"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2232TM 10GE Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="15" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="129" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="129" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="71" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="15" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="71" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="21" h="5"/>
- <stroke/>
- <rect x="100" y="2" w="21" h="5"/>
- <stroke/>
- <rect x="100" y="8" w="21" h="5"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="37" y="2" w="5" h="11"/>
- <fill/>
- <rect x="65" y="2" w="5" h="11"/>
- <fill/>
- <rect x="93.5" y="2" w="5" h="11"/>
- <fill/>
- <rect x="122.5" y="2" w="5" h="11"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2248PQ 10GE Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="89" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="131" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="89" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="50" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="50" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="11" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="131" y="9" w="6" h="3"/>
- <stroke/>
- <rect x="140" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="140" y="9" w="6" h="3"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 2248TP GE Fabric Extender" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="107" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="107" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="75" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="11" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="75" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="28" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 3016 Switch" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="140" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="20" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="125" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="110" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="95" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="20" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="35" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="50" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="65" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="35" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="50" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="65" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="95" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="110" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="125" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="140" y="8" w="6" h="3"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="12.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="27.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="42.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="57.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="102.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="117.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="132.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="147.5" y="2" w="6" h="10" arcsize="26.68"/>
- <fill/>
- <roundrect x="72.5" y="2" w="21" h="10" arcsize="14.76"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 3048 Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="107" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="107" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="75" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="11" y="8" w="28" h="5"/>
- <stroke/>
- <rect x="139" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="145" y="8" w="6" h="5"/>
- <stroke/>
- <rect x="75" y="2" w="28" h="5"/>
- <stroke/>
- <rect x="43" y="8" w="28" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 3064 Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="11" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="89" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="131" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="89" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="50" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="50" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="11" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="131" y="9" w="6" h="4"/>
- <stroke/>
- <rect x="140" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="140" y="9" w="6" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 3548 Switch" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="113" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="113" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="25" y="2" w="6" h="4"/>
- <stroke/>
- <rect x="74" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="35" y="2" w="37" h="3"/>
- <stroke/>
- <rect x="74" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="35" y="8" w="37" h="3"/>
- <stroke/>
- <rect x="25" y="7" w="6" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 5548P Switch" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="10" y="2" w="48" h="3"/>
- <stroke/>
- <rect x="10" y="8" w="48" h="3"/>
- <stroke/>
- <rect x="61" y="2" w="48" h="3"/>
- <stroke/>
- <rect x="61" y="8" w="48" h="3"/>
- <stroke/>
- <rect x="111" y="2" w="42" h="11"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 5596T" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="10" y="16" w="43" h="12"/>
- <stroke/>
- <rect x="59" y="16" w="43" h="12"/>
- <stroke/>
- <rect x="108" y="16" w="43" h="12"/>
- <stroke/>
- <rect x="10" y="2" w="43" h="12"/>
- <stroke/>
- <rect x="59" y="2" w="43" h="12"/>
- <stroke/>
- <rect x="108" y="2" w="43" h="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 5596UP Switch" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="12" y="2" w="44" h="3"/>
- <stroke/>
- <rect x="12" y="8" w="44" h="3"/>
- <stroke/>
- <rect x="63" y="2" w="44" h="3"/>
- <stroke/>
- <rect x="63" y="8" w="44" h="3"/>
- <stroke/>
- <rect x="111" y="2" w="42" h="11"/>
- <stroke/>
- <rect x="13" y="16" w="43" h="12"/>
- <stroke/>
- <rect x="64" y="16" w="43" h="12"/>
- <stroke/>
- <rect x="110" y="16" w="43" h="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 6001 Switch" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="10" y="2" w="60" h="3"/>
- <stroke/>
- <rect x="10" y="8" w="60" h="3"/>
- <stroke/>
- <rect x="73" y="2" w="60" h="3"/>
- <stroke/>
- <rect x="73" y="8" w="60" h="3"/>
- <stroke/>
- <rect x="136" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="145" y="2" w="6" h="3"/>
- <stroke/>
- <rect x="145" y="8" w="6" h="3"/>
- <stroke/>
- <rect x="136" y="8" w="6" h="3"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 6004 Switch" h="59.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="5" w="149" h="49.2"/>
- <fillstroke/>
- <rect x="10" y="10" w="3" h="39"/>
- <stroke/>
- <path>
- <move x="24.62" y="5"/>
- <line x="24.62" y="54.2"/>
- <move x="43.25" y="5"/>
- <line x="43.25" y="54.2"/>
- <move x="61.88" y="5"/>
- <line x="61.88" y="54.2"/>
- <move x="80.5" y="5"/>
- <line x="80.5" y="54.2"/>
- <move x="99.12" y="5"/>
- <line x="99.12" y="54.2"/>
- <move x="117.38" y="5"/>
- <line x="117.38" y="54.2"/>
- <move x="136" y="5"/>
- <line x="136" y="54.2"/>
- </path>
- <stroke/>
- <rect x="17" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="28.62" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="35.62" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="47.25" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="54.25" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="65.88" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="72.88" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="84.5" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="91.5" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="103.12" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="110.12" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="121.38" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="128.38" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="140" y="10" w="3" h="39"/>
- <stroke/>
- <rect x="147" y="10" w="3" h="39"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 7000 10-Slot Switch Chassis" h="310.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="0" y="0" w="160.9" h="310.8" arcsize="3.77"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="10" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="24.8" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="39.6" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="54.4" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="69.2" y="90" w="12" h="149"/>
- <fillstroke/>
- <rect x="81.2" y="90" w="12" h="149"/>
- <fillstroke/>
- <rect x="93.2" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="108" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="122.8" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <rect x="137.6" y="90" w="14.8" h="149"/>
- <fillstroke/>
- <fillcolor color="#cccccc"/>
- <roundrect x="6" y="6" w="148" h="65" arcsize="5.54"/>
- <fill/>
- <rect x="10" y="239" w="142.4" h="60"/>
- <stroke/>
- <rect x="16" y="245" w="130" h="48"/>
- <stroke/>
- <path>
- <move x="10" y="239"/>
- <line x="16" y="245"/>
- <move x="10" y="299"/>
- <line x="16" y="293"/>
- <move x="146" y="245"/>
- <line x="152.4" y="239"/>
- <move x="146" y="293"/>
- <line x="152.4" y="299"/>
- </path>
- <stroke/>
- <fillcolor color="#666666"/>
- <roundrect x="21" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="21" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="31" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="41" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="51" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="61" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="71" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="81" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="91" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="101" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="111" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="121" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="131" y="247" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="31" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="41" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="51" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="61" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="71" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="81" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="91" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="101" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="111" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="121" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <roundrect x="131" y="270" w="8" h="21" arcsize="17.26"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <alpha alpha="0.3"/>
- <rect x="0" y="78" w="160.9" h="161"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 7000 18-Slot Switch Chassis" h="370" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="370"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="123.4" w="149" h="19"/>
- <fillstroke/>
- <rect x="6" y="5" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="19.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="34.6" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <rect x="0" y="0" w="160.9" h="5"/>
- <fillstroke/>
- <strokecolor color="#66ccff"/>
- <rect x="9" y="290" w="145" h="10"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="49.4" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="142.4" w="149" h="19"/>
- <fillstroke/>
- <rect x="6" y="64.2" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="79" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="93.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="108.6" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <path>
- <move x="0" y="370"/>
- <line x="0" y="290"/>
- <line x="10" y="290"/>
- <line x="10" y="357"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="13" y="360"/>
- <line x="147.9" y="360"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="150.9" y="357"/>
- <line x="150.9" y="290"/>
- <line x="160.9" y="290"/>
- <line x="160.9" y="370"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="161" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="175.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="190.6" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="205.4" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="220.2" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="235" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="249.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="264.6" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <alpha alpha="0.3"/>
- <rect x="0" y="5" w="160.9" h="285"/>
- <fillstroke/>
- <strokecolor color="#cccccc"/>
- <fillcolor color="#e8e8e8"/>
- <alpha alpha="1"/>
- <path>
- <move x="0" y="127"/>
- <line x="8" y="127"/>
- <line x="20" y="134"/>
- <line x="140.9" y="134"/>
- <line x="152.9" y="127"/>
- <line x="160.9" y="127"/>
- <line x="160.9" y="159"/>
- <line x="152.9" y="159"/>
- <line x="140.9" y="152"/>
- <line x="20" y="152"/>
- <line x="8" y="159"/>
- <line x="0" y="159"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#666666"/>
- <path>
- <move x="155.9" y="130"/>
- <line x="145.9" y="136"/>
- <line x="145.9" y="150"/>
- <line x="155.9" y="156"/>
- <line x="151.9" y="152"/>
- <line x="151.9" y="134"/>
- <close/>
- <move x="5" y="130"/>
- <line x="15" y="136"/>
- <line x="15" y="150"/>
- <line x="5" y="156"/>
- <line x="10" y="152"/>
- <line x="10" y="134"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 7000 4-Slot Switch Chassis" h="104" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="103.6"/>
- <fillstroke/>
- <fillcolor color="#cccccc"/>
- <rect x="6" y="0" w="149" h="35"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="35" w="149" h="19"/>
- <fillstroke/>
- <rect x="6" y="54" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="68.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="83.6" w="149" h="14.8"/>
- <fillstroke/>
- <strokecolor color="#66ccff"/>
- <fillcolor color="#66ccff"/>
- <rect x="0" y="0" w="160.9" h="8"/>
- <fillstroke/>
- <rect x="0" y="83" w="160.9" h="3"/>
- <fillstroke/>
- <rect x="0" y="89" w="160.9" h="3"/>
- <fillstroke/>
- <rect x="0" y="95" w="160.9" h="3"/>
- <fillstroke/>
- <rect x="0" y="101" w="160.9" h="3"/>
- <fillstroke/>
- <path>
- <move x="0" y="30"/>
- <line x="4" y="30"/>
- <line x="12" y="39"/>
- <line x="12" y="66"/>
- <line x="4" y="75"/>
- <line x="0" y="75"/>
- <close/>
- <move x="160.9" y="30"/>
- <line x="156.9" y="30"/>
- <line x="148.9" y="39"/>
- <line x="148.9" y="66"/>
- <line x="156.9" y="75"/>
- <line x="160.9" y="75"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <path>
- <move x="3" y="34"/>
- <line x="6" y="39"/>
- <line x="6" y="67"/>
- <line x="3" y="72"/>
- <move x="157.9" y="34"/>
- <line x="154.9" y="39"/>
- <line x="154.9" y="67"/>
- <line x="157.9" y="72"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Nexus 7000 9-Slot Switch Chassis" h="207.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="207.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="64.2" w="149" h="19"/>
- <fillstroke/>
- <rect x="6" y="5" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="19.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="34.6" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <rect x="0" y="0" w="160.9" h="5"/>
- <fillstroke/>
- <strokecolor color="#66ccff"/>
- <rect x="8" y="170" w="145" h="8"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="49.4" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="83.2" w="149" h="19"/>
- <fillstroke/>
- <rect x="6" y="102.2" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="117" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="131.8" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="6" y="146.6" w="149" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#66ccff"/>
- <path>
- <move x="0" y="207.2"/>
- <line x="0" y="170"/>
- <line x="8" y="170"/>
- <line x="8" y="195"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="11" y="198"/>
- <line x="149.9" y="198"/>
- <arc rx="3" ry="3" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="152.9" y="195"/>
- <line x="152.9" y="170"/>
- <line x="160.9" y="170"/>
- <line x="160.9" y="207.2"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#66ccff"/>
- <path>
- <move x="0.33" y="66.33"/>
- <line x="4.33" y="66.33"/>
- <line x="12.33" y="72.38"/>
- <line x="12.33" y="90.53"/>
- <line x="4.33" y="96.58"/>
- <line x="0.33" y="96.58"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <alpha alpha="0.3"/>
- <rect x="0" y="5" w="160.9" h="165"/>
- <fillstroke/>
- <strokecolor color="#cccccc"/>
- <fillcolor color="#e8e8e8"/>
- <alpha alpha="1"/>
- <path>
- <move x="0" y="66"/>
- <line x="8" y="66"/>
- <line x="20" y="73"/>
- <line x="140.9" y="73"/>
- <line x="152.9" y="66"/>
- <line x="160.9" y="66"/>
- <line x="160.9" y="98"/>
- <line x="152.9" y="98"/>
- <line x="140.9" y="91"/>
- <line x="20" y="91"/>
- <line x="8" y="98"/>
- <line x="0" y="98"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#666666"/>
- <path>
- <move x="5" y="69"/>
- <line x="15" y="75"/>
- <line x="15" y="89"/>
- <line x="5" y="95"/>
- <line x="9" y="91"/>
- <line x="9" y="73"/>
- <close/>
- <move x="155.9" y="69"/>
- <line x="145.9" y="75"/>
- <line x="145.9" y="89"/>
- <line x="155.9" y="95"/>
- <line x="151.9" y="91"/>
- <line x="151.9" y="73"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ONS 15305 Multiservice Customer Access Platform" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="139" y="2" w="6" h="5"/>
- <stroke/>
- <rect x="47" y="4" w="24" h="4"/>
- <stroke/>
- <rect x="80" y="8" w="24" h="4"/>
- <stroke/>
- <rect x="11" y="8" w="30" h="4"/>
- <stroke/>
- <rect x="80" y="4" w="24" h="4"/>
- <stroke/>
- <rect x="47" y="8" w="24" h="4"/>
- <stroke/>
- <rect x="139" y="7" w="6" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ONS 15310-CL SONET Multiservice Platform" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="107" y="7" w="6" h="4"/>
- <stroke/>
- <rect x="115" y="7" w="20" h="4"/>
- <stroke/>
- <rect x="46" y="7" w="20" h="4"/>
- <stroke/>
- <rect x="77" y="7" w="24" h="4"/>
- <stroke/>
- <rect x="24" y="7" w="20" h="4"/>
- <stroke/>
- <rect x="12" y="8" w="5" h="4"/>
- <stroke/>
- <path>
- <move x="72" y="0"/>
- <line x="72" y="14.8"/>
- <move x="6" y="2"/>
- <line x="72" y="2"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ONS 15310-MA SDH Multiservice Platform" h="88.8" w="85.75">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="85.75" h="88.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="4" y="17" w="77" h="60"/>
- <fillstroke/>
- <rect x="60" y="8" w="5" h="4"/>
- <stroke/>
- <path>
- <move x="15" y="17"/>
- <line x="15" y="77"/>
- <move x="26" y="17"/>
- <line x="26" y="77"/>
- <move x="37" y="17"/>
- <line x="37" y="77"/>
- <move x="48" y="17"/>
- <line x="48" y="77"/>
- <move x="59" y="17"/>
- <line x="59" y="77"/>
- <move x="70" y="17"/>
- <line x="70" y="77"/>
- <move x="0" y="17"/>
- <line x="85.75" y="17"/>
- <move x="0" y="6"/>
- <line x="85.75" y="6"/>
- <move x="43" y="0"/>
- <line x="43" y="6"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ONS 15454 SONET-SDH Multiservice Provisioning Platform" h="156.67" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="156.67"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="156.67"/>
- <fillstroke/>
- <path>
- <move x="6" y="127"/>
- <line x="155" y="127"/>
- <move x="6" y="142"/>
- <line x="155" y="142"/>
- <move x="14.76" y="0"/>
- <line x="14.76" y="127"/>
- <move x="23.52" y="0"/>
- <line x="23.52" y="127"/>
- <move x="32.28" y="0"/>
- <line x="32.28" y="127"/>
- <move x="41.04" y="0"/>
- <line x="41.04" y="127"/>
- <move x="49.8" y="0"/>
- <line x="49.8" y="127"/>
- <move x="49.8" y="0"/>
- <line x="49.8" y="127"/>
- <move x="58.56" y="0"/>
- <line x="58.56" y="127"/>
- <move x="67.32" y="0"/>
- <line x="67.32" y="127"/>
- <move x="76.08" y="0"/>
- <line x="76.08" y="127"/>
- <move x="84.84" y="0"/>
- <line x="84.84" y="127"/>
- <move x="93.6" y="0"/>
- <line x="93.6" y="127"/>
- <move x="102.36" y="0"/>
- <line x="102.36" y="127"/>
- <move x="102.36" y="0"/>
- <line x="102.36" y="127"/>
- <move x="111.12" y="0"/>
- <line x="111.12" y="127"/>
- <move x="111.12" y="0"/>
- <line x="111.12" y="127"/>
- <move x="119.88" y="0"/>
- <line x="119.88" y="127"/>
- <move x="128.64" y="0"/>
- <line x="128.64" y="127"/>
- <move x="137.4" y="0"/>
- <line x="137.4" y="127"/>
- <move x="146.16" y="0"/>
- <line x="146.16" y="127"/>
- </path>
- <stroke/>
- <rect x="10" y="146" w="13" h="7"/>
- <stroke/>
- <rect x="138" y="146" w="13" h="7"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco ONS 15600 Multiservice Switching Platform" h="211.67" w="200">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="200" h="211.67"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="12" y="15" w="176" h="196.67"/>
- <fillstroke/>
- <path>
- <move x="12" y="0"/>
- <line x="12" y="15"/>
- <move x="188" y="0"/>
- <line x="188" y="15"/>
- <move x="12" y="45"/>
- <line x="188" y="45"/>
- <move x="12" y="190"/>
- <line x="188" y="190"/>
- <move x="26" y="45"/>
- <line x="26" y="190"/>
- <move x="40" y="45"/>
- <line x="40" y="190"/>
- <move x="54" y="45"/>
- <line x="54" y="190"/>
- <move x="68" y="45"/>
- <line x="68" y="190"/>
- <move x="79" y="45"/>
- <line x="79" y="190"/>
- <move x="100" y="45"/>
- <line x="100" y="190"/>
- <move x="121" y="45"/>
- <line x="121" y="190"/>
- <move x="132" y="45"/>
- <line x="132" y="190"/>
- <move x="146" y="45"/>
- <line x="146" y="190"/>
- <move x="160" y="45"/>
- <line x="160" y="190"/>
- <move x="174" y="45"/>
- <line x="174" y="190"/>
- <move x="70.67" y="15"/>
- <line x="70.67" y="45"/>
- <move x="129.33" y="15"/>
- <line x="129.33" y="45"/>
- </path>
- <stroke/>
- <rect x="36.84" y="22" w="10" h="15"/>
- <stroke/>
- <rect x="95" y="22" w="10" h="15"/>
- <stroke/>
- <rect x="154.25" y="22" w="10" h="15"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Physical Security 4U Storage" h="59.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.85" h="59.2"/>
- <fillstroke/>
- <rect x="6" y="0" w="149" h="59.2"/>
- <stroke/>
- <path>
- <move x="55.63" y="0"/>
- <line x="55.63" y="59.2"/>
- <move x="105.27" y="0"/>
- <line x="105.27" y="59.2"/>
- <move x="0" y="17"/>
- <line x="160.9" y="17"/>
- <move x="0" y="42"/>
- <line x="160.9" y="42"/>
- </path>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="27" w="160.9" h="4"/>
- <fillstroke/>
- <ellipse x="27.82" y="51.5" w="6" h="6"/>
- <stroke/>
- <ellipse x="77.45" y="51.5" w="6" h="6"/>
- <stroke/>
- <ellipse x="127.14" y="51.5" w="6" h="6"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Physical Security Multiservice Platform 1U" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <rect x="8" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="3" w="34" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Physical Security Multiservice Platform 2U" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="8" y="2" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="2" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="2" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="2" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="11" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="20" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="11" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="20" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="11" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="20" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="11" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="20" w="34" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Physical Security Multiservice Platform 4U" h="59.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="59.2"/>
- <fillstroke/>
- <rect x="8" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="3" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="12" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="21" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="12" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="21" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="12" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="21" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="12" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="21" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="30" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="39" w="34" h="8"/>
- <stroke/>
- <rect x="8" y="48" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="30" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="30" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="30" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="39" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="39" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="39" w="34" h="8"/>
- <stroke/>
- <rect x="44" y="48" w="34" h="8"/>
- <stroke/>
- <rect x="80" y="48" w="34" h="8"/>
- <stroke/>
- <rect x="116" y="48" w="34" h="8"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS 5100 Chassis" h="88.8" w="160.93">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.93" h="65"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149.4" h="88.8"/>
- <fillstroke/>
- <path>
- <move x="6" y="17"/>
- <line x="155" y="17"/>
- <move x="6" y="34"/>
- <line x="155" y="34"/>
- <move x="6" y="51"/>
- <line x="155" y="51"/>
- <move x="6" y="68"/>
- <line x="155" y="68"/>
- <move x="80.5" y="0"/>
- <line x="80.5" y="68"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS 6248UP Fabric Interconnect" h="14.8" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.8"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="14.8"/>
- <fillstroke/>
- <path>
- <move x="6" y="14.8"/>
- <line x="155" y="14.8"/>
- </path>
- <stroke/>
- <rect x="9" y="3" w="45" h="9"/>
- <stroke/>
- <rect x="58" y="3" w="45" h="9"/>
- <stroke/>
- <rect x="107" y="3" w="45" h="9"/>
- <stroke/>
- <path>
- <move x="9" y="6"/>
- <line x="54" y="6"/>
- <move x="9" y="9"/>
- <line x="54" y="9"/>
- <move x="58" y="6"/>
- <line x="103" y="6"/>
- <move x="58" y="9"/>
- <line x="103" y="9"/>
- <move x="107" y="6"/>
- <line x="152" y="6"/>
- <move x="107" y="9"/>
- <line x="152" y="9"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS 6296UP Fabric Interconnect" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <path>
- <move x="6" y="14.8"/>
- <line x="155" y="14.8"/>
- </path>
- <stroke/>
- <rect x="9" y="3" w="45" h="9"/>
- <stroke/>
- <rect x="58" y="3" w="45" h="9"/>
- <stroke/>
- <rect x="107" y="3" w="45" h="9"/>
- <stroke/>
- <path>
- <move x="9" y="6"/>
- <line x="54" y="6"/>
- <move x="9" y="9"/>
- <line x="54" y="9"/>
- <move x="58" y="6"/>
- <line x="103" y="6"/>
- <move x="58" y="9"/>
- <line x="103" y="9"/>
- <move x="107" y="6"/>
- <line x="152" y="6"/>
- <move x="107" y="9"/>
- <line x="152" y="9"/>
- </path>
- <stroke/>
- <rect x="9" y="17" w="45" h="9"/>
- <stroke/>
- <rect x="58" y="17" w="45" h="9"/>
- <stroke/>
- <rect x="107" y="17" w="45" h="9"/>
- <stroke/>
- <path>
- <move x="9" y="20"/>
- <line x="54" y="20"/>
- <move x="58" y="20"/>
- <line x="103" y="20"/>
- <move x="107" y="20"/>
- <line x="152" y="20"/>
- <move x="9" y="23"/>
- <line x="54" y="23"/>
- <move x="58" y="23"/>
- <line x="103" y="23"/>
- <move x="107" y="23"/>
- <line x="152" y="23"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C22 M3 Server" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="8" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="37" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="95" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="124" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="95" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="124" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="8" y="2" w="55" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C220 M3 Server" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="8" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="37" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="95" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="124" y="9" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="95" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="124" y="2" w="26" h="4"/>
- <stroke/>
- <rect x="8" y="2" w="55" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C24 M3 Server" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="10" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="16" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="22" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="28" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="34" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="40" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="46" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="52" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="58" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="64" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="70" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="76" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="82" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="88" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="94" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="100" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="106" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="112" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="118" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="124" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="130" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="136" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="142" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="148" y="2" w="4" h="26"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C240 M3 Server" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="10" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="16" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="22" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="28" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="34" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="40" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="46" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="52" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="58" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="64" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="70" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="76" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="82" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="88" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="94" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="100" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="106" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="112" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="118" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="124" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="130" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="136" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="142" y="2" w="4" h="26"/>
- <stroke/>
- <rect x="148" y="2" w="4" h="26"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C260 M3 Server" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="10" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="17" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="24" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="31" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="69" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="48" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="55" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="62" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="100" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="107" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="86" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="93" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="131" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="138" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="145" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="124" y="2" w="5" h="26"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="38" y="2" w="8" h="12"/>
- <fill/>
- <rect x="38" y="15" w="8" h="12"/>
- <fill/>
- <rect x="114" y="2" w="8" h="12"/>
- <fill/>
- <rect x="114" y="15" w="8" h="12"/>
- <fill/>
- <strokecolor color="#000000"/>
- <path>
- <move x="76" y="0"/>
- <line x="76" y="29.6"/>
- </path>
- <stroke/>
- <path>
- <move x="84" y="0"/>
- <line x="84" y="29.6"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C420 M3 Server" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <rect x="10" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="17" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="24" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="31" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="69" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="48" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="55" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="62" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="100" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="107" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="86" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="93" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="131" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="138" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="145" y="2" w="5" h="26"/>
- <stroke/>
- <rect x="124" y="2" w="5" h="26"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="38" y="2" w="8" h="12"/>
- <fill/>
- <rect x="38" y="15" w="8" h="12"/>
- <fill/>
- <rect x="114" y="2" w="8" h="12"/>
- <fill/>
- <rect x="114" y="15" w="8" h="12"/>
- <fill/>
- <strokecolor color="#000000"/>
- <path>
- <move x="76" y="0"/>
- <line x="76" y="29.6"/>
- <move x="84" y="0"/>
- <line x="84" y="29.6"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco UCS C460 M2 Server" h="59.2" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="59.2"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="12" y="4" w="65" h="30"/>
- <fill/>
- <strokecolor color="#66ccff"/>
- <fillcolor color="#66ccff"/>
- <rect x="0" y="10" w="6" h="49.2"/>
- <fillstroke/>
- <rect x="154.9" y="10" w="6" h="49.2"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <rect x="10" y="54" w="26" h="4"/>
- <stroke/>
- <rect x="8" y="42" w="45" h="4"/>
- <stroke/>
- <rect x="10" y="48" w="26" h="4"/>
- <stroke/>
- <rect x="38" y="48" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="48" w="26" h="4"/>
- <stroke/>
- <rect x="94" y="48" w="26" h="4"/>
- <stroke/>
- <rect x="122" y="48" w="26" h="4"/>
- <stroke/>
- <rect x="38" y="54" w="26" h="4"/>
- <stroke/>
- <rect x="66" y="54" w="26" h="4"/>
- <stroke/>
- <rect x="94" y="54" w="26" h="4"/>
- <stroke/>
- <rect x="122" y="54" w="26" h="4"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="85" y="4" w="65" h="30"/>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="94" y="42" w="26" h="4"/>
- <stroke/>
- <rect x="122" y="42" w="26" h="4"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAE-512" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="62" y="4" w="38" h="8"/>
- <stroke/>
- <rect x="104" y="4" w="38" h="8"/>
- <stroke/>
- <path>
- <move x="10" y="8"/>
- <line x="50" y="8"/>
- <line x="50" y="10"/>
- <line x="42" y="10"/>
- <line x="42" y="13"/>
- <line x="10" y="13"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAE-612" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="62" y="4" w="38" h="8"/>
- <stroke/>
- <rect x="104" y="4" w="38" h="8"/>
- <stroke/>
- <path>
- <move x="10" y="8"/>
- <line x="50" y="8"/>
- <line x="50" y="10"/>
- <line x="42" y="10"/>
- <line x="42" y="13"/>
- <line x="10" y="13"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAE-674" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="75" y="1.5" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="1.5" w="38" h="8"/>
- <stroke/>
- <path>
- <move x="10" y="23"/>
- <line x="50" y="23"/>
- <line x="50" y="25"/>
- <line x="42" y="25"/>
- <line x="42" y="28"/>
- <line x="10" y="28"/>
- <close/>
- </path>
- <stroke/>
- <rect x="115" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="20" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="20" w="38" h="8"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="7" y="1" w="67" h="15"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco WAE-7341" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="75" y="1.5" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="1.5" w="38" h="8"/>
- <stroke/>
- <path>
- <move x="10" y="23"/>
- <line x="50" y="23"/>
- <line x="50" y="25"/>
- <line x="42" y="25"/>
- <line x="42" y="28"/>
- <line x="10" y="28"/>
- <close/>
- </path>
- <stroke/>
- <rect x="115" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="20" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="20" w="38" h="8"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="7" y="1" w="67" h="15"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco WAE-7371" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="75" y="1.5" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="1.5" w="38" h="8"/>
- <stroke/>
- <path>
- <move x="10" y="23"/>
- <line x="50" y="23"/>
- <line x="50" y="25"/>
- <line x="42" y="25"/>
- <line x="42" y="28"/>
- <line x="10" y="28"/>
- <close/>
- </path>
- <stroke/>
- <rect x="115" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="115" y="20" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="10.75" w="38" h="8"/>
- <stroke/>
- <rect x="75" y="20" w="38" h="8"/>
- <stroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="7" y="1" w="67" h="15"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 294" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="42" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="81.25" y="2" w="37" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 594" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="42" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="81.25" y="2" w="37" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 694" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="42" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="81.25" y="2" w="37" h="5"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 7541" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="8" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="84" y="2" w="34" h="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 7571" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="8" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="84" y="2" w="34" h="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco WAVE 8541" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="29.6"/>
- <fillstroke/>
- <rect x="132" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="126" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="120" y="2" w="4" h="3"/>
- <stroke/>
- <rect x="8" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="2" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="8" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="9" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="16" w="37" h="5"/>
- <stroke/>
- <rect x="45" y="23" w="37" h="5"/>
- <stroke/>
- <rect x="84" y="2" w="34" h="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Web Security Appliance S170" h="14.7" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="5.99" y="0" w="149.09" h="14.7"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <rect x="18" y="1.5" w="85" h="12"/>
- <fill/>
- <strokecolor color="#000000"/>
- <rect x="114.2" y="1.8" w="33.4" h="11.6"/>
- <stroke/>
- <rect x="116" y="3.5" w="20" h="3"/>
- <stroke/>
- <rect x="116" y="8.5" w="20" h="3"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cisco Web Security Appliance S370" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="10" y="2.5" w="141" h="25" arcsize="4.71"/>
- <fill/>
- </foreground>
- </shape>
- <shape name="Cisco Web Security Appliance S670" h="29.6" w="160.9">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#b4b4b4"/>
- <rect x="0" y="0" w="160.9" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#e8e8e8"/>
- <rect x="6" y="0" w="149" h="29.6"/>
- <fillstroke/>
- <fillcolor color="#b4b4b4"/>
- <roundrect x="10" y="2.5" w="141" h="25" arcsize="4.71"/>
- <fill/>
- </foreground>
- </shape>
- </shapes>
|