general.xml 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477
  1. <shapes name="mxgraph.rack.General">
  2. <shape aspect="variable" h="219.54" name="12U Rack 19 Standard" strokewidth="inherit" w="179.75">
  3. <connections/>
  4. <background>
  5. <rect h="219.54" w="179.75" x="0" y="0"/>
  6. </background>
  7. <foreground>
  8. <strokecolor color="#000000"/>
  9. <fillcolor color="#ffffff"/>
  10. <fillstroke/>
  11. <fillcolor color="#f4f4f4"/>
  12. <rect h="20.96" w="179.75" x="0" y="0"/>
  13. <fillstroke/>
  14. <rect h="20.96" w="179.75" x="0" y="198.59"/>
  15. <fillstroke/>
  16. <rect h="177.63" w="8.99" x="0" y="20.96"/>
  17. <fillstroke/>
  18. <rect h="177.63" w="8.99" x="170.76" y="20.96"/>
  19. <fillstroke/>
  20. <ellipse h="5.99" w="5.99" x="2.66" y="7.65"/>
  21. <stroke/>
  22. <fillcolor color="#f4f4f4"/>
  23. <ellipse h="5.99" w="5.99" x="170.43" y="7.65"/>
  24. <fillstroke/>
  25. <ellipse h="5.99" w="5.99" x="2.33" y="206.57"/>
  26. <stroke/>
  27. <fillcolor color="#f4f4f4"/>
  28. <ellipse h="5.99" w="5.99" x="170.43" y="206.57"/>
  29. <fillstroke/>
  30. </foreground>
  31. </shape>
  32. <shape aspect="variable" h="15.78" name="1U Rack Server" strokewidth="inherit" w="161.93">
  33. <connections/>
  34. <background>
  35. <save/>
  36. <path>
  37. <move x="0" y="0"/>
  38. <line x="0" y="15.78"/>
  39. <line x="161.93" y="15.78"/>
  40. <line x="161.93" y="0"/>
  41. <close/>
  42. </path>
  43. </background>
  44. <foreground>
  45. <fill/>
  46. <fillcolor color="#000000"/>
  47. <strokewidth width="1"/>
  48. <linejoin join="miter"/>
  49. <linecap cap="butt"/>
  50. <miterlimit limit="4"/>
  51. <dashpattern pattern="none"/>
  52. <dashed dashed="1"/>
  53. <alpha alpha="1"/>
  54. <strokealpha alpha="1"/>
  55. <fillalpha alpha="0.644"/>
  56. <fontfamily family="sans-serif"/>
  57. <fontstyle style="0"/>
  58. <path>
  59. <move x="0" y="0"/>
  60. <line x="0" y="15.78"/>
  61. <line x="161.93" y="15.78"/>
  62. <line x="161.93" y="0"/>
  63. <close/>
  64. <move x="8.84" y="1"/>
  65. <line x="152.73" y="1"/>
  66. <line x="152.73" y="3.11"/>
  67. <curve x1="151.49" x2="150.46" x3="149.78" y1="3.3" y2="3.81" y3="4.6"/>
  68. <curve x1="149.01" x2="148.63" x3="148.63" y1="5.51" y2="6.66" y3="7.82"/>
  69. <curve x1="148.63" x2="149.01" x3="149.78" y1="8.97" y2="10.13" y3="11.03"/>
  70. <curve x1="150.46" x2="151.49" x3="152.73" y1="11.82" y2="12.34" y3="12.52"/>
  71. <line x="152.73" y="14.78"/>
  72. <line x="8.84" y="14.78"/>
  73. <line x="8.84" y="12.54"/>
  74. <curve x1="10.15" x2="11.24" x3="11.96" y1="12.42" y2="11.93" y3="11.12"/>
  75. <curve x1="12.78" x2="13.17" x3="13.17" y1="10.21" y2="9.01" y3="7.82"/>
  76. <curve x1="13.17" x2="12.78" x3="11.96" y1="6.62" y2="5.43" y3="4.51"/>
  77. <curve x1="11.24" x2="10.15" x3="8.84" y1="3.71" y2="3.22" y3="3.09"/>
  78. <close/>
  79. <move x="80.87" y="2.66"/>
  80. <curve x1="78.02" x2="75.7" x3="75.7" y1="2.66" y2="4.97" y3="7.82"/>
  81. <curve x1="75.7" x2="78.02" x3="80.87" y1="10.66" y2="12.97" y3="12.97"/>
  82. <curve x1="83.72" x2="86.04" x3="86.04" y1="12.97" y2="10.66" y3="7.82"/>
  83. <curve x1="86.04" x2="83.72" x3="80.87" y1="4.97" y2="2.66" y3="2.66"/>
  84. <close/>
  85. <move x="80.87" y="3.66"/>
  86. <curve x1="83.18" x2="85.04" x3="85.04" y1="3.66" y2="5.52" y3="7.82"/>
  87. <curve x1="85.04" x2="83.18" x3="80.87" y1="10.12" y2="11.97" y3="11.97"/>
  88. <curve x1="78.56" x2="76.7" x3="76.7" y1="11.97" y2="10.12" y3="7.82"/>
  89. <curve x1="76.7" x2="78.56" x3="80.87" y1="5.52" y2="3.66" y3="3.66"/>
  90. <close/>
  91. </path>
  92. <fill/>
  93. <restore/>
  94. <rect/>
  95. <stroke/>
  96. <fillcolor color="#000000"/>
  97. <fillalpha alpha="0.232"/>
  98. <path>
  99. <move x="88.87" y="2.5"/>
  100. <line x="144.89" y="2.5"/>
  101. <line x="144.89" y="13.14"/>
  102. <line x="88.87" y="13.14"/>
  103. <close/>
  104. <move x="17.84" y="2.5"/>
  105. <line x="73.86" y="2.5"/>
  106. <line x="73.86" y="13.14"/>
  107. <line x="17.84" y="13.14"/>
  108. <close/>
  109. </path>
  110. <fill/>
  111. </foreground>
  112. </shape>
  113. <shape aspect="variable" h="15.7" name="1U" strokewidth="inherit" w="161.9">
  114. <connections/>
  115. <background>
  116. <path>
  117. <move x="0" y="0"/>
  118. <line x="0" y="15.7"/>
  119. <line x="161.9" y="15.7"/>
  120. <line x="161.9" y="0"/>
  121. <close/>
  122. </path>
  123. </background>
  124. <foreground>
  125. <fill/>
  126. <fillcolor color="#000000"/>
  127. <strokewidth width="1"/>
  128. <linejoin join="miter"/>
  129. <linecap cap="butt"/>
  130. <miterlimit limit="4"/>
  131. <dashpattern pattern="none"/>
  132. <dashed dashed="1"/>
  133. <alpha alpha="1"/>
  134. <strokealpha alpha="1"/>
  135. <fillalpha alpha="0.644"/>
  136. <fontfamily family="sans-serif"/>
  137. <fontstyle style="0"/>
  138. <path>
  139. <move x="0" y="0"/>
  140. <curve x1="0" x2="0" x3="0" y1="5.23" y2="10.47" y3="15.7"/>
  141. <curve x1="56.09" x2="113.77" x3="161.9" y1="15.7" y2="15.7" y3="15.7"/>
  142. <line x="161.9" y="0"/>
  143. <curve x1="104.66" x2="49.84" x3="0" y1="0" y2="0" y3="0"/>
  144. <close/>
  145. <move x="1" y="1"/>
  146. <line x="5.99" y="1"/>
  147. <line x="5.99" y="14.7"/>
  148. <line x="1" y="14.7"/>
  149. <close/>
  150. <move x="6.99" y="1"/>
  151. <line x="155.08" y="1"/>
  152. <line x="155.08" y="14.7"/>
  153. <line x="6.99" y="14.7"/>
  154. <close/>
  155. <move x="156.08" y="1"/>
  156. <line x="160.9" y="1"/>
  157. <line x="160.9" y="14.7"/>
  158. <line x="156.08" y="14.7"/>
  159. <close/>
  160. </path>
  161. <fill/>
  162. <strokewidth width="0.301"/>
  163. <fillalpha alpha="0.232"/>
  164. <path>
  165. <move x="156.08" y="1"/>
  166. <line x="160.9" y="1"/>
  167. <line x="160.9" y="14.7"/>
  168. <line x="156.08" y="14.7"/>
  169. <close/>
  170. <move x="1" y="1"/>
  171. <line x="5.99" y="1"/>
  172. <line x="5.99" y="14.7"/>
  173. <line x="1" y="14.7"/>
  174. <close/>
  175. </path>
  176. <fill/>
  177. </foreground>
  178. </shape>
  179. <shape aspect="variable" h="427" name="26U Rack 19 Standard" strokewidth="inherit" w="180">
  180. <connections/>
  181. <background>
  182. <rect h="427" w="180" x="0" y="0"/>
  183. </background>
  184. <foreground>
  185. <strokecolor color="#000000"/>
  186. <fillcolor color="#ffffff"/>
  187. <fillstroke/>
  188. <fillcolor color="#f4f4f4"/>
  189. <rect h="20.98" w="180" x="0" y="0"/>
  190. <fillstroke/>
  191. <rect h="20.98" w="180" x="0" y="406.02"/>
  192. <fillstroke/>
  193. <rect h="385.03" w="9" x="0" y="20.98"/>
  194. <fillstroke/>
  195. <rect h="385.03" w="9" x="171" y="20.98"/>
  196. <fillstroke/>
  197. <ellipse h="6" w="6" x="2.67" y="7.66"/>
  198. <stroke/>
  199. <fillcolor color="#f4f4f4"/>
  200. <ellipse h="6" w="6" x="170.67" y="7.66"/>
  201. <fillstroke/>
  202. <ellipse h="6" w="6" x="2.67" y="413.68"/>
  203. <fillstroke/>
  204. <ellipse h="6" w="6" x="170.67" y="413.68"/>
  205. <fillstroke/>
  206. </foreground>
  207. </shape>
  208. <shape aspect="variable" h="30.6" name="2U Rack Server" strokewidth="inherit" w="161.85">
  209. <connections/>
  210. <background>
  211. <save/>
  212. <path>
  213. <move x="0" y="0"/>
  214. <line x="0" y="30.6"/>
  215. <line x="161.85" y="30.6"/>
  216. <line x="161.85" y="0"/>
  217. <close/>
  218. </path>
  219. </background>
  220. <foreground>
  221. <fill/>
  222. <fillcolor color="#000000"/>
  223. <strokewidth width="1"/>
  224. <linejoin join="miter"/>
  225. <linecap cap="butt"/>
  226. <miterlimit limit="4"/>
  227. <dashpattern pattern="none"/>
  228. <dashed dashed="1"/>
  229. <alpha alpha="1"/>
  230. <strokealpha alpha="1"/>
  231. <fillalpha alpha="0.644"/>
  232. <fontfamily family="sans-serif"/>
  233. <fontstyle style="0"/>
  234. <path>
  235. <move x="80.82" y="11.14"/>
  236. <curve x1="83.13" x2="84.99" x3="84.99" y1="11.14" y2="13" y3="15.3"/>
  237. <curve x1="84.99" x2="83.13" x3="80.82" y1="17.6" y2="19.46" y3="19.46"/>
  238. <curve x1="78.52" x2="76.66" x3="76.66" y1="19.46" y2="17.6" y3="15.3"/>
  239. <curve x1="76.66" x2="78.52" x3="80.82" y1="13" y2="11.14" y3="11.14"/>
  240. <close/>
  241. <move x="80.82" y="10.14"/>
  242. <curve x1="77.98" x2="75.66" x3="75.66" y1="10.14" y2="12.46" y3="15.3"/>
  243. <curve x1="75.66" x2="77.98" x3="80.82" y1="18.15" y2="20.46" y3="20.46"/>
  244. <curve x1="83.67" x2="85.99" x3="85.99" y1="20.46" y2="18.15" y3="15.3"/>
  245. <curve x1="85.99" x2="83.67" x3="80.82" y1="12.46" y2="10.14" y3="10.14"/>
  246. <close/>
  247. <move x="8.83" y="1"/>
  248. <line x="152.65" y="1"/>
  249. <line x="152.65" y="10.59"/>
  250. <curve x1="151.34" x2="150.25" x3="149.53" y1="10.71" y2="11.2" y3="12.01"/>
  251. <curve x1="148.72" x2="148.32" x3="148.32" y1="12.92" y2="14.12" y3="15.32"/>
  252. <curve x1="148.32" x2="148.72" x3="149.53" y1="16.51" y2="17.71" y3="18.62"/>
  253. <curve x1="150.25" x2="151.34" x3="152.65" y1="19.43" y2="19.92" y3="20.04"/>
  254. <line x="152.65" y="29.6"/>
  255. <line x="8.83" y="29.6"/>
  256. <line x="8.83" y="20.04"/>
  257. <curve x1="10.14" x2="11.24" x3="11.95" y1="19.92" y2="19.43" y3="18.62"/>
  258. <curve x1="12.77" x2="13.16" x3="13.16" y1="17.71" y2="16.51" y3="15.32"/>
  259. <curve x1="13.16" x2="12.77" x3="11.95" y1="14.12" y2="12.92" y3="12.01"/>
  260. <curve x1="11.24" x2="10.14" x3="8.83" y1="11.2" y2="10.71" y3="10.59"/>
  261. <close/>
  262. <move x="0" y="0"/>
  263. <line x="0" y="0.5"/>
  264. <line x="0" y="30.6"/>
  265. <line x="161.85" y="30.6"/>
  266. <line x="161.85" y="0"/>
  267. <close/>
  268. </path>
  269. <fill/>
  270. <restore/>
  271. <rect/>
  272. <stroke/>
  273. <fillcolor color="#000000"/>
  274. <fillalpha alpha="0.232"/>
  275. <path>
  276. <move x="88.82" y="17.3"/>
  277. <line x="144.82" y="17.3"/>
  278. <line x="144.82" y="27.95"/>
  279. <line x="88.82" y="27.95"/>
  280. <close/>
  281. <move x="17.83" y="17.3"/>
  282. <line x="73.83" y="17.3"/>
  283. <line x="73.83" y="27.95"/>
  284. <line x="17.83" y="27.95"/>
  285. <close/>
  286. <move x="88.82" y="2.5"/>
  287. <line x="144.82" y="2.5"/>
  288. <line x="144.82" y="13.15"/>
  289. <line x="88.82" y="13.15"/>
  290. <close/>
  291. <move x="17.83" y="2.5"/>
  292. <line x="73.83" y="2.5"/>
  293. <line x="73.83" y="13.15"/>
  294. <line x="17.83" y="13.15"/>
  295. <close/>
  296. </path>
  297. <fill/>
  298. </foreground>
  299. </shape>
  300. <shape aspect="variable" h="30.6" name="2U" strokewidth="inherit" w="161.9">
  301. <connections/>
  302. <background>
  303. <path>
  304. <move x="0" y="0"/>
  305. <curve x1="0" x2="0" x3="0" y1="10.2" y2="20.4" y3="30.6"/>
  306. <curve x1="56.09" x2="113.77" x3="161.9" y1="30.6" y2="30.6" y3="30.6"/>
  307. <line x="161.9" y="0"/>
  308. <curve x1="104.66" x2="49.84" x3="0" y1="0" y2="0" y3="0"/>
  309. <close/>
  310. </path>
  311. </background>
  312. <foreground>
  313. <fill/>
  314. <fillcolor color="#000000"/>
  315. <strokewidth width="1"/>
  316. <linejoin join="miter"/>
  317. <linecap cap="butt"/>
  318. <miterlimit limit="4"/>
  319. <dashpattern pattern="none"/>
  320. <dashed dashed="1"/>
  321. <alpha alpha="1"/>
  322. <strokealpha alpha="1"/>
  323. <fillalpha alpha="0.644"/>
  324. <fontfamily family="sans-serif"/>
  325. <fontstyle style="0"/>
  326. <path>
  327. <move x="0" y="0"/>
  328. <curve x1="0" x2="0" x3="0" y1="10.2" y2="20.4" y3="30.6"/>
  329. <curve x1="56.09" x2="113.77" x3="161.9" y1="30.6" y2="30.6" y3="30.6"/>
  330. <line x="161.9" y="0"/>
  331. <curve x1="104.66" x2="49.84" x3="0" y1="0" y2="0" y3="0"/>
  332. <close/>
  333. <move x="1" y="1"/>
  334. <line x="6" y="1"/>
  335. <line x="6" y="29.6"/>
  336. <line x="1" y="29.6"/>
  337. <close/>
  338. <move x="7" y="1"/>
  339. <line x="155" y="1"/>
  340. <line x="155" y="29.6"/>
  341. <line x="7" y="29.6"/>
  342. <close/>
  343. <move x="156" y="1"/>
  344. <line x="160.9" y="1"/>
  345. <line x="160.9" y="29.6"/>
  346. <line x="156" y="29.6"/>
  347. <close/>
  348. </path>
  349. <fill/>
  350. <strokewidth width="0.301"/>
  351. <fillalpha alpha="0.232"/>
  352. <path>
  353. <move x="156" y="1"/>
  354. <line x="160.9" y="1"/>
  355. <line x="160.9" y="29.6"/>
  356. <line x="156" y="29.6"/>
  357. <close/>
  358. <move x="1" y="1"/>
  359. <line x="6" y="1"/>
  360. <line x="6" y="29.6"/>
  361. <line x="1" y="29.6"/>
  362. <close/>
  363. </path>
  364. <fill/>
  365. </foreground>
  366. </shape>
  367. <shape aspect="variable" h="575.56" name="36U Rack 19 Standard" strokewidth="inherit" w="180.02">
  368. <connections/>
  369. <background>
  370. <rect h="575.56" w="180.02" x="0" y="0"/>
  371. </background>
  372. <foreground>
  373. <strokecolor color="#000000"/>
  374. <fillcolor color="#ffffff"/>
  375. <fillstroke/>
  376. <fillcolor color="#f4f4f4"/>
  377. <rect h="21" w="180.02" x="0" y="0"/>
  378. <fillstroke/>
  379. <rect h="21" w="180.02" x="0" y="554.55"/>
  380. <fillstroke/>
  381. <rect h="533.55" w="9" x="0" y="21"/>
  382. <fillstroke/>
  383. <rect h="533.55" w="9" x="171.02" y="21"/>
  384. <fillstroke/>
  385. <ellipse h="6" w="6" x="2.67" y="7.67"/>
  386. <stroke/>
  387. <fillcolor color="#f4f4f4"/>
  388. <ellipse h="6" w="6" x="170.68" y="7.67"/>
  389. <fillstroke/>
  390. <ellipse h="6" w="6" x="170.68" y="561.89"/>
  391. <fillstroke/>
  392. <ellipse h="6" w="6" x="2.67" y="561.89"/>
  393. <fillstroke/>
  394. </foreground>
  395. </shape>
  396. <shape aspect="variable" h="45.35" name="3U Rack Server" strokewidth="inherit" w="161.85">
  397. <connections/>
  398. <background>
  399. <save/>
  400. <path>
  401. <move x="0" y="0"/>
  402. <line x="0" y="45.35"/>
  403. <line x="161.85" y="45.35"/>
  404. <line x="161.85" y="0"/>
  405. <close/>
  406. </path>
  407. </background>
  408. <foreground>
  409. <fill/>
  410. <fillcolor color="#000000"/>
  411. <strokewidth width="1"/>
  412. <linejoin join="miter"/>
  413. <linecap cap="butt"/>
  414. <miterlimit limit="4"/>
  415. <dashpattern pattern="none"/>
  416. <dashed dashed="1"/>
  417. <alpha alpha="1"/>
  418. <strokealpha alpha="1"/>
  419. <fillalpha alpha="0.644"/>
  420. <fontfamily family="sans-serif"/>
  421. <fontstyle style="0"/>
  422. <path>
  423. <move x="0" y="0"/>
  424. <line x="0" y="45.35"/>
  425. <line x="161.85" y="45.35"/>
  426. <line x="161.85" y="0"/>
  427. <close/>
  428. <move x="8.83" y="1"/>
  429. <line x="152.65" y="1"/>
  430. <line x="152.65" y="17.95"/>
  431. <curve x1="151.34" x2="150.25" x3="149.54" y1="18.07" y2="18.57" y3="19.37"/>
  432. <curve x1="148.72" x2="148.33" x3="148.33" y1="20.28" y2="21.48" y3="22.68"/>
  433. <curve x1="148.33" x2="148.72" x3="149.54" y1="23.87" y2="25.07" y3="25.98"/>
  434. <curve x1="150.25" x2="151.34" x3="152.65" y1="26.78" y2="27.27" y3="27.4"/>
  435. <line x="152.65" y="44.35"/>
  436. <line x="8.83" y="44.35"/>
  437. <line x="8.83" y="27.4"/>
  438. <curve x1="10.14" x2="11.23" x3="11.95" y1="27.27" y2="26.79" y3="25.98"/>
  439. <curve x1="12.76" x2="13.16" x3="13.16" y1="25.07" y2="23.87" y3="22.68"/>
  440. <curve x1="13.16" x2="12.76" x3="11.95" y1="21.48" y2="20.28" y3="19.37"/>
  441. <curve x1="11.23" x2="10.14" x3="8.83" y1="18.57" y2="18.07" y3="17.95"/>
  442. <close/>
  443. <move x="80.82" y="17.52"/>
  444. <curve x1="77.98" x2="75.66" x3="75.66" y1="17.52" y2="19.83" y3="22.68"/>
  445. <curve x1="75.66" x2="77.98" x3="80.82" y1="25.52" y2="27.83" y3="27.83"/>
  446. <curve x1="83.67" x2="85.99" x3="85.99" y1="27.83" y2="25.52" y3="22.68"/>
  447. <curve x1="85.99" x2="83.67" x3="80.82" y1="19.83" y2="17.52" y3="17.52"/>
  448. <close/>
  449. <move x="80.82" y="18.52"/>
  450. <curve x1="83.13" x2="84.99" x3="84.99" y1="18.52" y2="20.38" y3="22.68"/>
  451. <curve x1="84.99" x2="83.13" x3="80.82" y1="24.98" y2="26.83" y3="26.83"/>
  452. <curve x1="78.52" x2="76.66" x3="76.66" y1="26.83" y2="24.98" y3="22.68"/>
  453. <curve x1="76.66" x2="78.52" x3="80.82" y1="20.38" y2="18.52" y3="18.52"/>
  454. <close/>
  455. </path>
  456. <fill/>
  457. <restore/>
  458. <rect/>
  459. <stroke/>
  460. <fillcolor color="#000000"/>
  461. <fillalpha alpha="0.232"/>
  462. <path>
  463. <move x="88.82" y="23.61"/>
  464. <line x="144.82" y="23.61"/>
  465. <line x="144.82" y="42.74"/>
  466. <line x="88.82" y="42.74"/>
  467. <close/>
  468. <move x="17.83" y="23.61"/>
  469. <line x="73.83" y="23.61"/>
  470. <line x="73.83" y="42.74"/>
  471. <line x="17.83" y="42.74"/>
  472. <close/>
  473. <move x="88.82" y="2.5"/>
  474. <line x="144.82" y="2.5"/>
  475. <line x="144.82" y="21.62"/>
  476. <line x="88.82" y="21.62"/>
  477. <close/>
  478. <move x="17.83" y="2.5"/>
  479. <line x="73.83" y="2.5"/>
  480. <line x="73.83" y="21.62"/>
  481. <line x="17.83" y="21.62"/>
  482. <close/>
  483. </path>
  484. <fill/>
  485. </foreground>
  486. </shape>
  487. <shape aspect="variable" h="45.35" name="3U" strokewidth="inherit" w="161.85">
  488. <connections/>
  489. <background>
  490. <path>
  491. <move x="0" y="0"/>
  492. <curve x1="0" x2="0" x3="0" y1="15.12" y2="30.23" y3="45.35"/>
  493. <curve x1="57.13" x2="112.17" x3="161.85" y1="45.35" y2="45.35" y3="45.35"/>
  494. <line x="161.85" y="0"/>
  495. <curve x1="104.63" x2="49.83" x3="0" y1="0" y2="0" y3="0"/>
  496. <close/>
  497. </path>
  498. </background>
  499. <foreground>
  500. <fill/>
  501. <fillcolor color="#000000"/>
  502. <strokewidth width="1"/>
  503. <linejoin join="miter"/>
  504. <linecap cap="butt"/>
  505. <miterlimit limit="4"/>
  506. <dashpattern pattern="none"/>
  507. <dashed dashed="1"/>
  508. <alpha alpha="1"/>
  509. <strokealpha alpha="1"/>
  510. <fillalpha alpha="0.644"/>
  511. <fontfamily family="sans-serif"/>
  512. <fontstyle style="0"/>
  513. <path>
  514. <move x="0" y="0"/>
  515. <line x="0" y="45.35"/>
  516. <line x="161.85" y="45.35"/>
  517. <line x="161.85" y="0"/>
  518. <close/>
  519. <move x="1" y="1"/>
  520. <line x="6" y="1"/>
  521. <line x="6" y="44.35"/>
  522. <line x="1" y="44.35"/>
  523. <close/>
  524. <move x="7" y="1"/>
  525. <line x="155.32" y="1"/>
  526. <line x="155.32" y="44.35"/>
  527. <line x="7" y="44.35"/>
  528. <close/>
  529. <move x="156.32" y="1"/>
  530. <line x="160.85" y="1"/>
  531. <line x="160.85" y="44.35"/>
  532. <line x="156.32" y="44.35"/>
  533. <close/>
  534. </path>
  535. <fill/>
  536. <strokewidth width="0.301"/>
  537. <fillalpha alpha="0.232"/>
  538. <path>
  539. <move x="1" y="1"/>
  540. <line x="6" y="1"/>
  541. <line x="6" y="44.35"/>
  542. <line x="1" y="44.35"/>
  543. <close/>
  544. </path>
  545. <fill/>
  546. <path>
  547. <move x="156.32" y="1"/>
  548. <line x="160.85" y="1"/>
  549. <line x="160.85" y="44.35"/>
  550. <line x="156.32" y="44.35"/>
  551. <close/>
  552. </path>
  553. <fill/>
  554. </foreground>
  555. </shape>
  556. <shape aspect="variable" h="634.5" name="40U Rack 19 Standard" strokewidth="inherit" w="180">
  557. <connections/>
  558. <background>
  559. <rect h="634.5" w="180" x="0" y="0"/>
  560. </background>
  561. <foreground>
  562. <strokecolor color="#000000"/>
  563. <fillcolor color="#ffffff"/>
  564. <fillstroke/>
  565. <fillcolor color="#f4f4f4"/>
  566. <rect h="20.99" w="180" x="0" y="0"/>
  567. <fillstroke/>
  568. <rect h="20.99" w="180" x="0" y="613.51"/>
  569. <fillstroke/>
  570. <rect h="592.51" w="9" x="0" y="20.99"/>
  571. <fillstroke/>
  572. <rect h="592.51" w="9" x="171" y="20.99"/>
  573. <fillstroke/>
  574. <ellipse h="6" w="6" x="2.67" y="7.66"/>
  575. <stroke/>
  576. <fillcolor color="#f4f4f4"/>
  577. <ellipse h="6" w="6" x="170.67" y="7.66"/>
  578. <fillstroke/>
  579. <ellipse h="6" w="6" x="170.67" y="621.17"/>
  580. <fillstroke/>
  581. <ellipse h="6" w="6" x="2.67" y="621.17"/>
  582. <fillstroke/>
  583. </foreground>
  584. </shape>
  585. <shape aspect="variable" h="664.1" name="42U Rack 19 Standard" strokewidth="inherit" w="180">
  586. <connections/>
  587. <background>
  588. <rect h="650" w="180" x="0" y="0"/>
  589. </background>
  590. <foreground>
  591. <strokecolor color="#000000"/>
  592. <fillcolor color="#ffffff"/>
  593. <fillstroke/>
  594. <fillcolor color="#f4f4f4"/>
  595. <rect h="20.99" w="180" x="0" y="0"/>
  596. <fillstroke/>
  597. <rect h="623" w="9" x="0" y="20.99"/>
  598. <fillstroke/>
  599. <rect h="623" w="9" x="171" y="20.99"/>
  600. <fillstroke/>
  601. <ellipse h="6" w="6" x="2.67" y="7.66"/>
  602. <stroke/>
  603. <fillcolor color="#f4f4f4"/>
  604. <ellipse h="6" w="6" x="170.67" y="7.66"/>
  605. <fillstroke/>
  606. <rect h="21" w="180" x="0" y="643.1"/>
  607. <fillstroke/>
  608. <ellipse h="6" w="6" x="2.67" y="650.77"/>
  609. <fillstroke/>
  610. <ellipse h="6" w="6" x="170.67" y="650.77"/>
  611. <fillstroke/>
  612. </foreground>
  613. </shape>
  614. <shape aspect="variable" h="693.74" name="44U Rack 19 Standard" strokewidth="inherit" w="180">
  615. <connections/>
  616. <background>
  617. <rect h="693.74" w="180" x="0" y="0"/>
  618. </background>
  619. <foreground>
  620. <strokecolor color="#000000"/>
  621. <fillcolor color="#ffffff"/>
  622. <fillstroke/>
  623. <fillcolor color="#f4f4f4"/>
  624. <rect h="21" w="180" x="0" y="0"/>
  625. <fillstroke/>
  626. <rect h="21" w="180" x="0" y="672.75"/>
  627. <fillstroke/>
  628. <rect h="651.75" w="9" x="0" y="21"/>
  629. <fillstroke/>
  630. <rect h="651.75" w="9" x="171" y="21"/>
  631. <fillstroke/>
  632. <ellipse h="6" w="6" x="2.67" y="7.66"/>
  633. <stroke/>
  634. <fillcolor color="#f4f4f4"/>
  635. <ellipse h="6" w="6" x="170.67" y="7.66"/>
  636. <fillstroke/>
  637. <ellipse h="6" w="6" x="170.67" y="680.51"/>
  638. <fillstroke/>
  639. <ellipse h="6" w="6" x="2.67" y="680.51"/>
  640. <fillstroke/>
  641. </foreground>
  642. </shape>
  643. <shape aspect="variable" h="753.24" name="47U Rack 19 IBM" strokewidth="inherit" w="180.18">
  644. <connections/>
  645. <background>
  646. <rect h="753.24" w="180.18" x="0" y="0"/>
  647. </background>
  648. <foreground>
  649. <strokecolor color="#000000"/>
  650. <fillcolor color="#ffffff"/>
  651. <fillstroke/>
  652. <fillcolor color="#f4f4f4"/>
  653. <rect h="21.01" w="180.18" x="0" y="0"/>
  654. <fillstroke/>
  655. <rect h="21.01" w="180.18" x="0" y="732.23"/>
  656. <fillstroke/>
  657. <rect h="711.23" w="9.01" x="0" y="21.01"/>
  658. <fillstroke/>
  659. <rect h="711.23" w="9.01" x="171.17" y="21.01"/>
  660. <fillstroke/>
  661. <ellipse h="6" w="6.01" x="2.67" y="7.67"/>
  662. <stroke/>
  663. <fillcolor color="#f4f4f4"/>
  664. <ellipse h="6" w="6.01" x="170.84" y="7.67"/>
  665. <fillstroke/>
  666. <ellipse h="6" w="6.01" x="170.84" y="739.9"/>
  667. <fillstroke/>
  668. <ellipse h="6" w="6.01" x="2.67" y="739.9"/>
  669. <fillstroke/>
  670. </foreground>
  671. </shape>
  672. <shape aspect="variable" h="753.24" name="48U Rack 19 Standard" strokewidth="inherit" w="180.18">
  673. <connections/>
  674. <background>
  675. <rect h="753.24" w="180.18" x="0" y="0"/>
  676. </background>
  677. <foreground>
  678. <strokecolor color="#000000"/>
  679. <fillcolor color="#ffffff"/>
  680. <fillstroke/>
  681. <fillcolor color="#f4f4f4"/>
  682. <rect h="21.01" w="180.18" x="0" y="0"/>
  683. <fillstroke/>
  684. <rect h="21.01" w="180.18" x="0" y="732.23"/>
  685. <fillstroke/>
  686. <rect h="711.23" w="9.01" x="0" y="21.01"/>
  687. <fillstroke/>
  688. <rect h="711.23" w="9.01" x="171.17" y="21.01"/>
  689. <fillstroke/>
  690. <ellipse h="6" w="6.01" x="2.67" y="7.67"/>
  691. <stroke/>
  692. <fillcolor color="#f4f4f4"/>
  693. <ellipse h="6" w="6.01" x="170.84" y="7.67"/>
  694. <fillstroke/>
  695. <ellipse h="6" w="6.01" x="170.84" y="739.9"/>
  696. <fillstroke/>
  697. <ellipse h="6" w="6.01" x="2.67" y="739.9"/>
  698. <fillstroke/>
  699. </foreground>
  700. </shape>
  701. <shape aspect="variable" h="60.3" name="4U" strokewidth="inherit" w="161.85">
  702. <connections/>
  703. <background>
  704. <path>
  705. <move x="0" y="0"/>
  706. <line x="0" y="60.3"/>
  707. <line x="161.85" y="60.3"/>
  708. <line x="161.85" y="0"/>
  709. <close/>
  710. </path>
  711. </background>
  712. <foreground>
  713. <fill/>
  714. <fillcolor color="#000000"/>
  715. <strokewidth width="1"/>
  716. <linejoin join="miter"/>
  717. <linecap cap="butt"/>
  718. <miterlimit limit="4"/>
  719. <dashpattern pattern="none"/>
  720. <dashed dashed="1"/>
  721. <alpha alpha="1"/>
  722. <strokealpha alpha="1"/>
  723. <fillalpha alpha="0.644"/>
  724. <fontfamily family="sans-serif"/>
  725. <fontstyle style="0"/>
  726. <path>
  727. <move x="0" y="0"/>
  728. <line x="0" y="60.3"/>
  729. <curve x1="56.07" x2="113.74" x3="161.85" y1="60.3" y2="60.3" y3="60.3"/>
  730. <line x="161.85" y="0"/>
  731. <curve x1="104.63" x2="49.83" x3="0" y1="0" y2="0" y3="0"/>
  732. <close/>
  733. <move x="1" y="1"/>
  734. <line x="6" y="1"/>
  735. <line x="6" y="59.3"/>
  736. <line x="1" y="59.3"/>
  737. <close/>
  738. <move x="7" y="1"/>
  739. <line x="155.32" y="1"/>
  740. <line x="155.32" y="59.3"/>
  741. <line x="7" y="59.3"/>
  742. <close/>
  743. <move x="156.32" y="1"/>
  744. <line x="160.85" y="1"/>
  745. <line x="160.85" y="59.3"/>
  746. <line x="156.32" y="59.3"/>
  747. <close/>
  748. </path>
  749. <fill/>
  750. <strokewidth width="0.301"/>
  751. <fillalpha alpha="0.232"/>
  752. <path>
  753. <move x="156.32" y="1"/>
  754. <line x="160.85" y="1"/>
  755. <line x="160.85" y="59.3"/>
  756. <line x="156.32" y="59.3"/>
  757. <close/>
  758. <move x="1" y="1"/>
  759. <line x="6" y="1"/>
  760. <line x="6" y="59.3"/>
  761. <line x="1" y="59.3"/>
  762. <close/>
  763. </path>
  764. <fill/>
  765. </foreground>
  766. </shape>
  767. <shape aspect="variable" h="75.25" name="5U" strokewidth="inherit" w="161.77">
  768. <connections/>
  769. <background>
  770. <path>
  771. <move x="0" y="0"/>
  772. <line x="0" y="75.25"/>
  773. <line x="161.77" y="75.25"/>
  774. <line x="161.77" y="0"/>
  775. <close/>
  776. </path>
  777. </background>
  778. <foreground>
  779. <fill/>
  780. <fillcolor color="#000000"/>
  781. <strokewidth width="1"/>
  782. <linejoin join="miter"/>
  783. <linecap cap="butt"/>
  784. <miterlimit limit="4"/>
  785. <dashpattern pattern="none"/>
  786. <dashed dashed="1"/>
  787. <alpha alpha="1"/>
  788. <strokealpha alpha="1"/>
  789. <fillalpha alpha="0.644"/>
  790. <fontfamily family="sans-serif"/>
  791. <fontstyle style="0"/>
  792. <path>
  793. <move x="0" y="0"/>
  794. <line x="0" y="75.25"/>
  795. <line x="161.77" y="75.25"/>
  796. <line x="161.77" y="0"/>
  797. <close/>
  798. <move x="1" y="1"/>
  799. <line x="6" y="1"/>
  800. <line x="6" y="74.25"/>
  801. <line x="1" y="74.25"/>
  802. <close/>
  803. <move x="7" y="1"/>
  804. <line x="155.24" y="1"/>
  805. <line x="155.24" y="74.25"/>
  806. <line x="7" y="74.25"/>
  807. <close/>
  808. <move x="156.24" y="1"/>
  809. <line x="160.77" y="1"/>
  810. <line x="160.77" y="74.25"/>
  811. <line x="156.24" y="74.25"/>
  812. <close/>
  813. </path>
  814. <fill/>
  815. <strokewidth width="0.301"/>
  816. <fillalpha alpha="0.232"/>
  817. <path>
  818. <move x="156.24" y="1"/>
  819. <line x="160.77" y="1"/>
  820. <line x="160.77" y="74.25"/>
  821. <line x="156.24" y="74.25"/>
  822. <close/>
  823. <move x="1" y="1"/>
  824. <line x="6" y="1"/>
  825. <line x="6" y="74.25"/>
  826. <line x="1" y="74.25"/>
  827. <close/>
  828. </path>
  829. <fill/>
  830. </foreground>
  831. </shape>
  832. <shape aspect="variable" h="89.7" name="6U" strokewidth="inherit" w="161.93">
  833. <connections/>
  834. <background>
  835. <path>
  836. <move x="0" y="0"/>
  837. <line x="0" y="89.7"/>
  838. <line x="161.93" y="89.7"/>
  839. <line x="161.93" y="0"/>
  840. <close/>
  841. </path>
  842. </background>
  843. <foreground>
  844. <fill/>
  845. <fillcolor color="#000000"/>
  846. <strokewidth width="1"/>
  847. <linejoin join="miter"/>
  848. <linecap cap="butt"/>
  849. <miterlimit limit="4"/>
  850. <dashpattern pattern="none"/>
  851. <dashed dashed="1"/>
  852. <alpha alpha="1"/>
  853. <strokealpha alpha="1"/>
  854. <fillalpha alpha="0.644"/>
  855. <fontfamily family="sans-serif"/>
  856. <fontstyle style="0"/>
  857. <path>
  858. <move x="0" y="0"/>
  859. <line x="0" y="89.7"/>
  860. <line x="161.93" y="89.7"/>
  861. <line x="161.93" y="0"/>
  862. <close/>
  863. <move x="1" y="1"/>
  864. <line x="6" y="1"/>
  865. <line x="6" y="88.7"/>
  866. <line x="1" y="88.7"/>
  867. <close/>
  868. <move x="7" y="1"/>
  869. <line x="155.4" y="1"/>
  870. <line x="155.4" y="88.7"/>
  871. <line x="7" y="88.7"/>
  872. <close/>
  873. <move x="156.4" y="1"/>
  874. <line x="160.93" y="1"/>
  875. <line x="160.93" y="88.7"/>
  876. <line x="156.4" y="88.7"/>
  877. <close/>
  878. </path>
  879. <fill/>
  880. <strokewidth width="0.301"/>
  881. <fillalpha alpha="0.232"/>
  882. <path>
  883. <move x="156.4" y="1"/>
  884. <line x="160.93" y="1"/>
  885. <line x="160.93" y="88.7"/>
  886. <line x="156.4" y="88.7"/>
  887. <close/>
  888. <move x="1" y="1"/>
  889. <line x="6" y="1"/>
  890. <line x="6" y="88.7"/>
  891. <line x="1" y="88.7"/>
  892. <close/>
  893. </path>
  894. <fill/>
  895. </foreground>
  896. </shape>
  897. <shape aspect="variable" h="30.65" name="CAT5e Enhanced Patch Panel 48 ports" strokewidth="inherit" w="161.93">
  898. <connections/>
  899. <background>
  900. <path>
  901. <move x="0" y="0"/>
  902. <line x="0" y="30.65"/>
  903. <line x="161.93" y="30.65"/>
  904. <line x="161.93" y="0"/>
  905. <close/>
  906. <move x="2.17" y="2.33"/>
  907. <line x="5.17" y="2.33"/>
  908. <curve x1="5.46" x2="5.67" x3="5.67" y1="2.33" y2="2.55" y3="2.83"/>
  909. <line x="5.67" y="2.84"/>
  910. <curve x1="5.67" x2="5.46" x3="5.17" y1="3.12" y2="3.34" y3="3.34"/>
  911. <line x="2.17" y="3.34"/>
  912. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.34" y2="3.12" y3="2.84"/>
  913. <line x="1.67" y="2.83"/>
  914. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.55" y2="2.33" y3="2.33"/>
  915. <close/>
  916. <move x="8.51" y="2.33"/>
  917. <line x="152.23" y="2.33"/>
  918. <curve x1="152.33" x2="152.4" x3="152.4" y1="2.33" y2="2.4" y3="2.5"/>
  919. <line x="152.4" y="3.5"/>
  920. <curve x1="152.4" x2="152.33" x3="152.23" y1="3.6" y2="3.67" y3="3.67"/>
  921. <line x="8.51" y="3.67"/>
  922. <curve x1="8.4" x2="8.34" x3="8.34" y1="3.67" y2="3.6" y3="3.5"/>
  923. <line x="8.34" y="2.5"/>
  924. <curve x1="8.34" x2="8.4" x3="8.51" y1="2.4" y2="2.33" y3="2.33"/>
  925. <close/>
  926. <move x="156.23" y="2.33"/>
  927. <line x="159.23" y="2.33"/>
  928. <curve x1="159.52" x2="159.73" x3="159.73" y1="2.33" y2="2.55" y3="2.83"/>
  929. <line x="159.73" y="2.84"/>
  930. <curve x1="159.73" x2="159.52" x3="159.23" y1="3.12" y2="3.34" y3="3.34"/>
  931. <line x="156.23" y="3.34"/>
  932. <curve x1="155.94" x2="155.73" x3="155.73" y1="3.34" y2="3.12" y3="2.84"/>
  933. <line x="155.73" y="2.83"/>
  934. <curve x1="155.73" x2="155.94" x3="156.23" y1="2.55" y2="2.33" y3="2.33"/>
  935. <close/>
  936. <move x="8.51" y="17.18"/>
  937. <line x="152.23" y="17.18"/>
  938. <curve x1="152.33" x2="152.4" x3="152.4" y1="17.18" y2="17.24" y3="17.35"/>
  939. <line x="152.4" y="18.34"/>
  940. <curve x1="152.4" x2="152.33" x3="152.23" y1="18.44" y2="18.51" y3="18.51"/>
  941. <line x="8.51" y="18.51"/>
  942. <curve x1="8.4" x2="8.34" x3="8.34" y1="18.51" y2="18.44" y3="18.34"/>
  943. <line x="8.34" y="17.35"/>
  944. <curve x1="8.34" x2="8.4" x3="8.51" y1="17.24" y2="17.18" y3="17.18"/>
  945. <close/>
  946. <move x="2.17" y="27.18"/>
  947. <line x="5.17" y="27.18"/>
  948. <curve x1="5.46" x2="5.67" x3="5.67" y1="27.18" y2="27.4" y3="27.68"/>
  949. <curve x1="5.67" x2="5.46" x3="5.17" y1="27.97" y2="28.18" y3="28.18"/>
  950. <line x="2.17" y="28.18"/>
  951. <curve x1="1.88" x2="1.67" x3="1.67" y1="28.18" y2="27.97" y3="27.68"/>
  952. <curve x1="1.67" x2="1.88" x3="2.17" y1="27.4" y2="27.18" y3="27.18"/>
  953. <close/>
  954. <move x="156.23" y="27.18"/>
  955. <line x="159.23" y="27.18"/>
  956. <curve x1="159.52" x2="159.73" x3="159.73" y1="27.18" y2="27.4" y3="27.68"/>
  957. <curve x1="159.73" x2="159.52" x3="159.23" y1="27.97" y2="28.18" y3="28.18"/>
  958. <line x="156.23" y="28.18"/>
  959. <curve x1="155.94" x2="155.73" x3="155.73" y1="28.18" y2="27.97" y3="27.68"/>
  960. <curve x1="155.73" x2="155.94" x3="156.23" y1="27.4" y2="27.18" y3="27.18"/>
  961. <close/>
  962. </path>
  963. </background>
  964. <foreground>
  965. <fill/>
  966. <fillcolor color="#000000"/>
  967. <fillalpha alpha="0.687"/>
  968. <path>
  969. <move x="8.17" y="20.68"/>
  970. <line x="152.23" y="20.68"/>
  971. <line x="152.23" y="23.68"/>
  972. <line x="8.17" y="23.68"/>
  973. <close/>
  974. <move x="8.17" y="5.84"/>
  975. <line x="152.23" y="5.84"/>
  976. <line x="152.23" y="8.84"/>
  977. <line x="8.17" y="8.84"/>
  978. <close/>
  979. </path>
  980. <fill/>
  981. <strokewidth width="1"/>
  982. <linejoin join="miter"/>
  983. <linecap cap="butt"/>
  984. <miterlimit limit="4"/>
  985. <dashpattern pattern="none"/>
  986. <dashed dashed="1"/>
  987. <alpha alpha="1"/>
  988. <strokealpha alpha="1"/>
  989. <fillalpha alpha="0.644"/>
  990. <fontfamily family="sans-serif"/>
  991. <fontstyle style="0"/>
  992. <path>
  993. <move x="0" y="0"/>
  994. <curve x1="0" x2="0" x3="0" y1="10.22" y2="20.43" y3="30.65"/>
  995. <line x="161.93" y="30.65"/>
  996. <line x="161.93" y="0"/>
  997. <close/>
  998. <move x="1" y="1"/>
  999. <line x="160.93" y="1"/>
  1000. <line x="160.93" y="29.65"/>
  1001. <line x="1" y="29.65"/>
  1002. <line x="1" y="28.61"/>
  1003. <curve x1="1.28" x2="1.69" x3="2.17" y1="28.95" y2="29.18" y3="29.18"/>
  1004. <line x="5.17" y="29.18"/>
  1005. <curve x1="5.99" x2="6.67" x3="6.67" y1="29.18" y2="28.5" y3="27.68"/>
  1006. <curve x1="6.67" x2="5.99" x3="5.17" y1="26.86" y2="26.18" y3="26.18"/>
  1007. <line x="2.17" y="26.18"/>
  1008. <curve x1="1.69" x2="1.28" x3="1" y1="26.18" y2="26.41" y3="26.75"/>
  1009. <line x="1" y="3.76"/>
  1010. <curve x1="1.28" x2="1.69" x3="2.17" y1="4.11" y2="4.34" y3="4.34"/>
  1011. <line x="5.17" y="4.34"/>
  1012. <curve x1="5.99" x2="6.67" x3="6.67" y1="4.34" y2="3.66" y3="2.84"/>
  1013. <line x="6.67" y="2.83"/>
  1014. <curve x1="6.67" x2="5.99" x3="5.17" y1="2.01" y2="1.33" y3="1.33"/>
  1015. <line x="2.17" y="1.33"/>
  1016. <curve x1="1.69" x2="1.28" x3="1" y1="1.33" y2="1.56" y3="1.91"/>
  1017. <close/>
  1018. <move x="8.51" y="1.33"/>
  1019. <curve x1="7.87" x2="7.34" x3="7.34" y1="1.33" y2="1.86" y3="2.5"/>
  1020. <line x="7.34" y="3.5"/>
  1021. <curve x1="7.34" x2="7.87" x3="8.51" y1="4.14" y2="4.67" y3="4.67"/>
  1022. <line x="152.23" y="4.67"/>
  1023. <curve x1="152.87" x2="153.4" x3="153.4" y1="4.67" y2="4.14" y3="3.5"/>
  1024. <line x="153.4" y="2.5"/>
  1025. <curve x1="153.4" x2="152.87" x3="152.23" y1="1.86" y2="1.33" y3="1.33"/>
  1026. <close/>
  1027. <move x="156.23" y="1.33"/>
  1028. <curve x1="155.41" x2="154.73" x3="154.73" y1="1.33" y2="2.01" y3="2.83"/>
  1029. <line x="154.73" y="2.84"/>
  1030. <curve x1="154.73" x2="155.41" x3="156.23" y1="3.66" y2="4.34" y3="4.34"/>
  1031. <line x="159.23" y="4.34"/>
  1032. <curve x1="160.05" x2="160.73" x3="160.73" y1="4.34" y2="3.66" y3="2.84"/>
  1033. <line x="160.73" y="2.83"/>
  1034. <curve x1="160.73" x2="160.05" x3="159.23" y1="2.01" y2="1.33" y3="1.33"/>
  1035. <close/>
  1036. <move x="2.17" y="2.33"/>
  1037. <line x="5.17" y="2.33"/>
  1038. <curve x1="5.46" x2="5.67" x3="5.67" y1="2.33" y2="2.55" y3="2.83"/>
  1039. <line x="5.67" y="2.84"/>
  1040. <curve x1="5.67" x2="5.46" x3="5.17" y1="3.12" y2="3.34" y3="3.34"/>
  1041. <line x="2.17" y="3.34"/>
  1042. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.34" y2="3.12" y3="2.84"/>
  1043. <line x="1.67" y="2.83"/>
  1044. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.55" y2="2.33" y3="2.33"/>
  1045. <close/>
  1046. <move x="8.51" y="2.33"/>
  1047. <line x="152.23" y="2.33"/>
  1048. <curve x1="152.33" x2="152.4" x3="152.4" y1="2.33" y2="2.4" y3="2.5"/>
  1049. <line x="152.4" y="3.5"/>
  1050. <curve x1="152.4" x2="152.33" x3="152.23" y1="3.6" y2="3.67" y3="3.67"/>
  1051. <line x="8.51" y="3.67"/>
  1052. <curve x1="8.4" x2="8.34" x3="8.34" y1="3.67" y2="3.6" y3="3.5"/>
  1053. <line x="8.34" y="2.5"/>
  1054. <curve x1="8.34" x2="8.4" x3="8.51" y1="2.4" y2="2.33" y3="2.33"/>
  1055. <close/>
  1056. <move x="156.23" y="2.33"/>
  1057. <line x="159.23" y="2.33"/>
  1058. <curve x1="159.52" x2="159.73" x3="159.73" y1="2.33" y2="2.55" y3="2.83"/>
  1059. <line x="159.73" y="2.84"/>
  1060. <curve x1="159.73" x2="159.52" x3="159.23" y1="3.12" y2="3.34" y3="3.34"/>
  1061. <line x="156.23" y="3.34"/>
  1062. <curve x1="155.94" x2="155.73" x3="155.73" y1="3.34" y2="3.12" y3="2.84"/>
  1063. <line x="155.73" y="2.83"/>
  1064. <curve x1="155.73" x2="155.94" x3="156.23" y1="2.55" y2="2.33" y3="2.33"/>
  1065. <close/>
  1066. <move x="12.84" y="5.84"/>
  1067. <line x="12.84" y="8.84"/>
  1068. <line x="13.84" y="8.84"/>
  1069. <line x="13.84" y="5.84"/>
  1070. <close/>
  1071. <move x="18.84" y="5.84"/>
  1072. <line x="18.84" y="8.84"/>
  1073. <line x="19.84" y="8.84"/>
  1074. <line x="19.84" y="5.84"/>
  1075. <close/>
  1076. <move x="24.84" y="5.84"/>
  1077. <line x="24.84" y="8.84"/>
  1078. <line x="25.84" y="8.84"/>
  1079. <line x="25.84" y="5.84"/>
  1080. <close/>
  1081. <move x="31.18" y="5.84"/>
  1082. <line x="31.18" y="8.84"/>
  1083. <line x="32.18" y="8.84"/>
  1084. <line x="32.18" y="5.84"/>
  1085. <close/>
  1086. <move x="37.18" y="5.84"/>
  1087. <line x="37.18" y="8.84"/>
  1088. <line x="38.18" y="8.84"/>
  1089. <line x="38.18" y="5.84"/>
  1090. <close/>
  1091. <move x="43.18" y="5.84"/>
  1092. <line x="43.18" y="8.84"/>
  1093. <line x="44.19" y="8.84"/>
  1094. <line x="44.19" y="5.84"/>
  1095. <close/>
  1096. <move x="49.19" y="5.84"/>
  1097. <line x="49.19" y="8.84"/>
  1098. <line x="50.19" y="8.84"/>
  1099. <line x="50.19" y="5.84"/>
  1100. <close/>
  1101. <move x="55.52" y="5.84"/>
  1102. <line x="55.52" y="8.84"/>
  1103. <line x="56.52" y="8.84"/>
  1104. <line x="56.52" y="5.84"/>
  1105. <close/>
  1106. <move x="61.53" y="5.84"/>
  1107. <line x="61.53" y="8.84"/>
  1108. <line x="62.53" y="8.84"/>
  1109. <line x="62.53" y="5.84"/>
  1110. <close/>
  1111. <move x="67.19" y="5.84"/>
  1112. <line x="67.19" y="8.84"/>
  1113. <line x="68.2" y="8.84"/>
  1114. <line x="68.2" y="5.84"/>
  1115. <close/>
  1116. <move x="73.53" y="5.84"/>
  1117. <line x="73.53" y="8.84"/>
  1118. <line x="74.53" y="8.84"/>
  1119. <line x="74.53" y="5.84"/>
  1120. <close/>
  1121. <move x="79.53" y="5.84"/>
  1122. <line x="79.53" y="8.84"/>
  1123. <line x="80.53" y="8.84"/>
  1124. <line x="80.53" y="5.84"/>
  1125. <close/>
  1126. <move x="85.54" y="5.84"/>
  1127. <line x="85.54" y="8.84"/>
  1128. <line x="86.54" y="8.84"/>
  1129. <line x="86.54" y="5.84"/>
  1130. <close/>
  1131. <move x="91.87" y="5.84"/>
  1132. <line x="91.87" y="8.84"/>
  1133. <line x="92.87" y="8.84"/>
  1134. <line x="92.87" y="5.84"/>
  1135. <close/>
  1136. <move x="97.87" y="5.84"/>
  1137. <line x="97.87" y="8.84"/>
  1138. <line x="98.88" y="8.84"/>
  1139. <line x="98.88" y="5.84"/>
  1140. <close/>
  1141. <move x="103.88" y="5.84"/>
  1142. <line x="103.88" y="8.84"/>
  1143. <line x="104.88" y="8.84"/>
  1144. <line x="104.88" y="5.84"/>
  1145. <close/>
  1146. <move x="109.88" y="5.84"/>
  1147. <line x="109.88" y="8.84"/>
  1148. <line x="110.88" y="8.84"/>
  1149. <line x="110.88" y="5.84"/>
  1150. <close/>
  1151. <move x="116.21" y="5.84"/>
  1152. <line x="116.21" y="8.84"/>
  1153. <line x="117.21" y="8.84"/>
  1154. <line x="117.21" y="5.84"/>
  1155. <close/>
  1156. <move x="122.22" y="5.84"/>
  1157. <line x="122.22" y="8.84"/>
  1158. <line x="123.22" y="8.84"/>
  1159. <line x="123.22" y="5.84"/>
  1160. <close/>
  1161. <move x="127.89" y="5.84"/>
  1162. <line x="127.89" y="8.84"/>
  1163. <line x="128.89" y="8.84"/>
  1164. <line x="128.89" y="5.84"/>
  1165. <close/>
  1166. <move x="134.22" y="5.84"/>
  1167. <line x="134.22" y="8.84"/>
  1168. <line x="135.22" y="8.84"/>
  1169. <line x="135.22" y="5.84"/>
  1170. <close/>
  1171. <move x="140.22" y="5.84"/>
  1172. <line x="140.22" y="8.84"/>
  1173. <line x="141.22" y="8.84"/>
  1174. <line x="141.22" y="5.84"/>
  1175. <close/>
  1176. <move x="146.23" y="5.84"/>
  1177. <line x="146.23" y="8.84"/>
  1178. <line x="147.23" y="8.84"/>
  1179. <line x="147.23" y="5.84"/>
  1180. <close/>
  1181. <move x="8.51" y="16.18"/>
  1182. <curve x1="7.87" x2="7.34" x3="7.34" y1="16.18" y2="16.71" y3="17.35"/>
  1183. <line x="7.34" y="18.34"/>
  1184. <curve x1="7.34" x2="7.87" x3="8.51" y1="18.98" y2="19.51" y3="19.51"/>
  1185. <line x="152.23" y="19.51"/>
  1186. <curve x1="152.87" x2="153.4" x3="153.4" y1="19.51" y2="18.98" y3="18.34"/>
  1187. <line x="153.4" y="17.35"/>
  1188. <curve x1="153.4" x2="152.87" x3="152.23" y1="16.71" y2="16.18" y3="16.18"/>
  1189. <close/>
  1190. <move x="8.51" y="17.18"/>
  1191. <line x="152.23" y="17.18"/>
  1192. <curve x1="152.33" x2="152.4" x3="152.4" y1="17.18" y2="17.24" y3="17.35"/>
  1193. <line x="152.4" y="18.34"/>
  1194. <curve x1="152.4" x2="152.33" x3="152.23" y1="18.44" y2="18.51" y3="18.51"/>
  1195. <line x="8.51" y="18.51"/>
  1196. <curve x1="8.4" x2="8.34" x3="8.34" y1="18.51" y2="18.44" y3="18.34"/>
  1197. <line x="8.34" y="17.35"/>
  1198. <curve x1="8.34" x2="8.4" x3="8.51" y1="17.24" y2="17.18" y3="17.18"/>
  1199. <close/>
  1200. <move x="12.84" y="20.68"/>
  1201. <line x="12.84" y="23.68"/>
  1202. <line x="13.84" y="23.68"/>
  1203. <line x="13.84" y="20.68"/>
  1204. <close/>
  1205. <move x="18.84" y="20.68"/>
  1206. <line x="18.84" y="23.68"/>
  1207. <line x="19.84" y="23.68"/>
  1208. <line x="19.84" y="20.68"/>
  1209. <close/>
  1210. <move x="24.84" y="20.68"/>
  1211. <line x="24.84" y="23.68"/>
  1212. <line x="25.84" y="23.68"/>
  1213. <line x="25.84" y="20.68"/>
  1214. <close/>
  1215. <move x="31.18" y="20.68"/>
  1216. <line x="31.18" y="23.68"/>
  1217. <line x="32.18" y="23.68"/>
  1218. <line x="32.18" y="20.68"/>
  1219. <close/>
  1220. <move x="37.18" y="20.68"/>
  1221. <line x="37.18" y="23.68"/>
  1222. <line x="38.18" y="23.68"/>
  1223. <line x="38.18" y="20.68"/>
  1224. <close/>
  1225. <move x="43.18" y="20.68"/>
  1226. <line x="43.18" y="23.68"/>
  1227. <line x="44.19" y="23.68"/>
  1228. <line x="44.19" y="20.68"/>
  1229. <close/>
  1230. <move x="49.19" y="20.68"/>
  1231. <line x="49.19" y="23.68"/>
  1232. <line x="50.19" y="23.68"/>
  1233. <line x="50.19" y="20.68"/>
  1234. <close/>
  1235. <move x="55.52" y="20.68"/>
  1236. <line x="55.52" y="23.68"/>
  1237. <line x="56.52" y="23.68"/>
  1238. <line x="56.52" y="20.68"/>
  1239. <close/>
  1240. <move x="61.53" y="20.68"/>
  1241. <line x="61.53" y="23.68"/>
  1242. <line x="62.53" y="23.68"/>
  1243. <line x="62.53" y="20.68"/>
  1244. <close/>
  1245. <move x="67.19" y="20.68"/>
  1246. <line x="67.19" y="23.68"/>
  1247. <line x="68.2" y="23.68"/>
  1248. <line x="68.2" y="20.68"/>
  1249. <close/>
  1250. <move x="73.53" y="20.68"/>
  1251. <line x="73.53" y="23.68"/>
  1252. <line x="74.53" y="23.68"/>
  1253. <line x="74.53" y="20.68"/>
  1254. <close/>
  1255. <move x="79.53" y="20.68"/>
  1256. <line x="79.53" y="23.68"/>
  1257. <line x="80.53" y="23.68"/>
  1258. <line x="80.53" y="20.68"/>
  1259. <close/>
  1260. <move x="85.54" y="20.68"/>
  1261. <line x="85.54" y="23.68"/>
  1262. <line x="86.54" y="23.68"/>
  1263. <line x="86.54" y="20.68"/>
  1264. <close/>
  1265. <move x="91.87" y="20.68"/>
  1266. <line x="91.87" y="23.68"/>
  1267. <line x="92.87" y="23.68"/>
  1268. <line x="92.87" y="20.68"/>
  1269. <close/>
  1270. <move x="97.87" y="20.68"/>
  1271. <line x="97.87" y="23.68"/>
  1272. <line x="98.88" y="23.68"/>
  1273. <line x="98.88" y="20.68"/>
  1274. <close/>
  1275. <move x="103.88" y="20.68"/>
  1276. <line x="103.88" y="23.68"/>
  1277. <line x="104.88" y="23.68"/>
  1278. <line x="104.88" y="20.68"/>
  1279. <close/>
  1280. <move x="109.88" y="20.68"/>
  1281. <line x="109.88" y="23.68"/>
  1282. <line x="110.88" y="23.68"/>
  1283. <line x="110.88" y="20.68"/>
  1284. <close/>
  1285. <move x="116.21" y="20.68"/>
  1286. <line x="116.21" y="23.68"/>
  1287. <line x="117.21" y="23.68"/>
  1288. <line x="117.21" y="20.68"/>
  1289. <close/>
  1290. <move x="122.22" y="20.68"/>
  1291. <line x="122.22" y="23.68"/>
  1292. <line x="123.22" y="23.68"/>
  1293. <line x="123.22" y="20.68"/>
  1294. <close/>
  1295. <move x="127.89" y="20.68"/>
  1296. <line x="127.89" y="23.68"/>
  1297. <line x="128.89" y="23.68"/>
  1298. <line x="128.89" y="20.68"/>
  1299. <close/>
  1300. <move x="134.22" y="20.68"/>
  1301. <line x="134.22" y="23.68"/>
  1302. <line x="135.22" y="23.68"/>
  1303. <line x="135.22" y="20.68"/>
  1304. <close/>
  1305. <move x="140.22" y="20.68"/>
  1306. <line x="140.22" y="23.68"/>
  1307. <line x="141.22" y="23.68"/>
  1308. <line x="141.22" y="20.68"/>
  1309. <close/>
  1310. <move x="146.23" y="20.68"/>
  1311. <line x="146.23" y="23.68"/>
  1312. <line x="147.23" y="23.68"/>
  1313. <line x="147.23" y="20.68"/>
  1314. <close/>
  1315. <move x="156.23" y="26.18"/>
  1316. <curve x1="155.41" x2="154.73" x3="154.73" y1="26.18" y2="26.86" y3="27.68"/>
  1317. <curve x1="154.73" x2="155.41" x3="156.23" y1="28.5" y2="29.18" y3="29.18"/>
  1318. <line x="159.23" y="29.18"/>
  1319. <curve x1="160.05" x2="160.73" x3="160.73" y1="29.18" y2="28.5" y3="27.68"/>
  1320. <curve x1="160.73" x2="160.05" x3="159.23" y1="26.86" y2="26.18" y3="26.18"/>
  1321. <close/>
  1322. <move x="2.17" y="27.18"/>
  1323. <line x="5.17" y="27.18"/>
  1324. <curve x1="5.46" x2="5.67" x3="5.67" y1="27.18" y2="27.4" y3="27.68"/>
  1325. <curve x1="5.67" x2="5.46" x3="5.17" y1="27.97" y2="28.18" y3="28.18"/>
  1326. <line x="2.17" y="28.18"/>
  1327. <curve x1="1.88" x2="1.67" x3="1.67" y1="28.18" y2="27.97" y3="27.68"/>
  1328. <curve x1="1.67" x2="1.88" x3="2.17" y1="27.4" y2="27.18" y3="27.18"/>
  1329. <close/>
  1330. <move x="156.23" y="27.18"/>
  1331. <line x="159.23" y="27.18"/>
  1332. <curve x1="159.52" x2="159.73" x3="159.73" y1="27.18" y2="27.4" y3="27.68"/>
  1333. <curve x1="159.73" x2="159.52" x3="159.23" y1="27.97" y2="28.18" y3="28.18"/>
  1334. <line x="156.23" y="28.18"/>
  1335. <curve x1="155.94" x2="155.73" x3="155.73" y1="28.18" y2="27.97" y3="27.68"/>
  1336. <curve x1="155.73" x2="155.94" x3="156.23" y1="27.4" y2="27.18" y3="27.18"/>
  1337. <close/>
  1338. </path>
  1339. <fill/>
  1340. </foreground>
  1341. </shape>
  1342. <shape aspect="variable" h="15.95" name="CAT5e Rack Mount Patch Panel 24 ports" strokewidth="inherit" w="161.93">
  1343. <connections/>
  1344. <background>
  1345. <save/>
  1346. <path>
  1347. <move x="0" y="0"/>
  1348. <line x="0" y="15.95"/>
  1349. <line x="161.93" y="15.95"/>
  1350. <line x="161.93" y="0"/>
  1351. <close/>
  1352. <move x="2.17" y="2.35"/>
  1353. <line x="5.17" y="2.35"/>
  1354. <curve x1="5.46" x2="5.67" x3="5.67" y1="2.35" y2="2.56" y3="2.85"/>
  1355. <line x="5.67" y="2.86"/>
  1356. <curve x1="5.67" x2="5.46" x3="5.17" y1="3.15" y2="3.36" y3="3.36"/>
  1357. <line x="2.17" y="3.36"/>
  1358. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.36" y2="3.15" y3="2.86"/>
  1359. <line x="1.67" y="2.85"/>
  1360. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.56" y2="2.35" y3="2.35"/>
  1361. <close/>
  1362. <move x="8.51" y="2.35"/>
  1363. <line x="152.23" y="2.35"/>
  1364. <curve x1="152.33" x2="152.4" x3="152.4" y1="2.35" y2="2.41" y3="2.52"/>
  1365. <line x="152.4" y="3.53"/>
  1366. <curve x1="152.4" x2="152.33" x3="152.23" y1="3.63" y2="3.7" y3="3.7"/>
  1367. <line x="8.51" y="3.7"/>
  1368. <curve x1="8.4" x2="8.34" x3="8.34" y1="3.7" y2="3.63" y3="3.53"/>
  1369. <line x="8.34" y="2.52"/>
  1370. <curve x1="8.34" x2="8.4" x3="8.51" y1="2.41" y2="2.35" y3="2.35"/>
  1371. <close/>
  1372. <move x="156.23" y="2.35"/>
  1373. <line x="159.23" y="2.35"/>
  1374. <curve x1="159.52" x2="159.73" x3="159.73" y1="2.35" y2="2.56" y3="2.85"/>
  1375. <line x="159.73" y="2.86"/>
  1376. <curve x1="159.73" x2="159.52" x3="159.23" y1="3.15" y2="3.36" y3="3.36"/>
  1377. <line x="156.23" y="3.36"/>
  1378. <curve x1="155.94" x2="155.73" x3="155.73" y1="3.36" y2="3.15" y3="2.86"/>
  1379. <line x="155.73" y="2.85"/>
  1380. <curve x1="155.73" x2="155.94" x3="156.23" y1="2.56" y2="2.35" y3="2.35"/>
  1381. <close/>
  1382. <move x="2.17" y="12.44"/>
  1383. <line x="5.17" y="12.44"/>
  1384. <curve x1="5.46" x2="5.67" x3="5.67" y1="12.44" y2="12.65" y3="12.94"/>
  1385. <line x="5.67" y="12.95"/>
  1386. <curve x1="5.67" x2="5.46" x3="5.17" y1="13.24" y2="13.45" y3="13.45"/>
  1387. <line x="2.17" y="13.45"/>
  1388. <curve x1="1.88" x2="1.67" x3="1.67" y1="13.45" y2="13.24" y3="12.95"/>
  1389. <line x="1.67" y="12.94"/>
  1390. <curve x1="1.67" x2="1.88" x3="2.17" y1="12.65" y2="12.44" y3="12.44"/>
  1391. <close/>
  1392. <move x="156.23" y="12.44"/>
  1393. <line x="159.23" y="12.44"/>
  1394. <curve x1="159.52" x2="159.73" x3="159.73" y1="12.44" y2="12.65" y3="12.94"/>
  1395. <line x="159.73" y="12.95"/>
  1396. <curve x1="159.73" x2="159.52" x3="159.23" y1="13.24" y2="13.45" y3="13.45"/>
  1397. <line x="156.23" y="13.45"/>
  1398. <curve x1="155.94" x2="155.73" x3="155.73" y1="13.45" y2="13.24" y3="12.95"/>
  1399. <line x="155.73" y="12.94"/>
  1400. <curve x1="155.73" x2="155.94" x3="156.23" y1="12.65" y2="12.44" y3="12.44"/>
  1401. <close/>
  1402. </path>
  1403. </background>
  1404. <foreground>
  1405. <fill/>
  1406. <fillcolor color="#000000"/>
  1407. <strokewidth width="1"/>
  1408. <linejoin join="miter"/>
  1409. <linecap cap="butt"/>
  1410. <miterlimit limit="4"/>
  1411. <dashpattern pattern="none"/>
  1412. <dashed dashed="1"/>
  1413. <alpha alpha="1"/>
  1414. <strokealpha alpha="1"/>
  1415. <fillalpha alpha="0.644"/>
  1416. <fontfamily family="sans-serif"/>
  1417. <fontstyle style="0"/>
  1418. <path>
  1419. <move x="0" y="0"/>
  1420. <curve x1="0" x2="0" x3="0" y1="5.32" y2="10.63" y3="15.95"/>
  1421. <line x="161.93" y="15.95"/>
  1422. <line x="161.93" y="0"/>
  1423. <close/>
  1424. <move x="1" y="1"/>
  1425. <line x="160.93" y="1"/>
  1426. <line x="160.93" y="14.95"/>
  1427. <line x="1" y="14.95"/>
  1428. <line x="1" y="13.88"/>
  1429. <curve x1="1.28" x2="1.69" x3="2.17" y1="14.23" y2="14.45" y3="14.45"/>
  1430. <line x="5.17" y="14.45"/>
  1431. <curve x1="5.99" x2="6.67" x3="6.67" y1="14.45" y2="13.78" y3="12.95"/>
  1432. <line x="6.67" y="12.94"/>
  1433. <curve x1="6.67" x2="5.99" x3="5.17" y1="12.11" y2="11.44" y3="11.44"/>
  1434. <line x="2.17" y="11.44"/>
  1435. <curve x1="1.69" x2="1.28" x3="1" y1="11.44" y2="11.66" y3="12.01"/>
  1436. <line x="1" y="3.79"/>
  1437. <curve x1="1.28" x2="1.69" x3="2.17" y1="4.14" y2="4.36" y3="4.36"/>
  1438. <line x="5.17" y="4.36"/>
  1439. <curve x1="5.99" x2="6.67" x3="6.67" y1="4.36" y2="3.69" y3="2.86"/>
  1440. <line x="6.67" y="2.85"/>
  1441. <curve x1="6.67" x2="5.99" x3="5.17" y1="2.02" y2="1.35" y3="1.35"/>
  1442. <line x="2.17" y="1.35"/>
  1443. <curve x1="1.69" x2="1.28" x3="1" y1="1.35" y2="1.57" y3="1.92"/>
  1444. <close/>
  1445. <move x="8.51" y="1.35"/>
  1446. <curve x1="7.87" x2="7.34" x3="7.34" y1="1.35" y2="1.88" y3="2.52"/>
  1447. <line x="7.34" y="3.53"/>
  1448. <curve x1="7.34" x2="7.87" x3="8.51" y1="4.17" y2="4.7" y3="4.7"/>
  1449. <line x="152.23" y="4.7"/>
  1450. <curve x1="152.87" x2="153.4" x3="153.4" y1="4.7" y2="4.17" y3="3.53"/>
  1451. <line x="153.4" y="2.52"/>
  1452. <curve x1="153.4" x2="152.87" x3="152.23" y1="1.88" y2="1.35" y3="1.35"/>
  1453. <close/>
  1454. <move x="156.23" y="1.35"/>
  1455. <curve x1="155.41" x2="154.73" x3="154.73" y1="1.35" y2="2.02" y3="2.85"/>
  1456. <line x="154.73" y="2.86"/>
  1457. <curve x1="154.73" x2="155.41" x3="156.23" y1="3.69" y2="4.36" y3="4.36"/>
  1458. <line x="159.23" y="4.36"/>
  1459. <curve x1="160.05" x2="160.73" x3="160.73" y1="4.36" y2="3.69" y3="2.86"/>
  1460. <line x="160.73" y="2.85"/>
  1461. <curve x1="160.73" x2="160.05" x3="159.23" y1="2.02" y2="1.35" y3="1.35"/>
  1462. <close/>
  1463. <move x="2.17" y="2.35"/>
  1464. <line x="5.17" y="2.35"/>
  1465. <curve x1="5.46" x2="5.67" x3="5.67" y1="2.35" y2="2.56" y3="2.85"/>
  1466. <line x="5.67" y="2.86"/>
  1467. <curve x1="5.67" x2="5.46" x3="5.17" y1="3.15" y2="3.36" y3="3.36"/>
  1468. <line x="2.17" y="3.36"/>
  1469. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.36" y2="3.15" y3="2.86"/>
  1470. <line x="1.67" y="2.85"/>
  1471. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.56" y2="2.35" y3="2.35"/>
  1472. <close/>
  1473. <move x="8.51" y="2.35"/>
  1474. <line x="152.23" y="2.35"/>
  1475. <curve x1="152.33" x2="152.4" x3="152.4" y1="2.35" y2="2.41" y3="2.52"/>
  1476. <line x="152.4" y="3.53"/>
  1477. <curve x1="152.4" x2="152.33" x3="152.23" y1="3.63" y2="3.7" y3="3.7"/>
  1478. <line x="8.51" y="3.7"/>
  1479. <curve x1="8.4" x2="8.34" x3="8.34" y1="3.7" y2="3.63" y3="3.53"/>
  1480. <line x="8.34" y="2.52"/>
  1481. <curve x1="8.34" x2="8.4" x3="8.51" y1="2.41" y2="2.35" y3="2.35"/>
  1482. <close/>
  1483. <move x="156.23" y="2.35"/>
  1484. <line x="159.23" y="2.35"/>
  1485. <curve x1="159.52" x2="159.73" x3="159.73" y1="2.35" y2="2.56" y3="2.85"/>
  1486. <line x="159.73" y="2.86"/>
  1487. <curve x1="159.73" x2="159.52" x3="159.23" y1="3.15" y2="3.36" y3="3.36"/>
  1488. <line x="156.23" y="3.36"/>
  1489. <curve x1="155.94" x2="155.73" x3="155.73" y1="3.36" y2="3.15" y3="2.86"/>
  1490. <line x="155.73" y="2.85"/>
  1491. <curve x1="155.73" x2="155.94" x3="156.23" y1="2.56" y2="2.35" y3="2.35"/>
  1492. <close/>
  1493. <move x="12.84" y="5.88"/>
  1494. <line x="12.84" y="8.91"/>
  1495. <line x="13.84" y="8.91"/>
  1496. <line x="13.84" y="5.88"/>
  1497. <close/>
  1498. <move x="18.84" y="5.88"/>
  1499. <line x="18.84" y="8.91"/>
  1500. <line x="19.84" y="8.91"/>
  1501. <line x="19.84" y="5.88"/>
  1502. <close/>
  1503. <move x="24.84" y="5.88"/>
  1504. <line x="24.84" y="8.91"/>
  1505. <line x="25.84" y="8.91"/>
  1506. <line x="25.84" y="5.88"/>
  1507. <close/>
  1508. <move x="31.18" y="5.88"/>
  1509. <line x="31.18" y="8.91"/>
  1510. <line x="32.18" y="8.91"/>
  1511. <line x="32.18" y="5.88"/>
  1512. <close/>
  1513. <move x="37.18" y="5.88"/>
  1514. <line x="37.18" y="8.91"/>
  1515. <line x="38.18" y="8.91"/>
  1516. <line x="38.18" y="5.88"/>
  1517. <close/>
  1518. <move x="43.18" y="5.88"/>
  1519. <line x="43.18" y="8.91"/>
  1520. <line x="44.19" y="8.91"/>
  1521. <line x="44.19" y="5.88"/>
  1522. <close/>
  1523. <move x="49.19" y="5.88"/>
  1524. <line x="49.19" y="8.91"/>
  1525. <line x="50.19" y="8.91"/>
  1526. <line x="50.19" y="5.88"/>
  1527. <close/>
  1528. <move x="55.52" y="5.88"/>
  1529. <line x="55.52" y="8.91"/>
  1530. <line x="56.52" y="8.91"/>
  1531. <line x="56.52" y="5.88"/>
  1532. <close/>
  1533. <move x="61.53" y="5.88"/>
  1534. <line x="61.53" y="8.91"/>
  1535. <line x="62.53" y="8.91"/>
  1536. <line x="62.53" y="5.88"/>
  1537. <close/>
  1538. <move x="67.19" y="5.88"/>
  1539. <line x="67.19" y="8.91"/>
  1540. <line x="68.2" y="8.91"/>
  1541. <line x="68.2" y="5.88"/>
  1542. <close/>
  1543. <move x="73.53" y="5.88"/>
  1544. <line x="73.53" y="8.91"/>
  1545. <line x="74.53" y="8.91"/>
  1546. <line x="74.53" y="5.88"/>
  1547. <close/>
  1548. <move x="79.53" y="5.88"/>
  1549. <line x="79.53" y="8.91"/>
  1550. <line x="80.53" y="8.91"/>
  1551. <line x="80.53" y="5.88"/>
  1552. <close/>
  1553. <move x="85.54" y="5.88"/>
  1554. <line x="85.54" y="8.91"/>
  1555. <line x="86.54" y="8.91"/>
  1556. <line x="86.54" y="5.88"/>
  1557. <close/>
  1558. <move x="91.87" y="5.88"/>
  1559. <line x="91.87" y="8.91"/>
  1560. <line x="92.87" y="8.91"/>
  1561. <line x="92.87" y="5.88"/>
  1562. <close/>
  1563. <move x="97.87" y="5.88"/>
  1564. <line x="97.87" y="8.91"/>
  1565. <line x="98.88" y="8.91"/>
  1566. <line x="98.88" y="5.88"/>
  1567. <close/>
  1568. <move x="103.88" y="5.88"/>
  1569. <line x="103.88" y="8.91"/>
  1570. <line x="104.88" y="8.91"/>
  1571. <line x="104.88" y="5.88"/>
  1572. <close/>
  1573. <move x="109.88" y="5.88"/>
  1574. <line x="109.88" y="8.91"/>
  1575. <line x="110.88" y="8.91"/>
  1576. <line x="110.88" y="5.88"/>
  1577. <close/>
  1578. <move x="116.21" y="5.88"/>
  1579. <line x="116.21" y="8.91"/>
  1580. <line x="117.21" y="8.91"/>
  1581. <line x="117.21" y="5.88"/>
  1582. <close/>
  1583. <move x="122.22" y="5.88"/>
  1584. <line x="122.22" y="8.91"/>
  1585. <line x="123.22" y="8.91"/>
  1586. <line x="123.22" y="5.88"/>
  1587. <close/>
  1588. <move x="127.89" y="5.88"/>
  1589. <line x="127.89" y="8.91"/>
  1590. <line x="128.89" y="8.91"/>
  1591. <line x="128.89" y="5.88"/>
  1592. <close/>
  1593. <move x="134.22" y="5.88"/>
  1594. <line x="134.22" y="8.91"/>
  1595. <line x="135.22" y="8.91"/>
  1596. <line x="135.22" y="5.88"/>
  1597. <close/>
  1598. <move x="140.22" y="5.88"/>
  1599. <line x="140.22" y="8.91"/>
  1600. <line x="141.22" y="8.91"/>
  1601. <line x="141.22" y="5.88"/>
  1602. <close/>
  1603. <move x="146.23" y="5.88"/>
  1604. <line x="146.23" y="8.91"/>
  1605. <line x="147.23" y="8.91"/>
  1606. <line x="147.23" y="5.88"/>
  1607. <close/>
  1608. <move x="156.23" y="11.44"/>
  1609. <curve x1="155.41" x2="154.73" x3="154.73" y1="11.44" y2="12.11" y3="12.94"/>
  1610. <line x="154.73" y="12.95"/>
  1611. <curve x1="154.73" x2="155.41" x3="156.23" y1="13.78" y2="14.45" y3="14.45"/>
  1612. <line x="159.23" y="14.45"/>
  1613. <curve x1="160.05" x2="160.73" x3="160.73" y1="14.45" y2="13.78" y3="12.95"/>
  1614. <line x="160.73" y="12.94"/>
  1615. <curve x1="160.73" x2="160.05" x3="159.23" y1="12.11" y2="11.44" y3="11.44"/>
  1616. <close/>
  1617. <move x="2.17" y="12.44"/>
  1618. <line x="5.17" y="12.44"/>
  1619. <curve x1="5.46" x2="5.67" x3="5.67" y1="12.44" y2="12.65" y3="12.94"/>
  1620. <line x="5.67" y="12.95"/>
  1621. <curve x1="5.67" x2="5.46" x3="5.17" y1="13.24" y2="13.45" y3="13.45"/>
  1622. <line x="2.17" y="13.45"/>
  1623. <curve x1="1.88" x2="1.67" x3="1.67" y1="13.45" y2="13.24" y3="12.95"/>
  1624. <line x="1.67" y="12.94"/>
  1625. <curve x1="1.67" x2="1.88" x3="2.17" y1="12.65" y2="12.44" y3="12.44"/>
  1626. <close/>
  1627. <move x="156.23" y="12.44"/>
  1628. <line x="159.23" y="12.44"/>
  1629. <curve x1="159.52" x2="159.73" x3="159.73" y1="12.44" y2="12.65" y3="12.94"/>
  1630. <line x="159.73" y="12.95"/>
  1631. <curve x1="159.73" x2="159.52" x3="159.23" y1="13.24" y2="13.45" y3="13.45"/>
  1632. <line x="156.23" y="13.45"/>
  1633. <curve x1="155.94" x2="155.73" x3="155.73" y1="13.45" y2="13.24" y3="12.95"/>
  1634. <line x="155.73" y="12.94"/>
  1635. <curve x1="155.73" x2="155.94" x3="156.23" y1="12.65" y2="12.44" y3="12.44"/>
  1636. <close/>
  1637. </path>
  1638. <fill/>
  1639. <restore/>
  1640. <rect/>
  1641. <stroke/>
  1642. <fillcolor color="#000000"/>
  1643. <fillalpha alpha="0.644"/>
  1644. <rect h="3.03" w="144.06" x="8.17" y="5.88"/>
  1645. <fill/>
  1646. </foreground>
  1647. </shape>
  1648. <shape aspect="variable" h="60.2" name="CAT5e Rack Mount Patch Panel 96 ports" strokewidth="inherit" w="161.9">
  1649. <connections/>
  1650. <background>
  1651. <save/>
  1652. <path>
  1653. <move x="0" y="0"/>
  1654. <line x="0" y="0.5"/>
  1655. <line x="0" y="60.2"/>
  1656. <line x="161.9" y="60.2"/>
  1657. <line x="161.9" y="0"/>
  1658. <close/>
  1659. <move x="8.5" y="2.33"/>
  1660. <line x="152.2" y="2.33"/>
  1661. <curve x1="152.3" x2="152.37" x3="152.37" y1="2.33" y2="2.4" y3="2.5"/>
  1662. <line x="152.37" y="3.49"/>
  1663. <curve x1="152.37" x2="152.3" x3="152.2" y1="3.6" y2="3.66" y3="3.66"/>
  1664. <line x="8.5" y="3.66"/>
  1665. <curve x1="8.4" x2="8.33" x3="8.33" y1="3.66" y2="3.6" y3="3.49"/>
  1666. <line x="8.33" y="2.5"/>
  1667. <curve x1="8.33" x2="8.4" x3="8.5" y1="2.4" y2="2.33" y3="2.33"/>
  1668. <close/>
  1669. <move x="2.17" y="2.33"/>
  1670. <line x="5.17" y="2.33"/>
  1671. <curve x1="5.45" x2="5.67" x3="5.67" y1="2.33" y2="2.55" y3="2.83"/>
  1672. <curve x1="5.67" x2="5.45" x3="5.17" y1="3.11" y2="3.33" y3="3.33"/>
  1673. <line x="2.17" y="3.33"/>
  1674. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.33" y2="3.11" y3="2.83"/>
  1675. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.55" y2="2.33" y3="2.33"/>
  1676. <close/>
  1677. <move x="2.17" y="27.14"/>
  1678. <line x="5.17" y="27.14"/>
  1679. <curve x1="5.45" x2="5.67" x3="5.67" y1="27.14" y2="27.35" y3="27.64"/>
  1680. <curve x1="5.67" x2="5.45" x3="5.17" y1="27.92" y2="28.13" y3="28.13"/>
  1681. <line x="2.17" y="28.13"/>
  1682. <curve x1="1.88" x2="1.67" x3="1.67" y1="28.13" y2="27.92" y3="27.64"/>
  1683. <curve x1="1.67" x2="1.88" x3="2.17" y1="27.35" y2="27.14" y3="27.14"/>
  1684. <close/>
  1685. <move x="155.7" y="2.83"/>
  1686. <curve x1="155.7" x2="155.91" x3="156.2" y1="2.55" y2="2.33" y3="2.33"/>
  1687. <line x="159.2" y="2.33"/>
  1688. <curve x1="159.49" x2="159.7" x3="159.7" y1="2.33" y2="2.55" y3="2.83"/>
  1689. <curve x1="159.7" x2="159.49" x3="159.2" y1="3.11" y2="3.33" y3="3.33"/>
  1690. <line x="156.2" y="3.33"/>
  1691. <curve x1="155.91" x2="155.7" x3="155.7" y1="3.33" y2="3.11" y3="2.83"/>
  1692. <close/>
  1693. <move x="156.2" y="27.14"/>
  1694. <line x="159.2" y="27.14"/>
  1695. <curve x1="159.49" x2="159.7" x3="159.7" y1="27.14" y2="27.35" y3="27.64"/>
  1696. <curve x1="159.7" x2="159.49" x3="159.2" y1="27.92" y2="28.13" y3="28.13"/>
  1697. <line x="156.2" y="28.13"/>
  1698. <curve x1="155.91" x2="155.7" x3="155.7" y1="28.13" y2="27.92" y3="27.64"/>
  1699. <curve x1="155.7" x2="155.91" x3="156.2" y1="27.35" y2="27.14" y3="27.14"/>
  1700. <close/>
  1701. <move x="8.5" y="17.15"/>
  1702. <line x="152.2" y="17.15"/>
  1703. <curve x1="152.3" x2="152.37" x3="152.37" y1="17.15" y2="17.22" y3="17.32"/>
  1704. <line x="152.37" y="18.31"/>
  1705. <curve x1="152.37" x2="152.3" x3="152.2" y1="18.41" y2="18.48" y3="18.48"/>
  1706. <line x="8.5" y="18.48"/>
  1707. <curve x1="8.4" x2="8.33" x3="8.33" y1="18.48" y2="18.41" y3="18.31"/>
  1708. <line x="8.33" y="17.32"/>
  1709. <curve x1="8.33" x2="8.4" x3="8.5" y1="17.22" y2="17.15" y3="17.15"/>
  1710. <close/>
  1711. <move x="2.17" y="31.93"/>
  1712. <line x="5.17" y="31.93"/>
  1713. <curve x1="5.45" x2="5.67" x3="5.67" y1="31.93" y2="32.15" y3="32.43"/>
  1714. <curve x1="5.67" x2="5.45" x3="5.17" y1="32.72" y2="32.93" y3="32.93"/>
  1715. <line x="2.17" y="32.93"/>
  1716. <curve x1="1.88" x2="1.67" x3="1.67" y1="32.93" y2="32.72" y3="32.43"/>
  1717. <curve x1="1.67" x2="1.88" x3="2.17" y1="32.15" y2="31.93" y3="31.93"/>
  1718. <close/>
  1719. <move x="2.17" y="56.74"/>
  1720. <line x="5.17" y="56.74"/>
  1721. <curve x1="5.45" x2="5.67" x3="5.67" y1="56.74" y2="56.95" y3="57.24"/>
  1722. <curve x1="5.67" x2="5.45" x3="5.17" y1="57.52" y2="57.73" y3="57.73"/>
  1723. <line x="2.17" y="57.73"/>
  1724. <curve x1="1.88" x2="1.67" x3="1.67" y1="57.73" y2="57.52" y3="57.24"/>
  1725. <curve x1="1.67" x2="1.88" x3="2.17" y1="56.95" y2="56.74" y3="56.74"/>
  1726. <close/>
  1727. <move x="156.2" y="56.74"/>
  1728. <line x="159.2" y="56.74"/>
  1729. <curve x1="159.49" x2="159.7" x3="159.7" y1="56.74" y2="56.95" y3="57.24"/>
  1730. <curve x1="159.7" x2="159.49" x3="159.2" y1="57.52" y2="57.73" y3="57.73"/>
  1731. <line x="156.2" y="57.73"/>
  1732. <curve x1="155.91" x2="155.7" x3="155.7" y1="57.73" y2="57.52" y3="57.24"/>
  1733. <curve x1="155.7" x2="155.91" x3="156.2" y1="56.95" y2="56.74" y3="56.74"/>
  1734. <close/>
  1735. <move x="156.2" y="31.93"/>
  1736. <line x="159.2" y="31.93"/>
  1737. <curve x1="159.49" x2="159.7" x3="159.7" y1="31.93" y2="32.15" y3="32.43"/>
  1738. <curve x1="159.7" x2="159.49" x3="159.2" y1="32.72" y2="32.93" y3="32.93"/>
  1739. <line x="156.2" y="32.93"/>
  1740. <curve x1="155.91" x2="155.7" x3="155.7" y1="32.93" y2="32.72" y3="32.43"/>
  1741. <curve x1="155.7" x2="155.91" x3="156.2" y1="32.15" y2="31.93" y3="31.93"/>
  1742. <close/>
  1743. <move x="8.5" y="31.93"/>
  1744. <line x="152.2" y="31.93"/>
  1745. <curve x1="152.3" x2="152.37" x3="152.37" y1="31.93" y2="32" y3="32.1"/>
  1746. <line x="152.37" y="33.09"/>
  1747. <curve x1="152.37" x2="152.3" x3="152.2" y1="33.19" y2="33.26" y3="33.26"/>
  1748. <line x="8.5" y="33.26"/>
  1749. <curve x1="8.4" x2="8.33" x3="8.33" y1="33.26" y2="33.19" y3="33.09"/>
  1750. <line x="8.33" y="32.1"/>
  1751. <curve x1="8.33" x2="8.4" x3="8.5" y1="32" y2="31.93" y3="31.93"/>
  1752. <close/>
  1753. <move x="8.5" y="46.75"/>
  1754. <line x="152.2" y="46.75"/>
  1755. <curve x1="152.3" x2="152.37" x3="152.37" y1="46.75" y2="46.82" y3="46.92"/>
  1756. <line x="152.37" y="47.91"/>
  1757. <curve x1="152.37" x2="152.3" x3="152.2" y1="48.01" y2="48.08" y3="48.08"/>
  1758. <line x="8.5" y="48.08"/>
  1759. <curve x1="8.4" x2="8.33" x3="8.33" y1="48.08" y2="48.01" y3="47.91"/>
  1760. <line x="8.33" y="46.92"/>
  1761. <curve x1="8.33" x2="8.4" x3="8.5" y1="46.82" y2="46.75" y3="46.75"/>
  1762. <close/>
  1763. </path>
  1764. </background>
  1765. <foreground>
  1766. <fill/>
  1767. <fillcolor color="#000000"/>
  1768. <strokewidth width="1"/>
  1769. <linejoin join="miter"/>
  1770. <linecap cap="butt"/>
  1771. <miterlimit limit="4"/>
  1772. <dashpattern pattern="none"/>
  1773. <dashed dashed="1"/>
  1774. <alpha alpha="1"/>
  1775. <strokealpha alpha="1"/>
  1776. <fillalpha alpha="0.644"/>
  1777. <fontfamily family="sans-serif"/>
  1778. <fontstyle style="0"/>
  1779. <path>
  1780. <move x="0" y="0"/>
  1781. <line x="0" y="60.2"/>
  1782. <line x="161.9" y="60.2"/>
  1783. <line x="161.9" y="0"/>
  1784. <close/>
  1785. <move x="1" y="1"/>
  1786. <line x="160.9" y="1"/>
  1787. <line x="160.9" y="59.2"/>
  1788. <line x="1" y="59.2"/>
  1789. <line x="1" y="58.16"/>
  1790. <curve x1="1.28" x2="1.69" x3="2.17" y1="58.51" y2="58.73" y3="58.73"/>
  1791. <line x="5.17" y="58.73"/>
  1792. <curve x1="5.99" x2="6.67" x3="6.67" y1="58.73" y2="58.06" y3="57.24"/>
  1793. <curve x1="6.67" x2="5.99" x3="5.17" y1="56.41" y2="55.74" y3="55.74"/>
  1794. <line x="2.17" y="55.74"/>
  1795. <curve x1="1.69" x2="1.28" x3="1" y1="55.74" y2="55.96" y3="56.31"/>
  1796. <line x="1" y="33.36"/>
  1797. <curve x1="1.28" x2="1.69" x3="2.17" y1="33.7" y2="33.93" y3="33.93"/>
  1798. <line x="5.17" y="33.93"/>
  1799. <curve x1="5.99" x2="6.67" x3="6.67" y1="33.93" y2="33.25" y3="32.43"/>
  1800. <curve x1="6.67" x2="5.99" x3="5.17" y1="31.61" y2="30.93" y3="30.93"/>
  1801. <line x="2.17" y="30.93"/>
  1802. <curve x1="1.69" x2="1.28" x3="1" y1="30.93" y2="31.16" y3="31.5"/>
  1803. <line x="1" y="28.56"/>
  1804. <curve x1="1.28" x2="1.69" x3="2.17" y1="28.91" y2="29.13" y3="29.13"/>
  1805. <line x="5.17" y="29.13"/>
  1806. <curve x1="5.99" x2="6.67" x3="6.67" y1="29.13" y2="28.46" y3="27.64"/>
  1807. <curve x1="6.67" x2="5.99" x3="5.17" y1="26.81" y2="26.14" y3="26.14"/>
  1808. <line x="2.17" y="26.14"/>
  1809. <curve x1="1.69" x2="1.28" x3="1" y1="26.14" y2="26.36" y3="26.71"/>
  1810. <line x="1" y="3.76"/>
  1811. <curve x1="1.28" x2="1.69" x3="2.17" y1="4.1" y2="4.33" y3="4.33"/>
  1812. <line x="5.17" y="4.33"/>
  1813. <curve x1="5.99" x2="6.67" x3="6.67" y1="4.33" y2="3.65" y3="2.83"/>
  1814. <curve x1="6.67" x2="5.99" x3="5.17" y1="2.01" y2="1.33" y3="1.33"/>
  1815. <line x="2.17" y="1.33"/>
  1816. <curve x1="1.69" x2="1.28" x3="1" y1="1.33" y2="1.56" y3="1.9"/>
  1817. <close/>
  1818. <move x="8.5" y="1.33"/>
  1819. <curve x1="7.86" x2="7.33" x3="7.33" y1="1.33" y2="1.86" y3="2.5"/>
  1820. <line x="7.33" y="3.49"/>
  1821. <curve x1="7.33" x2="7.86" x3="8.5" y1="4.13" y2="4.66" y3="4.66"/>
  1822. <line x="152.2" y="4.66"/>
  1823. <curve x1="152.83" x2="153.37" x3="153.37" y1="4.66" y2="4.13" y3="3.49"/>
  1824. <line x="153.37" y="2.5"/>
  1825. <curve x1="153.37" x2="152.83" x3="152.2" y1="1.86" y2="1.33" y3="1.33"/>
  1826. <close/>
  1827. <move x="156.2" y="1.33"/>
  1828. <curve x1="155.38" x2="154.7" x3="154.7" y1="1.33" y2="2.01" y3="2.83"/>
  1829. <curve x1="154.7" x2="155.38" x3="156.2" y1="3.65" y2="4.33" y3="4.33"/>
  1830. <line x="159.2" y="4.33"/>
  1831. <curve x1="160.02" x2="160.7" x3="160.7" y1="4.33" y2="3.65" y3="2.83"/>
  1832. <curve x1="160.7" x2="160.02" x3="159.2" y1="2.01" y2="1.33" y3="1.33"/>
  1833. <close/>
  1834. <move x="2.17" y="2.33"/>
  1835. <line x="5.17" y="2.33"/>
  1836. <curve x1="5.45" x2="5.67" x3="5.67" y1="2.33" y2="2.55" y3="2.83"/>
  1837. <curve x1="5.67" x2="5.45" x3="5.17" y1="3.11" y2="3.33" y3="3.33"/>
  1838. <line x="2.17" y="3.33"/>
  1839. <curve x1="1.88" x2="1.67" x3="1.67" y1="3.33" y2="3.11" y3="2.83"/>
  1840. <curve x1="1.67" x2="1.88" x3="2.17" y1="2.55" y2="2.33" y3="2.33"/>
  1841. <close/>
  1842. <move x="8.5" y="2.33"/>
  1843. <line x="152.2" y="2.33"/>
  1844. <curve x1="152.3" x2="152.37" x3="152.37" y1="2.33" y2="2.4" y3="2.5"/>
  1845. <line x="152.37" y="3.49"/>
  1846. <curve x1="152.37" x2="152.3" x3="152.2" y1="3.6" y2="3.66" y3="3.66"/>
  1847. <line x="8.5" y="3.66"/>
  1848. <curve x1="8.4" x2="8.33" x3="8.33" y1="3.66" y2="3.6" y3="3.49"/>
  1849. <line x="8.33" y="2.5"/>
  1850. <curve x1="8.33" x2="8.4" x3="8.5" y1="2.4" y2="2.33" y3="2.33"/>
  1851. <close/>
  1852. <move x="156.2" y="2.33"/>
  1853. <line x="159.2" y="2.33"/>
  1854. <curve x1="159.49" x2="159.7" x3="159.7" y1="2.33" y2="2.55" y3="2.83"/>
  1855. <curve x1="159.7" x2="159.49" x3="159.2" y1="3.11" y2="3.33" y3="3.33"/>
  1856. <line x="156.2" y="3.33"/>
  1857. <curve x1="155.91" x2="155.7" x3="155.7" y1="3.33" y2="3.11" y3="2.83"/>
  1858. <curve x1="155.7" x2="155.91" x3="156.2" y1="2.55" y2="2.33" y3="2.33"/>
  1859. <close/>
  1860. <move x="12.84" y="5.83"/>
  1861. <line x="12.84" y="8.82"/>
  1862. <line x="13.84" y="8.82"/>
  1863. <line x="13.84" y="5.83"/>
  1864. <close/>
  1865. <move x="18.84" y="5.83"/>
  1866. <line x="18.84" y="8.82"/>
  1867. <line x="19.84" y="8.82"/>
  1868. <line x="19.84" y="5.83"/>
  1869. <close/>
  1870. <move x="24.84" y="5.83"/>
  1871. <line x="24.84" y="8.82"/>
  1872. <line x="25.84" y="8.82"/>
  1873. <line x="25.84" y="5.83"/>
  1874. <close/>
  1875. <move x="31.17" y="5.83"/>
  1876. <line x="31.17" y="8.82"/>
  1877. <line x="32.17" y="8.82"/>
  1878. <line x="32.17" y="5.83"/>
  1879. <close/>
  1880. <move x="37.17" y="5.83"/>
  1881. <line x="37.17" y="8.82"/>
  1882. <line x="38.17" y="8.82"/>
  1883. <line x="38.17" y="5.83"/>
  1884. <close/>
  1885. <move x="43.18" y="5.83"/>
  1886. <line x="43.18" y="8.82"/>
  1887. <line x="44.18" y="8.82"/>
  1888. <line x="44.18" y="5.83"/>
  1889. <close/>
  1890. <move x="49.18" y="5.83"/>
  1891. <line x="49.18" y="8.82"/>
  1892. <line x="50.18" y="8.82"/>
  1893. <line x="50.18" y="5.83"/>
  1894. <close/>
  1895. <move x="55.51" y="5.83"/>
  1896. <line x="55.51" y="8.82"/>
  1897. <line x="56.51" y="8.82"/>
  1898. <line x="56.51" y="5.83"/>
  1899. <close/>
  1900. <move x="61.51" y="5.83"/>
  1901. <line x="61.51" y="8.82"/>
  1902. <line x="62.51" y="8.82"/>
  1903. <line x="62.51" y="5.83"/>
  1904. <close/>
  1905. <move x="67.18" y="5.83"/>
  1906. <line x="67.18" y="8.82"/>
  1907. <line x="68.18" y="8.82"/>
  1908. <line x="68.18" y="5.83"/>
  1909. <close/>
  1910. <move x="73.52" y="5.83"/>
  1911. <line x="73.52" y="8.82"/>
  1912. <line x="74.52" y="8.82"/>
  1913. <line x="74.52" y="5.83"/>
  1914. <close/>
  1915. <move x="79.52" y="5.83"/>
  1916. <line x="79.52" y="8.82"/>
  1917. <line x="80.52" y="8.82"/>
  1918. <line x="80.52" y="5.83"/>
  1919. <close/>
  1920. <move x="85.52" y="5.83"/>
  1921. <line x="85.52" y="8.82"/>
  1922. <line x="86.52" y="8.82"/>
  1923. <line x="86.52" y="5.83"/>
  1924. <close/>
  1925. <move x="91.85" y="5.83"/>
  1926. <line x="91.85" y="8.82"/>
  1927. <line x="92.85" y="8.82"/>
  1928. <line x="92.85" y="5.83"/>
  1929. <close/>
  1930. <move x="97.85" y="5.83"/>
  1931. <line x="97.85" y="8.82"/>
  1932. <line x="98.85" y="8.82"/>
  1933. <line x="98.85" y="5.83"/>
  1934. <close/>
  1935. <move x="103.86" y="5.83"/>
  1936. <line x="103.86" y="8.82"/>
  1937. <line x="104.86" y="8.82"/>
  1938. <line x="104.86" y="5.83"/>
  1939. <close/>
  1940. <move x="109.86" y="5.83"/>
  1941. <line x="109.86" y="8.82"/>
  1942. <line x="110.86" y="8.82"/>
  1943. <line x="110.86" y="5.83"/>
  1944. <close/>
  1945. <move x="116.19" y="5.83"/>
  1946. <line x="116.19" y="8.82"/>
  1947. <line x="117.19" y="8.82"/>
  1948. <line x="117.19" y="5.83"/>
  1949. <close/>
  1950. <move x="122.19" y="5.83"/>
  1951. <line x="122.19" y="8.82"/>
  1952. <line x="123.19" y="8.82"/>
  1953. <line x="123.19" y="5.83"/>
  1954. <close/>
  1955. <move x="127.86" y="5.83"/>
  1956. <line x="127.86" y="8.82"/>
  1957. <line x="128.86" y="8.82"/>
  1958. <line x="128.86" y="5.83"/>
  1959. <close/>
  1960. <move x="134.2" y="5.83"/>
  1961. <line x="134.2" y="8.82"/>
  1962. <line x="135.2" y="8.82"/>
  1963. <line x="135.2" y="5.83"/>
  1964. <close/>
  1965. <move x="140.2" y="5.83"/>
  1966. <line x="140.2" y="8.82"/>
  1967. <line x="141.2" y="8.82"/>
  1968. <line x="141.2" y="5.83"/>
  1969. <close/>
  1970. <move x="146.2" y="5.83"/>
  1971. <line x="146.2" y="8.82"/>
  1972. <line x="147.2" y="8.82"/>
  1973. <line x="147.2" y="5.83"/>
  1974. <close/>
  1975. <move x="8.5" y="16.15"/>
  1976. <curve x1="7.86" x2="7.33" x3="7.33" y1="16.15" y2="16.68" y3="17.32"/>
  1977. <line x="7.33" y="18.31"/>
  1978. <curve x1="7.33" x2="7.86" x3="8.5" y1="18.95" y2="19.48" y3="19.48"/>
  1979. <line x="152.2" y="19.48"/>
  1980. <curve x1="152.83" x2="153.37" x3="153.37" y1="19.48" y2="18.95" y3="18.31"/>
  1981. <line x="153.37" y="17.32"/>
  1982. <curve x1="153.37" x2="152.83" x3="152.2" y1="16.68" y2="16.15" y3="16.15"/>
  1983. <close/>
  1984. <move x="8.5" y="17.15"/>
  1985. <line x="152.2" y="17.15"/>
  1986. <curve x1="152.3" x2="152.37" x3="152.37" y1="17.15" y2="17.22" y3="17.32"/>
  1987. <line x="152.37" y="18.31"/>
  1988. <curve x1="152.37" x2="152.3" x3="152.2" y1="18.41" y2="18.48" y3="18.48"/>
  1989. <line x="8.5" y="18.48"/>
  1990. <curve x1="8.4" x2="8.33" x3="8.33" y1="18.48" y2="18.41" y3="18.31"/>
  1991. <line x="8.33" y="17.32"/>
  1992. <curve x1="8.33" x2="8.4" x3="8.5" y1="17.22" y2="17.15" y3="17.15"/>
  1993. <close/>
  1994. <move x="12.84" y="20.64"/>
  1995. <line x="12.84" y="23.64"/>
  1996. <line x="13.84" y="23.64"/>
  1997. <line x="13.84" y="20.64"/>
  1998. <close/>
  1999. <move x="18.84" y="20.64"/>
  2000. <line x="18.84" y="23.64"/>
  2001. <line x="19.84" y="23.64"/>
  2002. <line x="19.84" y="20.64"/>
  2003. <close/>
  2004. <move x="24.84" y="20.64"/>
  2005. <line x="24.84" y="23.64"/>
  2006. <line x="25.84" y="23.64"/>
  2007. <line x="25.84" y="20.64"/>
  2008. <close/>
  2009. <move x="31.17" y="20.64"/>
  2010. <line x="31.17" y="23.64"/>
  2011. <line x="32.17" y="23.64"/>
  2012. <line x="32.17" y="20.64"/>
  2013. <close/>
  2014. <move x="37.17" y="20.64"/>
  2015. <line x="37.17" y="23.64"/>
  2016. <line x="38.17" y="23.64"/>
  2017. <line x="38.17" y="20.64"/>
  2018. <close/>
  2019. <move x="43.18" y="20.64"/>
  2020. <line x="43.18" y="23.64"/>
  2021. <line x="44.18" y="23.64"/>
  2022. <line x="44.18" y="20.64"/>
  2023. <close/>
  2024. <move x="49.18" y="20.64"/>
  2025. <line x="49.18" y="23.64"/>
  2026. <line x="50.18" y="23.64"/>
  2027. <line x="50.18" y="20.64"/>
  2028. <close/>
  2029. <move x="55.51" y="20.64"/>
  2030. <line x="55.51" y="23.64"/>
  2031. <line x="56.51" y="23.64"/>
  2032. <line x="56.51" y="20.64"/>
  2033. <close/>
  2034. <move x="61.51" y="20.64"/>
  2035. <line x="61.51" y="23.64"/>
  2036. <line x="62.51" y="23.64"/>
  2037. <line x="62.51" y="20.64"/>
  2038. <close/>
  2039. <move x="67.18" y="20.64"/>
  2040. <line x="67.18" y="23.64"/>
  2041. <line x="68.18" y="23.64"/>
  2042. <line x="68.18" y="20.64"/>
  2043. <close/>
  2044. <move x="73.52" y="20.64"/>
  2045. <line x="73.52" y="23.64"/>
  2046. <line x="74.52" y="23.64"/>
  2047. <line x="74.52" y="20.64"/>
  2048. <close/>
  2049. <move x="79.52" y="20.64"/>
  2050. <line x="79.52" y="23.64"/>
  2051. <line x="80.52" y="23.64"/>
  2052. <line x="80.52" y="20.64"/>
  2053. <close/>
  2054. <move x="85.52" y="20.64"/>
  2055. <line x="85.52" y="23.64"/>
  2056. <line x="86.52" y="23.64"/>
  2057. <line x="86.52" y="20.64"/>
  2058. <close/>
  2059. <move x="91.85" y="20.64"/>
  2060. <line x="91.85" y="23.64"/>
  2061. <line x="92.85" y="23.64"/>
  2062. <line x="92.85" y="20.64"/>
  2063. <close/>
  2064. <move x="97.85" y="20.64"/>
  2065. <line x="97.85" y="23.64"/>
  2066. <line x="98.85" y="23.64"/>
  2067. <line x="98.85" y="20.64"/>
  2068. <close/>
  2069. <move x="103.86" y="20.64"/>
  2070. <line x="103.86" y="23.64"/>
  2071. <line x="104.86" y="23.64"/>
  2072. <line x="104.86" y="20.64"/>
  2073. <close/>
  2074. <move x="109.86" y="20.64"/>
  2075. <line x="109.86" y="23.64"/>
  2076. <line x="110.86" y="23.64"/>
  2077. <line x="110.86" y="20.64"/>
  2078. <close/>
  2079. <move x="116.19" y="20.64"/>
  2080. <line x="116.19" y="23.64"/>
  2081. <line x="117.19" y="23.64"/>
  2082. <line x="117.19" y="20.64"/>
  2083. <close/>
  2084. <move x="122.19" y="20.64"/>
  2085. <line x="122.19" y="23.64"/>
  2086. <line x="123.19" y="23.64"/>
  2087. <line x="123.19" y="20.64"/>
  2088. <close/>
  2089. <move x="127.86" y="20.64"/>
  2090. <line x="127.86" y="23.64"/>
  2091. <line x="128.86" y="23.64"/>
  2092. <line x="128.86" y="20.64"/>
  2093. <close/>
  2094. <move x="134.2" y="20.64"/>
  2095. <line x="134.2" y="23.64"/>
  2096. <line x="135.2" y="23.64"/>
  2097. <line x="135.2" y="20.64"/>
  2098. <close/>
  2099. <move x="140.2" y="20.64"/>
  2100. <line x="140.2" y="23.64"/>
  2101. <line x="141.2" y="23.64"/>
  2102. <line x="141.2" y="20.64"/>
  2103. <close/>
  2104. <move x="146.2" y="20.64"/>
  2105. <line x="146.2" y="23.64"/>
  2106. <line x="147.2" y="23.64"/>
  2107. <line x="147.2" y="20.64"/>
  2108. <close/>
  2109. <move x="156.2" y="26.14"/>
  2110. <curve x1="155.38" x2="154.7" x3="154.7" y1="26.14" y2="26.81" y3="27.64"/>
  2111. <curve x1="154.7" x2="155.38" x3="156.2" y1="28.46" y2="29.13" y3="29.13"/>
  2112. <line x="159.2" y="29.13"/>
  2113. <curve x1="160.02" x2="160.7" x3="160.7" y1="29.13" y2="28.46" y3="27.64"/>
  2114. <curve x1="160.7" x2="160.02" x3="159.2" y1="26.81" y2="26.14" y3="26.14"/>
  2115. <close/>
  2116. <move x="2.17" y="27.14"/>
  2117. <line x="5.17" y="27.14"/>
  2118. <curve x1="5.45" x2="5.67" x3="5.67" y1="27.14" y2="27.35" y3="27.64"/>
  2119. <curve x1="5.67" x2="5.45" x3="5.17" y1="27.92" y2="28.13" y3="28.13"/>
  2120. <line x="2.17" y="28.13"/>
  2121. <curve x1="1.88" x2="1.67" x3="1.67" y1="28.13" y2="27.92" y3="27.64"/>
  2122. <curve x1="1.67" x2="1.88" x3="2.17" y1="27.35" y2="27.14" y3="27.14"/>
  2123. <close/>
  2124. <move x="156.2" y="27.14"/>
  2125. <line x="159.2" y="27.14"/>
  2126. <curve x1="159.49" x2="159.7" x3="159.7" y1="27.14" y2="27.35" y3="27.64"/>
  2127. <curve x1="159.7" x2="159.49" x3="159.2" y1="27.92" y2="28.13" y3="28.13"/>
  2128. <line x="156.2" y="28.13"/>
  2129. <curve x1="155.91" x2="155.7" x3="155.7" y1="28.13" y2="27.92" y3="27.64"/>
  2130. <curve x1="155.7" x2="155.91" x3="156.2" y1="27.35" y2="27.14" y3="27.14"/>
  2131. <close/>
  2132. <move x="8.5" y="30.93"/>
  2133. <curve x1="7.86" x2="7.33" x3="7.33" y1="30.93" y2="31.46" y3="32.1"/>
  2134. <line x="7.33" y="33.09"/>
  2135. <curve x1="7.33" x2="7.86" x3="8.5" y1="33.73" y2="34.26" y3="34.26"/>
  2136. <line x="152.2" y="34.26"/>
  2137. <curve x1="152.83" x2="153.37" x3="153.37" y1="34.26" y2="33.73" y3="33.09"/>
  2138. <line x="153.37" y="32.1"/>
  2139. <curve x1="153.37" x2="152.83" x3="152.2" y1="31.46" y2="30.93" y3="30.93"/>
  2140. <close/>
  2141. <move x="156.2" y="30.93"/>
  2142. <curve x1="155.38" x2="154.7" x3="154.7" y1="30.93" y2="31.61" y3="32.43"/>
  2143. <curve x1="154.7" x2="155.38" x3="156.2" y1="33.25" y2="33.93" y3="33.93"/>
  2144. <line x="159.2" y="33.93"/>
  2145. <curve x1="160.02" x2="160.7" x3="160.7" y1="33.93" y2="33.25" y3="32.43"/>
  2146. <curve x1="160.7" x2="160.02" x3="159.2" y1="31.61" y2="30.93" y3="30.93"/>
  2147. <close/>
  2148. <move x="2.17" y="31.93"/>
  2149. <line x="5.17" y="31.93"/>
  2150. <curve x1="5.45" x2="5.67" x3="5.67" y1="31.93" y2="32.15" y3="32.43"/>
  2151. <curve x1="5.67" x2="5.45" x3="5.17" y1="32.72" y2="32.93" y3="32.93"/>
  2152. <line x="2.17" y="32.93"/>
  2153. <curve x1="1.88" x2="1.67" x3="1.67" y1="32.93" y2="32.72" y3="32.43"/>
  2154. <curve x1="1.67" x2="1.88" x3="2.17" y1="32.15" y2="31.93" y3="31.93"/>
  2155. <close/>
  2156. <move x="8.5" y="31.93"/>
  2157. <line x="152.2" y="31.93"/>
  2158. <curve x1="152.3" x2="152.37" x3="152.37" y1="31.93" y2="32" y3="32.1"/>
  2159. <line x="152.37" y="33.09"/>
  2160. <curve x1="152.37" x2="152.3" x3="152.2" y1="33.19" y2="33.26" y3="33.26"/>
  2161. <line x="8.5" y="33.26"/>
  2162. <curve x1="8.4" x2="8.33" x3="8.33" y1="33.26" y2="33.19" y3="33.09"/>
  2163. <line x="8.33" y="32.1"/>
  2164. <curve x1="8.33" x2="8.4" x3="8.5" y1="32" y2="31.93" y3="31.93"/>
  2165. <close/>
  2166. <move x="156.2" y="31.93"/>
  2167. <line x="159.2" y="31.93"/>
  2168. <curve x1="159.49" x2="159.7" x3="159.7" y1="31.93" y2="32.15" y3="32.43"/>
  2169. <curve x1="159.7" x2="159.49" x3="159.2" y1="32.72" y2="32.93" y3="32.93"/>
  2170. <line x="156.2" y="32.93"/>
  2171. <curve x1="155.91" x2="155.7" x3="155.7" y1="32.93" y2="32.72" y3="32.43"/>
  2172. <curve x1="155.7" x2="155.91" x3="156.2" y1="32.15" y2="31.93" y3="31.93"/>
  2173. <close/>
  2174. <move x="12.84" y="35.43"/>
  2175. <line x="12.84" y="38.42"/>
  2176. <line x="13.84" y="38.42"/>
  2177. <line x="13.84" y="35.43"/>
  2178. <close/>
  2179. <move x="18.84" y="35.43"/>
  2180. <line x="18.84" y="38.42"/>
  2181. <line x="19.84" y="38.42"/>
  2182. <line x="19.84" y="35.43"/>
  2183. <close/>
  2184. <move x="24.84" y="35.43"/>
  2185. <line x="24.84" y="38.42"/>
  2186. <line x="25.84" y="38.42"/>
  2187. <line x="25.84" y="35.43"/>
  2188. <close/>
  2189. <move x="31.17" y="35.43"/>
  2190. <line x="31.17" y="38.42"/>
  2191. <line x="32.17" y="38.42"/>
  2192. <line x="32.17" y="35.43"/>
  2193. <close/>
  2194. <move x="37.17" y="35.43"/>
  2195. <line x="37.17" y="38.42"/>
  2196. <line x="38.17" y="38.42"/>
  2197. <line x="38.17" y="35.43"/>
  2198. <close/>
  2199. <move x="43.18" y="35.43"/>
  2200. <line x="43.18" y="38.42"/>
  2201. <line x="44.18" y="38.42"/>
  2202. <line x="44.18" y="35.43"/>
  2203. <close/>
  2204. <move x="49.18" y="35.43"/>
  2205. <line x="49.18" y="38.42"/>
  2206. <line x="50.18" y="38.42"/>
  2207. <line x="50.18" y="35.43"/>
  2208. <close/>
  2209. <move x="55.51" y="35.43"/>
  2210. <line x="55.51" y="38.42"/>
  2211. <line x="56.51" y="38.42"/>
  2212. <line x="56.51" y="35.43"/>
  2213. <close/>
  2214. <move x="61.51" y="35.43"/>
  2215. <line x="61.51" y="38.42"/>
  2216. <line x="62.51" y="38.42"/>
  2217. <line x="62.51" y="35.43"/>
  2218. <close/>
  2219. <move x="67.18" y="35.43"/>
  2220. <line x="67.18" y="38.42"/>
  2221. <line x="68.18" y="38.42"/>
  2222. <line x="68.18" y="35.43"/>
  2223. <close/>
  2224. <move x="73.52" y="35.43"/>
  2225. <line x="73.52" y="38.42"/>
  2226. <line x="74.52" y="38.42"/>
  2227. <line x="74.52" y="35.43"/>
  2228. <close/>
  2229. <move x="79.52" y="35.43"/>
  2230. <line x="79.52" y="38.42"/>
  2231. <line x="80.52" y="38.42"/>
  2232. <line x="80.52" y="35.43"/>
  2233. <close/>
  2234. <move x="85.52" y="35.43"/>
  2235. <line x="85.52" y="38.42"/>
  2236. <line x="86.52" y="38.42"/>
  2237. <line x="86.52" y="35.43"/>
  2238. <close/>
  2239. <move x="91.85" y="35.43"/>
  2240. <line x="91.85" y="38.42"/>
  2241. <line x="92.85" y="38.42"/>
  2242. <line x="92.85" y="35.43"/>
  2243. <close/>
  2244. <move x="97.85" y="35.43"/>
  2245. <line x="97.85" y="38.42"/>
  2246. <line x="98.85" y="38.42"/>
  2247. <line x="98.85" y="35.43"/>
  2248. <close/>
  2249. <move x="103.86" y="35.43"/>
  2250. <line x="103.86" y="38.42"/>
  2251. <line x="104.86" y="38.42"/>
  2252. <line x="104.86" y="35.43"/>
  2253. <close/>
  2254. <move x="109.86" y="35.43"/>
  2255. <line x="109.86" y="38.42"/>
  2256. <line x="110.86" y="38.42"/>
  2257. <line x="110.86" y="35.43"/>
  2258. <close/>
  2259. <move x="116.19" y="35.43"/>
  2260. <line x="116.19" y="38.42"/>
  2261. <line x="117.19" y="38.42"/>
  2262. <line x="117.19" y="35.43"/>
  2263. <close/>
  2264. <move x="122.19" y="35.43"/>
  2265. <line x="122.19" y="38.42"/>
  2266. <line x="123.19" y="38.42"/>
  2267. <line x="123.19" y="35.43"/>
  2268. <close/>
  2269. <move x="127.86" y="35.43"/>
  2270. <line x="127.86" y="38.42"/>
  2271. <line x="128.86" y="38.42"/>
  2272. <line x="128.86" y="35.43"/>
  2273. <close/>
  2274. <move x="134.2" y="35.43"/>
  2275. <line x="134.2" y="38.42"/>
  2276. <line x="135.2" y="38.42"/>
  2277. <line x="135.2" y="35.43"/>
  2278. <close/>
  2279. <move x="140.2" y="35.43"/>
  2280. <line x="140.2" y="38.42"/>
  2281. <line x="141.2" y="38.42"/>
  2282. <line x="141.2" y="35.43"/>
  2283. <close/>
  2284. <move x="146.2" y="35.43"/>
  2285. <line x="146.2" y="38.42"/>
  2286. <line x="147.2" y="38.42"/>
  2287. <line x="147.2" y="35.43"/>
  2288. <close/>
  2289. <move x="8.5" y="45.75"/>
  2290. <curve x1="7.86" x2="7.33" x3="7.33" y1="45.75" y2="46.28" y3="46.92"/>
  2291. <line x="7.33" y="47.91"/>
  2292. <curve x1="7.33" x2="7.86" x3="8.5" y1="48.55" y2="49.08" y3="49.08"/>
  2293. <line x="152.2" y="49.08"/>
  2294. <curve x1="152.83" x2="153.37" x3="153.37" y1="49.08" y2="48.55" y3="47.91"/>
  2295. <line x="153.37" y="46.92"/>
  2296. <curve x1="153.37" x2="152.83" x3="152.2" y1="46.28" y2="45.75" y3="45.75"/>
  2297. <close/>
  2298. <move x="8.5" y="46.75"/>
  2299. <line x="152.2" y="46.75"/>
  2300. <curve x1="152.3" x2="152.37" x3="152.37" y1="46.75" y2="46.82" y3="46.92"/>
  2301. <line x="152.37" y="47.91"/>
  2302. <curve x1="152.37" x2="152.3" x3="152.2" y1="48.01" y2="48.08" y3="48.08"/>
  2303. <line x="8.5" y="48.08"/>
  2304. <curve x1="8.4" x2="8.33" x3="8.33" y1="48.08" y2="48.01" y3="47.91"/>
  2305. <line x="8.33" y="46.92"/>
  2306. <curve x1="8.33" x2="8.4" x3="8.5" y1="46.82" y2="46.75" y3="46.75"/>
  2307. <close/>
  2308. <move x="12.84" y="50.24"/>
  2309. <line x="12.84" y="53.24"/>
  2310. <line x="13.84" y="53.24"/>
  2311. <line x="13.84" y="50.24"/>
  2312. <close/>
  2313. <move x="18.84" y="50.24"/>
  2314. <line x="18.84" y="53.24"/>
  2315. <line x="19.84" y="53.24"/>
  2316. <line x="19.84" y="50.24"/>
  2317. <close/>
  2318. <move x="24.84" y="50.24"/>
  2319. <line x="24.84" y="53.24"/>
  2320. <line x="25.84" y="53.24"/>
  2321. <line x="25.84" y="50.24"/>
  2322. <close/>
  2323. <move x="31.17" y="50.24"/>
  2324. <line x="31.17" y="53.24"/>
  2325. <line x="32.17" y="53.24"/>
  2326. <line x="32.17" y="50.24"/>
  2327. <close/>
  2328. <move x="37.17" y="50.24"/>
  2329. <line x="37.17" y="53.24"/>
  2330. <line x="38.17" y="53.24"/>
  2331. <line x="38.17" y="50.24"/>
  2332. <close/>
  2333. <move x="43.18" y="50.24"/>
  2334. <line x="43.18" y="53.24"/>
  2335. <line x="44.18" y="53.24"/>
  2336. <line x="44.18" y="50.24"/>
  2337. <close/>
  2338. <move x="49.18" y="50.24"/>
  2339. <line x="49.18" y="53.24"/>
  2340. <line x="50.18" y="53.24"/>
  2341. <line x="50.18" y="50.24"/>
  2342. <close/>
  2343. <move x="55.51" y="50.24"/>
  2344. <line x="55.51" y="53.24"/>
  2345. <line x="56.51" y="53.24"/>
  2346. <line x="56.51" y="50.24"/>
  2347. <close/>
  2348. <move x="61.51" y="50.24"/>
  2349. <line x="61.51" y="53.24"/>
  2350. <line x="62.51" y="53.24"/>
  2351. <line x="62.51" y="50.24"/>
  2352. <close/>
  2353. <move x="67.18" y="50.24"/>
  2354. <line x="67.18" y="53.24"/>
  2355. <line x="68.18" y="53.24"/>
  2356. <line x="68.18" y="50.24"/>
  2357. <close/>
  2358. <move x="73.52" y="50.24"/>
  2359. <line x="73.52" y="53.24"/>
  2360. <line x="74.52" y="53.24"/>
  2361. <line x="74.52" y="50.24"/>
  2362. <close/>
  2363. <move x="79.52" y="50.24"/>
  2364. <line x="79.52" y="53.24"/>
  2365. <line x="80.52" y="53.24"/>
  2366. <line x="80.52" y="50.24"/>
  2367. <close/>
  2368. <move x="85.52" y="50.24"/>
  2369. <line x="85.52" y="53.24"/>
  2370. <line x="86.52" y="53.24"/>
  2371. <line x="86.52" y="50.24"/>
  2372. <close/>
  2373. <move x="91.85" y="50.24"/>
  2374. <line x="91.85" y="53.24"/>
  2375. <line x="92.85" y="53.24"/>
  2376. <line x="92.85" y="50.24"/>
  2377. <close/>
  2378. <move x="97.85" y="50.24"/>
  2379. <line x="97.85" y="53.24"/>
  2380. <line x="98.85" y="53.24"/>
  2381. <line x="98.85" y="50.24"/>
  2382. <close/>
  2383. <move x="103.86" y="50.24"/>
  2384. <line x="103.86" y="53.24"/>
  2385. <line x="104.86" y="53.24"/>
  2386. <line x="104.86" y="50.24"/>
  2387. <close/>
  2388. <move x="109.86" y="50.24"/>
  2389. <line x="109.86" y="53.24"/>
  2390. <line x="110.86" y="53.24"/>
  2391. <line x="110.86" y="50.24"/>
  2392. <close/>
  2393. <move x="116.19" y="50.24"/>
  2394. <line x="116.19" y="53.24"/>
  2395. <line x="117.19" y="53.24"/>
  2396. <line x="117.19" y="50.24"/>
  2397. <close/>
  2398. <move x="122.19" y="50.24"/>
  2399. <line x="122.19" y="53.24"/>
  2400. <line x="123.19" y="53.24"/>
  2401. <line x="123.19" y="50.24"/>
  2402. <close/>
  2403. <move x="127.86" y="50.24"/>
  2404. <line x="127.86" y="53.24"/>
  2405. <line x="128.86" y="53.24"/>
  2406. <line x="128.86" y="50.24"/>
  2407. <close/>
  2408. <move x="134.2" y="50.24"/>
  2409. <line x="134.2" y="53.24"/>
  2410. <line x="135.2" y="53.24"/>
  2411. <line x="135.2" y="50.24"/>
  2412. <close/>
  2413. <move x="140.2" y="50.24"/>
  2414. <line x="140.2" y="53.24"/>
  2415. <line x="141.2" y="53.24"/>
  2416. <line x="141.2" y="50.24"/>
  2417. <close/>
  2418. <move x="146.2" y="50.24"/>
  2419. <line x="146.2" y="53.24"/>
  2420. <line x="147.2" y="53.24"/>
  2421. <line x="147.2" y="50.24"/>
  2422. <close/>
  2423. <move x="156.2" y="55.74"/>
  2424. <curve x1="155.38" x2="154.7" x3="154.7" y1="55.74" y2="56.41" y3="57.24"/>
  2425. <curve x1="154.7" x2="155.38" x3="156.2" y1="58.06" y2="58.73" y3="58.73"/>
  2426. <line x="159.2" y="58.73"/>
  2427. <curve x1="160.02" x2="160.7" x3="160.7" y1="58.73" y2="58.06" y3="57.24"/>
  2428. <curve x1="160.7" x2="160.02" x3="159.2" y1="56.41" y2="55.74" y3="55.74"/>
  2429. <close/>
  2430. <move x="2.17" y="56.74"/>
  2431. <line x="5.17" y="56.74"/>
  2432. <curve x1="5.45" x2="5.67" x3="5.67" y1="56.74" y2="56.95" y3="57.24"/>
  2433. <curve x1="5.67" x2="5.45" x3="5.17" y1="57.52" y2="57.73" y3="57.73"/>
  2434. <line x="2.17" y="57.73"/>
  2435. <curve x1="1.88" x2="1.67" x3="1.67" y1="57.73" y2="57.52" y3="57.24"/>
  2436. <curve x1="1.67" x2="1.88" x3="2.17" y1="56.95" y2="56.74" y3="56.74"/>
  2437. <close/>
  2438. <move x="156.2" y="56.74"/>
  2439. <line x="159.2" y="56.74"/>
  2440. <curve x1="159.49" x2="159.7" x3="159.7" y1="56.74" y2="56.95" y3="57.24"/>
  2441. <curve x1="159.7" x2="159.49" x3="159.2" y1="57.52" y2="57.73" y3="57.73"/>
  2442. <line x="156.2" y="57.73"/>
  2443. <curve x1="155.91" x2="155.7" x3="155.7" y1="57.73" y2="57.52" y3="57.24"/>
  2444. <curve x1="155.7" x2="155.91" x3="156.2" y1="56.95" y2="56.74" y3="56.74"/>
  2445. <close/>
  2446. </path>
  2447. <fill/>
  2448. <restore/>
  2449. <rect/>
  2450. <stroke/>
  2451. <fillcolor color="#000000"/>
  2452. <fillalpha alpha="0.644"/>
  2453. <path>
  2454. <move x="8.17" y="50.24"/>
  2455. <line x="152.2" y="50.24"/>
  2456. <line x="152.2" y="53.24"/>
  2457. <line x="8.17" y="53.24"/>
  2458. <close/>
  2459. <move x="8.17" y="35.43"/>
  2460. <line x="152.2" y="35.43"/>
  2461. <line x="152.2" y="38.42"/>
  2462. <line x="8.17" y="38.42"/>
  2463. <close/>
  2464. <move x="8.17" y="20.64"/>
  2465. <line x="152.2" y="20.64"/>
  2466. <line x="152.2" y="23.64"/>
  2467. <line x="8.17" y="23.64"/>
  2468. <close/>
  2469. <move x="8.17" y="5.83"/>
  2470. <line x="152.2" y="5.83"/>
  2471. <line x="152.2" y="8.82"/>
  2472. <line x="8.17" y="8.82"/>
  2473. <close/>
  2474. </path>
  2475. <fill/>
  2476. </foreground>
  2477. </shape>
  2478. <shape aspect="variable" h="30.7" name="Hub" strokewidth="inherit" w="161.8">
  2479. <connections/>
  2480. <background>
  2481. <save/>
  2482. <path>
  2483. <move x="0" y="0"/>
  2484. <line x="0" y="0.5"/>
  2485. <line x="0" y="30.7"/>
  2486. <line x="161.8" y="30.7"/>
  2487. <line x="161.8" y="0"/>
  2488. <close/>
  2489. </path>
  2490. </background>
  2491. <foreground>
  2492. <fill/>
  2493. <fillcolor color="#000000"/>
  2494. <strokewidth width="1"/>
  2495. <linejoin join="miter"/>
  2496. <linecap cap="butt"/>
  2497. <miterlimit limit="4"/>
  2498. <dashpattern pattern="none"/>
  2499. <dashed dashed="1"/>
  2500. <alpha alpha="1"/>
  2501. <strokealpha alpha="1"/>
  2502. <fillalpha alpha="0.644"/>
  2503. <fontfamily family="sans-serif"/>
  2504. <fontstyle style="0"/>
  2505. <path>
  2506. <move x="0" y="0"/>
  2507. <curve x1="0" x2="0" x3="0" y1="10.23" y2="20.47" y3="30.7"/>
  2508. <line x="161.8" y="30.7"/>
  2509. <line x="161.8" y="0"/>
  2510. <close/>
  2511. <move x="1" y="1"/>
  2512. <line x="160.8" y="1"/>
  2513. <line x="160.8" y="29.7"/>
  2514. <line x="154.94" y="29.7"/>
  2515. <line x="154.94" y="2.67"/>
  2516. <line x="7.33" y="2.67"/>
  2517. <curve x1="7.33" x2="7.33" x3="7.33" y1="11.68" y2="20.69" y3="29.7"/>
  2518. <line x="1" y="29.7"/>
  2519. <close/>
  2520. <move x="8.33" y="3.67"/>
  2521. <line x="153.94" y="3.67"/>
  2522. <line x="153.94" y="12.36"/>
  2523. <line x="47.98" y="12.36"/>
  2524. <curve x1="47.98" x2="47.98" x3="47.98" y1="18.1" y2="23.83" y3="29.57"/>
  2525. <line x="8.33" y="29.57"/>
  2526. <close/>
  2527. <move x="13.16" y="7.52"/>
  2528. <line x="13.16" y="15.87"/>
  2529. <line x="25.16" y="15.87"/>
  2530. <line x="25.16" y="7.52"/>
  2531. <close/>
  2532. <move x="48.98" y="13.36"/>
  2533. <line x="153.27" y="13.36"/>
  2534. <line x="153.27" y="29.57"/>
  2535. <line x="48.98" y="29.57"/>
  2536. <close/>
  2537. </path>
  2538. <fill/>
  2539. <fillalpha alpha="0.232"/>
  2540. <path>
  2541. <move x="133.11" y="16.2"/>
  2542. <curve x1="130.34" x2="128.11" x3="128.11" y1="16.2" y2="17.39" y3="18.88"/>
  2543. <curve x1="128.11" x2="130.34" x3="133.11" y1="20.36" y2="21.55" y3="21.55"/>
  2544. <curve x1="135.88" x2="138.11" x3="138.11" y1="21.55" y2="20.36" y3="18.88"/>
  2545. <curve x1="138.11" x2="135.88" x3="133.11" y1="17.39" y2="16.2" y3="16.2"/>
  2546. <close/>
  2547. <move x="112.79" y="16.2"/>
  2548. <curve x1="110.02" x2="107.79" x3="107.79" y1="16.2" y2="17.39" y3="18.88"/>
  2549. <curve x1="107.79" x2="110.02" x3="112.79" y1="20.36" y2="21.55" y3="21.55"/>
  2550. <curve x1="115.56" x2="117.79" x3="117.79" y1="21.55" y2="20.36" y3="18.88"/>
  2551. <curve x1="117.79" x2="115.56" x3="112.79" y1="17.39" y2="16.2" y3="16.2"/>
  2552. <close/>
  2553. <move x="92.46" y="16.2"/>
  2554. <curve x1="89.69" x2="87.46" x3="87.46" y1="16.2" y2="17.39" y3="18.88"/>
  2555. <curve x1="87.46" x2="89.69" x3="92.46" y1="20.36" y2="21.55" y3="21.55"/>
  2556. <curve x1="95.23" x2="97.46" x3="97.46" y1="21.55" y2="20.36" y3="18.88"/>
  2557. <curve x1="97.46" x2="95.23" x3="92.46" y1="17.39" y2="16.2" y3="16.2"/>
  2558. <close/>
  2559. <move x="72.14" y="16.2"/>
  2560. <curve x1="69.37" x2="67.14" x3="67.14" y1="16.2" y2="17.39" y3="18.88"/>
  2561. <curve x1="67.14" x2="69.37" x3="72.14" y1="20.36" y2="21.55" y3="21.55"/>
  2562. <curve x1="74.91" x2="77.13" x3="77.13" y1="21.55" y2="20.36" y3="18.88"/>
  2563. <curve x1="77.13" x2="74.91" x3="72.14" y1="17.39" y2="16.2" y3="16.2"/>
  2564. <close/>
  2565. <move x="48.98" y="13.36"/>
  2566. <line x="153.27" y="13.36"/>
  2567. <line x="153.27" y="29.57"/>
  2568. <line x="48.98" y="29.57"/>
  2569. <close/>
  2570. <move x="1" y="1"/>
  2571. <line x="160.8" y="1"/>
  2572. <line x="160.8" y="29.7"/>
  2573. <line x="154.94" y="29.7"/>
  2574. <line x="154.94" y="2.67"/>
  2575. <line x="7.33" y="2.67"/>
  2576. <line x="7.33" y="29.7"/>
  2577. <line x="1" y="29.7"/>
  2578. <close/>
  2579. </path>
  2580. <fill/>
  2581. <restore/>
  2582. <rect/>
  2583. <stroke/>
  2584. <fillcolor color="#000000"/>
  2585. <fillalpha alpha="0.369"/>
  2586. <path>
  2587. <move x="133.11" y="16.2"/>
  2588. <curve x1="135.88" x2="138.11" x3="138.11" y1="16.2" y2="17.39" y3="18.87"/>
  2589. <curve x1="138.11" x2="135.88" x3="133.11" y1="20.36" y2="21.55" y3="21.55"/>
  2590. <curve x1="130.34" x2="128.11" x3="128.11" y1="21.55" y2="20.36" y3="18.87"/>
  2591. <curve x1="128.11" x2="130.34" x3="133.11" y1="17.39" y2="16.2" y3="16.2"/>
  2592. <close/>
  2593. <move x="112.79" y="16.2"/>
  2594. <curve x1="115.56" x2="117.78" x3="117.78" y1="16.2" y2="17.39" y3="18.87"/>
  2595. <curve x1="117.78" x2="115.56" x3="112.79" y1="20.36" y2="21.55" y3="21.55"/>
  2596. <curve x1="110.02" x2="107.79" x3="107.79" y1="21.55" y2="20.36" y3="18.87"/>
  2597. <curve x1="107.79" x2="110.02" x3="112.79" y1="17.39" y2="16.2" y3="16.2"/>
  2598. <close/>
  2599. <move x="92.46" y="16.2"/>
  2600. <curve x1="95.23" x2="97.46" x3="97.46" y1="16.2" y2="17.39" y3="18.87"/>
  2601. <curve x1="97.46" x2="95.23" x3="92.46" y1="20.36" y2="21.55" y3="21.55"/>
  2602. <curve x1="89.69" x2="87.46" x3="87.46" y1="21.55" y2="20.36" y3="18.87"/>
  2603. <curve x1="87.46" x2="89.69" x3="92.46" y1="17.39" y2="16.2" y3="16.2"/>
  2604. <close/>
  2605. <move x="72.14" y="16.2"/>
  2606. <curve x1="74.91" x2="77.13" x3="77.13" y1="16.2" y2="17.39" y3="18.87"/>
  2607. <curve x1="77.13" x2="74.91" x3="72.14" y1="20.36" y2="21.55" y3="21.55"/>
  2608. <curve x1="69.37" x2="67.14" x3="67.14" y1="21.55" y2="20.36" y3="18.87"/>
  2609. <curve x1="67.14" x2="69.37" x3="72.14" y1="17.39" y2="16.2" y3="16.2"/>
  2610. <close/>
  2611. </path>
  2612. <fill/>
  2613. </foreground>
  2614. </shape>
  2615. <shape aspect="variable" h="154.25" name="Server 1" strokewidth="inherit" w="74.25">
  2616. <connections/>
  2617. <background>
  2618. <path>
  2619. <move x="0" y="0"/>
  2620. <curve x1="0" x2="0" x3="0" y1="50.31" y2="100.61" y3="150.92"/>
  2621. <line x="3.33" y="150.92"/>
  2622. <line x="3.33" y="154.25"/>
  2623. <line x="70.92" y="154.25"/>
  2624. <line x="70.92" y="150.92"/>
  2625. <line x="74.25" y="150.92"/>
  2626. <line x="74.25" y="0"/>
  2627. <close/>
  2628. </path>
  2629. </background>
  2630. <foreground>
  2631. <fill/>
  2632. <fillcolor color="#000000"/>
  2633. <strokewidth width="1"/>
  2634. <linejoin join="miter"/>
  2635. <linecap cap="butt"/>
  2636. <miterlimit limit="4"/>
  2637. <dashpattern pattern="none"/>
  2638. <dashed dashed="1"/>
  2639. <alpha alpha="1"/>
  2640. <strokealpha alpha="1"/>
  2641. <fillalpha alpha="0.644"/>
  2642. <fontfamily family="sans-serif"/>
  2643. <fontstyle style="0"/>
  2644. <path>
  2645. <move x="0" y="0"/>
  2646. <line x="0" y="150.92"/>
  2647. <line x="3.33" y="150.92"/>
  2648. <line x="3.33" y="154.25"/>
  2649. <line x="70.92" y="154.25"/>
  2650. <line x="70.92" y="150.92"/>
  2651. <line x="74.25" y="150.92"/>
  2652. <line x="74.25" y="0"/>
  2653. <close/>
  2654. <move x="1" y="1"/>
  2655. <line x="73.25" y="1"/>
  2656. <line x="73.25" y="149.92"/>
  2657. <line x="1" y="149.92"/>
  2658. <close/>
  2659. <move x="23.64" y="3.33"/>
  2660. <line x="23.64" y="5.33"/>
  2661. <line x="48.95" y="5.33"/>
  2662. <line x="48.95" y="3.33"/>
  2663. <close/>
  2664. <move x="5.83" y="6.66"/>
  2665. <line x="5.83" y="19.32"/>
  2666. <line x="66.76" y="19.32"/>
  2667. <line x="66.76" y="6.66"/>
  2668. <close/>
  2669. <move x="6.83" y="7.66"/>
  2670. <line x="65.76" y="7.66"/>
  2671. <line x="65.76" y="18.32"/>
  2672. <line x="6.83" y="18.32"/>
  2673. <close/>
  2674. <move x="6.66" y="68.3"/>
  2675. <line x="6.66" y="145.92"/>
  2676. <line x="65.93" y="145.92"/>
  2677. <line x="65.93" y="68.3"/>
  2678. <close/>
  2679. <move x="7.66" y="69.3"/>
  2680. <line x="64.93" y="69.3"/>
  2681. <line x="64.93" y="144.92"/>
  2682. <line x="7.66" y="144.92"/>
  2683. <close/>
  2684. <move x="4.33" y="150.92"/>
  2685. <line x="69.92" y="150.92"/>
  2686. <line x="69.92" y="153.25"/>
  2687. <line x="4.33" y="153.25"/>
  2688. <close/>
  2689. </path>
  2690. <fill/>
  2691. <fillalpha alpha="0.232"/>
  2692. <path>
  2693. <move x="1" y="1"/>
  2694. <line x="1" y="149.92"/>
  2695. <line x="73.25" y="149.92"/>
  2696. <line x="73.25" y="1"/>
  2697. <close/>
  2698. <move x="4.83" y="2"/>
  2699. <line x="68.09" y="2"/>
  2700. <line x="68.09" y="20.49"/>
  2701. <line x="4.83" y="20.49"/>
  2702. <close/>
  2703. <move x="6.83" y="7.66"/>
  2704. <line x="6.83" y="18.32"/>
  2705. <line x="65.76" y="18.32"/>
  2706. <line x="65.76" y="7.66"/>
  2707. <close/>
  2708. <move x="4.83" y="25.49"/>
  2709. <line x="68.09" y="25.49"/>
  2710. <line x="68.09" y="60.47"/>
  2711. <line x="4.83" y="60.47"/>
  2712. <close/>
  2713. <move x="8.82" y="30.48"/>
  2714. <line x="8.82" y="35.48"/>
  2715. <line x="63.76" y="35.48"/>
  2716. <line x="63.76" y="30.48"/>
  2717. <close/>
  2718. <move x="8.82" y="40.48"/>
  2719. <line x="8.82" y="45.47"/>
  2720. <line x="63.76" y="45.47"/>
  2721. <line x="63.76" y="40.48"/>
  2722. <close/>
  2723. <move x="8.82" y="50.47"/>
  2724. <line x="8.82" y="55.47"/>
  2725. <line x="63.76" y="55.47"/>
  2726. <line x="63.76" y="50.47"/>
  2727. <close/>
  2728. <move x="4.83" y="65.46"/>
  2729. <line x="68.09" y="65.46"/>
  2730. <line x="68.09" y="148.25"/>
  2731. <line x="4.83" y="148.25"/>
  2732. <close/>
  2733. <move x="7.66" y="69.3"/>
  2734. <line x="7.66" y="144.92"/>
  2735. <line x="64.93" y="144.92"/>
  2736. <line x="64.93" y="69.3"/>
  2737. <close/>
  2738. <move x="4.33" y="150.92"/>
  2739. <line x="4.33" y="153.25"/>
  2740. <line x="69.92" y="153.25"/>
  2741. <line x="69.92" y="150.92"/>
  2742. <close/>
  2743. </path>
  2744. <fill/>
  2745. </foreground>
  2746. </shape>
  2747. <shape aspect="variable" h="154.25" name="Server 2" strokewidth="inherit" w="74.33">
  2748. <connections/>
  2749. <background>
  2750. <save/>
  2751. <path>
  2752. <move x="0" y="0"/>
  2753. <line x="0" y="154.25"/>
  2754. <line x="74.33" y="154.25"/>
  2755. <line x="74.33" y="0"/>
  2756. <close/>
  2757. </path>
  2758. </background>
  2759. <foreground>
  2760. <fill/>
  2761. <fillcolor color="#000000"/>
  2762. <strokewidth width="1"/>
  2763. <linejoin join="miter"/>
  2764. <linecap cap="butt"/>
  2765. <miterlimit limit="4"/>
  2766. <dashpattern pattern="none"/>
  2767. <dashed dashed="1"/>
  2768. <alpha alpha="1"/>
  2769. <strokealpha alpha="1"/>
  2770. <fillalpha alpha="0.644"/>
  2771. <fontfamily family="sans-serif"/>
  2772. <fontstyle style="0"/>
  2773. <path>
  2774. <move x="0" y="0"/>
  2775. <line x="0" y="154.25"/>
  2776. <line x="74.33" y="154.25"/>
  2777. <line x="74.33" y="0"/>
  2778. <close/>
  2779. <move x="1" y="1"/>
  2780. <line x="73.33" y="1"/>
  2781. <line x="73.33" y="153.25"/>
  2782. <line x="1" y="153.25"/>
  2783. <close/>
  2784. <move x="5" y="8"/>
  2785. <line x="5" y="60.63"/>
  2786. <line x="57" y="60.63"/>
  2787. <line x="57" y="8"/>
  2788. <close/>
  2789. <move x="59" y="8"/>
  2790. <line x="59" y="150.59"/>
  2791. <line x="70.33" y="150.59"/>
  2792. <line x="70.33" y="8"/>
  2793. <close/>
  2794. <move x="6" y="9"/>
  2795. <line x="56" y="9"/>
  2796. <line x="56" y="59.63"/>
  2797. <line x="6" y="59.63"/>
  2798. <close/>
  2799. <move x="60" y="9"/>
  2800. <line x="69.33" y="9"/>
  2801. <line x="69.33" y="59.63"/>
  2802. <line x="60" y="59.63"/>
  2803. <line x="60" y="16.82"/>
  2804. <close/>
  2805. <move x="60" y="16.82"/>
  2806. <curve x1="60" x2="62.02" x3="64.5" y1="19.3" y2="21.32" y3="21.32"/>
  2807. <curve x1="66.98" x2="69" x3="69" y1="21.32" y2="19.3" y3="16.82"/>
  2808. <curve x1="69" x2="66.98" x3="64.5" y1="14.35" y2="12.33" y3="12.33"/>
  2809. <curve x1="62.02" x2="60" x3="60" y1="12.33" y2="14.35" y3="16.82"/>
  2810. <close/>
  2811. <move x="64.5" y="13.33"/>
  2812. <curve x1="66.44" x2="68" x3="68" y1="13.33" y2="14.89" y3="16.82"/>
  2813. <curve x1="68" x2="66.44" x3="64.5" y1="18.76" y2="20.32" y3="20.32"/>
  2814. <curve x1="62.56" x2="61" x3="61" y1="20.32" y2="18.76" y3="16.82"/>
  2815. <curve x1="61" x2="62.56" x3="64.5" y1="14.89" y2="13.33" y3="13.33"/>
  2816. <close/>
  2817. <move x="8.33" y="13.66"/>
  2818. <line x="8.33" y="42.98"/>
  2819. <line x="53.33" y="42.98"/>
  2820. <line x="53.33" y="13.66"/>
  2821. <close/>
  2822. <move x="9.33" y="14.66"/>
  2823. <line x="52.33" y="14.66"/>
  2824. <line x="52.33" y="27.98"/>
  2825. <line x="9.33" y="27.98"/>
  2826. <close/>
  2827. <move x="64.5" y="26.65"/>
  2828. <curve x1="62.76" x2="61.33" x3="61.33" y1="26.65" y2="28.08" y3="29.82"/>
  2829. <curve x1="61.33" x2="62.76" x3="64.5" y1="31.56" y2="32.98" y3="32.98"/>
  2830. <curve x1="66.24" x2="67.67" x3="67.67" y1="32.98" y2="31.56" y3="29.82"/>
  2831. <curve x1="67.67" x2="66.24" x3="64.5" y1="28.08" y2="26.65" y3="26.65"/>
  2832. <close/>
  2833. <move x="64.5" y="27.65"/>
  2834. <curve x1="65.7" x2="66.67" x3="66.67" y1="27.65" y2="28.62" y3="29.82"/>
  2835. <curve x1="66.67" x2="65.7" x3="64.5" y1="31.02" y2="31.98" y3="31.98"/>
  2836. <curve x1="63.3" x2="62.33" x3="62.33" y1="31.98" y2="31.02" y3="29.82"/>
  2837. <curve x1="62.33" x2="63.3" x3="64.5" y1="28.62" y2="27.65" y3="27.65"/>
  2838. <close/>
  2839. <move x="9.33" y="28.98"/>
  2840. <line x="52.33" y="28.98"/>
  2841. <line x="52.33" y="41.98"/>
  2842. <line x="9.33" y="41.98"/>
  2843. <close/>
  2844. <move x="60" y="60.63"/>
  2845. <line x="69.33" y="60.63"/>
  2846. <line x="69.33" y="149.59"/>
  2847. <line x="60" y="149.59"/>
  2848. <close/>
  2849. </path>
  2850. <fill/>
  2851. <restore/>
  2852. <rect/>
  2853. <stroke/>
  2854. <fillcolor color="#000000"/>
  2855. <fillalpha alpha="0.232"/>
  2856. <path>
  2857. <move x="5.5" y="144.75"/>
  2858. <line x="56.17" y="144.75"/>
  2859. <line x="56.17" y="148.09"/>
  2860. <line x="5.5" y="148.09"/>
  2861. <close/>
  2862. <move x="5.5" y="136.09"/>
  2863. <line x="56.17" y="136.09"/>
  2864. <line x="56.17" y="139.42"/>
  2865. <line x="5.5" y="139.42"/>
  2866. <close/>
  2867. <move x="5.5" y="127.43"/>
  2868. <line x="56.17" y="127.43"/>
  2869. <line x="56.17" y="130.76"/>
  2870. <line x="5.5" y="130.76"/>
  2871. <close/>
  2872. <move x="5.5" y="119.1"/>
  2873. <line x="56.17" y="119.1"/>
  2874. <line x="56.17" y="122.43"/>
  2875. <line x="5.5" y="122.43"/>
  2876. <close/>
  2877. <move x="5.5" y="110.44"/>
  2878. <line x="56.17" y="110.44"/>
  2879. <line x="56.17" y="113.77"/>
  2880. <line x="5.5" y="113.77"/>
  2881. <close/>
  2882. <move x="5.5" y="101.78"/>
  2883. <line x="56.17" y="101.78"/>
  2884. <line x="56.17" y="105.11"/>
  2885. <line x="5.5" y="105.11"/>
  2886. <close/>
  2887. <move x="5.5" y="93.45"/>
  2888. <line x="56.17" y="93.45"/>
  2889. <line x="56.17" y="96.78"/>
  2890. <line x="5.5" y="96.78"/>
  2891. <close/>
  2892. <move x="5.5" y="84.79"/>
  2893. <line x="56.17" y="84.79"/>
  2894. <line x="56.17" y="88.12"/>
  2895. <line x="5.5" y="88.12"/>
  2896. <close/>
  2897. <move x="5.5" y="76.13"/>
  2898. <line x="56.17" y="76.13"/>
  2899. <line x="56.17" y="79.46"/>
  2900. <line x="5.5" y="79.46"/>
  2901. <close/>
  2902. <move x="5.5" y="67.8"/>
  2903. <line x="56.17" y="67.8"/>
  2904. <line x="56.17" y="71.13"/>
  2905. <line x="5.5" y="71.13"/>
  2906. <close/>
  2907. </path>
  2908. <fill/>
  2909. </foreground>
  2910. </shape>
  2911. <shape aspect="variable" h="154" name="Server 3" strokewidth="inherit" w="74">
  2912. <connections/>
  2913. <background>
  2914. <path>
  2915. <move x="0" y="0"/>
  2916. <line x="0" y="154"/>
  2917. <line x="74" y="154"/>
  2918. <line x="74" y="0"/>
  2919. <close/>
  2920. </path>
  2921. </background>
  2922. <foreground>
  2923. <fill/>
  2924. <fillcolor color="#000000"/>
  2925. <strokewidth width="1"/>
  2926. <linejoin join="miter"/>
  2927. <linecap cap="butt"/>
  2928. <miterlimit limit="4"/>
  2929. <dashpattern pattern="none"/>
  2930. <dashed dashed="1"/>
  2931. <alpha alpha="1"/>
  2932. <strokealpha alpha="1"/>
  2933. <fillalpha alpha="0.644"/>
  2934. <fontfamily family="sans-serif"/>
  2935. <fontstyle style="0"/>
  2936. <path>
  2937. <move x="0" y="0"/>
  2938. <line x="0" y="153.5"/>
  2939. <line x="0" y="154"/>
  2940. <line x="74" y="154"/>
  2941. <line x="74" y="153.52"/>
  2942. <line x="74" y="153.5"/>
  2943. <line x="74" y="0"/>
  2944. <close/>
  2945. <move x="1.46" y="1"/>
  2946. <line x="72.55" y="1"/>
  2947. <line x="63.28" y="14.63"/>
  2948. <line x="54.75" y="14.63"/>
  2949. <line x="54.75" y="10.82"/>
  2950. <curve x1="54.75" x2="52.59" x3="49.92" y1="8.15" y2="5.99" y3="5.99"/>
  2951. <line x="24.41" y="5.99"/>
  2952. <curve x1="21.74" x2="19.58" x3="19.58" y1="5.99" y2="8.15" y3="10.82"/>
  2953. <line x="19.58" y="14.63"/>
  2954. <line x="11.04" y="14.63"/>
  2955. <close/>
  2956. <move x="1" y="2.08"/>
  2957. <line x="10.29" y="15.29"/>
  2958. <line x="10.29" y="139.04"/>
  2959. <line x="1" y="151.95"/>
  2960. <close/>
  2961. <move x="73" y="2.13"/>
  2962. <line x="73" y="151.88"/>
  2963. <line x="64.04" y="138.71"/>
  2964. <line x="64.04" y="15.29"/>
  2965. <close/>
  2966. <move x="24.41" y="6.99"/>
  2967. <line x="49.92" y="6.99"/>
  2968. <curve x1="52.05" x2="53.75" x3="53.75" y1="6.99" y2="8.69" y3="10.82"/>
  2969. <line x="53.75" y="14.63"/>
  2970. <line x="48.28" y="14.63"/>
  2971. <line x="48.28" y="8.81"/>
  2972. <line x="26.05" y="8.81"/>
  2973. <line x="26.05" y="14.63"/>
  2974. <line x="20.58" y="14.63"/>
  2975. <line x="20.58" y="10.82"/>
  2976. <curve x1="20.58" x2="22.28" x3="24.41" y1="8.69" y2="6.99" y3="6.99"/>
  2977. <close/>
  2978. <move x="11.29" y="15.63"/>
  2979. <line x="19.58" y="15.63"/>
  2980. <line x="19.58" y="22.78"/>
  2981. <curve x1="19.58" x2="21.74" x3="24.41" y1="25.45" y2="27.61" y3="27.61"/>
  2982. <line x="49.92" y="27.61"/>
  2983. <curve x1="52.59" x2="54.75" x3="54.75" y1="27.61" y2="25.45" y3="22.78"/>
  2984. <line x="54.75" y="15.63"/>
  2985. <line x="63.04" y="15.63"/>
  2986. <line x="63.04" y="138.7"/>
  2987. <line x="11.29" y="138.7"/>
  2988. <close/>
  2989. <move x="20.58" y="15.63"/>
  2990. <line x="53.75" y="15.63"/>
  2991. <line x="53.75" y="22.78"/>
  2992. <curve x1="53.75" x2="52.05" x3="49.92" y1="24.91" y2="26.61" y3="26.61"/>
  2993. <line x="24.41" y="26.61"/>
  2994. <curve x1="22.28" x2="20.58" x3="20.58" y1="26.61" y2="24.91" y3="22.78"/>
  2995. <close/>
  2996. <move x="16.26" y="31.93"/>
  2997. <line x="16.26" y="132.71"/>
  2998. <line x="58.07" y="132.71"/>
  2999. <line x="58.07" y="31.93"/>
  3000. <close/>
  3001. <move x="17.26" y="32.93"/>
  3002. <line x="57.07" y="32.93"/>
  3003. <line x="57.07" y="131.71"/>
  3004. <line x="17.26" y="131.71"/>
  3005. <close/>
  3006. <move x="37.33" y="76.17"/>
  3007. <curve x1="33.95" x2="31.19" x3="31.19" y1="76.17" y2="78.93" y3="82.32"/>
  3008. <curve x1="31.19" x2="33.95" x3="37.33" y1="85.71" y2="88.48" y3="88.48"/>
  3009. <curve x1="40.72" x2="43.47" x3="43.47" y1="88.48" y2="85.71" y3="82.32"/>
  3010. <curve x1="43.47" x2="40.72" x3="37.33" y1="78.93" y2="76.17" y3="76.17"/>
  3011. <close/>
  3012. <move x="37.33" y="77.17"/>
  3013. <curve x1="40.18" x2="42.47" x3="42.47" y1="77.17" y2="79.47" y3="82.32"/>
  3014. <curve x1="42.47" x2="40.18" x3="37.33" y1="85.18" y2="87.48" y3="87.48"/>
  3015. <curve x1="34.49" x2="32.19" x3="32.19" y1="87.48" y2="85.18" y3="82.32"/>
  3016. <curve x1="32.19" x2="34.49" x3="37.33" y1="79.47" y2="77.17" y3="77.17"/>
  3017. <close/>
  3018. <move x="11.04" y="139.7"/>
  3019. <line x="63.51" y="139.7"/>
  3020. <line x="72.55" y="153"/>
  3021. <line x="1.47" y="153"/>
  3022. <close/>
  3023. </path>
  3024. <fill/>
  3025. <fillalpha alpha="0.232"/>
  3026. <path>
  3027. <move x="1" y="2.08"/>
  3028. <line x="1" y="151.95"/>
  3029. <line x="10.29" y="139.04"/>
  3030. <line x="10.29" y="15.29"/>
  3031. <close/>
  3032. <move x="73" y="2.13"/>
  3033. <line x="64.04" y="15.29"/>
  3034. <line x="64.04" y="138.71"/>
  3035. <line x="73" y="151.88"/>
  3036. <close/>
  3037. <move x="17.26" y="32.93"/>
  3038. <line x="17.26" y="131.71"/>
  3039. <line x="57.07" y="131.71"/>
  3040. <line x="57.07" y="32.93"/>
  3041. <close/>
  3042. <move x="37.33" y="76.17"/>
  3043. <curve x1="40.72" x2="43.47" x3="43.47" y1="76.17" y2="78.93" y3="82.32"/>
  3044. <curve x1="43.47" x2="40.72" x3="37.33" y1="85.71" y2="88.48" y3="88.48"/>
  3045. <curve x1="33.95" x2="31.19" x3="31.19" y1="88.48" y2="85.71" y3="82.32"/>
  3046. <curve x1="31.19" x2="33.95" x3="37.33" y1="78.93" y2="76.17" y3="76.17"/>
  3047. <close/>
  3048. <move x="37.33" y="77.17"/>
  3049. <curve x1="34.49" x2="32.19" x3="32.19" y1="77.17" y2="79.47" y3="82.32"/>
  3050. <curve x1="32.19" x2="34.49" x3="37.33" y1="85.18" y2="87.48" y3="87.48"/>
  3051. <curve x1="40.18" x2="42.47" x3="42.47" y1="87.48" y2="85.18" y3="82.32"/>
  3052. <curve x1="42.47" x2="40.18" x3="37.33" y1="79.47" y2="77.17" y3="77.17"/>
  3053. <close/>
  3054. </path>
  3055. <fill/>
  3056. </foreground>
  3057. </shape>
  3058. <shape aspect="variable" h="30.69" name="Switches 1" strokewidth="inherit" w="161.97">
  3059. <connections/>
  3060. <background>
  3061. <path>
  3062. <move x="0" y="0"/>
  3063. <line x="0" y="30.69"/>
  3064. <line x="161.97" y="30.69"/>
  3065. <line x="161.97" y="0"/>
  3066. <close/>
  3067. </path>
  3068. </background>
  3069. <foreground>
  3070. <fill/>
  3071. <fillcolor color="#000000"/>
  3072. <strokewidth width="1"/>
  3073. <linejoin join="miter"/>
  3074. <linecap cap="butt"/>
  3075. <miterlimit limit="4"/>
  3076. <dashpattern pattern="none"/>
  3077. <dashed dashed="1"/>
  3078. <alpha alpha="1"/>
  3079. <strokealpha alpha="1"/>
  3080. <fillalpha alpha="0.644"/>
  3081. <fontfamily family="sans-serif"/>
  3082. <fontstyle style="0"/>
  3083. <path>
  3084. <move x="0" y="0"/>
  3085. <line x="0" y="30.69"/>
  3086. <line x="161.97" y="30.69"/>
  3087. <line x="161.97" y="0"/>
  3088. <close/>
  3089. <move x="1" y="1"/>
  3090. <line x="160.97" y="1"/>
  3091. <line x="160.97" y="29.69"/>
  3092. <line x="1" y="29.69"/>
  3093. <close/>
  3094. <move x="2" y="3.01"/>
  3095. <line x="2" y="14.03"/>
  3096. <line x="52.04" y="14.03"/>
  3097. <line x="52.04" y="3.01"/>
  3098. <close/>
  3099. <move x="53.04" y="3.01"/>
  3100. <line x="53.04" y="14.03"/>
  3101. <line x="116.08" y="14.03"/>
  3102. <line x="116.08" y="3.01"/>
  3103. <close/>
  3104. <move x="3" y="4.01"/>
  3105. <line x="51.04" y="4.01"/>
  3106. <line x="51.04" y="13.03"/>
  3107. <line x="3" y="13.03"/>
  3108. <close/>
  3109. <move x="54.04" y="4.01"/>
  3110. <line x="115.08" y="4.01"/>
  3111. <line x="115.08" y="13.03"/>
  3112. <line x="54.04" y="13.03"/>
  3113. <close/>
  3114. <move x="68.04" y="6.01"/>
  3115. <line x="68.04" y="11.69"/>
  3116. <line x="82.72" y="11.69"/>
  3117. <line x="82.72" y="6.01"/>
  3118. <close/>
  3119. <move x="85.72" y="6.01"/>
  3120. <line x="85.72" y="11.69"/>
  3121. <line x="100.4" y="11.69"/>
  3122. <line x="100.4" y="6.01"/>
  3123. <close/>
  3124. <move x="69.04" y="7.01"/>
  3125. <line x="81.72" y="7.01"/>
  3126. <line x="81.72" y="10.69"/>
  3127. <line x="69.04" y="10.69"/>
  3128. <close/>
  3129. <move x="86.72" y="7.01"/>
  3130. <line x="99.4" y="7.01"/>
  3131. <line x="99.4" y="10.69"/>
  3132. <line x="86.72" y="10.69"/>
  3133. <close/>
  3134. <move x="2" y="14.7"/>
  3135. <line x="2" y="29.05"/>
  3136. <line x="159.77" y="29.05"/>
  3137. <line x="159.77" y="14.7"/>
  3138. <close/>
  3139. <move x="3" y="15.7"/>
  3140. <line x="158.77" y="15.7"/>
  3141. <line x="158.77" y="28.05"/>
  3142. <line x="3" y="28.05"/>
  3143. <close/>
  3144. <move x="6.34" y="19.37"/>
  3145. <line x="6.34" y="25.05"/>
  3146. <line x="48.03" y="25.05"/>
  3147. <line x="48.03" y="19.37"/>
  3148. <close/>
  3149. <move x="52.37" y="19.37"/>
  3150. <line x="52.37" y="25.05"/>
  3151. <line x="94.06" y="25.05"/>
  3152. <line x="94.06" y="19.37"/>
  3153. <close/>
  3154. <move x="98.4" y="19.37"/>
  3155. <line x="98.4" y="25.05"/>
  3156. <line x="140.09" y="25.05"/>
  3157. <line x="140.09" y="19.37"/>
  3158. <close/>
  3159. <move x="7.34" y="20.37"/>
  3160. <line x="47.03" y="20.37"/>
  3161. <line x="47.03" y="24.05"/>
  3162. <line x="7.34" y="24.05"/>
  3163. <close/>
  3164. <move x="53.37" y="20.37"/>
  3165. <line x="93.06" y="20.37"/>
  3166. <line x="93.06" y="24.05"/>
  3167. <line x="53.37" y="24.05"/>
  3168. <close/>
  3169. <move x="99.4" y="20.37"/>
  3170. <line x="139.09" y="20.37"/>
  3171. <line x="139.09" y="24.05"/>
  3172. <line x="99.4" y="24.05"/>
  3173. <close/>
  3174. </path>
  3175. <fill/>
  3176. <strokewidth width="0.301"/>
  3177. <fillalpha alpha="0.232"/>
  3178. <path>
  3179. <move x="99.4" y="20.37"/>
  3180. <line x="139.09" y="20.37"/>
  3181. <line x="139.09" y="24.05"/>
  3182. <line x="99.4" y="24.05"/>
  3183. <close/>
  3184. <move x="53.37" y="20.37"/>
  3185. <line x="93.06" y="20.37"/>
  3186. <line x="93.06" y="24.05"/>
  3187. <line x="53.37" y="24.05"/>
  3188. <close/>
  3189. <move x="7.34" y="20.37"/>
  3190. <line x="47.03" y="20.37"/>
  3191. <line x="47.03" y="24.05"/>
  3192. <line x="7.34" y="24.05"/>
  3193. <close/>
  3194. <move x="2" y="14.7"/>
  3195. <line x="2" y="29.05"/>
  3196. <line x="159.77" y="29.05"/>
  3197. <line x="159.77" y="14.7"/>
  3198. <close/>
  3199. <move x="86.72" y="7.01"/>
  3200. <line x="99.4" y="7.01"/>
  3201. <line x="99.4" y="10.69"/>
  3202. <line x="86.72" y="10.69"/>
  3203. <close/>
  3204. <move x="69.04" y="7.01"/>
  3205. <line x="81.72" y="7.01"/>
  3206. <line x="81.72" y="10.69"/>
  3207. <line x="69.04" y="10.69"/>
  3208. <close/>
  3209. <move x="7.5" y="6.51"/>
  3210. <line x="7.5" y="10.52"/>
  3211. <line x="47.53" y="10.52"/>
  3212. <line x="47.53" y="6.51"/>
  3213. <close/>
  3214. <move x="53.04" y="3.01"/>
  3215. <line x="53.04" y="14.03"/>
  3216. <line x="116.08" y="14.03"/>
  3217. <line x="116.08" y="3.01"/>
  3218. <close/>
  3219. <move x="2" y="3.01"/>
  3220. <line x="2" y="14.03"/>
  3221. <line x="52.04" y="14.03"/>
  3222. <line x="52.04" y="3.01"/>
  3223. <close/>
  3224. <move x="1" y="1"/>
  3225. <line x="160.97" y="1"/>
  3226. <line x="160.97" y="29.69"/>
  3227. <line x="1" y="29.69"/>
  3228. <close/>
  3229. </path>
  3230. <fill/>
  3231. </foreground>
  3232. </shape>
  3233. <shape aspect="variable" h="30.57" name="Switches 2" strokewidth="inherit" w="162.1">
  3234. <connections/>
  3235. <background>
  3236. <path>
  3237. <move x="0" y="0"/>
  3238. <line x="0" y="0.5"/>
  3239. <line x="0" y="30.57"/>
  3240. <line x="162.1" y="30.57"/>
  3241. <line x="162.1" y="0"/>
  3242. <close/>
  3243. </path>
  3244. </background>
  3245. <foreground>
  3246. <fill/>
  3247. <fillcolor color="#000000"/>
  3248. <strokewidth width="1"/>
  3249. <linejoin join="miter"/>
  3250. <linecap cap="butt"/>
  3251. <miterlimit limit="4"/>
  3252. <dashpattern pattern="none"/>
  3253. <dashed dashed="1"/>
  3254. <alpha alpha="1"/>
  3255. <strokealpha alpha="1"/>
  3256. <fillalpha alpha="0.644"/>
  3257. <fontfamily family="sans-serif"/>
  3258. <fontstyle style="0"/>
  3259. <path>
  3260. <move x="0" y="0"/>
  3261. <line x="0" y="30.57"/>
  3262. <line x="162.1" y="30.57"/>
  3263. <line x="162.1" y="0"/>
  3264. <close/>
  3265. <move x="1" y="1"/>
  3266. <line x="161.1" y="1"/>
  3267. <line x="161.1" y="29.57"/>
  3268. <line x="1" y="29.57"/>
  3269. <close/>
  3270. <move x="76.11" y="2.66"/>
  3271. <line x="76.11" y="12.97"/>
  3272. <line x="159.56" y="12.97"/>
  3273. <line x="159.56" y="2.66"/>
  3274. <close/>
  3275. <move x="77.11" y="3.66"/>
  3276. <line x="158.56" y="3.66"/>
  3277. <line x="158.56" y="11.97"/>
  3278. <line x="77.11" y="11.97"/>
  3279. <close/>
  3280. <move x="130.19" y="4.99"/>
  3281. <line x="130.19" y="10.64"/>
  3282. <line x="144.54" y="10.64"/>
  3283. <line x="144.54" y="4.99"/>
  3284. <close/>
  3285. <move x="131.19" y="5.99"/>
  3286. <line x="143.54" y="5.99"/>
  3287. <line x="143.54" y="9.64"/>
  3288. <line x="131.19" y="9.64"/>
  3289. <close/>
  3290. <move x="16.36" y="6.65"/>
  3291. <line x="16.36" y="12.31"/>
  3292. <line x="30.71" y="12.31"/>
  3293. <line x="30.71" y="6.65"/>
  3294. <close/>
  3295. <move x="17.36" y="7.65"/>
  3296. <line x="29.71" y="7.65"/>
  3297. <line x="29.71" y="11.31"/>
  3298. <line x="17.36" y="11.31"/>
  3299. <close/>
  3300. <move x="16.36" y="18.96"/>
  3301. <line x="16.36" y="24.61"/>
  3302. <line x="30.71" y="24.61"/>
  3303. <line x="30.71" y="18.96"/>
  3304. <close/>
  3305. <move x="40.39" y="18.96"/>
  3306. <line x="40.39" y="24.61"/>
  3307. <line x="54.74" y="24.61"/>
  3308. <line x="54.74" y="18.96"/>
  3309. <close/>
  3310. <move x="64.76" y="18.96"/>
  3311. <line x="64.76" y="24.61"/>
  3312. <line x="79.11" y="24.61"/>
  3313. <line x="79.11" y="18.96"/>
  3314. <close/>
  3315. <move x="85.12" y="18.96"/>
  3316. <line x="85.12" y="24.61"/>
  3317. <line x="99.48" y="24.61"/>
  3318. <line x="99.48" y="18.96"/>
  3319. <close/>
  3320. <move x="105.49" y="18.96"/>
  3321. <line x="105.49" y="24.61"/>
  3322. <line x="119.84" y="24.61"/>
  3323. <line x="119.84" y="18.96"/>
  3324. <close/>
  3325. <move x="129.86" y="18.96"/>
  3326. <line x="129.86" y="24.61"/>
  3327. <line x="144.21" y="24.61"/>
  3328. <line x="144.21" y="18.96"/>
  3329. <close/>
  3330. <move x="17.36" y="19.96"/>
  3331. <line x="29.71" y="19.96"/>
  3332. <line x="29.71" y="23.61"/>
  3333. <line x="17.36" y="23.61"/>
  3334. <close/>
  3335. <move x="41.39" y="19.96"/>
  3336. <line x="53.74" y="19.96"/>
  3337. <line x="53.74" y="23.61"/>
  3338. <line x="41.39" y="23.61"/>
  3339. <close/>
  3340. <move x="65.76" y="19.96"/>
  3341. <line x="78.11" y="19.96"/>
  3342. <line x="78.11" y="23.61"/>
  3343. <line x="65.76" y="23.61"/>
  3344. <close/>
  3345. <move x="86.12" y="19.96"/>
  3346. <line x="98.48" y="19.96"/>
  3347. <line x="98.48" y="23.61"/>
  3348. <line x="86.12" y="23.61"/>
  3349. <close/>
  3350. <move x="106.49" y="19.96"/>
  3351. <line x="118.84" y="19.96"/>
  3352. <line x="118.84" y="23.61"/>
  3353. <line x="106.49" y="23.61"/>
  3354. <close/>
  3355. <move x="130.86" y="19.96"/>
  3356. <line x="143.21" y="19.96"/>
  3357. <line x="143.21" y="23.61"/>
  3358. <line x="130.86" y="23.61"/>
  3359. <close/>
  3360. </path>
  3361. <fill/>
  3362. <strokewidth width="0.301"/>
  3363. <fillalpha alpha="0.228"/>
  3364. <path>
  3365. <move x="129.86" y="18.96"/>
  3366. <line x="144.21" y="18.96"/>
  3367. <line x="144.21" y="24.61"/>
  3368. <line x="129.86" y="24.61"/>
  3369. <line x="129.86" y="19.46"/>
  3370. <close/>
  3371. <move x="105.49" y="18.96"/>
  3372. <line x="119.84" y="18.96"/>
  3373. <line x="119.84" y="24.61"/>
  3374. <line x="105.49" y="24.61"/>
  3375. <line x="105.49" y="19.46"/>
  3376. <close/>
  3377. <move x="85.12" y="18.96"/>
  3378. <line x="99.48" y="18.96"/>
  3379. <line x="99.48" y="24.61"/>
  3380. <line x="85.12" y="24.61"/>
  3381. <line x="85.12" y="19.46"/>
  3382. <close/>
  3383. <move x="64.76" y="18.96"/>
  3384. <line x="79.11" y="18.96"/>
  3385. <line x="79.11" y="24.61"/>
  3386. <line x="64.76" y="24.61"/>
  3387. <line x="64.76" y="19.46"/>
  3388. <close/>
  3389. <move x="40.39" y="18.96"/>
  3390. <line x="54.74" y="18.96"/>
  3391. <line x="54.74" y="24.61"/>
  3392. <line x="40.39" y="24.61"/>
  3393. <line x="40.39" y="19.46"/>
  3394. <close/>
  3395. <move x="16.36" y="18.96"/>
  3396. <line x="30.71" y="18.96"/>
  3397. <line x="30.71" y="24.61"/>
  3398. <line x="16.36" y="24.61"/>
  3399. <line x="16.36" y="19.46"/>
  3400. <close/>
  3401. <move x="16.36" y="6.65"/>
  3402. <line x="30.71" y="6.65"/>
  3403. <line x="30.71" y="12.31"/>
  3404. <line x="16.36" y="12.31"/>
  3405. <line x="16.36" y="7.15"/>
  3406. <close/>
  3407. <move x="130.19" y="4.99"/>
  3408. <line x="144.54" y="4.99"/>
  3409. <line x="144.54" y="10.64"/>
  3410. <line x="130.19" y="10.64"/>
  3411. <line x="130.19" y="5.49"/>
  3412. <close/>
  3413. <move x="77.11" y="3.66"/>
  3414. <line x="77.11" y="11.97"/>
  3415. <line x="158.56" y="11.97"/>
  3416. <line x="158.56" y="3.66"/>
  3417. <close/>
  3418. <move x="76.11" y="2.66"/>
  3419. <line x="159.56" y="2.66"/>
  3420. <line x="159.56" y="12.97"/>
  3421. <line x="76.11" y="12.97"/>
  3422. <line x="76.11" y="3.16"/>
  3423. <close/>
  3424. <move x="1" y="1"/>
  3425. <line x="1" y="29.57"/>
  3426. <line x="161.1" y="29.57"/>
  3427. <line x="161.1" y="1"/>
  3428. <close/>
  3429. </path>
  3430. <fill/>
  3431. <fillalpha alpha="0.369"/>
  3432. <path>
  3433. <move x="130.86" y="19.96"/>
  3434. <line x="130.86" y="23.61"/>
  3435. <line x="143.21" y="23.61"/>
  3436. <line x="143.21" y="19.96"/>
  3437. <close/>
  3438. <move x="106.49" y="19.96"/>
  3439. <line x="106.49" y="23.61"/>
  3440. <line x="118.84" y="23.61"/>
  3441. <line x="118.84" y="19.96"/>
  3442. <close/>
  3443. <move x="86.12" y="19.96"/>
  3444. <line x="86.12" y="23.61"/>
  3445. <line x="98.48" y="23.61"/>
  3446. <line x="98.48" y="19.96"/>
  3447. <close/>
  3448. <move x="65.76" y="19.96"/>
  3449. <line x="65.76" y="23.61"/>
  3450. <line x="78.11" y="23.61"/>
  3451. <line x="78.11" y="19.96"/>
  3452. <close/>
  3453. <move x="41.39" y="19.96"/>
  3454. <line x="41.39" y="23.61"/>
  3455. <line x="53.74" y="23.61"/>
  3456. <line x="53.74" y="19.96"/>
  3457. <close/>
  3458. <move x="17.36" y="19.96"/>
  3459. <line x="17.36" y="23.61"/>
  3460. <line x="29.71" y="23.61"/>
  3461. <line x="29.71" y="19.96"/>
  3462. <close/>
  3463. <move x="17.36" y="7.65"/>
  3464. <line x="17.36" y="11.31"/>
  3465. <line x="29.71" y="11.31"/>
  3466. <line x="29.71" y="7.65"/>
  3467. <close/>
  3468. <move x="131.19" y="5.99"/>
  3469. <line x="131.19" y="9.64"/>
  3470. <line x="143.54" y="9.64"/>
  3471. <line x="143.54" y="5.99"/>
  3472. <close/>
  3473. </path>
  3474. <fill/>
  3475. </foreground>
  3476. </shape>
  3477. </shapes>