security.xml 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. <shapes name="mxgraph.rack.hpe_aruba.security">
  2. <shape aspect="variable" h="62.916" name="Aruba ClearPass C1000 front" strokewidth="inherit" w="682.593">
  3. <connections/>
  4. <foreground>
  5. <save/>
  6. <strokecolor color="#4a4a4a"/>
  7. <fillcolor color="#595959"/>
  8. <strokewidth width="0.57"/>
  9. <path>
  10. <move x="0" y="0.008"/>
  11. <line x="0" y="62.883"/>
  12. <line x="682.593" y="62.883"/>
  13. <line x="682.593" y="0.008"/>
  14. <line x="0" y="0.008"/>
  15. <close/>
  16. <move x="9.755" y="4.402"/>
  17. <line x="14.753" y="4.402"/>
  18. <curve x1="17.304" x2="19.357" x3="19.357" y1="4.402" y2="6.456" y3="9.006"/>
  19. <curve x1="19.357" x2="17.304" x3="14.753" y1="11.557" y2="13.61" y3="13.61"/>
  20. <line x="9.755" y="13.61"/>
  21. <curve x1="7.204" x2="5.151" x3="5.151" y1="13.61" y2="11.557" y3="9.006"/>
  22. <curve x1="5.151" x2="7.204" x3="9.755" y1="6.456" y2="4.402" y3="4.402"/>
  23. <close/>
  24. <move x="667.842" y="4.402"/>
  25. <line x="672.84" y="4.402"/>
  26. <curve x1="675.391" x2="677.444" x3="677.444" y1="4.402" y2="6.456" y3="9.006"/>
  27. <curve x1="677.444" x2="675.391" x3="672.84" y1="11.557" y2="13.61" y3="13.61"/>
  28. <line x="667.842" y="13.61"/>
  29. <curve x1="665.291" x2="663.238" x3="663.238" y1="13.61" y2="11.557" y3="9.006"/>
  30. <curve x1="663.238" x2="665.291" x3="667.842" y1="6.456" y2="4.402" y3="4.402"/>
  31. <close/>
  32. <move x="9.755" y="26.848"/>
  33. <line x="14.753" y="26.848"/>
  34. <curve x1="17.304" x2="19.357" x3="19.357" y1="26.848" y2="28.901" y3="31.452"/>
  35. <curve x1="19.357" x2="17.304" x3="14.753" y1="34.003" y2="36.056" y3="36.056"/>
  36. <line x="9.755" y="36.056"/>
  37. <curve x1="7.204" x2="5.151" x3="5.151" y1="36.056" y2="34.003" y3="31.452"/>
  38. <curve x1="5.151" x2="7.204" x3="9.755" y1="28.901" y2="26.848" y3="26.848"/>
  39. <close/>
  40. <move x="667.842" y="26.848"/>
  41. <line x="672.84" y="26.848"/>
  42. <curve x1="675.39" x2="677.444" x3="677.444" y1="26.848" y2="28.901" y3="31.452"/>
  43. <curve x1="677.444" x2="675.39" x3="672.84" y1="34.003" y2="36.056" y3="36.056"/>
  44. <line x="667.842" y="36.056"/>
  45. <curve x1="665.291" x2="663.238" x3="663.238" y1="36.056" y2="34.003" y3="31.452"/>
  46. <curve x1="663.238" x2="665.291" x3="667.842" y1="28.901" y2="26.848" y3="26.848"/>
  47. <close/>
  48. <move x="9.755" y="49.295"/>
  49. <line x="14.753" y="49.295"/>
  50. <curve x1="17.304" x2="19.357" x3="19.357" y1="49.295" y2="51.349" y3="53.899"/>
  51. <curve x1="19.357" x2="17.304" x3="14.753" y1="56.45" y2="58.503" y3="58.503"/>
  52. <line x="9.755" y="58.503"/>
  53. <curve x1="7.204" x2="5.151" x3="5.151" y1="58.503" y2="56.45" y3="53.899"/>
  54. <curve x1="5.151" x2="7.204" x3="9.755" y1="51.349" y2="49.295" y3="49.295"/>
  55. <close/>
  56. <move x="667.842" y="49.295"/>
  57. <line x="672.84" y="49.295"/>
  58. <curve x1="675.391" x2="677.444" x3="677.444" y1="49.295" y2="51.349" y3="53.899"/>
  59. <curve x1="677.444" x2="675.391" x3="672.84" y1="56.45" y2="58.503" y3="58.503"/>
  60. <line x="667.842" y="58.503"/>
  61. <curve x1="665.291" x2="663.238" x3="663.238" y1="58.503" y2="56.45" y3="53.899"/>
  62. <curve x1="663.238" x2="665.291" x3="667.842" y1="51.349" y2="49.295" y3="49.295"/>
  63. <close/>
  64. </path>
  65. <fillstroke/>
  66. <strokecolor color="#4b4b4b"/>
  67. <fillcolor color="#666"/>
  68. <rect h="62.916" w="639.022" x="21.744" y="0"/>
  69. <fillstroke/>
  70. <restore/>
  71. <rect/>
  72. <stroke/>
  73. <fillcolor color="#404040"/>
  74. <path>
  75. <move x="33.041" y="44.561"/>
  76. <line x="33.041" y="4.668"/>
  77. <line x="320.105" y="4.668"/>
  78. <line x="320.105" y="56.115"/>
  79. <line x="181.154" y="56.115"/>
  80. <line x="181.154" y="44.561"/>
  81. <line x="33.041" y="44.561"/>
  82. <close/>
  83. </path>
  84. <fill/>
  85. <fillcolor color="#1a1a1a"/>
  86. <path>
  87. <move x="321.644" y="4.597"/>
  88. <line x="512.989" y="4.597"/>
  89. <line x="512.989" y="56.352"/>
  90. <line x="321.644" y="56.352"/>
  91. <line x="321.644" y="4.597"/>
  92. <close/>
  93. <move x="44.594" y="47.828"/>
  94. <line x="179.901" y="47.828"/>
  95. <line x="179.901" y="53.389"/>
  96. <line x="44.594" y="53.389"/>
  97. <line x="44.594" y="47.828"/>
  98. <close/>
  99. </path>
  100. <fill/>
  101. <strokecolor color="#4e4e4e"/>
  102. <fillcolor color="#595959"/>
  103. <strokewidth width="0.57"/>
  104. <path>
  105. <move x="634.939" y="9.465"/>
  106. <curve x1="634.939" x2="633.679" x3="632.126" y1="7.913" y2="6.653" y3="6.653"/>
  107. <line x="554.215" y="6.653"/>
  108. <curve x1="552.663" x2="551.402" x3="551.402" y1="6.653" y2="7.913" y3="9.465"/>
  109. <line x="551.402" y="28.731"/>
  110. <curve x1="551.402" x2="552.663" x3="554.215" y1="30.283" y2="31.543" y3="31.543"/>
  111. <line x="632.126" y="31.543"/>
  112. <curve x1="633.679" x2="634.939" x3="634.939" y1="31.543" y2="30.283" y3="28.731"/>
  113. <line x="634.939" y="9.465"/>
  114. <close/>
  115. </path>
  116. <fillstroke/>
  117. <strokecolor color="#d56d88"/>
  118. <fillcolor color="#e23662"/>
  119. <path>
  120. <move x="610.365" y="17.615"/>
  121. <curve x1="610.365" x2="608.866" x3="607.044" y1="19.437" y2="20.936" y3="20.936"/>
  122. <curve x1="607.044" x2="607.044" x3="607.044" y1="20.936" y2="20.936" y3="20.936"/>
  123. <curve x1="605.222" x2="603.723" x3="603.723" y1="20.936" y2="19.437" y3="17.615"/>
  124. <line x="603.723" y="17.615"/>
  125. <curve x1="603.723" x2="605.222" x3="607.044" y1="15.793" y2="14.294" y3="14.294"/>
  126. <curve x1="607.044" x2="607.044" x3="607.044" y1="14.294" y2="14.294" y3="14.294"/>
  127. <curve x1="608.866" x2="610.365" x3="610.365" y1="14.294" y2="15.793" y3="17.615"/>
  128. <close/>
  129. <move x="624.296" y="17.566"/>
  130. <curve x1="624.296" x2="622.222" x3="619.702" y1="20.086" y2="22.159" y3="22.159"/>
  131. <curve x1="617.183" x2="615.109" x3="615.109" y1="22.159" y2="20.086" y3="17.566"/>
  132. <curve x1="615.109" x2="617.183" x3="619.702" y1="15.046" y2="12.972" y3="12.972"/>
  133. <curve x1="622.222" x2="624.296" x3="624.296" y1="12.972" y2="15.046" y3="17.566"/>
  134. <close/>
  135. </path>
  136. <fillstroke/>
  137. <strokecolor color="#474a47"/>
  138. <fillcolor color="#7d9ed5"/>
  139. <path>
  140. <move x="563.273" y="21.655"/>
  141. <curve x1="563.273" x2="562.409" x3="561.358" y1="22.706" y2="23.57" y3="23.57"/>
  142. <curve x1="560.308" x2="559.443" x3="559.443" y1="23.57" y2="22.706" y3="21.655"/>
  143. <curve x1="559.443" x2="560.308" x3="561.358" y1="20.605" y2="19.74" y3="19.74"/>
  144. <curve x1="562.409" x2="563.273" x3="563.273" y1="19.74" y2="20.605" y3="21.655"/>
  145. <close/>
  146. </path>
  147. <fillstroke/>
  148. <fillcolor color="#78cf6c"/>
  149. <path>
  150. <move x="571.694" y="21.655"/>
  151. <curve x1="571.694" x2="570.829" x3="569.779" y1="22.706" y2="23.57" y3="23.57"/>
  152. <curve x1="569.779" x2="569.779" x3="569.779" y1="23.57" y2="23.57" y3="23.57"/>
  153. <curve x1="568.728" x2="567.864" x3="567.864" y1="23.57" y2="22.706" y3="21.655"/>
  154. <line x="567.864" y="21.655"/>
  155. <curve x1="567.864" x2="568.728" x3="569.779" y1="20.605" y2="19.74" y3="19.74"/>
  156. <curve x1="569.779" x2="569.779" x3="569.779" y1="19.74" y2="19.74" y3="19.74"/>
  157. <curve x1="570.829" x2="571.694" x3="571.694" y1="19.74" y2="20.605" y3="21.655"/>
  158. <close/>
  159. </path>
  160. <fillstroke/>
  161. <path>
  162. <move x="580.114" y="21.655"/>
  163. <curve x1="580.114" x2="579.25" x3="578.199" y1="22.706" y2="23.57" y3="23.57"/>
  164. <curve x1="577.149" x2="576.284" x3="576.284" y1="23.57" y2="22.706" y3="21.655"/>
  165. <curve x1="576.284" x2="577.149" x3="578.199" y1="20.605" y2="19.74" y3="19.74"/>
  166. <curve x1="579.25" x2="580.114" x3="580.114" y1="19.74" y2="20.605" y3="21.655"/>
  167. <close/>
  168. </path>
  169. <fillstroke/>
  170. <fillcolor color="#ded69b"/>
  171. <path>
  172. <move x="588.535" y="21.655"/>
  173. <curve x1="588.535" x2="587.67" x3="586.62" y1="22.706" y2="23.57" y3="23.57"/>
  174. <curve x1="585.569" x2="584.705" x3="584.705" y1="23.57" y2="22.706" y3="21.655"/>
  175. <curve x1="584.705" x2="585.569" x3="586.62" y1="20.605" y2="19.74" y3="19.74"/>
  176. <curve x1="587.67" x2="588.535" x3="588.535" y1="19.74" y2="20.605" y3="21.655"/>
  177. <close/>
  178. </path>
  179. <fillstroke/>
  180. <fillcolor color="#78cf6c"/>
  181. <path>
  182. <move x="596.955" y="21.655"/>
  183. <curve x1="596.955" x2="596.091" x3="595.041" y1="22.706" y2="23.57" y3="23.57"/>
  184. <curve x1="595.041" x2="595.041" x3="595.04" y1="23.57" y2="23.57" y3="23.57"/>
  185. <curve x1="593.99" x2="593.126" x3="593.126" y1="23.57" y2="22.706" y3="21.655"/>
  186. <line x="593.126" y="21.655"/>
  187. <curve x1="593.126" x2="593.99" x3="595.04" y1="20.605" y2="19.74" y3="19.74"/>
  188. <curve x1="595.041" x2="595.041" x3="595.041" y1="19.74" y2="19.74" y3="19.74"/>
  189. <curve x1="596.091" x2="596.955" x3="596.955" y1="19.74" y2="20.605" y3="21.655"/>
  190. <close/>
  191. </path>
  192. <fillstroke/>
  193. </foreground>
  194. </shape>
  195. <shape aspect="variable" h="62.875" name="Aruba ClearPass C1000 rear" strokewidth="inherit" w="643.386">
  196. <connections/>
  197. <foreground>
  198. <save/>
  199. <save/>
  200. <save/>
  201. <save/>
  202. <save/>
  203. <save/>
  204. <save/>
  205. <save/>
  206. <strokecolor color="#0f0"/>
  207. <strokewidth width="0.57"/>
  208. <path>
  209. <move x="128.885" y="5.521"/>
  210. <line x="193.513" y="5.521"/>
  211. <line x="193.513" y="11.345"/>
  212. <line x="195.661" y="11.345"/>
  213. <line x="195.661" y="57.559"/>
  214. <line x="128.885" y="57.559"/>
  215. <line x="128.885" y="5.521"/>
  216. <close/>
  217. </path>
  218. <stroke/>
  219. <strokecolor color="#4a4a4a"/>
  220. <fillcolor color="#666"/>
  221. <rect h="62.875" w="643.386" x="0" y="0"/>
  222. <fillstroke/>
  223. <restore/>
  224. <rect/>
  225. <stroke/>
  226. <fillcolor color="#ff0"/>
  227. <rect h="22.5" w="30.937" x="128.885" y="5.521"/>
  228. <fill/>
  229. <strokecolor color="#848484"/>
  230. <fillcolor color="#333"/>
  231. <strokewidth width="0.85"/>
  232. <path>
  233. <move x="170.102" y="42.853"/>
  234. <line x="189.522" y="42.853"/>
  235. <line x="189.522" y="51.291"/>
  236. <line x="170.102" y="51.291"/>
  237. <line x="170.102" y="42.853"/>
  238. <close/>
  239. <move x="170.102" y="29.962"/>
  240. <line x="189.522" y="29.962"/>
  241. <line x="189.522" y="38.4"/>
  242. <line x="170.102" y="38.4"/>
  243. <line x="170.102" y="29.962"/>
  244. <close/>
  245. <move x="136.318" y="42.853"/>
  246. <line x="155.738" y="42.853"/>
  247. <line x="155.738" y="51.291"/>
  248. <line x="136.318" y="51.291"/>
  249. <line x="136.318" y="42.853"/>
  250. <close/>
  251. <move x="136.318" y="29.962"/>
  252. <line x="155.738" y="29.962"/>
  253. <line x="155.738" y="38.4"/>
  254. <line x="136.318" y="38.4"/>
  255. <line x="136.318" y="29.962"/>
  256. <close/>
  257. </path>
  258. <fillstroke/>
  259. <strokecolor color="#414141"/>
  260. <fillcolor color="#535353"/>
  261. <strokewidth width="0.57"/>
  262. <path>
  263. <move x="84.509" y="9.479"/>
  264. <curve x1="82.941" x2="81.669" x3="81.669" y1="9.479" y2="10.752" y3="12.319"/>
  265. <line x="81.669" y="50.715"/>
  266. <curve x1="81.669" x2="82.941" x3="84.509" y1="52.282" y2="53.555" y3="53.555"/>
  267. <line x="112.589" y="53.555"/>
  268. <curve x1="114.156" x2="115.429" x3="115.429" y1="53.555" y2="52.282" y3="50.715"/>
  269. <line x="115.429" y="12.319"/>
  270. <curve x1="115.429" x2="114.156" x3="112.589" y1="10.752" y2="9.479" y3="9.479"/>
  271. <line x="84.509" y="9.479"/>
  272. <close/>
  273. </path>
  274. <fillstroke/>
  275. <restore/>
  276. <rect/>
  277. <stroke/>
  278. <fillcolor color="#292929"/>
  279. <path>
  280. <move x="94.396" y="50.736"/>
  281. <line x="85.913" y="42.205"/>
  282. <line x="85.913" y="21.777"/>
  283. <line x="94.103" y="13.489"/>
  284. <line x="106.535" y="13.489"/>
  285. <curve x1="110.006" x2="111.606" x3="111.606" y1="13.489" y2="15.273" y3="18.803"/>
  286. <line x="111.606" y="44.886"/>
  287. <curve x1="111.606" x2="109.972" x3="106.438" y1="48.193" y2="50.736" y3="50.736"/>
  288. <line x="94.396" y="50.736"/>
  289. <close/>
  290. </path>
  291. <fill/>
  292. <fillcolor color="#9a9a9a"/>
  293. <path>
  294. <move x="99.075" y="22.752"/>
  295. <line x="99.075" y="19.926"/>
  296. <line x="106.659" y="19.926"/>
  297. <line x="106.659" y="22.752"/>
  298. <line x="99.075" y="22.752"/>
  299. <close/>
  300. <move x="91.146" y="33.457"/>
  301. <line x="91.146" y="30.63"/>
  302. <line x="98.73" y="30.63"/>
  303. <line x="98.73" y="33.457"/>
  304. <line x="91.146" y="33.457"/>
  305. <close/>
  306. <move x="99.075" y="44.161"/>
  307. <line x="99.075" y="41.334"/>
  308. <line x="106.659" y="41.334"/>
  309. <line x="106.659" y="44.161"/>
  310. <line x="99.075" y="44.161"/>
  311. <close/>
  312. </path>
  313. <fill/>
  314. <fillcolor color="#06f"/>
  315. <rect h="23.178" w="32.562" x="195.661" y="11.202"/>
  316. <fill/>
  317. <fillcolor color="#f00"/>
  318. <rect h="23.178" w="32.562" x="195.661" y="34.38"/>
  319. <fill/>
  320. <fillcolor color="#ccc"/>
  321. <rect h="46.08" w="29.615" x="228.223" y="11.202"/>
  322. <fill/>
  323. <strokecolor color="#98985f"/>
  324. <fillcolor color="#fdfd1c"/>
  325. <strokewidth width="0.33"/>
  326. <path>
  327. <move x="218.154" y="52.817"/>
  328. <line x="222.091" y="52.817"/>
  329. <line x="222.091" y="50.683"/>
  330. <line x="218.154" y="50.683"/>
  331. <line x="218.154" y="52.817"/>
  332. <close/>
  333. <move x="202.829" y="52.817"/>
  334. <line x="206.766" y="52.817"/>
  335. <line x="206.766" y="50.683"/>
  336. <line x="202.829" y="50.683"/>
  337. <line x="202.829" y="52.817"/>
  338. <close/>
  339. <move x="250.257" y="52.817"/>
  340. <line x="254.195" y="52.817"/>
  341. <line x="254.195" y="50.683"/>
  342. <line x="250.257" y="50.683"/>
  343. <line x="250.257" y="52.817"/>
  344. <close/>
  345. <move x="234.932" y="52.817"/>
  346. <line x="238.869" y="52.817"/>
  347. <line x="238.869" y="50.683"/>
  348. <line x="234.932" y="50.683"/>
  349. <line x="234.932" y="52.817"/>
  350. <close/>
  351. <move x="250.188" y="15.813"/>
  352. <line x="254.125" y="15.813"/>
  353. <line x="254.125" y="17.947"/>
  354. <line x="250.188" y="17.947"/>
  355. <line x="250.188" y="15.813"/>
  356. <close/>
  357. <move x="234.863" y="15.813"/>
  358. <line x="238.8" y="15.813"/>
  359. <line x="238.8" y="17.947"/>
  360. <line x="234.863" y="17.947"/>
  361. <line x="234.863" y="15.813"/>
  362. <close/>
  363. <move x="218.223" y="15.813"/>
  364. <line x="222.16" y="15.813"/>
  365. <line x="222.16" y="17.947"/>
  366. <line x="218.223" y="17.947"/>
  367. <line x="218.223" y="15.813"/>
  368. <close/>
  369. <move x="202.898" y="15.813"/>
  370. <line x="206.835" y="15.813"/>
  371. <line x="206.835" y="17.947"/>
  372. <line x="202.898" y="17.947"/>
  373. <line x="202.898" y="15.813"/>
  374. <close/>
  375. </path>
  376. <fillstroke/>
  377. <restore/>
  378. <rect/>
  379. <stroke/>
  380. <fillcolor color="#292929"/>
  381. <path>
  382. <move x="207.647" y="53.907"/>
  383. <line x="207.647" y="49.537"/>
  384. <line x="203.354" y="49.537"/>
  385. <line x="203.354" y="38.61"/>
  386. <line x="221.514" y="38.61"/>
  387. <line x="221.514" y="49.537"/>
  388. <line x="217.221" y="49.537"/>
  389. <line x="217.221" y="53.907"/>
  390. <line x="207.647" y="53.907"/>
  391. <close/>
  392. <move x="239.682" y="53.907"/>
  393. <line x="239.682" y="49.537"/>
  394. <line x="235.389" y="49.537"/>
  395. <line x="235.389" y="38.61"/>
  396. <line x="253.549" y="38.61"/>
  397. <line x="253.549" y="49.537"/>
  398. <line x="249.255" y="49.537"/>
  399. <line x="249.255" y="53.907"/>
  400. <line x="239.682" y="53.907"/>
  401. <close/>
  402. <move x="239.682" y="14.723"/>
  403. <line x="239.682" y="19.093"/>
  404. <line x="235.389" y="19.093"/>
  405. <line x="235.389" y="30.02"/>
  406. <line x="253.549" y="30.02"/>
  407. <line x="253.549" y="19.093"/>
  408. <line x="249.255" y="19.093"/>
  409. <line x="249.255" y="14.723"/>
  410. <line x="239.682" y="14.723"/>
  411. <close/>
  412. <move x="207.647" y="14.723"/>
  413. <line x="207.647" y="19.093"/>
  414. <line x="203.354" y="19.093"/>
  415. <line x="203.354" y="30.02"/>
  416. <line x="221.514" y="30.02"/>
  417. <line x="221.514" y="19.093"/>
  418. <line x="217.221" y="19.093"/>
  419. <line x="217.221" y="14.723"/>
  420. <line x="207.647" y="14.723"/>
  421. <close/>
  422. </path>
  423. <fill/>
  424. <fillcolor color="#1a1a1a"/>
  425. <ellipse h="56.518" w="56.518" x="19.867" y="3.645"/>
  426. <fill/>
  427. <fillcolor color="#d9d9d9"/>
  428. <ellipse h="33.204" w="33.204" x="31.19" y="15.102"/>
  429. <fill/>
  430. <strokecolor color="#9b9b9b"/>
  431. <fillcolor color="#dcdcdc"/>
  432. <strokewidth width="0.57"/>
  433. <path>
  434. <move x="28.305" y="55.476"/>
  435. <curve x1="28.305" x2="26.491" x3="24.287" y1="57.68" y2="59.494" y3="59.494"/>
  436. <curve x1="22.083" x2="20.269" x3="20.269" y1="59.494" y2="57.68" y3="55.476"/>
  437. <line x="20.269" y="55.476"/>
  438. <curve x1="20.269" x2="22.083" x3="24.287" y1="53.272" y2="51.458" y3="51.458"/>
  439. <curve x1="26.491" x2="28.305" x3="28.305" y1="51.458" y2="53.272" y3="55.476"/>
  440. <line x="28.305" y="55.476"/>
  441. <close/>
  442. <move x="75.481" y="55.476"/>
  443. <curve x1="75.481" x2="73.668" x3="71.463" y1="57.68" y2="59.494" y3="59.494"/>
  444. <line x="71.463" y="59.494"/>
  445. <curve x1="69.259" x2="67.446" x3="67.446" y1="59.494" y2="57.68" y3="55.476"/>
  446. <line x="67.446" y="55.476"/>
  447. <curve x1="67.446" x2="69.259" x3="71.463" y1="53.272" y2="51.458" y3="51.458"/>
  448. <line x="71.463" y="51.458"/>
  449. <curve x1="73.668" x2="75.481" x3="75.481" y1="51.458" y2="53.272" y3="55.476"/>
  450. <line x="75.481" y="55.476"/>
  451. <close/>
  452. <move x="75.448" y="8.333"/>
  453. <curve x1="75.448" x2="73.634" x3="71.43" y1="10.537" y2="12.351" y3="12.351"/>
  454. <curve x1="69.226" x2="67.412" x3="67.412" y1="12.351" y2="10.537" y3="8.333"/>
  455. <curve x1="67.412" x2="69.226" x3="71.43" y1="6.129" y2="4.315" y3="4.315"/>
  456. <curve x1="73.634" x2="75.448" x3="75.448" y1="4.315" y2="6.129" y3="8.333"/>
  457. <close/>
  458. <move x="28.305" y="8.048"/>
  459. <curve x1="28.305" x2="26.491" x3="24.287" y1="10.252" y2="12.066" y3="12.066"/>
  460. <curve x1="22.083" x2="20.269" x3="20.269" y1="12.066" y2="10.252" y3="8.048"/>
  461. <curve x1="20.269" x2="22.083" x3="24.287" y1="5.844" y2="4.03" y3="4.03"/>
  462. <curve x1="26.491" x2="28.305" x3="28.305" y1="4.03" y2="5.844" y3="8.048"/>
  463. <line x="28.305" y="8.048"/>
  464. <close/>
  465. </path>
  466. <fillstroke/>
  467. <strokecolor color="#4d4d4d"/>
  468. <fillcolor color="#5b5b5b"/>
  469. <path>
  470. <move x="15.447" y="55.688"/>
  471. <curve x1="15.447" x2="13.845" x3="11.898" y1="57.635" y2="59.237" y3="59.237"/>
  472. <curve x1="9.951" x2="8.349" x3="8.349" y1="59.237" y2="57.635" y3="55.688"/>
  473. <curve x1="8.349" x2="9.951" x3="11.898" y1="53.741" y2="52.139" y3="52.139"/>
  474. <curve x1="13.845" x2="15.447" x3="15.447" y1="52.139" y2="53.741" y3="55.688"/>
  475. <close/>
  476. <move x="15.447" y="10.744"/>
  477. <curve x1="15.447" x2="13.845" x3="11.898" y1="12.691" y2="14.293" y3="14.293"/>
  478. <curve x1="9.951" x2="8.349" x3="8.349" y1="14.293" y2="12.691" y3="10.744"/>
  479. <curve x1="8.349" x2="9.951" x3="11.898" y1="8.797" y2="7.195" y3="7.195"/>
  480. <curve x1="13.845" x2="15.447" x3="15.447" y1="7.195" y2="8.797" y3="10.744"/>
  481. <close/>
  482. </path>
  483. <fillstroke/>
  484. <strokecolor color="#767676"/>
  485. <path>
  486. <move x="581.466" y="19.603"/>
  487. <curve x1="581.466" x2="579.864" x3="577.917" y1="21.55" y2="23.153" y3="23.153"/>
  488. <curve x1="577.917" x2="577.917" x3="577.917" y1="23.153" y2="23.153" y3="23.153"/>
  489. <curve x1="575.97" x2="574.368" x3="574.368" y1="23.153" y2="21.55" y3="19.603"/>
  490. <curve x1="574.368" x2="575.97" x3="577.917" y1="17.656" y2="16.054" y3="16.054"/>
  491. <curve x1="577.917" x2="577.917" x3="577.917" y1="16.054" y2="16.054" y3="16.054"/>
  492. <curve x1="579.864" x2="581.466" x3="581.466" y1="16.054" y2="17.656" y3="19.603"/>
  493. <close/>
  494. <move x="365.631" y="4.874"/>
  495. <curve x1="365.631" x2="364.029" x3="362.082" y1="6.821" y2="8.423" y3="8.423"/>
  496. <curve x1="362.082" x2="362.082" x3="362.082" y1="8.423" y2="8.423" y3="8.423"/>
  497. <curve x1="360.135" x2="358.533" x3="358.533" y1="8.423" y2="6.821" y3="4.874"/>
  498. <curve x1="358.533" x2="360.135" x3="362.082" y1="2.927" y2="1.325" y3="1.325"/>
  499. <curve x1="362.082" x2="362.082" x3="362.082" y1="1.325" y2="1.325" y3="1.325"/>
  500. <curve x1="364.029" x2="365.631" x3="365.631" y1="1.325" y2="2.927" y3="4.874"/>
  501. <close/>
  502. </path>
  503. <fillstroke/>
  504. <strokecolor color="#4d4d4d"/>
  505. <fillcolor color="#efefef"/>
  506. <strokewidth width="0.28"/>
  507. <path>
  508. <move x="339.827" y="47.71"/>
  509. <curve x1="339.827" x2="338.459" x3="336.797" y1="49.373" y2="50.741" y3="50.741"/>
  510. <curve x1="336.797" x2="336.797" x3="336.797" y1="50.741" y2="50.741" y3="50.741"/>
  511. <curve x1="335.134" x2="333.766" x3="333.766" y1="50.741" y2="49.373" y3="47.71"/>
  512. <curve x1="333.766" x2="335.134" x3="336.797" y1="46.048" y2="44.68" y3="44.68"/>
  513. <curve x1="336.797" x2="336.797" x3="336.797" y1="44.68" y2="44.68" y3="44.68"/>
  514. <curve x1="338.459" x2="339.827" x3="339.827" y1="44.68" y2="46.048" y3="47.71"/>
  515. <close/>
  516. <move x="302.993" y="47.71"/>
  517. <curve x1="302.993" x2="301.625" x3="299.962" y1="49.373" y2="50.741" y3="50.741"/>
  518. <curve x1="298.3" x2="296.932" x3="296.932" y1="50.741" y2="49.373" y3="47.71"/>
  519. <curve x1="296.932" x2="298.3" x3="299.962" y1="46.048" y2="44.68" y3="44.68"/>
  520. <curve x1="301.625" x2="302.993" x3="302.993" y1="44.68" y2="46.048" y3="47.71"/>
  521. <close/>
  522. </path>
  523. <fillstroke/>
  524. <strokecolor color="#ebeef2"/>
  525. <fillcolor color="#5285c2"/>
  526. <strokewidth width="0.85"/>
  527. <linejoin join="miter"/>
  528. <linecap cap="butt"/>
  529. <path>
  530. <move x="310.233" y="52.698"/>
  531. <curve x1="309.027" x2="308.205" x3="307.865" y1="52.698" y2="51.555" y3="49.905"/>
  532. <line x="307.278" y="45.178"/>
  533. <curve x1="307.071" x2="308.507" x3="309.912" y1="43.777" y2="42.46" y3="42.46"/>
  534. <line x="327.192" y="42.426"/>
  535. <curve x1="329.063" x2="329.842" x3="329.694" y1="42.426" y2="43.777" y3="44.911"/>
  536. <line x="329.014" y="50.448"/>
  537. <curve x1="328.655" x2="328.177" x3="326.616" y1="51.592" y2="52.84" y3="52.84"/>
  538. <line x="310.233" y="52.698"/>
  539. <close/>
  540. </path>
  541. <fillstroke/>
  542. <restore/>
  543. <rect/>
  544. <stroke/>
  545. <strokecolor color="#454545"/>
  546. <strokewidth width="0.28"/>
  547. <path>
  548. <move x="264.93" y="34.137"/>
  549. <line x="287.99" y="34.137"/>
  550. <line x="287.99" y="53.077"/>
  551. <line x="264.93" y="53.077"/>
  552. <line x="264.93" y="34.137"/>
  553. <close/>
  554. <move x="264.93" y="11.598"/>
  555. <line x="287.99" y="11.598"/>
  556. <line x="287.99" y="30.538"/>
  557. <line x="264.93" y="30.538"/>
  558. <line x="264.93" y="11.598"/>
  559. <close/>
  560. </path>
  561. <stroke/>
  562. <restore/>
  563. <rect/>
  564. <stroke/>
  565. <fillcolor color="#1a1a1a"/>
  566. <path>
  567. <move x="268.303" y="36.41"/>
  568. <line x="284.592" y="36.41"/>
  569. <line x="284.592" y="50.662"/>
  570. <line x="268.303" y="50.662"/>
  571. <line x="268.303" y="36.41"/>
  572. <close/>
  573. <move x="194.856" y="4.983"/>
  574. <line x="344.984" y="4.983"/>
  575. <line x="344.984" y="35.576"/>
  576. <line x="328.7" y="35.576"/>
  577. <line x="328.7" y="30.43"/>
  578. <line x="309.506" y="30.43"/>
  579. <line x="309.506" y="35.576"/>
  580. <line x="292.814" y="35.576"/>
  581. <line x="292.814" y="9.404"/>
  582. <line x="194.856" y="9.404"/>
  583. <line x="194.856" y="4.983"/>
  584. <close/>
  585. <move x="268.28" y="13.871"/>
  586. <line x="284.569" y="13.871"/>
  587. <line x="284.569" y="28.123"/>
  588. <line x="268.28" y="28.123"/>
  589. <line x="268.28" y="13.871"/>
  590. <close/>
  591. </path>
  592. <fill/>
  593. <path>
  594. <move x="360.883" y="53.969"/>
  595. <line x="360.883" y="17.842"/>
  596. <line x="369.053" y="17.842"/>
  597. <line x="369.053" y="9.873"/>
  598. <line x="374.276" y="9.873"/>
  599. <line x="374.276" y="40.811"/>
  600. <line x="592.245" y="40.811"/>
  601. <line x="592.245" y="9.873"/>
  602. <line x="636.575" y="9.873"/>
  603. <line x="636.575" y="53.969"/>
  604. <line x="360.883" y="53.969"/>
  605. <close/>
  606. </path>
  607. <fill/>
  608. <strokecolor color="#404040"/>
  609. <strokewidth width="0.57"/>
  610. <rect h="18.993" w="144.862" x="402.171" y="11.831"/>
  611. <stroke/>
  612. <restore/>
  613. <rect/>
  614. <stroke/>
  615. <fillcolor color="#1a1a1a"/>
  616. <path>
  617. <move x="527.814" y="18.188"/>
  618. <line x="543.176" y="18.188"/>
  619. <curve x1="544.933" x2="546.347" x3="546.347" y1="18.188" y2="19.602" y3="21.358"/>
  620. <curve x1="546.347" x2="544.933" x3="543.176" y1="23.114" y2="24.528" y3="24.528"/>
  621. <line x="527.814" y="24.528"/>
  622. <curve x1="526.057" x2="524.644" x3="524.644" y1="24.528" y2="23.114" y3="21.358"/>
  623. <curve x1="524.644" x2="526.057" x3="527.814" y1="19.602" y2="18.188" y3="18.188"/>
  624. <close/>
  625. <move x="500.157" y="18.188"/>
  626. <line x="515.52" y="18.188"/>
  627. <curve x1="517.276" x2="518.69" x3="518.69" y1="18.188" y2="19.602" y3="21.358"/>
  628. <curve x1="518.69" x2="517.276" x3="515.52" y1="23.114" y2="24.528" y3="24.528"/>
  629. <line x="500.157" y="24.528"/>
  630. <curve x1="498.401" x2="496.987" x3="496.987" y1="24.528" y2="23.114" y3="21.358"/>
  631. <curve x1="496.987" x2="498.401" x3="500.157" y1="19.602" y2="18.188" y3="18.188"/>
  632. <close/>
  633. <move x="472.501" y="18.188"/>
  634. <line x="487.863" y="18.188"/>
  635. <curve x1="489.62" x2="491.034" x3="491.034" y1="18.188" y2="19.602" y3="21.358"/>
  636. <curve x1="491.034" x2="489.62" x3="487.863" y1="23.114" y2="24.528" y3="24.528"/>
  637. <line x="472.501" y="24.528"/>
  638. <curve x1="470.745" x2="469.331" x3="469.331" y1="24.528" y2="23.114" y3="21.358"/>
  639. <curve x1="469.331" x2="470.745" x3="472.501" y1="19.602" y2="18.188" y3="18.188"/>
  640. <close/>
  641. <move x="444.844" y="18.188"/>
  642. <line x="460.207" y="18.188"/>
  643. <curve x1="461.963" x2="463.377" x3="463.377" y1="18.188" y2="19.602" y3="21.358"/>
  644. <curve x1="463.377" x2="461.963" x3="460.207" y1="23.114" y2="24.528" y3="24.528"/>
  645. <line x="444.844" y="24.528"/>
  646. <curve x1="443.088" x2="441.674" x3="441.674" y1="24.528" y2="23.114" y3="21.358"/>
  647. <curve x1="441.674" x2="443.088" x3="444.844" y1="19.602" y2="18.188" y3="18.188"/>
  648. <close/>
  649. <move x="417.188" y="18.188"/>
  650. <line x="432.551" y="18.188"/>
  651. <curve x1="434.307" x2="435.721" x3="435.721" y1="18.188" y2="19.602" y3="21.358"/>
  652. <curve x1="435.721" x2="434.307" x3="432.551" y1="23.114" y2="24.528" y3="24.528"/>
  653. <line x="417.188" y="24.528"/>
  654. <curve x1="415.432" x2="414.018" x3="414.018" y1="24.528" y2="23.114" y3="21.358"/>
  655. <curve x1="414.018" x2="415.432" x3="417.188" y1="19.602" y2="18.188" y3="18.188"/>
  656. <close/>
  657. </path>
  658. <fill/>
  659. <strokecolor color="#565656"/>
  660. <fillcolor color="#696969"/>
  661. <strokewidth width="0.57"/>
  662. <path>
  663. <move x="421.572" y="26.123"/>
  664. <line x="537.345" y="26.123"/>
  665. <curve x1="538.48" x2="539.393" x3="539.393" y1="26.123" y2="27.036" y3="28.171"/>
  666. <curve x1="539.393" x2="538.48" x3="537.345" y1="29.305" y2="30.219" y3="30.219"/>
  667. <line x="421.572" y="30.219"/>
  668. <curve x1="420.438" x2="419.524" x3="419.524" y1="30.219" y2="29.305" y3="28.171"/>
  669. <curve x1="419.524" x2="420.438" x3="421.572" y1="27.036" y2="26.123" y3="26.123"/>
  670. <close/>
  671. <move x="421.572" y="12.497"/>
  672. <line x="537.345" y="12.497"/>
  673. <curve x1="538.48" x2="539.393" x3="539.393" y1="12.497" y2="13.411" y3="14.545"/>
  674. <curve x1="539.393" x2="538.48" x3="537.345" y1="15.68" y2="16.593" y3="16.593"/>
  675. <line x="421.572" y="16.593"/>
  676. <curve x1="420.438" x2="419.524" x3="419.524" y1="16.593" y2="15.68" y3="14.545"/>
  677. <curve x1="419.524" x2="420.438" x3="421.572" y1="13.411" y2="12.497" y3="12.497"/>
  678. <close/>
  679. </path>
  680. <fillstroke/>
  681. <strokecolor color="#292929"/>
  682. <fillcolor color="#e6e6e6"/>
  683. <strokewidth width="0.28"/>
  684. <linejoin join="miter"/>
  685. <rect h="18.686" w="23.24" x="134.1" y="7.789"/>
  686. <fillstroke/>
  687. <restore/>
  688. <rect/>
  689. <stroke/>
  690. <strokecolor color="#909090"/>
  691. <fillcolor color="#fbfb1d"/>
  692. <strokewidth width="0.33"/>
  693. <path>
  694. <move x="151.856" y="9.301"/>
  695. <line x="155.793" y="9.301"/>
  696. <line x="155.793" y="11.435"/>
  697. <line x="151.856" y="11.435"/>
  698. <line x="151.856" y="9.301"/>
  699. <close/>
  700. <move x="136.531" y="9.301"/>
  701. <line x="140.468" y="9.301"/>
  702. <line x="140.468" y="11.435"/>
  703. <line x="136.531" y="11.435"/>
  704. <line x="136.531" y="9.301"/>
  705. <close/>
  706. </path>
  707. <fillstroke/>
  708. <restore/>
  709. <rect/>
  710. <stroke/>
  711. <fillcolor color="#292929"/>
  712. <path>
  713. <move x="141.28" y="8.211"/>
  714. <line x="141.28" y="12.581"/>
  715. <line x="136.987" y="12.581"/>
  716. <line x="136.987" y="23.508"/>
  717. <line x="155.147" y="23.508"/>
  718. <line x="155.147" y="12.581"/>
  719. <line x="150.854" y="12.581"/>
  720. <line x="150.854" y="8.211"/>
  721. <line x="141.28" y="8.211"/>
  722. <close/>
  723. </path>
  724. <fill/>
  725. <strokecolor color="#868686"/>
  726. <fillcolor color="#e6e6e6"/>
  727. <strokewidth width="0.57"/>
  728. <linejoin join="miter"/>
  729. <path>
  730. <move x="200.852" y="35.958"/>
  731. <line x="223.865" y="35.958"/>
  732. <line x="223.865" y="54.757"/>
  733. <line x="200.852" y="54.757"/>
  734. <line x="200.852" y="35.958"/>
  735. <close/>
  736. <move x="200.852" y="13.525"/>
  737. <line x="223.865" y="13.525"/>
  738. <line x="223.865" y="32.323"/>
  739. <line x="200.852" y="32.323"/>
  740. <line x="200.852" y="13.525"/>
  741. <close/>
  742. <move x="232.9" y="35.958"/>
  743. <line x="255.913" y="35.958"/>
  744. <line x="255.913" y="54.757"/>
  745. <line x="232.9" y="54.757"/>
  746. <line x="232.9" y="35.958"/>
  747. <close/>
  748. <move x="232.9" y="13.525"/>
  749. <line x="255.913" y="13.525"/>
  750. <line x="255.913" y="32.323"/>
  751. <line x="232.9" y="32.323"/>
  752. <line x="232.9" y="13.525"/>
  753. <close/>
  754. </path>
  755. <fillstroke/>
  756. </foreground>
  757. </shape>
  758. <shape aspect="variable" h="62.927" name="Aruba ClearPass C2000 front" strokewidth="inherit" w="703.485">
  759. <connections/>
  760. <foreground>
  761. <save/>
  762. <save/>
  763. <strokecolor color="#373737"/>
  764. <fillcolor color="#666"/>
  765. <strokewidth width="0.77"/>
  766. <rect h="62.875" w="703.485" x="0" y="0.018"/>
  767. <fillstroke/>
  768. <strokecolor color="#3c3c3c"/>
  769. <fillcolor color="#5c5c5c"/>
  770. <rect h="62.916" w="634.067" x="34.332" y="0.011"/>
  771. <fillstroke/>
  772. <restore/>
  773. <rect/>
  774. <stroke/>
  775. <fillcolor color="#1a1a1a"/>
  776. <path>
  777. <move x="480.743" y="12.121"/>
  778. <line x="658.024" y="12.121"/>
  779. <line x="658.024" y="54.861"/>
  780. <line x="480.743" y="54.861"/>
  781. <line x="480.743" y="12.121"/>
  782. <close/>
  783. <move x="366.855" y="12.121"/>
  784. <line x="393.862" y="12.121"/>
  785. <line x="393.862" y="54.861"/>
  786. <line x="366.855" y="54.861"/>
  787. <line x="366.855" y="12.121"/>
  788. <close/>
  789. </path>
  790. <fill/>
  791. <strokecolor color="#9c9c9c"/>
  792. <fillcolor color="#e6e6e6"/>
  793. <strokewidth width="0.75"/>
  794. <linejoin join="miter"/>
  795. <linecap cap="butt"/>
  796. <path>
  797. <move x="34.332" y="62.927"/>
  798. <line x="34.332" y="0.011"/>
  799. <line x="99.168" y="0"/>
  800. <line x="102.96" y="4.159"/>
  801. <line x="600.38" y="3.663"/>
  802. <line x="603.795" y="0.047"/>
  803. <line x="668.399" y="0.011"/>
  804. <line x="668.399" y="62.927"/>
  805. <line x="628.276" y="62.682"/>
  806. <line x="595.849" y="46.435"/>
  807. <line x="107.446" y="46.414"/>
  808. <line x="74.211" y="62.654"/>
  809. <line x="34.332" y="62.927"/>
  810. <close/>
  811. <move x="50.335" y="44.779"/>
  812. <curve x1="50.335" x2="51.54" x3="55.291" y1="47.609" y2="50.323" y3="50.323"/>
  813. <line x="71.362" y="50.323"/>
  814. <line x="91.251" y="40.025"/>
  815. <line x="91.251" y="23.351"/>
  816. <line x="71.094" y="13.708"/>
  817. <line x="55.09" y="13.708"/>
  818. <curve x1="52.137" x2="50.335" x3="50.335" y1="13.708" y2="15.989" y3="19.333"/>
  819. <line x="50.335" y="44.779"/>
  820. <close/>
  821. <move x="649.272" y="50.296"/>
  822. <curve x1="651.316" x2="652.586" x3="652.586" y1="50.296" y2="48.077" y3="46.087"/>
  823. <line x="652.586" y="18.058"/>
  824. <curve x1="652.586" x2="651.35" x3="648.697" y1="15.767" y2="13.702" y3="13.702"/>
  825. <line x="632.063" y="13.702"/>
  826. <line x="611.757" y="23.502"/>
  827. <line x="611.757" y="40.775"/>
  828. <line x="631.652" y="50.296"/>
  829. <line x="649.272" y="50.296"/>
  830. <close/>
  831. </path>
  832. <fillstroke/>
  833. <restore/>
  834. <rect/>
  835. <stroke/>
  836. <fillcolor color="#787878"/>
  837. <rect h="31.071" w="438.75" x="155.536" y="14.512"/>
  838. <fill/>
  839. <strokecolor color="#919191"/>
  840. <strokewidth width="0.57"/>
  841. <ellipse h="22.16" w="22.16" x="129.257" y="18.86"/>
  842. <stroke/>
  843. <strokecolor color="#454545"/>
  844. <fillcolor color="#ddd"/>
  845. <strokewidth width="1.7"/>
  846. <path>
  847. <move x="696.245" y="23.954"/>
  848. <line x="696.245" y="23.954"/>
  849. <curve x1="696.245" x2="693.295" x3="689.71" y1="27.538" y2="30.488" y3="30.488"/>
  850. <line x="689.71" y="30.488"/>
  851. <curve x1="686.126" x2="683.176" x3="683.176" y1="30.488" y2="27.538" y3="23.954"/>
  852. <line x="683.176" y="23.954"/>
  853. <curve x1="683.176" x2="686.126" x3="689.71" y1="20.369" y2="17.419" y3="17.419"/>
  854. <curve x1="693.295" x2="696.245" x3="696.245" y1="17.419" y2="20.369" y3="23.954"/>
  855. <close/>
  856. <move x="18.503" y="24.116"/>
  857. <line x="18.503" y="24.116"/>
  858. <curve x1="18.503" x2="15.553" x3="11.969" y1="27.701" y2="30.651" y3="30.651"/>
  859. <line x="11.969" y="30.651"/>
  860. <curve x1="8.384" x2="5.434" x3="5.434" y1="30.651" y2="27.701" y3="24.116"/>
  861. <line x="5.434" y="24.116"/>
  862. <curve x1="5.434" x2="8.384" x3="11.969" y1="20.532" y2="17.582" y3="17.582"/>
  863. <line x="11.969" y="17.582"/>
  864. <curve x1="15.553" x2="18.503" x3="18.503" y1="17.582" y2="20.532" y3="24.116"/>
  865. <close/>
  866. </path>
  867. <fillstroke/>
  868. <strokecolor color="#424242"/>
  869. <fillcolor color="#fff"/>
  870. <strokewidth width="0.57"/>
  871. <path>
  872. <move x="686.153" y="32.295"/>
  873. <line x="695.813" y="32.295"/>
  874. <curve x1="697.203" x2="698.322" x3="698.322" y1="32.295" y2="33.415" y3="34.805"/>
  875. <line x="698.322" y="40.156"/>
  876. <curve x1="698.322" x2="697.203" x3="695.813" y1="41.546" y2="42.665" y3="42.665"/>
  877. <line x="686.153" y="42.665"/>
  878. <curve x1="684.763" x2="683.643" x3="683.643" y1="42.665" y2="41.546" y3="40.156"/>
  879. <line x="683.643" y="34.805"/>
  880. <curve x1="683.643" x2="684.763" x3="686.153" y1="33.415" y2="32.295" y3="32.295"/>
  881. <close/>
  882. <move x="7.66" y="32.261"/>
  883. <line x="17.319" y="32.261"/>
  884. <curve x1="18.71" x2="19.829" x3="19.829" y1="32.261" y2="33.38" y3="34.77"/>
  885. <line x="19.829" y="40.121"/>
  886. <curve x1="19.829" x2="18.71" x3="17.319" y1="41.511" y2="42.63" y3="42.63"/>
  887. <line x="7.66" y="42.63"/>
  888. <curve x1="6.269" x2="5.15" x3="5.15" y1="42.63" y2="41.511" y3="40.121"/>
  889. <line x="5.15" y="34.77"/>
  890. <curve x1="5.15" x2="6.269" x3="7.66" y1="33.38" y2="32.261" y3="32.261"/>
  891. <close/>
  892. </path>
  893. <fillstroke/>
  894. <strokecolor color="#02a781"/>
  895. <strokewidth width="2.27"/>
  896. <linejoin join="miter"/>
  897. <rect h="5.324" w="15.871" x="680.503" y="3.864"/>
  898. <stroke/>
  899. <strokecolor color="#575757"/>
  900. <fillcolor color="#ececec"/>
  901. <strokewidth width="1.13"/>
  902. <rect h="25.062" w="47.651" x="160.205" y="17.242"/>
  903. <fillstroke/>
  904. </foreground>
  905. </shape>
  906. <shape aspect="variable" h="62.921" name="Aruba ClearPass C2000 rear" strokewidth="inherit" w="688.843">
  907. <connections/>
  908. <foreground>
  909. <save/>
  910. <save/>
  911. <save/>
  912. <save/>
  913. <save/>
  914. <save/>
  915. <save/>
  916. <strokecolor color="#3a3a3a"/>
  917. <fillcolor color="#666"/>
  918. <strokewidth width="0.57"/>
  919. <rect h="62.87" w="688.843" x="0" y="0"/>
  920. <fillstroke/>
  921. <strokecolor color="#5c5c5c"/>
  922. <fillcolor color="#e6e6e6"/>
  923. <linejoin join="miter"/>
  924. <rect h="62.87" w="619.886" x="34.78" y="0"/>
  925. <fillstroke/>
  926. <strokecolor color="#343434"/>
  927. <fillcolor color="#fff"/>
  928. <path>
  929. <move x="20.066" y="35.268"/>
  930. <curve x1="20.066" x2="18.836" x3="17.32" y1="33.752" y2="32.522" y3="32.522"/>
  931. <line x="8.418" y="32.522"/>
  932. <curve x1="6.902" x2="5.672" x3="5.672" y1="32.522" y2="33.752" y3="35.268"/>
  933. <line x="5.672" y="39.908"/>
  934. <curve x1="5.672" x2="6.902" x3="8.418" y1="41.424" y2="42.655" y3="42.655"/>
  935. <line x="17.32" y="42.655"/>
  936. <curve x1="18.836" x2="20.066" x3="20.066" y1="42.655" y2="41.424" y3="39.908"/>
  937. <line x="20.066" y="35.268"/>
  938. <close/>
  939. </path>
  940. <fillstroke/>
  941. <strokecolor color="#363636"/>
  942. <path>
  943. <move x="684" y="35.259"/>
  944. <curve x1="684" x2="682.77" x3="681.254" y1="33.743" y2="32.512" y3="32.512"/>
  945. <line x="672.352" y="32.512"/>
  946. <curve x1="670.836" x2="669.605" x3="669.605" y1="32.512" y2="33.743" y3="35.259"/>
  947. <line x="669.605" y="39.899"/>
  948. <curve x1="669.605" x2="670.836" x3="672.352" y1="41.415" y2="42.646" y3="42.646"/>
  949. <line x="681.254" y="42.646"/>
  950. <curve x1="682.77" x2="684" x3="684" y1="42.646" y2="41.415" y3="39.899"/>
  951. <line x="684" y="35.259"/>
  952. <close/>
  953. </path>
  954. <fillstroke/>
  955. <restore/>
  956. <rect/>
  957. <stroke/>
  958. <strokecolor color="#303030"/>
  959. <fillcolor color="#535353"/>
  960. <strokewidth width="0.57"/>
  961. <path>
  962. <move x="580.673" y="9.269"/>
  963. <curve x1="579.105" x2="577.833" x3="577.833" y1="9.269" y2="10.541" y3="12.109"/>
  964. <line x="577.833" y="50.505"/>
  965. <curve x1="577.833" x2="579.105" x3="580.673" y1="52.072" y2="53.345" y3="53.345"/>
  966. <line x="608.753" y="53.345"/>
  967. <curve x1="610.321" x2="611.593" x3="611.593" y1="53.345" y2="52.072" y3="50.505"/>
  968. <line x="611.593" y="12.109"/>
  969. <curve x1="611.593" x2="610.321" x3="608.753" y1="10.541" y2="9.269" y3="9.269"/>
  970. <line x="580.673" y="9.269"/>
  971. <close/>
  972. </path>
  973. <fillstroke/>
  974. <restore/>
  975. <rect/>
  976. <stroke/>
  977. <fillcolor color="#292929"/>
  978. <path>
  979. <move x="590.56" y="50.526"/>
  980. <line x="582.077" y="41.994"/>
  981. <line x="582.077" y="21.567"/>
  982. <line x="590.267" y="13.279"/>
  983. <line x="602.699" y="13.279"/>
  984. <curve x1="606.17" x2="607.77" x3="607.77" y1="13.279" y2="15.063" y3="18.593"/>
  985. <line x="607.77" y="44.676"/>
  986. <curve x1="607.77" x2="606.136" x3="602.602" y1="47.983" y2="50.526" y3="50.526"/>
  987. <line x="590.56" y="50.526"/>
  988. <close/>
  989. </path>
  990. <fill/>
  991. <fillcolor color="#999"/>
  992. <path>
  993. <move x="595.239" y="22.542"/>
  994. <line x="595.239" y="19.715"/>
  995. <line x="602.823" y="19.715"/>
  996. <line x="602.823" y="22.542"/>
  997. <line x="595.239" y="22.542"/>
  998. <close/>
  999. <move x="587.31" y="33.246"/>
  1000. <line x="587.31" y="30.419"/>
  1001. <line x="594.894" y="30.419"/>
  1002. <line x="594.894" y="33.246"/>
  1003. <line x="587.31" y="33.246"/>
  1004. <close/>
  1005. <move x="595.239" y="43.95"/>
  1006. <line x="595.239" y="41.123"/>
  1007. <line x="602.823" y="41.123"/>
  1008. <line x="602.823" y="43.95"/>
  1009. <line x="595.239" y="43.95"/>
  1010. <close/>
  1011. </path>
  1012. <fill/>
  1013. <fillcolor color="#1a1a1a"/>
  1014. <ellipse h="56.518" w="56.518" x="519.893" y="3.073"/>
  1015. <fill/>
  1016. <fillcolor color="#ececec"/>
  1017. <ellipse h="27.522" w="27.522" x="534.056" y="17.37"/>
  1018. <fill/>
  1019. <strokecolor color="#4c4c4c"/>
  1020. <fillcolor color="#f1f1f1"/>
  1021. <strokewidth width="0.28"/>
  1022. <path>
  1023. <move x="248.374" y="47.124"/>
  1024. <curve x1="248.374" x2="247.006" x3="245.343" y1="48.786" y2="50.154" y3="50.154"/>
  1025. <curve x1="243.681" x2="242.313" x3="242.313" y1="50.154" y2="48.786" y3="47.124"/>
  1026. <curve x1="242.313" x2="243.681" x3="245.343" y1="45.461" y2="44.093" y3="44.093"/>
  1027. <curve x1="247.006" x2="248.374" x3="248.374" y1="44.093" y2="45.461" y3="47.124"/>
  1028. <close/>
  1029. <move x="211.539" y="47.124"/>
  1030. <curve x1="211.539" x2="210.171" x3="208.509" y1="48.786" y2="50.154" y3="50.154"/>
  1031. <curve x1="206.846" x2="205.478" x3="205.478" y1="50.154" y2="48.786" y3="47.124"/>
  1032. <curve x1="205.478" x2="206.846" x3="208.509" y1="45.461" y2="44.093" y3="44.093"/>
  1033. <curve x1="210.171" x2="211.539" x3="211.539" y1="44.093" y2="45.461" y3="47.124"/>
  1034. <close/>
  1035. </path>
  1036. <fillstroke/>
  1037. <strokecolor color="#d3d2d2"/>
  1038. <fillcolor color="#5285c2"/>
  1039. <strokewidth width="0.85"/>
  1040. <linejoin join="miter"/>
  1041. <linecap cap="butt"/>
  1042. <path>
  1043. <move x="218.779" y="52.112"/>
  1044. <curve x1="217.574" x2="216.751" x3="216.412" y1="52.112" y2="50.969" y3="49.318"/>
  1045. <line x="215.824" y="44.591"/>
  1046. <curve x1="215.618" x2="217.053" x3="218.459" y1="43.191" y2="41.873" y3="41.873"/>
  1047. <line x="235.739" y="41.84"/>
  1048. <curve x1="237.609" x2="238.388" x3="238.24" y1="41.84" y2="43.19" y3="44.324"/>
  1049. <line x="237.561" y="49.861"/>
  1050. <curve x1="237.201" x2="236.724" x3="235.163" y1="51.006" y2="52.254" y3="52.254"/>
  1051. <line x="218.779" y="52.112"/>
  1052. <close/>
  1053. </path>
  1054. <fillstroke/>
  1055. <restore/>
  1056. <rect/>
  1057. <stroke/>
  1058. <strokecolor color="#ababab"/>
  1059. <fillcolor color="#d8d8d8"/>
  1060. <strokewidth width="0.57"/>
  1061. <path>
  1062. <move x="447.945" y="18.79"/>
  1063. <curve x1="447.945" x2="446.343" x3="444.396" y1="20.737" y2="22.339" y3="22.339"/>
  1064. <curve x1="444.396" x2="444.396" x3="444.396" y1="22.339" y2="22.339" y3="22.339"/>
  1065. <curve x1="442.449" x2="440.847" x3="440.847" y1="22.339" y2="20.737" y3="18.79"/>
  1066. <line x="440.847" y="18.79"/>
  1067. <curve x1="440.847" x2="442.449" x3="444.396" y1="16.843" y2="15.241" y3="15.241"/>
  1068. <curve x1="444.396" x2="444.396" x3="444.396" y1="15.241" y2="15.241" y3="15.241"/>
  1069. <curve x1="446.343" x2="447.945" x3="447.945" y1="15.241" y2="16.843" y3="18.79"/>
  1070. <close/>
  1071. <move x="447.945" y="47.476"/>
  1072. <curve x1="447.945" x2="446.343" x3="444.396" y1="49.423" y2="51.025" y3="51.025"/>
  1073. <curve x1="444.396" x2="444.396" x3="444.396" y1="51.025" y2="51.025" y3="51.025"/>
  1074. <curve x1="442.449" x2="440.847" x3="440.847" y1="51.025" y2="49.423" y3="47.476"/>
  1075. <curve x1="440.847" x2="442.449" x3="444.396" y1="45.529" y2="43.927" y3="43.927"/>
  1076. <curve x1="444.396" x2="444.396" x3="444.396" y1="43.927" y2="43.927" y3="43.927"/>
  1077. <curve x1="446.343" x2="447.945" x3="447.945" y1="43.927" y2="45.529" y3="47.476"/>
  1078. <close/>
  1079. </path>
  1080. <fillstroke/>
  1081. <strokecolor color="#909090"/>
  1082. <fillcolor color="#dcdcdc"/>
  1083. <path>
  1084. <move x="529.332" y="53.964"/>
  1085. <curve x1="529.332" x2="527.442" x3="525.147" y1="56.26" y2="58.149" y3="58.149"/>
  1086. <line x="525.147" y="58.149"/>
  1087. <curve x1="522.851" x2="520.961" x3="520.961" y1="58.149" y2="56.26" y3="53.964"/>
  1088. <line x="520.961" y="53.964"/>
  1089. <curve x1="520.961" x2="522.851" x3="525.147" y1="51.668" y2="49.779" y3="49.779"/>
  1090. <line x="525.147" y="49.779"/>
  1091. <curve x1="527.442" x2="529.332" x3="529.332" y1="49.779" y2="51.668" y3="53.964"/>
  1092. <line x="529.332" y="53.964"/>
  1093. <close/>
  1094. <move x="575.035" y="53.997"/>
  1095. <curve x1="575.035" x2="573.146" x3="570.85" y1="56.293" y2="58.183" y3="58.183"/>
  1096. <line x="570.85" y="58.183"/>
  1097. <curve x1="568.554" x2="566.664" x3="566.664" y1="58.183" y2="56.293" y3="53.997"/>
  1098. <curve x1="566.664" x2="568.554" x3="570.85" y1="51.701" y2="49.812" y3="49.812"/>
  1099. <line x="570.85" y="49.812"/>
  1100. <curve x1="573.146" x2="575.035" x3="575.035" y1="49.812" y2="51.701" y3="53.997"/>
  1101. <line x="575.035" y="53.997"/>
  1102. <close/>
  1103. <move x="574.968" y="8.729"/>
  1104. <line x="574.968" y="8.729"/>
  1105. <curve x1="574.968" x2="573.079" x3="570.783" y1="11.025" y2="12.915" y3="12.915"/>
  1106. <line x="570.783" y="12.915"/>
  1107. <curve x1="568.487" x2="566.598" x3="566.598" y1="12.915" y2="11.025" y3="8.729"/>
  1108. <line x="566.598" y="8.729"/>
  1109. <curve x1="566.598" x2="568.487" x3="570.783" y1="6.434" y2="4.544" y3="4.544"/>
  1110. <line x="570.783" y="4.544"/>
  1111. <curve x1="573.079" x2="574.968" x3="574.968" y1="4.544" y2="6.434" y3="8.729"/>
  1112. <close/>
  1113. <move x="529.399" y="8.763"/>
  1114. <line x="529.399" y="8.763"/>
  1115. <curve x1="529.399" x2="527.51" x3="525.214" y1="11.059" y2="12.948" y3="12.948"/>
  1116. <line x="525.214" y="12.948"/>
  1117. <curve x1="522.918" x2="521.028" x3="521.028" y1="12.948" y2="11.059" y3="8.763"/>
  1118. <line x="521.028" y="8.763"/>
  1119. <curve x1="521.028" x2="522.918" x3="525.214" y1="6.467" y2="4.578" y3="4.578"/>
  1120. <line x="525.214" y="4.578"/>
  1121. <curve x1="527.51" x2="529.399" x3="529.399" y1="4.578" y2="6.467" y3="8.763"/>
  1122. <close/>
  1123. </path>
  1124. <fillstroke/>
  1125. <strokecolor color="#5c5c5c"/>
  1126. <linejoin join="miter"/>
  1127. <rect h="34.018" w="258.482" x="87.501" y="2.435"/>
  1128. <stroke/>
  1129. <restore/>
  1130. <rect/>
  1131. <stroke/>
  1132. <strokecolor color="#3f3f3a"/>
  1133. <fillcolor color="#4d823a"/>
  1134. <strokewidth width="0.33"/>
  1135. <path>
  1136. <move x="191.952" y="40.396"/>
  1137. <line x="195.889" y="40.396"/>
  1138. <line x="195.889" y="42.53"/>
  1139. <line x="191.952" y="42.53"/>
  1140. <line x="191.952" y="40.396"/>
  1141. <close/>
  1142. <move x="272.981" y="40.396"/>
  1143. <line x="276.918" y="40.396"/>
  1144. <line x="276.918" y="42.53"/>
  1145. <line x="272.981" y="42.53"/>
  1146. <line x="272.981" y="40.396"/>
  1147. <close/>
  1148. </path>
  1149. <fillstroke/>
  1150. <fillcolor color="#c3c696"/>
  1151. <path>
  1152. <move x="176.627" y="40.396"/>
  1153. <line x="180.564" y="40.396"/>
  1154. <line x="180.564" y="42.53"/>
  1155. <line x="176.627" y="42.53"/>
  1156. <line x="176.627" y="40.396"/>
  1157. <close/>
  1158. <move x="257.656" y="40.396"/>
  1159. <line x="261.593" y="40.396"/>
  1160. <line x="261.593" y="42.53"/>
  1161. <line x="257.656" y="42.53"/>
  1162. <line x="257.656" y="40.396"/>
  1163. <close/>
  1164. </path>
  1165. <fillstroke/>
  1166. <restore/>
  1167. <rect/>
  1168. <stroke/>
  1169. <fillcolor color="#292929"/>
  1170. <path>
  1171. <move x="262.406" y="39.306"/>
  1172. <line x="262.406" y="43.676"/>
  1173. <line x="258.113" y="43.676"/>
  1174. <line x="258.113" y="54.604"/>
  1175. <line x="276.272" y="54.604"/>
  1176. <line x="276.272" y="43.676"/>
  1177. <line x="271.979" y="43.676"/>
  1178. <line x="271.979" y="39.306"/>
  1179. <line x="262.406" y="39.306"/>
  1180. <close/>
  1181. <move x="181.377" y="39.306"/>
  1182. <line x="181.377" y="43.676"/>
  1183. <line x="177.084" y="43.676"/>
  1184. <line x="177.084" y="54.604"/>
  1185. <line x="195.243" y="54.604"/>
  1186. <line x="195.243" y="43.676"/>
  1187. <line x="190.95" y="43.676"/>
  1188. <line x="190.95" y="39.306"/>
  1189. <line x="181.377" y="39.306"/>
  1190. <close/>
  1191. </path>
  1192. <fill/>
  1193. <strokecolor color="#8c8c8c"/>
  1194. <strokewidth width="0.57"/>
  1195. <linejoin join="miter"/>
  1196. <path>
  1197. <move x="88.944" y="10.813"/>
  1198. <line x="179.109" y="10.813"/>
  1199. <line x="179.109" y="28.878"/>
  1200. <line x="88.944" y="28.878"/>
  1201. <line x="88.944" y="10.813"/>
  1202. <close/>
  1203. <move x="205.359" y="10.789"/>
  1204. <line x="345.95" y="10.789"/>
  1205. <line x="345.95" y="28.903"/>
  1206. <line x="205.359" y="28.903"/>
  1207. <line x="205.359" y="10.789"/>
  1208. <close/>
  1209. </path>
  1210. <stroke/>
  1211. <strokecolor color="#323232"/>
  1212. <fillcolor color="#595959"/>
  1213. <path>
  1214. <move x="626.253" y="9.624"/>
  1215. <curve x1="626.253" x2="625.395" x3="624.339" y1="8.567" y2="7.71" y3="7.71"/>
  1216. <line x="617.465" y="7.71"/>
  1217. <curve x1="616.409" x2="615.551" x3="615.551" y1="7.71" y2="8.567" y3="9.624"/>
  1218. <line x="615.551" y="52.081"/>
  1219. <curve x1="615.551" x2="616.409" x3="617.465" y1="53.138" y2="53.995" y3="53.995"/>
  1220. <line x="624.339" y="53.995"/>
  1221. <curve x1="625.395" x2="626.253" x3="626.253" y1="53.995" y2="53.138" y3="52.081"/>
  1222. <line x="626.253" y="9.624"/>
  1223. <close/>
  1224. </path>
  1225. <fillstroke/>
  1226. <strokecolor color="#5c5c5c"/>
  1227. <strokewidth width="0.75"/>
  1228. <linecap cap="butt"/>
  1229. <path>
  1230. <move x="494.096" y="62.921"/>
  1231. <line x="494.096" y="0.039"/>
  1232. </path>
  1233. <stroke/>
  1234. <restore/>
  1235. <rect/>
  1236. <stroke/>
  1237. <fillcolor color="#7a7a7a"/>
  1238. <path>
  1239. <move x="318.661" y="56.296"/>
  1240. <line x="318.661" y="40.382"/>
  1241. <line x="359.62" y="40.382"/>
  1242. <line x="359.62" y="7.737"/>
  1243. <line x="417.016" y="7.737"/>
  1244. <line x="417.016" y="56.296"/>
  1245. <line x="318.661" y="56.296"/>
  1246. <close/>
  1247. <move x="41.773" y="35.531"/>
  1248. <line x="50.395" y="35.531"/>
  1249. <line x="50.395" y="44.88"/>
  1250. <line x="170.926" y="44.88"/>
  1251. <line x="170.926" y="56.296"/>
  1252. <line x="41.773" y="56.296"/>
  1253. <line x="41.773" y="35.531"/>
  1254. <close/>
  1255. </path>
  1256. <fill/>
  1257. <strokecolor color="#7c7d7d"/>
  1258. <fillcolor color="#323232"/>
  1259. <strokewidth width="0.85"/>
  1260. <linejoin join="miter"/>
  1261. <path>
  1262. <move x="123.129" y="41.847"/>
  1263. <line x="140.406" y="41.847"/>
  1264. <curve x1="140.981" x2="141.444" x3="141.444" y1="41.847" y2="42.31" y3="42.885"/>
  1265. <line x="141.444" y="49.749"/>
  1266. <curve x1="141.444" x2="140.981" x3="140.406" y1="50.324" y2="50.787" y3="50.787"/>
  1267. <line x="123.129" y="50.787"/>
  1268. <curve x1="122.554" x2="122.091" x3="122.091" y1="50.787" y2="50.324" y3="49.749"/>
  1269. <line x="122.091" y="42.885"/>
  1270. <curve x1="122.091" x2="122.554" x3="123.129" y1="42.31" y2="41.847" y3="41.847"/>
  1271. <close/>
  1272. <move x="90.481" y="41.847"/>
  1273. <line x="107.758" y="41.847"/>
  1274. <curve x1="108.333" x2="108.796" x3="108.796" y1="41.847" y2="42.31" y3="42.885"/>
  1275. <line x="108.796" y="49.749"/>
  1276. <curve x1="108.796" x2="108.333" x3="107.758" y1="50.324" y2="50.787" y3="50.787"/>
  1277. <line x="90.481" y="50.787"/>
  1278. <curve x1="89.906" x2="89.443" x3="89.443" y1="50.787" y2="50.324" y3="49.749"/>
  1279. <line x="89.443" y="42.885"/>
  1280. <curve x1="89.443" x2="89.906" x3="90.481" y1="42.31" y2="41.847" y3="41.847"/>
  1281. <close/>
  1282. </path>
  1283. <fillstroke/>
  1284. <strokecolor color="#b5b5b5"/>
  1285. <fillcolor color="#e6e6e6"/>
  1286. <strokewidth width="0.57"/>
  1287. <path>
  1288. <move x="224.002" y="17.247"/>
  1289. <line x="327.243" y="17.247"/>
  1290. <curve x1="328.727" x2="329.922" x3="329.922" y1="17.247" y2="18.442" y3="19.926"/>
  1291. <curve x1="329.922" x2="328.727" x3="327.243" y1="21.411" y2="22.606" y3="22.606"/>
  1292. <line x="224.002" y="22.606"/>
  1293. <curve x1="222.517" x2="221.322" x3="221.322" y1="22.606" y2="21.411" y3="19.926"/>
  1294. <curve x1="221.322" x2="222.517" x3="224.002" y1="18.442" y2="17.247" y3="17.247"/>
  1295. <close/>
  1296. <move x="109.05" y="17.057"/>
  1297. <line x="158.974" y="17.057"/>
  1298. <curve x1="160.564" x2="161.843" x3="161.843" y1="17.057" y2="18.337" y3="19.926"/>
  1299. <curve x1="161.843" x2="160.564" x3="158.974" y1="21.516" y2="22.795" y3="22.795"/>
  1300. <line x="109.05" y="22.795"/>
  1301. <curve x1="107.461" x2="106.181" x3="106.181" y1="22.795" y2="21.516" y3="19.926"/>
  1302. <curve x1="106.181" x2="107.461" x3="109.05" y1="18.337" y2="17.057" y3="17.057"/>
  1303. <close/>
  1304. </path>
  1305. <fillstroke/>
  1306. <strokecolor color="#3f3f3f"/>
  1307. <fillcolor color="#64b064"/>
  1308. <strokewidth width="2.27"/>
  1309. <ellipse h="8.05" w="8.05" x="507.638" y="13.77"/>
  1310. <fillstroke/>
  1311. <strokecolor color="#2a2a2a"/>
  1312. <strokewidth width="1.42"/>
  1313. <ellipse h="6.06" w="6.06" x="295.454" y="44.862"/>
  1314. <stroke/>
  1315. <restore/>
  1316. <rect/>
  1317. <stroke/>
  1318. <fillcolor color="#1a1a1a"/>
  1319. <path>
  1320. <move x="102.205" y="19.858"/>
  1321. <curve x1="102.205" x2="101.297" x3="100.193" y1="20.962" y2="21.871" y3="21.871"/>
  1322. <curve x1="99.089" x2="98.18" x3="98.18" y1="21.871" y2="20.962" y3="19.858"/>
  1323. <curve x1="98.18" x2="99.089" x3="100.193" y1="18.754" y2="17.846" y3="17.846"/>
  1324. <curve x1="101.297" x2="102.205" x3="102.205" y1="17.846" y2="18.754" y3="19.858"/>
  1325. <close/>
  1326. <move x="169.695" y="19.858"/>
  1327. <curve x1="169.695" x2="168.787" x3="167.683" y1="20.962" y2="21.871" y3="21.871"/>
  1328. <curve x1="166.579" x2="165.67" x3="165.67" y1="21.871" y2="20.962" y3="19.858"/>
  1329. <curve x1="165.67" x2="166.579" x3="167.683" y1="18.754" y2="17.846" y3="17.846"/>
  1330. <curve x1="168.787" x2="169.695" x3="169.695" y1="17.846" y2="18.754" y3="19.858"/>
  1331. <close/>
  1332. <move x="217.188" y="19.858"/>
  1333. <curve x1="217.188" x2="216.28" x3="215.176" y1="20.962" y2="21.871" y3="21.871"/>
  1334. <curve x1="214.072" x2="213.163" x3="213.163" y1="21.871" y2="20.962" y3="19.858"/>
  1335. <curve x1="213.163" x2="214.072" x3="215.176" y1="18.754" y2="17.846" y3="17.846"/>
  1336. <curve x1="216.28" x2="217.188" x3="217.188" y1="17.846" y2="18.754" y3="19.858"/>
  1337. <close/>
  1338. <move x="338.031" y="19.858"/>
  1339. <curve x1="338.031" x2="337.122" x3="336.018" y1="20.962" y2="21.871" y3="21.871"/>
  1340. <curve x1="336.018" x2="336.018" x3="336.018" y1="21.871" y2="21.871" y3="21.871"/>
  1341. <curve x1="334.914" x2="334.006" x3="334.006" y1="21.871" y2="20.962" y3="19.858"/>
  1342. <curve x1="334.006" x2="334.914" x3="336.018" y1="18.754" y2="17.846" y3="17.846"/>
  1343. <curve x1="336.018" x2="336.018" x3="336.018" y1="17.846" y2="17.846" y3="17.846"/>
  1344. <curve x1="337.122" x2="338.031" x3="338.031" y1="17.846" y2="18.754" y3="19.858"/>
  1345. <close/>
  1346. </path>
  1347. <fill/>
  1348. </foreground>
  1349. </shape>
  1350. <shape aspect="variable" h="62.927" name="Aruba ClearPass C3000 front" strokewidth="inherit" w="703.485">
  1351. <connections/>
  1352. <foreground>
  1353. <save/>
  1354. <strokecolor color="#949494"/>
  1355. <fillcolor color="#d9d9d9"/>
  1356. <strokewidth width="0.57"/>
  1357. <rect h="62.875" w="703.485" x="0" y="0.018"/>
  1358. <fillstroke/>
  1359. <strokecolor color="#434343"/>
  1360. <fillcolor color="#6d6d6d"/>
  1361. <strokewidth width="0.77"/>
  1362. <rect h="62.916" w="641.165" x="34.333" y="0.011"/>
  1363. <fillstroke/>
  1364. <restore/>
  1365. <rect/>
  1366. <stroke/>
  1367. <fillcolor color="#e6e6e6"/>
  1368. <path>
  1369. <move x="34.333" y="62.926"/>
  1370. <line x="34.333" y="0.011"/>
  1371. <line x="99.169" y="0"/>
  1372. <line x="102.961" y="4.158"/>
  1373. <line x="600.381" y="3.663"/>
  1374. <line x="603.796" y="0.047"/>
  1375. <line x="669.337" y="0.011"/>
  1376. <line x="669.337" y="62.926"/>
  1377. <line x="628.277" y="62.682"/>
  1378. <line x="595.85" y="46.435"/>
  1379. <line x="107.447" y="46.414"/>
  1380. <line x="74.212" y="62.654"/>
  1381. <line x="34.333" y="62.926"/>
  1382. <close/>
  1383. <move x="50.336" y="44.779"/>
  1384. <curve x1="50.336" x2="51.541" x3="55.292" y1="47.609" y2="50.323" y3="50.323"/>
  1385. <line x="71.363" y="50.323"/>
  1386. <line x="91.251" y="40.025"/>
  1387. <line x="91.251" y="23.35"/>
  1388. <line x="71.095" y="13.708"/>
  1389. <line x="55.091" y="13.708"/>
  1390. <curve x1="52.138" x2="50.336" x3="50.336" y1="13.708" y2="15.988" y3="19.333"/>
  1391. <line x="50.336" y="44.779"/>
  1392. <close/>
  1393. <move x="649.273" y="50.295"/>
  1394. <curve x1="651.316" x2="652.586" x3="652.586" y1="50.295" y2="48.077" y3="46.087"/>
  1395. <line x="652.586" y="18.058"/>
  1396. <curve x1="652.586" x2="651.35" x3="648.697" y1="15.766" y2="13.702" y3="13.702"/>
  1397. <line x="632.064" y="13.702"/>
  1398. <line x="611.758" y="23.501"/>
  1399. <line x="611.758" y="40.774"/>
  1400. <line x="631.653" y="50.295"/>
  1401. <line x="649.273" y="50.295"/>
  1402. <close/>
  1403. </path>
  1404. <fill/>
  1405. <fillcolor color="#8c8c8c"/>
  1406. <rect h="31.071" w="438.75" x="155.537" y="14.511"/>
  1407. <fill/>
  1408. <strokecolor color="#8c8c8c"/>
  1409. <fillcolor color="#e6e6e6"/>
  1410. <strokewidth width="0.85"/>
  1411. <ellipse h="22.16" w="22.16" x="129.258" y="18.86"/>
  1412. <fillstroke/>
  1413. <strokecolor color="#bcbcbc"/>
  1414. <strokewidth width="0.57"/>
  1415. <path>
  1416. <move x="702.81" y="35.876"/>
  1417. <curve x1="702.81" x2="701.685" x3="700.3" y1="34.491" y2="33.366" y3="33.366"/>
  1418. <line x="679.859" y="33.366"/>
  1419. <curve x1="678.474" x2="677.35" x3="677.35" y1="33.366" y2="34.491" y3="35.876"/>
  1420. <line x="677.35" y="49.731"/>
  1421. <curve x1="677.35" x2="678.474" x3="679.859" y1="51.116" y2="52.241" y3="52.241"/>
  1422. <line x="700.3" y="52.241"/>
  1423. <curve x1="701.685" x2="702.81" x3="702.81" y1="52.241" y2="51.116" y3="49.731"/>
  1424. <line x="702.81" y="35.876"/>
  1425. <close/>
  1426. </path>
  1427. <stroke/>
  1428. <strokecolor color="#00a982"/>
  1429. <strokewidth width="2.83"/>
  1430. <linejoin join="miter"/>
  1431. <rect h="7.114" w="20.178" x="677.047" y="16.033"/>
  1432. <stroke/>
  1433. <strokecolor color="#5d5d5d"/>
  1434. <fillcolor color="#ececec"/>
  1435. <strokewidth width="1.13"/>
  1436. <rect h="25.062" w="47.651" x="160.205" y="17.242"/>
  1437. <fillstroke/>
  1438. </foreground>
  1439. </shape>
  1440. <shape aspect="variable" h="63.326" name="Aruba ClearPass C3000 rear" strokewidth="inherit" w="688.843">
  1441. <connections/>
  1442. <foreground>
  1443. <save/>
  1444. <save/>
  1445. <save/>
  1446. <save/>
  1447. <save/>
  1448. <save/>
  1449. <save/>
  1450. <save/>
  1451. <save/>
  1452. <strokecolor color="#8b8b8b"/>
  1453. <fillcolor color="#e6e6e6"/>
  1454. <strokewidth width="0.57"/>
  1455. <path>
  1456. <move x="0" y="0.246"/>
  1457. <line x="0" y="63.116"/>
  1458. <line x="688.843" y="63.116"/>
  1459. <line x="688.843" y="0.246"/>
  1460. <line x="0" y="0.246"/>
  1461. <close/>
  1462. <move x="674.823" y="5.114"/>
  1463. <line x="680.29" y="5.114"/>
  1464. <curve x1="682.744" x2="684.721" x3="684.721" y1="5.114" y2="7.089" y3="9.544"/>
  1465. <curve x1="684.721" x2="682.744" x3="680.29" y1="11.998" y2="13.975" y3="13.975"/>
  1466. <line x="674.823" y="13.975"/>
  1467. <curve x1="672.369" x2="670.394" x3="670.394" y1="13.975" y2="11.998" y3="9.544"/>
  1468. <curve x1="670.394" x2="672.369" x3="674.823" y1="7.089" y2="5.114" y3="5.114"/>
  1469. <close/>
  1470. <move x="8.763" y="5.23"/>
  1471. <line x="14.23" y="5.23"/>
  1472. <curve x1="16.684" x2="18.661" x3="18.661" y1="5.23" y2="7.207" y3="9.661"/>
  1473. <curve x1="18.661" x2="16.684" x3="14.23" y1="12.115" y2="14.091" y3="14.091"/>
  1474. <line x="8.763" y="14.091"/>
  1475. <curve x1="6.309" x2="4.333" x3="4.333" y1="14.091" y2="12.115" y3="9.661"/>
  1476. <curve x1="4.333" x2="6.309" x3="8.763" y1="7.207" y2="5.23" y3="5.23"/>
  1477. <close/>
  1478. <move x="8.833" y="49.243"/>
  1479. <line x="14.3" y="49.243"/>
  1480. <curve x1="16.755" x2="18.731" x3="18.731" y1="49.243" y2="51.218" y3="53.672"/>
  1481. <curve x1="18.731" x2="16.755" x3="14.3" y1="56.127" y2="58.103" y3="58.103"/>
  1482. <line x="8.833" y="58.103"/>
  1483. <curve x1="6.379" x2="4.402" x3="4.402" y1="58.103" y2="56.127" y3="53.672"/>
  1484. <curve x1="4.402" x2="6.379" x3="8.833" y1="51.218" y2="49.243" y3="49.243"/>
  1485. <close/>
  1486. <move x="674.757" y="49.243"/>
  1487. <line x="680.224" y="49.243"/>
  1488. <curve x1="682.679" x2="684.654" x3="684.654" y1="49.243" y2="51.219" y3="53.674"/>
  1489. <curve x1="684.654" x2="682.679" x3="680.224" y1="56.128" y2="58.103" y3="58.103"/>
  1490. <line x="674.757" y="58.103"/>
  1491. <curve x1="672.303" x2="670.326" x3="670.326" y1="58.103" y2="56.128" y3="53.674"/>
  1492. <curve x1="670.326" x2="672.303" x3="674.757" y1="51.219" y2="49.243" y3="49.243"/>
  1493. <close/>
  1494. </path>
  1495. <fillstroke/>
  1496. <strokecolor color="#363636"/>
  1497. <fillcolor color="#535353"/>
  1498. <strokewidth width="0.85"/>
  1499. <path>
  1500. <move x="643.201" y="15.494"/>
  1501. <curve x1="644.768" x2="646.041" x3="646.041" y1="15.494" y2="16.767" y3="18.334"/>
  1502. <line x="646.041" y="56.73"/>
  1503. <curve x1="646.041" x2="644.768" x3="643.201" y1="58.298" y2="59.57" y3="59.57"/>
  1504. <line x="615.12" y="59.57"/>
  1505. <curve x1="613.553" x2="612.28" x3="612.28" y1="59.57" y2="58.298" y3="56.73"/>
  1506. <line x="612.28" y="18.334"/>
  1507. <curve x1="612.28" x2="613.553" x3="615.12" y1="16.767" y2="15.494" y3="15.494"/>
  1508. <line x="643.201" y="15.494"/>
  1509. <close/>
  1510. </path>
  1511. <fillstroke/>
  1512. <restore/>
  1513. <rect/>
  1514. <stroke/>
  1515. <fillcolor color="#292929"/>
  1516. <path>
  1517. <move x="633.314" y="56.752"/>
  1518. <line x="641.797" y="48.22"/>
  1519. <line x="641.797" y="27.792"/>
  1520. <line x="633.606" y="19.504"/>
  1521. <line x="621.174" y="19.504"/>
  1522. <curve x1="617.704" x2="616.104" x3="616.104" y1="19.504" y2="21.288" y3="24.818"/>
  1523. <line x="616.104" y="50.901"/>
  1524. <curve x1="616.104" x2="617.737" x3="621.272" y1="54.208" y2="56.752" y3="56.752"/>
  1525. <line x="633.314" y="56.752"/>
  1526. <close/>
  1527. </path>
  1528. <fill/>
  1529. <fillcolor color="#9a9a9a"/>
  1530. <path>
  1531. <move x="628.634" y="28.768"/>
  1532. <line x="628.634" y="25.941"/>
  1533. <line x="621.05" y="25.941"/>
  1534. <line x="621.05" y="28.768"/>
  1535. <line x="628.634" y="28.768"/>
  1536. <close/>
  1537. <move x="636.563" y="39.472"/>
  1538. <line x="636.563" y="36.645"/>
  1539. <line x="628.979" y="36.645"/>
  1540. <line x="628.979" y="39.472"/>
  1541. <line x="636.563" y="39.472"/>
  1542. <close/>
  1543. <move x="628.634" y="50.176"/>
  1544. <line x="628.634" y="47.349"/>
  1545. <line x="621.05" y="47.349"/>
  1546. <line x="621.05" y="50.176"/>
  1547. <line x="628.634" y="50.176"/>
  1548. <close/>
  1549. </path>
  1550. <fill/>
  1551. <fillcolor color="#262626"/>
  1552. <ellipse h="56.518" w="56.518" x="552.038" y="3.143"/>
  1553. <fill/>
  1554. <fillcolor color="#8ebaea"/>
  1555. <ellipse h="29.984" w="29.984" x="564.97" y="16.209"/>
  1556. <fill/>
  1557. <strokecolor color="#4d4d4d"/>
  1558. <fillcolor color="#f2f2f2"/>
  1559. <strokewidth width="0.57"/>
  1560. <path>
  1561. <move x="247.327" y="49.337"/>
  1562. <curve x1="247.327" x2="245.959" x3="244.297" y1="51" y2="52.368" y3="52.368"/>
  1563. <curve x1="242.634" x2="241.266" x3="241.266" y1="52.368" y2="51" y3="49.337"/>
  1564. <curve x1="241.266" x2="242.634" x3="244.297" y1="47.675" y2="46.307" y3="46.307"/>
  1565. <curve x1="245.959" x2="247.327" x3="247.327" y1="46.307" y2="47.675" y3="49.337"/>
  1566. <close/>
  1567. <move x="210.493" y="49.337"/>
  1568. <curve x1="210.493" x2="209.125" x3="207.462" y1="51" y2="52.368" y3="52.368"/>
  1569. <curve x1="205.8" x2="204.432" x3="204.432" y1="52.368" y2="51" y3="49.337"/>
  1570. <curve x1="204.432" x2="205.8" x3="207.462" y1="47.675" y2="46.307" y3="46.307"/>
  1571. <curve x1="209.125" x2="210.493" x3="210.493" y1="46.307" y2="47.675" y3="49.337"/>
  1572. <close/>
  1573. </path>
  1574. <fillstroke/>
  1575. <strokecolor color="#f2f2f2"/>
  1576. <fillcolor color="#333"/>
  1577. <strokewidth width="0.85"/>
  1578. <linejoin join="miter"/>
  1579. <linecap cap="butt"/>
  1580. <path>
  1581. <move x="217.733" y="54.325"/>
  1582. <curve x1="216.527" x2="215.705" x3="215.365" y1="54.325" y2="53.182" y3="51.532"/>
  1583. <line x="214.778" y="46.805"/>
  1584. <curve x1="214.571" x2="216.007" x3="217.412" y1="45.404" y2="44.087" y3="44.087"/>
  1585. <line x="234.692" y="44.053"/>
  1586. <curve x1="236.563" x2="237.342" x3="237.194" y1="44.053" y2="45.404" y3="46.538"/>
  1587. <line x="236.514" y="52.074"/>
  1588. <curve x1="236.155" x2="235.677" x3="234.116" y1="53.219" y2="54.467" y3="54.467"/>
  1589. <line x="217.733" y="54.325"/>
  1590. <close/>
  1591. </path>
  1592. <fillstroke/>
  1593. <restore/>
  1594. <rect/>
  1595. <stroke/>
  1596. <strokecolor color="#878787"/>
  1597. <strokewidth width="0.57"/>
  1598. <linejoin join="miter"/>
  1599. <rect h="18.114" w="140.592" x="56.022" y="8.429"/>
  1600. <stroke/>
  1601. <rect h="18.065" w="90.164" x="219.817" y="10.958"/>
  1602. <stroke/>
  1603. <strokecolor color="#000"/>
  1604. <strokewidth width="0.75"/>
  1605. <linecap cap="butt"/>
  1606. <path>
  1607. <move x="447.037" y="62.895"/>
  1608. <line x="447.037" y="0.013"/>
  1609. </path>
  1610. <stroke/>
  1611. <restore/>
  1612. <rect/>
  1613. <stroke/>
  1614. <strokecolor color="#888"/>
  1615. <strokewidth width="0.57"/>
  1616. <linejoin join="miter"/>
  1617. <path>
  1618. <move x="55.887" y="3.139"/>
  1619. <curve x1="55.887" x2="55.422" x3="54.849" y1="2.566" y2="2.101" y3="2.101"/>
  1620. <line x="36.72" y="2.101"/>
  1621. <curve x1="36.147" x2="35.682" x3="35.682" y1="2.101" y2="2.566" y3="3.139"/>
  1622. <line x="35.682" y="36.567"/>
  1623. <curve x1="35.682" x2="36.147" x3="36.72" y1="37.14" y2="37.605" y3="37.605"/>
  1624. <line x="54.849" y="37.605"/>
  1625. <curve x1="55.422" x2="55.887" x3="55.887" y1="37.605" y2="37.14" y3="36.567"/>
  1626. <line x="55.887" y="3.139"/>
  1627. <close/>
  1628. </path>
  1629. <stroke/>
  1630. <strokecolor color="#b5b5b5"/>
  1631. <path>
  1632. <move x="292.716" y="19.997"/>
  1633. <curve x1="292.716" x2="291.431" x3="289.847" y1="18.413" y2="17.128" y3="17.128"/>
  1634. <line x="239.923" y="17.128"/>
  1635. <curve x1="238.34" x2="237.055" x3="237.055" y1="17.128" y2="18.413" y3="19.997"/>
  1636. <curve x1="237.055" x2="238.34" x3="239.923" y1="21.58" y2="22.865" y3="22.865"/>
  1637. <line x="289.847" y="22.865"/>
  1638. <curve x1="291.431" x2="292.716" x3="292.716" y1="22.865" y2="21.58" y3="19.997"/>
  1639. <close/>
  1640. </path>
  1641. <stroke/>
  1642. <path>
  1643. <move x="180.586" y="17.481"/>
  1644. <curve x1="180.586" x2="179.385" x3="177.906" y1="16.002" y2="14.802" y3="14.802"/>
  1645. <line x="74.665" y="14.802"/>
  1646. <curve x1="73.186" x2="71.986" x3="71.986" y1="14.802" y2="16.002" y3="17.481"/>
  1647. <curve x1="71.986" x2="73.186" x3="74.665" y1="18.96" y2="20.16" y3="20.16"/>
  1648. <line x="177.906" y="20.16"/>
  1649. <curve x1="179.385" x2="180.586" x3="180.586" y1="20.16" y2="18.96" y3="17.481"/>
  1650. <close/>
  1651. </path>
  1652. <stroke/>
  1653. <strokecolor color="#a4a4a4"/>
  1654. <fillcolor color="#ddd"/>
  1655. <ellipse h="11.08" w="11.08" x="424.541" y="6.081"/>
  1656. <fillstroke/>
  1657. <strokecolor color="#666"/>
  1658. <fillcolor color="#8ac28a"/>
  1659. <strokewidth width="1.98"/>
  1660. <ellipse h="6.262" w="6.262" x="614.78" y="7.177"/>
  1661. <fillstroke/>
  1662. <restore/>
  1663. <rect/>
  1664. <stroke/>
  1665. <fillcolor color="#1a1a1a"/>
  1666. <path>
  1667. <move x="67.852" y="17.481"/>
  1668. <curve x1="67.852" x2="66.943" x3="65.839" y1="18.585" y2="19.493" y3="19.493"/>
  1669. <curve x1="64.735" x2="63.827" x3="63.827" y1="19.493" y2="18.585" y3="17.481"/>
  1670. <curve x1="63.827" x2="64.735" x3="65.839" y1="16.377" y2="15.468" y3="15.468"/>
  1671. <curve x1="66.943" x2="67.852" x3="67.852" y1="15.468" y2="16.377" y3="17.481"/>
  1672. <close/>
  1673. <move x="188.694" y="17.481"/>
  1674. <curve x1="188.694" x2="187.786" x3="186.682" y1="18.585" y2="19.493" y3="19.493"/>
  1675. <curve x1="185.578" x2="184.669" x3="184.669" y1="19.493" y2="18.585" y3="17.481"/>
  1676. <curve x1="184.669" x2="185.578" x3="186.682" y1="16.377" y2="15.468" y3="15.468"/>
  1677. <curve x1="187.786" x2="188.694" x3="188.694" y1="15.468" y2="16.377" y3="17.481"/>
  1678. <close/>
  1679. </path>
  1680. <fill/>
  1681. <path>
  1682. <move x="233.078" y="19.997"/>
  1683. <curve x1="233.078" x2="232.17" x3="231.066" y1="21.101" y2="22.009" y3="22.009"/>
  1684. <curve x1="229.962" x2="229.053" x3="229.053" y1="22.009" y2="21.101" y3="19.997"/>
  1685. <curve x1="229.053" x2="229.962" x3="231.066" y1="18.893" y2="17.984" y3="17.984"/>
  1686. <curve x1="232.17" x2="233.078" x3="233.078" y1="17.984" y2="18.893" y3="19.997"/>
  1687. <close/>
  1688. <move x="300.568" y="19.997"/>
  1689. <curve x1="300.568" x2="299.66" x3="298.556" y1="21.101" y2="22.009" y3="22.009"/>
  1690. <curve x1="297.452" x2="296.544" x3="296.544" y1="22.009" y2="21.101" y3="19.997"/>
  1691. <curve x1="296.544" x2="297.452" x3="298.556" y1="18.893" y2="17.984" y3="17.984"/>
  1692. <curve x1="299.66" x2="300.568" x3="300.568" y1="17.984" y2="18.893" y3="19.997"/>
  1693. <close/>
  1694. </path>
  1695. <fill/>
  1696. <strokecolor color="#5b5b5b"/>
  1697. <fillcolor color="#e0e0e0"/>
  1698. <strokewidth width="1.13"/>
  1699. <path>
  1700. <move x="608.186" y="54.31"/>
  1701. <curve x1="608.186" x2="605.813" x3="602.929" y1="57.194" y2="59.567" y3="59.567"/>
  1702. <curve x1="602.929" x2="602.929" x3="602.929" y1="59.567" y2="59.567" y3="59.567"/>
  1703. <curve x1="600.045" x2="597.672" x3="597.672" y1="59.567" y2="57.194" y3="54.31"/>
  1704. <curve x1="597.672" x2="600.045" x3="602.929" y1="51.427" y2="49.054" y3="49.054"/>
  1705. <curve x1="602.929" x2="602.929" x3="602.929" y1="49.054" y2="49.054" y3="49.054"/>
  1706. <curve x1="605.813" x2="608.186" x3="608.186" y1="49.054" y2="51.427" y3="54.31"/>
  1707. <close/>
  1708. <move x="608.097" y="8.897"/>
  1709. <curve x1="608.097" x2="605.724" x3="602.84" y1="11.78" y2="14.153" y3="14.153"/>
  1710. <line x="602.84" y="14.153"/>
  1711. <curve x1="599.956" x2="597.583" x3="597.583" y1="14.153" y2="11.78" y3="8.897"/>
  1712. <curve x1="597.583" x2="599.956" x3="602.84" y1="6.013" y2="3.64" y3="3.64"/>
  1713. <line x="602.84" y="3.64"/>
  1714. <curve x1="605.724" x2="608.097" x3="608.097" y1="3.64" y2="6.013" y3="8.897"/>
  1715. <close/>
  1716. <move x="562.459" y="54.087"/>
  1717. <curve x1="562.459" x2="560.086" x3="557.203" y1="56.971" y2="59.344" y3="59.344"/>
  1718. <curve x1="557.202" x2="557.202" x3="557.202" y1="59.344" y2="59.344" y3="59.344"/>
  1719. <curve x1="554.319" x2="551.946" x3="551.946" y1="59.344" y2="56.971" y3="54.087"/>
  1720. <curve x1="551.946" x2="554.319" x3="557.202" y1="51.204" y2="48.831" y3="48.831"/>
  1721. <curve x1="557.202" x2="557.202" x3="557.203" y1="48.831" y2="48.831" y3="48.831"/>
  1722. <curve x1="560.086" x2="562.459" x3="562.459" y1="48.831" y2="51.204" y3="54.087"/>
  1723. <close/>
  1724. <move x="562.448" y="8.766"/>
  1725. <curve x1="562.448" x2="560.075" x3="557.191" y1="11.65" y2="14.023" y3="14.023"/>
  1726. <curve x1="557.191" x2="557.191" x3="557.191" y1="14.023" y2="14.023" y3="14.023"/>
  1727. <curve x1="554.307" x2="551.934" x3="551.934" y1="14.023" y2="11.65" y3="8.766"/>
  1728. <curve x1="551.934" x2="554.307" x3="557.191" y1="5.883" y2="3.51" y3="3.51"/>
  1729. <curve x1="557.191" x2="557.191" x3="557.191" y1="3.51" y2="3.51" y3="3.51"/>
  1730. <curve x1="560.075" x2="562.448" x3="562.448" y1="3.51" y2="5.883" y3="8.766"/>
  1731. <line x="562.448" y="8.766"/>
  1732. <close/>
  1733. </path>
  1734. <fillstroke/>
  1735. <strokecolor color="#4d514c"/>
  1736. <fillcolor color="#528e4b"/>
  1737. <strokewidth width="0.31"/>
  1738. <path>
  1739. <move x="143.861" y="41.021"/>
  1740. <line x="147.574" y="41.021"/>
  1741. <line x="147.574" y="43.033"/>
  1742. <line x="143.861" y="43.033"/>
  1743. <line x="143.861" y="41.021"/>
  1744. <close/>
  1745. <move x="129.408" y="41.021"/>
  1746. <line x="133.121" y="41.021"/>
  1747. <line x="133.121" y="43.033"/>
  1748. <line x="129.408" y="43.033"/>
  1749. <line x="129.408" y="41.021"/>
  1750. <close/>
  1751. <move x="123.245" y="41.021"/>
  1752. <line x="126.958" y="41.021"/>
  1753. <line x="126.958" y="43.033"/>
  1754. <line x="123.245" y="43.033"/>
  1755. <line x="123.245" y="41.021"/>
  1756. <close/>
  1757. <move x="108.792" y="41.021"/>
  1758. <line x="112.505" y="41.021"/>
  1759. <line x="112.505" y="43.033"/>
  1760. <line x="108.792" y="43.033"/>
  1761. <line x="108.792" y="41.021"/>
  1762. <close/>
  1763. <move x="102.629" y="41.021"/>
  1764. <line x="106.342" y="41.021"/>
  1765. <line x="106.342" y="43.033"/>
  1766. <line x="102.629" y="43.033"/>
  1767. <line x="102.629" y="41.021"/>
  1768. <close/>
  1769. <move x="88.176" y="41.021"/>
  1770. <line x="91.889" y="41.021"/>
  1771. <line x="91.889" y="43.033"/>
  1772. <line x="88.176" y="43.033"/>
  1773. <line x="88.176" y="41.021"/>
  1774. <close/>
  1775. <move x="82.013" y="41.021"/>
  1776. <line x="85.726" y="41.021"/>
  1777. <line x="85.726" y="43.033"/>
  1778. <line x="82.013" y="43.033"/>
  1779. <line x="82.013" y="41.021"/>
  1780. <close/>
  1781. <move x="67.56" y="41.021"/>
  1782. <line x="71.273" y="41.021"/>
  1783. <line x="71.273" y="43.033"/>
  1784. <line x="67.56" y="43.033"/>
  1785. <line x="67.56" y="41.021"/>
  1786. <close/>
  1787. </path>
  1788. <fillstroke/>
  1789. <restore/>
  1790. <rect/>
  1791. <stroke/>
  1792. <fillcolor color="#292929"/>
  1793. <path>
  1794. <move x="133.887" y="39.992"/>
  1795. <line x="133.887" y="44.114"/>
  1796. <line x="129.838" y="44.114"/>
  1797. <line x="129.838" y="54.42"/>
  1798. <line x="146.965" y="54.42"/>
  1799. <line x="146.965" y="44.114"/>
  1800. <line x="142.916" y="44.114"/>
  1801. <line x="142.916" y="39.992"/>
  1802. <line x="133.887" y="39.992"/>
  1803. <close/>
  1804. <move x="113.271" y="39.992"/>
  1805. <line x="113.271" y="44.114"/>
  1806. <line x="109.222" y="44.114"/>
  1807. <line x="109.222" y="54.42"/>
  1808. <line x="126.349" y="54.42"/>
  1809. <line x="126.349" y="44.114"/>
  1810. <line x="122.3" y="44.114"/>
  1811. <line x="122.3" y="39.992"/>
  1812. <line x="113.271" y="39.992"/>
  1813. <close/>
  1814. <move x="92.656" y="39.992"/>
  1815. <line x="92.656" y="44.114"/>
  1816. <line x="88.607" y="44.114"/>
  1817. <line x="88.607" y="54.42"/>
  1818. <line x="105.733" y="54.42"/>
  1819. <line x="105.733" y="44.114"/>
  1820. <line x="101.684" y="44.114"/>
  1821. <line x="101.684" y="39.992"/>
  1822. <line x="92.656" y="39.992"/>
  1823. <close/>
  1824. <move x="72.04" y="39.992"/>
  1825. <line x="72.04" y="44.114"/>
  1826. <line x="67.991" y="44.114"/>
  1827. <line x="67.991" y="54.42"/>
  1828. <line x="85.117" y="54.42"/>
  1829. <line x="85.117" y="44.114"/>
  1830. <line x="81.068" y="44.114"/>
  1831. <line x="81.068" y="39.992"/>
  1832. <line x="72.04" y="39.992"/>
  1833. <close/>
  1834. </path>
  1835. <fill/>
  1836. <restore/>
  1837. <rect/>
  1838. <stroke/>
  1839. <strokecolor color="#737373"/>
  1840. <strokewidth width="0.57"/>
  1841. <linejoin join="miter"/>
  1842. <fillalpha alpha="0"/>
  1843. <path>
  1844. <move x="179.094" y="51.688"/>
  1845. <line x="195.471" y="51.688"/>
  1846. <curve x1="196.046" x2="196.509" x3="196.509" y1="51.688" y2="52.151" y3="52.726"/>
  1847. <line x="196.509" y="58.264"/>
  1848. <curve x1="196.509" x2="196.046" x3="195.471" y1="58.839" y2="59.302" y3="59.302"/>
  1849. <line x="179.094" y="59.302"/>
  1850. <curve x1="178.519" x2="178.056" x3="178.056" y1="59.302" y2="58.839" y3="58.264"/>
  1851. <line x="178.056" y="52.726"/>
  1852. <curve x1="178.056" x2="178.519" x3="179.094" y1="52.151" y2="51.688" y3="51.688"/>
  1853. <close/>
  1854. <move x="179.094" y="39.413"/>
  1855. <line x="195.471" y="39.413"/>
  1856. <curve x1="196.046" x2="196.509" x3="196.509" y1="39.413" y2="39.876" y3="40.451"/>
  1857. <line x="196.509" y="45.989"/>
  1858. <curve x1="196.509" x2="196.046" x3="195.471" y1="46.564" y2="47.027" y3="47.027"/>
  1859. <line x="179.094" y="47.027"/>
  1860. <curve x1="178.519" x2="178.056" x3="178.056" y1="47.027" y2="46.564" y3="45.989"/>
  1861. <line x="178.056" y="40.451"/>
  1862. <curve x1="178.056" x2="178.519" x3="179.094" y1="39.876" y2="39.413" y3="39.413"/>
  1863. <close/>
  1864. </path>
  1865. <fillstroke/>
  1866. <restore/>
  1867. <rect/>
  1868. <stroke/>
  1869. <fillcolor color="#292929"/>
  1870. <path>
  1871. <move x="267.801" y="41.706"/>
  1872. <line x="267.801" y="44.602"/>
  1873. <line x="263.84" y="44.602"/>
  1874. <line x="263.84" y="54.684"/>
  1875. <line x="280.594" y="54.684"/>
  1876. <line x="280.594" y="44.602"/>
  1877. <line x="276.633" y="44.602"/>
  1878. <line x="276.633" y="41.706"/>
  1879. <line x="267.801" y="41.706"/>
  1880. <close/>
  1881. <move x="360.94" y="41.706"/>
  1882. <line x="360.94" y="44.602"/>
  1883. <line x="356.979" y="44.602"/>
  1884. <line x="356.979" y="54.684"/>
  1885. <line x="373.734" y="54.684"/>
  1886. <line x="373.734" y="44.602"/>
  1887. <line x="369.773" y="44.602"/>
  1888. <line x="369.773" y="41.706"/>
  1889. <line x="360.94" y="41.706"/>
  1890. <close/>
  1891. <move x="340.691" y="41.706"/>
  1892. <line x="340.691" y="44.602"/>
  1893. <line x="336.73" y="44.602"/>
  1894. <line x="336.73" y="54.684"/>
  1895. <line x="353.484" y="54.684"/>
  1896. <line x="353.484" y="44.602"/>
  1897. <line x="349.523" y="44.602"/>
  1898. <line x="349.523" y="41.706"/>
  1899. <line x="340.691" y="41.706"/>
  1900. <close/>
  1901. <move x="320.441" y="41.706"/>
  1902. <line x="320.441" y="44.602"/>
  1903. <line x="316.48" y="44.602"/>
  1904. <line x="316.48" y="54.684"/>
  1905. <line x="333.235" y="54.684"/>
  1906. <line x="333.235" y="44.602"/>
  1907. <line x="329.274" y="44.602"/>
  1908. <line x="329.274" y="41.706"/>
  1909. <line x="320.441" y="41.706"/>
  1910. <close/>
  1911. <move x="300.192" y="41.706"/>
  1912. <line x="300.192" y="44.602"/>
  1913. <line x="296.231" y="44.602"/>
  1914. <line x="296.231" y="54.684"/>
  1915. <line x="312.986" y="54.684"/>
  1916. <line x="312.986" y="44.602"/>
  1917. <line x="309.025" y="44.602"/>
  1918. <line x="309.025" y="41.706"/>
  1919. <line x="300.192" y="41.706"/>
  1920. <close/>
  1921. </path>
  1922. <fill/>
  1923. <strokecolor color="#333"/>
  1924. <fillcolor color="#538f4b"/>
  1925. <strokewidth width="0.3"/>
  1926. <path>
  1927. <move x="260.589" y="41.873"/>
  1928. <line x="262.665" y="41.873"/>
  1929. <line x="262.665" y="45.65"/>
  1930. <line x="260.589" y="45.65"/>
  1931. <line x="260.589" y="41.873"/>
  1932. <close/>
  1933. <move x="282.028" y="41.873"/>
  1934. <line x="284.103" y="41.873"/>
  1935. <line x="284.103" y="45.65"/>
  1936. <line x="282.028" y="45.65"/>
  1937. <line x="282.028" y="41.873"/>
  1938. <close/>
  1939. <move x="370.697" y="41.655"/>
  1940. <line x="374.33" y="41.655"/>
  1941. <line x="374.33" y="43.624"/>
  1942. <line x="370.697" y="43.624"/>
  1943. <line x="370.697" y="41.655"/>
  1944. <close/>
  1945. <move x="356.558" y="41.655"/>
  1946. <line x="360.19" y="41.655"/>
  1947. <line x="360.19" y="43.624"/>
  1948. <line x="356.558" y="43.624"/>
  1949. <line x="356.558" y="41.655"/>
  1950. <close/>
  1951. <move x="350.448" y="41.655"/>
  1952. <line x="354.08" y="41.655"/>
  1953. <line x="354.08" y="43.624"/>
  1954. <line x="350.448" y="43.624"/>
  1955. <line x="350.448" y="41.655"/>
  1956. <close/>
  1957. <move x="336.309" y="41.655"/>
  1958. <line x="339.941" y="41.655"/>
  1959. <line x="339.941" y="43.624"/>
  1960. <line x="336.309" y="43.624"/>
  1961. <line x="336.309" y="41.655"/>
  1962. <close/>
  1963. <move x="330.199" y="41.655"/>
  1964. <line x="333.831" y="41.655"/>
  1965. <line x="333.831" y="43.624"/>
  1966. <line x="330.199" y="43.624"/>
  1967. <line x="330.199" y="41.655"/>
  1968. <close/>
  1969. <move x="316.059" y="41.655"/>
  1970. <line x="319.692" y="41.655"/>
  1971. <line x="319.692" y="43.624"/>
  1972. <line x="316.059" y="43.624"/>
  1973. <line x="316.059" y="41.655"/>
  1974. <close/>
  1975. <move x="309.949" y="41.655"/>
  1976. <line x="313.582" y="41.655"/>
  1977. <line x="313.582" y="43.624"/>
  1978. <line x="309.949" y="43.624"/>
  1979. <line x="309.949" y="41.655"/>
  1980. <close/>
  1981. <move x="295.81" y="41.655"/>
  1982. <line x="299.442" y="41.655"/>
  1983. <line x="299.442" y="43.624"/>
  1984. <line x="295.81" y="43.624"/>
  1985. <line x="295.81" y="41.655"/>
  1986. <close/>
  1987. </path>
  1988. <fillstroke/>
  1989. <strokecolor color="#232323"/>
  1990. <strokewidth width="0.57"/>
  1991. <linejoin join="miter"/>
  1992. <path>
  1993. <move x="259.559" y="40.036"/>
  1994. <line x="285.154" y="40.036"/>
  1995. <line x="285.154" y="56.798"/>
  1996. <line x="259.559" y="56.798"/>
  1997. <line x="259.559" y="40.036"/>
  1998. <close/>
  1999. <move x="293.201" y="40.7"/>
  2000. <line x="376.453" y="40.7"/>
  2001. <line x="376.453" y="57.998"/>
  2002. <line x="293.201" y="57.998"/>
  2003. <line x="293.201" y="40.7"/>
  2004. <close/>
  2005. <move x="65.226" y="39.113"/>
  2006. <line x="149.898" y="39.113"/>
  2007. <line x="149.898" y="58.163"/>
  2008. <line x="65.226" y="58.163"/>
  2009. <line x="65.226" y="39.113"/>
  2010. <close/>
  2011. </path>
  2012. <stroke/>
  2013. <restore/>
  2014. <rect/>
  2015. <stroke/>
  2016. <strokecolor color="#4c4c4c"/>
  2017. <fillcolor color="#ececec"/>
  2018. <strokewidth width="0.28"/>
  2019. <path>
  2020. <move x="427.803" y="47.949"/>
  2021. <curve x1="427.803" x2="426.435" x3="424.772" y1="49.611" y2="50.979" y3="50.979"/>
  2022. <curve x1="424.772" x2="424.772" x3="424.772" y1="50.979" y2="50.979" y3="50.979"/>
  2023. <curve x1="423.11" x2="421.742" x3="421.742" y1="50.979" y2="49.611" y3="47.949"/>
  2024. <curve x1="421.742" x2="423.11" x3="424.772" y1="46.286" y2="44.918" y3="44.918"/>
  2025. <curve x1="424.772" x2="424.772" x3="424.772" y1="44.918" y2="44.918" y3="44.918"/>
  2026. <curve x1="426.435" x2="427.803" x3="427.803" y1="44.918" y2="46.286" y3="47.949"/>
  2027. <close/>
  2028. <move x="390.968" y="47.949"/>
  2029. <curve x1="390.968" x2="389.6" x3="387.938" y1="49.611" y2="50.979" y3="50.979"/>
  2030. <line x="387.938" y="50.979"/>
  2031. <curve x1="386.275" x2="384.907" x3="384.907" y1="50.979" y2="49.611" y3="47.949"/>
  2032. <curve x1="384.907" x2="386.275" x3="387.938" y1="46.286" y2="44.918" y3="44.918"/>
  2033. <line x="387.938" y="44.918"/>
  2034. <curve x1="389.6" x2="390.968" x3="390.968" y1="44.918" y2="46.286" y3="47.949"/>
  2035. <close/>
  2036. </path>
  2037. <fillstroke/>
  2038. <strokecolor color="#dbdddd"/>
  2039. <fillcolor color="#5285c2"/>
  2040. <strokewidth width="0.85"/>
  2041. <linejoin join="miter"/>
  2042. <linecap cap="butt"/>
  2043. <path>
  2044. <move x="398.208" y="52.937"/>
  2045. <curve x1="397.003" x2="396.181" x3="395.841" y1="52.937" y2="51.794" y3="50.143"/>
  2046. <line x="395.253" y="45.416"/>
  2047. <curve x1="395.047" x2="396.483" x3="397.888" y1="44.016" y2="42.698" y3="42.698"/>
  2048. <line x="415.168" y="42.665"/>
  2049. <curve x1="417.038" x2="417.817" x3="417.67" y1="42.665" y2="44.015" y3="45.15"/>
  2050. <line x="416.99" y="50.686"/>
  2051. <curve x1="416.63" x2="416.153" x3="414.592" y1="51.831" y2="53.079" y3="53.079"/>
  2052. <line x="398.208" y="52.937"/>
  2053. <close/>
  2054. </path>
  2055. <fillstroke/>
  2056. <strokecolor color="#000"/>
  2057. <strokewidth width="0.75"/>
  2058. <path>
  2059. <move x="548.218" y="62.882"/>
  2060. <line x="548.218" y="0"/>
  2061. </path>
  2062. <stroke/>
  2063. <path>
  2064. <move x="34.877" y="63.326"/>
  2065. <line x="34.877" y="0.444"/>
  2066. </path>
  2067. <stroke/>
  2068. <restore/>
  2069. <rect/>
  2070. <stroke/>
  2071. <fillcolor color="#1a1a1a"/>
  2072. <ellipse h="5.598" w="5.598" x="50.718" y="46.539"/>
  2073. <fill/>
  2074. <strokecolor color="#b5b5b5"/>
  2075. <strokewidth width="0.57"/>
  2076. <linejoin join="miter"/>
  2077. <path>
  2078. <move x="338.043" y="13.75"/>
  2079. <line x="405.257" y="13.75"/>
  2080. <curve x1="406.482" x2="407.468" x3="407.468" y1="13.75" y2="14.736" y3="15.961"/>
  2081. <curve x1="407.468" x2="406.482" x3="405.257" y1="17.186" y2="18.171" y3="18.171"/>
  2082. <line x="338.043" y="18.171"/>
  2083. <curve x1="336.818" x2="335.832" x3="335.832" y1="18.171" y2="17.186" y3="15.961"/>
  2084. <curve x1="335.832" x2="336.818" x3="338.043" y1="14.736" y2="13.75" y3="13.75"/>
  2085. <close/>
  2086. <move x="338.043" y="21.463"/>
  2087. <line x="405.257" y="21.463"/>
  2088. <curve x1="406.482" x2="407.468" x3="407.468" y1="21.463" y2="22.449" y3="23.674"/>
  2089. <curve x1="407.468" x2="406.482" x3="405.257" y1="24.898" y2="25.884" y3="25.884"/>
  2090. <line x="338.043" y="25.884"/>
  2091. <curve x1="336.818" x2="335.832" x3="335.832" y1="25.884" y2="24.898" y3="23.674"/>
  2092. <curve x1="335.832" x2="336.818" x3="338.043" y1="22.449" y2="21.463" y3="21.463"/>
  2093. <close/>
  2094. </path>
  2095. <stroke/>
  2096. <strokecolor color="#808080"/>
  2097. <path>
  2098. <move x="311.254" y="4.03"/>
  2099. <line x="325.121" y="4.03"/>
  2100. <curve x1="325.696" x2="326.159" x3="326.159" y1="4.03" y2="4.493" y3="5.068"/>
  2101. <line x="326.159" y="28.931"/>
  2102. <curve x1="326.159" x2="325.696" x3="325.121" y1="29.506" y2="29.969" y3="29.969"/>
  2103. <line x="311.254" y="29.969"/>
  2104. <curve x1="310.679" x2="310.216" x3="310.216" y1="29.969" y2="29.506" y3="28.931"/>
  2105. <line x="310.216" y="5.068"/>
  2106. <curve x1="310.216" x2="310.679" x3="311.254" y1="4.493" y2="4.03" y3="4.03"/>
  2107. <close/>
  2108. <move x="201.873" y="5.924"/>
  2109. <line x="218.677" y="5.924"/>
  2110. <curve x1="219.252" x2="219.715" x3="219.715" y1="5.924" y2="6.387" y3="6.962"/>
  2111. <line x="219.715" y="36.412"/>
  2112. <curve x1="219.715" x2="219.252" x3="218.677" y1="36.987" y2="37.45" y3="37.45"/>
  2113. <line x="201.873" y="37.45"/>
  2114. <curve x1="201.298" x2="200.835" x3="200.835" y1="37.45" y2="36.987" y3="36.412"/>
  2115. <line x="200.835" y="6.962"/>
  2116. <curve x1="200.835" x2="201.298" x3="201.873" y1="6.387" y2="5.924" y3="5.924"/>
  2117. <close/>
  2118. </path>
  2119. <stroke/>
  2120. </foreground>
  2121. </shape>
  2122. <shape aspect="variable" h="22.931" name="Direct QSFP" strokewidth="inherit" w="44.481">
  2123. <connections/>
  2124. <foreground>
  2125. <save/>
  2126. <strokecolor color="#b7b7b7"/>
  2127. <fillcolor color="#f2f2f2"/>
  2128. <strokewidth width="0.28"/>
  2129. <path>
  2130. <move x="44.467" y="0.78"/>
  2131. <curve x1="44.467" x2="44.117" x3="43.686" y1="0.349" y2="0" y3="0"/>
  2132. <line x="0.78" y="0"/>
  2133. <curve x1="0.349" x2="0" x3="0" y1="0" y2="0.349" y3="0.78"/>
  2134. <line x="0" y="20.102"/>
  2135. <curve x1="0" x2="0.349" x3="0.78" y1="20.532" y2="20.882" y3="20.882"/>
  2136. <line x="43.686" y="20.882"/>
  2137. <curve x1="44.117" x2="44.467" x3="44.467" y1="20.882" y2="20.532" y3="20.102"/>
  2138. <line x="44.467" y="0.78"/>
  2139. <close/>
  2140. </path>
  2141. <fillstroke/>
  2142. <linecap cap="butt"/>
  2143. <path>
  2144. <move x="0.003" y="12.067"/>
  2145. <line x="44.481" y="12.067"/>
  2146. </path>
  2147. <stroke/>
  2148. <restore/>
  2149. <rect/>
  2150. <stroke/>
  2151. <strokecolor color="#838383"/>
  2152. <fillcolor color="#799ac2"/>
  2153. <strokewidth width="0.28"/>
  2154. <rect h="15.503" w="34.415" x="5.122" y="2.792"/>
  2155. <fillstroke/>
  2156. <strokecolor color="#74787d"/>
  2157. <fillcolor color="#828282"/>
  2158. <strokewidth width="0.57"/>
  2159. <ellipse h="15.102" w="15.102" x="14.828" y="3.076"/>
  2160. <fillstroke/>
  2161. <strokecolor color="#505050"/>
  2162. <fillcolor color="#787878"/>
  2163. <strokewidth width="0.28"/>
  2164. <linecap cap="butt"/>
  2165. <path>
  2166. <move x="20.185" y="6.381"/>
  2167. <curve x1="21.94" x2="24.491" x3="25.741" y1="5.438" y2="6.42" y3="8.154"/>
  2168. <curve x1="27.119" x2="26.623" x3="25.103" y1="10.516" y2="13.173" y3="14.372"/>
  2169. <line x="11.955" y="22.135"/>
  2170. <curve x1="10.563" x2="8.93" x3="7.402" y1="22.931" y2="21.499" y3="19.651"/>
  2171. <curve x1="6.178" x2="5.962" x3="6.854" y1="17.902" y2="14.642" y3="14.066"/>
  2172. <line x="20.185" y="6.381"/>
  2173. <close/>
  2174. </path>
  2175. <fillstroke/>
  2176. <path>
  2177. <move x="6.755" y="14.128"/>
  2178. <curve x1="8.512" x2="10.079" x3="11.692" y1="13.126" y2="14.362" y3="16.669"/>
  2179. <curve x1="13.116" x2="13.183" x3="11.91" y1="18.728" y2="21.383" y3="22.157"/>
  2180. </path>
  2181. <stroke/>
  2182. </foreground>
  2183. </shape>
  2184. </shapes>