icons.xml 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. <shapes name="mxGraph.ios7.icons">
  2. <shape aspect="variable" h="100" name="Add" strokewidth="inherit" w="100">
  3. <connections/>
  4. <foreground>
  5. <ellipse h="100" w="100" x="0" y="0"/>
  6. <fillstroke/>
  7. <path>
  8. <move x="50" y="20"/>
  9. <line x="50" y="80"/>
  10. <move x="20" y="50"/>
  11. <line x="80" y="50"/>
  12. </path>
  13. <fillstroke/>
  14. </foreground>
  15. </shape>
  16. <shape aspect="variable" h="101.07" name="Alarm Clock" strokewidth="inherit" w="90">
  17. <connections/>
  18. <foreground>
  19. <ellipse h="90" w="90" x="0" y="11.07"/>
  20. <fillstroke/>
  21. <path>
  22. <move x="45" y="21.07"/>
  23. <line x="45" y="56.07"/>
  24. <line x="25" y="56.07"/>
  25. </path>
  26. <stroke/>
  27. <path>
  28. <move x="0" y="101.07"/>
  29. <line x="13" y="88.07"/>
  30. <move x="90" y="101.07"/>
  31. <line x="77" y="88.07"/>
  32. <move x="35" y="6.07"/>
  33. <line x="5" y="21.07"/>
  34. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="35" x-axis-rotation="0" y="6.07"/>
  35. <close/>
  36. <move x="55" y="6.07"/>
  37. <line x="85" y="21.07"/>
  38. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="55" x-axis-rotation="0" y="6.07"/>
  39. <close/>
  40. </path>
  41. <fillstroke/>
  42. </foreground>
  43. </shape>
  44. <shape aspect="variable" h="85" name="Back" strokewidth="inherit" w="100.1">
  45. <connections/>
  46. <foreground>
  47. <path>
  48. <move x="0" y="30"/>
  49. <line x="40" y="0"/>
  50. <line x="40" y="20"/>
  51. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="85"/>
  52. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="40" x-axis-rotation="0" y="45"/>
  53. <line x="40" y="65"/>
  54. <close/>
  55. </path>
  56. <fillstroke/>
  57. </foreground>
  58. </shape>
  59. <shape aspect="variable" h="56" name="Backward" strokewidth="inherit" w="100">
  60. <connections/>
  61. <foreground>
  62. <path>
  63. <move x="50" y="0"/>
  64. <line x="0" y="28"/>
  65. <line x="50" y="56"/>
  66. <close/>
  67. <move x="100" y="0"/>
  68. <line x="50" y="28"/>
  69. <line x="100" y="56"/>
  70. <close/>
  71. </path>
  72. <fillstroke/>
  73. </foreground>
  74. </shape>
  75. <shape aspect="variable" h="70" name="Bag" strokewidth="inherit" w="70">
  76. <connections/>
  77. <foreground>
  78. <rect h="70" w="70" x="0" y="0"/>
  79. <fillstroke/>
  80. <path>
  81. <move x="13" y="15"/>
  82. <line x="17" y="15"/>
  83. <move x="53" y="15"/>
  84. <line x="57" y="15"/>
  85. <move x="15" y="15"/>
  86. <line x="15" y="35"/>
  87. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="55" x-axis-rotation="0" y="35"/>
  88. <line x="55" y="15"/>
  89. </path>
  90. <stroke/>
  91. </foreground>
  92. </shape>
  93. <shape aspect="variable" h="100" name="Basketball" strokewidth="inherit" w="100">
  94. <connections/>
  95. <foreground>
  96. <ellipse h="100" w="100" x="0" y="0"/>
  97. <fillstroke/>
  98. <path>
  99. <move x="0" y="50"/>
  100. <line x="100" y="50"/>
  101. <move x="20" y="10"/>
  102. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="20" x-axis-rotation="0" y="90"/>
  103. <move x="80" y="10"/>
  104. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="80" x-axis-rotation="0" y="90"/>
  105. </path>
  106. <stroke/>
  107. </foreground>
  108. </shape>
  109. <shape aspect="variable" h="40" name="Basket Cancel" strokewidth="inherit" w="100">
  110. <connections/>
  111. <foreground>
  112. <path>
  113. <move x="0" y="0"/>
  114. <line x="100" y="0"/>
  115. <line x="95" y="10"/>
  116. <line x="91" y="10"/>
  117. <line x="81" y="40"/>
  118. <line x="19" y="40"/>
  119. <line x="9" y="10"/>
  120. <line x="5" y="10"/>
  121. <close/>
  122. </path>
  123. <fillstroke/>
  124. <path>
  125. <move x="9" y="10"/>
  126. <line x="91" y="10"/>
  127. <move x="40" y="15"/>
  128. <line x="60" y="35"/>
  129. <move x="60" y="15"/>
  130. <line x="40" y="35"/>
  131. </path>
  132. <fillstroke/>
  133. </foreground>
  134. </shape>
  135. <shape aspect="variable" h="40" name="Battery" strokewidth="inherit" w="100">
  136. <connections/>
  137. <foreground>
  138. <save/>
  139. <strokecolor color="none"/>
  140. <path>
  141. <move x="0" y="0"/>
  142. <line x="95" y="0"/>
  143. <line x="95" y="15"/>
  144. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
  145. <line x="95" y="40"/>
  146. <line x="0" y="40"/>
  147. <close/>
  148. <close/>
  149. </path>
  150. <fill/>
  151. <restore/>
  152. <rect/>
  153. <stroke/>
  154. <fillcolor color="none"/>
  155. <path>
  156. <move x="0" y="0"/>
  157. <line x="45" y="0"/>
  158. <line x="45" y="40"/>
  159. <line x="0" y="40"/>
  160. <close/>
  161. <move x="50" y="0"/>
  162. <line x="95" y="0"/>
  163. <line x="95" y="40"/>
  164. <line x="50" y="40"/>
  165. <move x="95" y="15"/>
  166. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
  167. </path>
  168. <stroke/>
  169. </foreground>
  170. </shape>
  171. <shape aspect="variable" h="77.34" name="Bell" strokewidth="inherit" w="80">
  172. <connections/>
  173. <foreground>
  174. <path>
  175. <move x="0" y="73"/>
  176. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="10" x-axis-rotation="0" y="63"/>
  177. <line x="10" y="33"/>
  178. <arc large-arc-flag="1" rx="30" ry="30" sweep-flag="1" x="70" x-axis-rotation="0" y="33"/>
  179. <line x="70" y="63"/>
  180. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="73"/>
  181. <close/>
  182. <move x="35" y="75"/>
  183. <line x="45" y="75"/>
  184. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="35" x-axis-rotation="0" y="75"/>
  185. <close/>
  186. </path>
  187. <fillstroke/>
  188. <fillcolor color="none"/>
  189. <path>
  190. <move x="37" y="3"/>
  191. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="43" x-axis-rotation="0" y="3"/>
  192. </path>
  193. <stroke/>
  194. </foreground>
  195. </shape>
  196. <shape aspect="variable" h="96" name="Bluetooth" strokewidth="inherit" w="50">
  197. <connections/>
  198. <foreground>
  199. <fillcolor color="none"/>
  200. <path>
  201. <move x="0" y="73"/>
  202. <line x="50" y="23"/>
  203. <line x="25" y="0"/>
  204. <line x="25" y="96"/>
  205. <line x="50" y="73"/>
  206. <line x="0" y="23"/>
  207. </path>
  208. <stroke/>
  209. </foreground>
  210. </shape>
  211. <shape aspect="variable" h="85" name="Book" strokewidth="inherit" w="100">
  212. <connections/>
  213. <foreground>
  214. <path>
  215. <move x="5" y="80"/>
  216. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="75"/>
  217. <line x="0" y="5"/>
  218. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  219. <line x="45" y="0"/>
  220. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
  221. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="55" x-axis-rotation="0" y="0"/>
  222. <line x="95" y="0"/>
  223. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  224. <line x="100" y="75"/>
  225. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="80"/>
  226. <close/>
  227. <move x="50" y="5"/>
  228. <line x="50" y="85"/>
  229. </path>
  230. <fillstroke/>
  231. </foreground>
  232. </shape>
  233. <shape aspect="variable" h="80" name="Bookmark" strokewidth="inherit" w="60">
  234. <connections/>
  235. <foreground>
  236. <path>
  237. <move x="0" y="0"/>
  238. <line x="60" y="0"/>
  239. <line x="60" y="80"/>
  240. <line x="30" y="55"/>
  241. <line x="0" y="80"/>
  242. <close/>
  243. <move x="10" y="20"/>
  244. <line x="50" y="20"/>
  245. <move x="10" y="35"/>
  246. <line x="50" y="35"/>
  247. </path>
  248. <fillstroke/>
  249. </foreground>
  250. </shape>
  251. <shape aspect="variable" h="90" name="Box" strokewidth="inherit" w="100">
  252. <connections/>
  253. <foreground>
  254. <path>
  255. <move x="0" y="0"/>
  256. <line x="100" y="0"/>
  257. <line x="100" y="15"/>
  258. <line x="95" y="15"/>
  259. <line x="95" y="90"/>
  260. <line x="5" y="90"/>
  261. <line x="5" y="15"/>
  262. <line x="0" y="15"/>
  263. <close/>
  264. </path>
  265. <fillstroke/>
  266. <path>
  267. <move x="5" y="15"/>
  268. <line x="95" y="15"/>
  269. <move x="75" y="25"/>
  270. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="75" x-axis-rotation="0" y="35"/>
  271. <line x="25" y="35"/>
  272. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="25" x-axis-rotation="0" y="25"/>
  273. <close/>
  274. </path>
  275. <stroke/>
  276. </foreground>
  277. </shape>
  278. <shape aspect="variable" h="67" name="Briefcase" strokewidth="inherit" w="100">
  279. <connections/>
  280. <foreground>
  281. <rect h="60" w="100" x="0" y="7"/>
  282. <fillstroke/>
  283. <rect h="10" w="20" x="40" y="32"/>
  284. <stroke/>
  285. <path>
  286. <move x="0" y="37"/>
  287. <line x="40" y="37"/>
  288. <move x="60" y="37"/>
  289. <line x="100" y="37"/>
  290. <move x="40" y="7"/>
  291. <line x="40" y="0"/>
  292. <line x="60" y="0"/>
  293. <line x="60" y="7"/>
  294. </path>
  295. <stroke/>
  296. </foreground>
  297. </shape>
  298. <shape aspect="variable" h="100" name="Calculator" strokewidth="inherit" w="80">
  299. <connections/>
  300. <foreground>
  301. <roundrect arcsize="6.25" h="100" w="80" x="0" y="0"/>
  302. <fillstroke/>
  303. <rect h="15" w="70" x="5" y="5"/>
  304. <stroke/>
  305. <path>
  306. <move x="5" y="75"/>
  307. <line x="5" y="95"/>
  308. <line x="25" y="95"/>
  309. <move x="5" y="50"/>
  310. <line x="5" y="70"/>
  311. <line x="25" y="70"/>
  312. <move x="5" y="25"/>
  313. <line x="5" y="45"/>
  314. <line x="25" y="45"/>
  315. <move x="30" y="25"/>
  316. <line x="30" y="45"/>
  317. <line x="50" y="45"/>
  318. <move x="55" y="25"/>
  319. <line x="55" y="45"/>
  320. <line x="75" y="45"/>
  321. <move x="30" y="50"/>
  322. <line x="30" y="70"/>
  323. <line x="50" y="70"/>
  324. <move x="30" y="75"/>
  325. <line x="30" y="95"/>
  326. <line x="50" y="95"/>
  327. <move x="55" y="50"/>
  328. <line x="55" y="95"/>
  329. <line x="75" y="95"/>
  330. </path>
  331. <stroke/>
  332. </foreground>
  333. </shape>
  334. <shape aspect="variable" h="100" name="Calendar" strokewidth="inherit" w="100">
  335. <connections/>
  336. <foreground>
  337. <save/>
  338. <rect h="100" w="100" x="0" y="0"/>
  339. <fillstroke/>
  340. <path>
  341. <move x="0" y="20"/>
  342. <line x="100" y="20"/>
  343. </path>
  344. <stroke/>
  345. <ellipse h="4" w="4" x="28" y="8"/>
  346. <stroke/>
  347. <ellipse h="4" w="4" x="68" y="8"/>
  348. <stroke/>
  349. <restore/>
  350. <rect/>
  351. <stroke/>
  352. <fontsize size="20"/>
  353. <fontcolor color="#0080F0"/>
  354. <text str="15" align="center" valign="middle" x="50" y="50"/>
  355. </foreground>
  356. </shape>
  357. <shape aspect="variable" h="58" name="Camera" strokewidth="inherit" w="100">
  358. <connections/>
  359. <foreground>
  360. <path>
  361. <move x="5" y="58"/>
  362. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="53"/>
  363. <line x="0" y="13"/>
  364. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="8"/>
  365. <line x="30" y="8"/>
  366. <line x="40" y="0"/>
  367. <line x="60" y="0"/>
  368. <line x="70" y="8"/>
  369. <line x="95" y="8"/>
  370. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="13"/>
  371. <line x="100" y="53"/>
  372. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="58"/>
  373. <close/>
  374. </path>
  375. <fillstroke/>
  376. <ellipse h="44" w="44" x="28" y="8"/>
  377. <stroke/>
  378. <ellipse h="36" w="36" x="32" y="12"/>
  379. <stroke/>
  380. </foreground>
  381. </shape>
  382. <shape aspect="variable" h="60" name="Chat" strokewidth="inherit" w="100">
  383. <connections/>
  384. <foreground>
  385. <path>
  386. <move x="55" y="0"/>
  387. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="65" x-axis-rotation="0" y="10"/>
  388. <line x="65" y="30"/>
  389. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="55" x-axis-rotation="0" y="40"/>
  390. <line x="25" y="40"/>
  391. <line x="15" y="50"/>
  392. <line x="15" y="40"/>
  393. <line x="10" y="40"/>
  394. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
  395. <line x="0" y="10"/>
  396. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  397. <close/>
  398. </path>
  399. <fillstroke/>
  400. <path>
  401. <move x="90" y="10"/>
  402. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
  403. <line x="100" y="40"/>
  404. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="50"/>
  405. <line x="85" y="50"/>
  406. <line x="85" y="60"/>
  407. <line x="75" y="50"/>
  408. <line x="45" y="50"/>
  409. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="35" x-axis-rotation="0" y="40"/>
  410. <line x="35" y="20"/>
  411. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="10"/>
  412. <close/>
  413. </path>
  414. <fillstroke/>
  415. </foreground>
  416. </shape>
  417. <shape aspect="variable" h="100" name="Clock" strokewidth="inherit" w="100">
  418. <connections/>
  419. <foreground>
  420. <ellipse h="100" w="100" x="0" y="0"/>
  421. <fillstroke/>
  422. <path>
  423. <move x="50" y="5"/>
  424. <line x="50" y="50"/>
  425. <line x="25" y="50"/>
  426. </path>
  427. <stroke/>
  428. </foreground>
  429. </shape>
  430. <shape aspect="variable" h="48.51" name="Cloud" strokewidth="inherit" w="92.1">
  431. <connections/>
  432. <foreground>
  433. <path>
  434. <move x="80.28" y="48.51"/>
  435. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
  436. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
  437. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
  438. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
  439. <close/>
  440. </path>
  441. <fillstroke/>
  442. </foreground>
  443. </shape>
  444. <shape aspect="variable" h="97" name="Compose" strokewidth="inherit" w="97">
  445. <connections/>
  446. <foreground>
  447. <rect h="80" w="80" x="0" y="17"/>
  448. <fillstroke/>
  449. <path>
  450. <move x="97" y="5"/>
  451. <line x="33" y="70"/>
  452. <line x="25" y="72"/>
  453. <line x="27" y="64"/>
  454. <line x="92" y="0"/>
  455. <close/>
  456. </path>
  457. <fillstroke/>
  458. </foreground>
  459. </shape>
  460. <shape aspect="variable" h="80" name="Controls" strokewidth="inherit" w="90">
  461. <connections/>
  462. <foreground>
  463. <save/>
  464. <path>
  465. <move x="75" y="0"/>
  466. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="30"/>
  467. <line x="15" y="30"/>
  468. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="0"/>
  469. <close/>
  470. </path>
  471. <fillstroke/>
  472. <fillcolor color="#0080F0"/>
  473. <path>
  474. <move x="75" y="50"/>
  475. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="80"/>
  476. <line x="15" y="80"/>
  477. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="50"/>
  478. <close/>
  479. </path>
  480. <fillstroke/>
  481. <ellipse h="24" w="24" x="3" y="3"/>
  482. <fill/>
  483. <restore/>
  484. <rect/>
  485. <stroke/>
  486. <ellipse h="24" w="24" x="63" y="53"/>
  487. <fill/>
  488. </foreground>
  489. </shape>
  490. <shape aspect="variable" h="50" name="Credit Card" strokewidth="inherit" w="100">
  491. <connections/>
  492. <foreground>
  493. <roundrect arcsize="10" h="50" w="100" x="0" y="0"/>
  494. <fillstroke/>
  495. <path>
  496. <move x="0" y="10"/>
  497. <line x="100" y="10"/>
  498. <move x="0" y="20"/>
  499. <line x="100" y="20"/>
  500. <move x="5" y="30"/>
  501. <line x="30" y="30"/>
  502. <move x="5" y="40"/>
  503. <line x="60" y="40"/>
  504. <move x="85" y="40"/>
  505. <line x="95" y="40"/>
  506. </path>
  507. <fillstroke/>
  508. </foreground>
  509. </shape>
  510. <shape aspect="variable" h="100" name="Crop" strokewidth="inherit" w="100">
  511. <connections/>
  512. <foreground>
  513. <rect h="80" w="80" x="10" y="10"/>
  514. <fillstroke/>
  515. <path>
  516. <move x="10" y="0"/>
  517. <line x="10" y="10"/>
  518. <line x="0" y="10"/>
  519. <move x="100" y="90"/>
  520. <line x="90" y="90"/>
  521. <line x="90" y="100"/>
  522. <move x="10" y="90"/>
  523. <line x="100" y="0"/>
  524. </path>
  525. <stroke/>
  526. </foreground>
  527. </shape>
  528. <shape aspect="variable" h="100" name="Cube" strokewidth="inherit" w="100">
  529. <connections/>
  530. <foreground>
  531. <path>
  532. <move x="0" y="20"/>
  533. <line x="50" y="0"/>
  534. <line x="100" y="20"/>
  535. <line x="100" y="80"/>
  536. <line x="50" y="100"/>
  537. <line x="0" y="80"/>
  538. <close/>
  539. </path>
  540. <fillstroke/>
  541. <path>
  542. <move x="0" y="20"/>
  543. <line x="50" y="40"/>
  544. <line x="100" y="20"/>
  545. <move x="50" y="40"/>
  546. <line x="50" y="100"/>
  547. </path>
  548. <stroke/>
  549. </foreground>
  550. </shape>
  551. <shape aspect="variable" h="85" name="Cup" strokewidth="inherit" w="80">
  552. <connections/>
  553. <foreground>
  554. <path>
  555. <move x="0" y="25"/>
  556. <line x="70" y="25"/>
  557. <line x="70" y="50"/>
  558. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  559. <close/>
  560. </path>
  561. <fillstroke/>
  562. <path>
  563. <move x="0" y="85"/>
  564. <line x="70" y="85"/>
  565. <move x="35" y="0"/>
  566. <line x="35" y="20"/>
  567. <move x="20" y="10"/>
  568. <line x="20" y="20"/>
  569. <move x="50" y="10"/>
  570. <line x="50" y="20"/>
  571. </path>
  572. <fillstroke/>
  573. <path>
  574. <move x="70" y="25"/>
  575. <line x="80" y="25"/>
  576. <line x="80" y="45"/>
  577. <line x="70" y="45"/>
  578. </path>
  579. <stroke/>
  580. </foreground>
  581. </shape>
  582. <shape aspect="variable" h="96.67" name="Data" strokewidth="inherit" w="80">
  583. <connections/>
  584. <foreground>
  585. <path>
  586. <move x="0" y="13.33"/>
  587. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="80" x-axis-rotation="0" y="13.33"/>
  588. <line x="80" y="83.33"/>
  589. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="83.33"/>
  590. <close/>
  591. </path>
  592. <fillstroke/>
  593. <path>
  594. <move x="0" y="13.33"/>
  595. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="13.33"/>
  596. <move x="0" y="35.33"/>
  597. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="35.33"/>
  598. <move x="0" y="60.33"/>
  599. <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="60.33"/>
  600. </path>
  601. <stroke/>
  602. </foreground>
  603. </shape>
  604. <shape aspect="variable" h="100" name="Delete" strokewidth="inherit" w="100">
  605. <connections/>
  606. <foreground>
  607. <ellipse h="100" w="100" x="0" y="0"/>
  608. <fillstroke/>
  609. <path>
  610. <move x="20" y="50"/>
  611. <line x="80" y="50"/>
  612. </path>
  613. <fillstroke/>
  614. </foreground>
  615. </shape>
  616. <shape aspect="variable" h="100" name="Document" strokewidth="inherit" w="70">
  617. <connections/>
  618. <foreground>
  619. <path>
  620. <move x="0" y="0"/>
  621. <line x="50" y="0"/>
  622. <line x="70" y="20"/>
  623. <line x="70" y="100"/>
  624. <line x="0" y="100"/>
  625. <close/>
  626. </path>
  627. <fillstroke/>
  628. <path>
  629. <move x="50" y="0"/>
  630. <line x="50" y="20"/>
  631. <line x="70" y="20"/>
  632. </path>
  633. <stroke/>
  634. </foreground>
  635. </shape>
  636. <shape aspect="variable" h="100" name="Documents" strokewidth="inherit" w="75">
  637. <connections/>
  638. <foreground>
  639. <path>
  640. <move x="0" y="10"/>
  641. <line x="15" y="10"/>
  642. <line x="15" y="0"/>
  643. <line x="60" y="0"/>
  644. <line x="75" y="15"/>
  645. <line x="75" y="90"/>
  646. <line x="60" y="90"/>
  647. <line x="60" y="100"/>
  648. <line x="0" y="100"/>
  649. <close/>
  650. </path>
  651. <fillstroke/>
  652. <path>
  653. <move x="60" y="0"/>
  654. <line x="60" y="15"/>
  655. <line x="75" y="15"/>
  656. <move x="45" y="10"/>
  657. <line x="45" y="25"/>
  658. <line x="60" y="25"/>
  659. <move x="15" y="10"/>
  660. <line x="45" y="10"/>
  661. <line x="60" y="25"/>
  662. <line x="60" y="90"/>
  663. </path>
  664. <stroke/>
  665. </foreground>
  666. </shape>
  667. <shape aspect="variable" h="85" name="Down" strokewidth="inherit" w="70">
  668. <connections/>
  669. <foreground>
  670. <path>
  671. <move x="45" y="15"/>
  672. <line x="70" y="15"/>
  673. <line x="70" y="85"/>
  674. <line x="0" y="85"/>
  675. <line x="0" y="15"/>
  676. <line x="25" y="15"/>
  677. </path>
  678. <fillstroke/>
  679. <path>
  680. <move x="15" y="40"/>
  681. <line x="35" y="60"/>
  682. <line x="55" y="40"/>
  683. <move x="35" y="0"/>
  684. <line x="35" y="60"/>
  685. </path>
  686. <stroke/>
  687. </foreground>
  688. </shape>
  689. <shape aspect="variable" h="98.38" name="Edit" strokewidth="inherit" w="98.38">
  690. <connections/>
  691. <foreground>
  692. <rect h="90" w="90" x="0" y="8.38"/>
  693. <fillstroke/>
  694. <path>
  695. <move x="92" y="1.38"/>
  696. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="97" x-axis-rotation="0" y="6.38"/>
  697. <line x="35" y="68.38"/>
  698. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30" x-axis-rotation="0" y="63.38"/>
  699. <close/>
  700. </path>
  701. <fillstroke/>
  702. </foreground>
  703. </shape>
  704. <shape aspect="variable" h="100" name="Envelope (Empty)" strokewidth="inherit" w="100">
  705. <connections/>
  706. <foreground>
  707. <path>
  708. <move x="0" y="100"/>
  709. <line x="0" y="45"/>
  710. <line x="50" y="0"/>
  711. <line x="100" y="45"/>
  712. <line x="100" y="100"/>
  713. <close/>
  714. </path>
  715. <fillstroke/>
  716. <path>
  717. <move x="0" y="100"/>
  718. <line x="50" y="55"/>
  719. <line x="100" y="100"/>
  720. <move x="0" y="45"/>
  721. <line x="30.5" y="72.5"/>
  722. <move x="100" y="45"/>
  723. <line x="69.5" y="72.5"/>
  724. </path>
  725. <stroke/>
  726. </foreground>
  727. </shape>
  728. <shape aspect="variable" h="100" name="Envelope (Message)" strokewidth="inherit" w="100">
  729. <connections/>
  730. <foreground>
  731. <path>
  732. <move x="0" y="100"/>
  733. <line x="0" y="45"/>
  734. <line x="50" y="0"/>
  735. <line x="100" y="45"/>
  736. <line x="100" y="100"/>
  737. <close/>
  738. </path>
  739. <fillstroke/>
  740. <path>
  741. <move x="25" y="67.5"/>
  742. <line x="25" y="15"/>
  743. <line x="66.5" y="15"/>
  744. <line x="75" y="22.5"/>
  745. <line x="75" y="67.5"/>
  746. <line x="50" y="90"/>
  747. <close/>
  748. </path>
  749. <fillstroke/>
  750. <path>
  751. <move x="0" y="100"/>
  752. <line x="50" y="55"/>
  753. <line x="100" y="100"/>
  754. </path>
  755. <fillstroke/>
  756. <path>
  757. <move x="0" y="45"/>
  758. <line x="30.5" y="72.5"/>
  759. <move x="100" y="45"/>
  760. <line x="69.5" y="72.5"/>
  761. <move x="35" y="25"/>
  762. <line x="65" y="25"/>
  763. <move x="35" y="37"/>
  764. <line x="50" y="37"/>
  765. <move x="35" y="49"/>
  766. <line x="65" y="49"/>
  767. </path>
  768. <stroke/>
  769. </foreground>
  770. </shape>
  771. <shape aspect="variable" h="46.93" name="Eye" strokewidth="inherit" w="100">
  772. <connections/>
  773. <foreground>
  774. <path>
  775. <move x="0" y="23.47"/>
  776. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="23.47"/>
  777. <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="0" x-axis-rotation="0" y="23.47"/>
  778. <close/>
  779. </path>
  780. <fillstroke/>
  781. <ellipse h="36" w="36" x="32" y="5.47"/>
  782. <fillstroke/>
  783. <ellipse h="24" w="24" x="38" y="11.47"/>
  784. <fillstroke/>
  785. </foreground>
  786. </shape>
  787. <shape aspect="variable" h="100.72" name="Flag" strokewidth="inherit" w="100">
  788. <connections/>
  789. <foreground>
  790. <path>
  791. <move x="0" y="5.72"/>
  792. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="5.72"/>
  793. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="100" x-axis-rotation="0" y="5.72"/>
  794. <line x="100" y="50.72"/>
  795. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="50.72"/>
  796. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="0" x-axis-rotation="0" y="50.72"/>
  797. <line x="0" y="100.72"/>
  798. <close/>
  799. </path>
  800. <fillstroke/>
  801. </foreground>
  802. </shape>
  803. <shape aspect="variable" h="100" name="Flash" strokewidth="inherit" w="60">
  804. <connections/>
  805. <foreground>
  806. <path>
  807. <move x="0" y="50"/>
  808. <line x="35" y="0"/>
  809. <line x="35" y="50"/>
  810. <line x="60" y="50"/>
  811. <line x="25" y="100"/>
  812. <line x="25" y="50"/>
  813. <close/>
  814. </path>
  815. <fillstroke/>
  816. </foreground>
  817. </shape>
  818. <shape aspect="variable" h="100" name="Flashlight" strokewidth="inherit" w="50">
  819. <connections/>
  820. <foreground>
  821. <path>
  822. <move x="0" y="0"/>
  823. <line x="50" y="0"/>
  824. <line x="50" y="10"/>
  825. <line x="35" y="35"/>
  826. <line x="35" y="100"/>
  827. <line x="15" y="100"/>
  828. <line x="15" y="35"/>
  829. <line x="0" y="10"/>
  830. <close/>
  831. </path>
  832. <fillstroke/>
  833. <path>
  834. <move x="0" y="10"/>
  835. <line x="50" y="10"/>
  836. <move x="15" y="95"/>
  837. <line x="35" y="95"/>
  838. </path>
  839. <stroke/>
  840. <ellipse h="6" w="4" x="23" y="42"/>
  841. <stroke/>
  842. </foreground>
  843. </shape>
  844. <shape aspect="variable" h="65" name="Folder" strokewidth="inherit" w="100">
  845. <connections/>
  846. <foreground>
  847. <path>
  848. <move x="0" y="5"/>
  849. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  850. <line x="15" y="0"/>
  851. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="20" x-axis-rotation="0" y="5"/>
  852. <line x="95" y="5"/>
  853. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  854. <line x="100" y="60"/>
  855. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="65"/>
  856. <line x="5" y="65"/>
  857. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
  858. <close/>
  859. <move x="0" y="10"/>
  860. <line x="100" y="10"/>
  861. </path>
  862. <fillstroke/>
  863. </foreground>
  864. </shape>
  865. <shape aspect="variable" h="85" name="Folders" strokewidth="inherit" w="100">
  866. <connections/>
  867. <foreground>
  868. <rect h="75" w="100" x="0" y="10"/>
  869. <fillstroke/>
  870. <path>
  871. <move x="5" y="5"/>
  872. <line x="95" y="5"/>
  873. <move x="10" y="0"/>
  874. <line x="90" y="0"/>
  875. </path>
  876. <fillstroke/>
  877. </foreground>
  878. </shape>
  879. <shape aspect="variable" h="75" name="Folders 2" strokewidth="inherit" w="100">
  880. <connections/>
  881. <foreground>
  882. <path>
  883. <move x="0" y="0"/>
  884. <line x="90" y="0"/>
  885. <line x="90" y="10"/>
  886. <line x="100" y="10"/>
  887. <line x="100" y="75"/>
  888. <line x="10" y="75"/>
  889. <line x="10" y="65"/>
  890. <line x="0" y="65"/>
  891. <close/>
  892. </path>
  893. <fillstroke/>
  894. <path>
  895. <move x="10" y="65"/>
  896. <line x="10" y="10"/>
  897. <line x="90" y="10"/>
  898. </path>
  899. <stroke/>
  900. </foreground>
  901. </shape>
  902. <shape aspect="variable" h="56" name="Forward" strokewidth="inherit" w="100">
  903. <connections/>
  904. <foreground>
  905. <path>
  906. <move x="0" y="0"/>
  907. <line x="50" y="28"/>
  908. <line x="0" y="56"/>
  909. <close/>
  910. <move x="50" y="0"/>
  911. <line x="100" y="28"/>
  912. <line x="50" y="56"/>
  913. <close/>
  914. </path>
  915. <fillstroke/>
  916. </foreground>
  917. </shape>
  918. <shape aspect="variable" h="105.49" name="Gauge" strokewidth="inherit" w="108.56">
  919. <connections/>
  920. <foreground>
  921. <ellipse h="100" w="100" x="4.48" y="0.15"/>
  922. <fill/>
  923. <path>
  924. <move x="54.48" y="10.15"/>
  925. <line x="54.48" y="0.15"/>
  926. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="19.28" x-axis-rotation="0" y="14.95"/>
  927. </path>
  928. <stroke/>
  929. <linejoin join="round"/>
  930. <path>
  931. <move x="24.48" y="20.15"/>
  932. <line x="55.48" y="49.15"/>
  933. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="53.48" x-axis-rotation="0" y="51.15"/>
  934. <close/>
  935. </path>
  936. <stroke/>
  937. </foreground>
  938. </shape>
  939. <shape aspect="variable" h="40" name="Glasses" strokewidth="inherit" w="100">
  940. <connections/>
  941. <foreground>
  942. <ellipse h="40" w="40" x="5" y="0"/>
  943. <fillstroke/>
  944. <ellipse h="40" w="40" x="55" y="0"/>
  945. <fillstroke/>
  946. <path>
  947. <move x="0" y="20"/>
  948. <line x="5" y="20"/>
  949. <move x="95" y="20"/>
  950. <line x="100" y="20"/>
  951. <move x="45" y="19"/>
  952. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="55" x-axis-rotation="0" y="19"/>
  953. </path>
  954. <stroke/>
  955. </foreground>
  956. </shape>
  957. <shape aspect="variable" h="100" name="Globe" strokewidth="inherit" w="100">
  958. <connections/>
  959. <foreground>
  960. <ellipse h="100" w="100" x="0" y="0"/>
  961. <fillstroke/>
  962. <path>
  963. </path>
  964. <fillstroke/>
  965. <path>
  966. <move x="50" y="0"/>
  967. <line x="50" y="100"/>
  968. <move x="100" y="50"/>
  969. <line x="0" y="50"/>
  970. <move x="50" y="0"/>
  971. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
  972. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
  973. <close/>
  974. <move x="15" y="85"/>
  975. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="85" x-axis-rotation="0" y="85"/>
  976. <move x="15" y="15"/>
  977. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="85" x-axis-rotation="0" y="15"/>
  978. </path>
  979. <stroke/>
  980. </foreground>
  981. </shape>
  982. <shape aspect="variable" h="91.05" name="Heart" strokewidth="inherit" w="102.09">
  983. <connections/>
  984. <foreground>
  985. <path>
  986. <move x="11.05" y="51.05"/>
  987. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="51.05" x-axis-rotation="0" y="11.05"/>
  988. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="91.05" x-axis-rotation="0" y="51.05"/>
  989. <line x="51.05" y="91.05"/>
  990. <close/>
  991. <close/>
  992. </path>
  993. <fillstroke/>
  994. </foreground>
  995. </shape>
  996. <shape aspect="variable" h="100" name="Help" strokewidth="inherit" w="100">
  997. <connections/>
  998. <foreground>
  999. <ellipse h="100" w="100" x="0" y="0"/>
  1000. <fillstroke/>
  1001. <ellipse h="3" w="3" x="48.5" y="73.5"/>
  1002. <fillstroke/>
  1003. <path>
  1004. <move x="35" y="35"/>
  1005. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="65" x-axis-rotation="0" y="35"/>
  1006. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="57" x-axis-rotation="0" y="51"/>
  1007. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="50" x-axis-rotation="0" y="70"/>
  1008. </path>
  1009. <stroke/>
  1010. </foreground>
  1011. </shape>
  1012. <shape aspect="variable" h="85" name="Home" strokewidth="inherit" w="80">
  1013. <connections/>
  1014. <foreground>
  1015. <path>
  1016. <move x="5" y="85"/>
  1017. <line x="5" y="35"/>
  1018. <line x="40" y="5"/>
  1019. <line x="75" y="35"/>
  1020. <line x="75" y="85"/>
  1021. <line x="50" y="85"/>
  1022. <line x="50" y="60"/>
  1023. <line x="30" y="60"/>
  1024. <line x="30" y="85"/>
  1025. <close/>
  1026. </path>
  1027. <fillstroke/>
  1028. <path>
  1029. <move x="14" y="23"/>
  1030. <line x="14" y="10"/>
  1031. <line x="20" y="10"/>
  1032. <line x="20" y="18"/>
  1033. </path>
  1034. <fillstroke/>
  1035. <path>
  1036. <move x="0" y="35"/>
  1037. <line x="40" y="0"/>
  1038. <line x="80" y="35"/>
  1039. </path>
  1040. <stroke/>
  1041. </foreground>
  1042. </shape>
  1043. <shape aspect="variable" h="100" name="Info" strokewidth="inherit" w="100">
  1044. <connections/>
  1045. <foreground>
  1046. <ellipse h="100" w="100" x="0" y="0"/>
  1047. <fillstroke/>
  1048. <path>
  1049. <move x="42" y="35"/>
  1050. <line x="55" y="35"/>
  1051. <line x="55" y="80"/>
  1052. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
  1053. <line x="42" y="83"/>
  1054. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
  1055. <line x="45" y="38"/>
  1056. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
  1057. </path>
  1058. <stroke/>
  1059. <ellipse h="10" w="10" x="45" y="20"/>
  1060. <stroke/>
  1061. </foreground>
  1062. </shape>
  1063. <shape aspect="variable" h="100" name="Keypad" strokewidth="inherit" w="100">
  1064. <connections/>
  1065. <foreground>
  1066. <ellipse h="28" w="28" x="0" y="0"/>
  1067. <fillstroke/>
  1068. <ellipse h="28" w="28" x="36" y="0"/>
  1069. <fillstroke/>
  1070. <ellipse h="28" w="28" x="72" y="0"/>
  1071. <fillstroke/>
  1072. <ellipse h="28" w="28" x="0" y="36"/>
  1073. <fillstroke/>
  1074. <ellipse h="28" w="28" x="36" y="36"/>
  1075. <fillstroke/>
  1076. <ellipse h="28" w="28" x="72" y="36"/>
  1077. <fillstroke/>
  1078. <ellipse h="28" w="28" x="0" y="72"/>
  1079. <fillstroke/>
  1080. <ellipse h="28" w="28" x="36" y="72"/>
  1081. <fillstroke/>
  1082. <ellipse h="28" w="28" x="72" y="72"/>
  1083. <fillstroke/>
  1084. </foreground>
  1085. </shape>
  1086. <shape aspect="variable" h="98.72" name="Lightbulb" strokewidth="inherit" w="75.95">
  1087. <connections/>
  1088. <foreground>
  1089. <path>
  1090. <move x="27.97" y="98.72"/>
  1091. <line x="27.97" y="83.72"/>
  1092. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="17.97" x-axis-rotation="0" y="63.72"/>
  1093. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="57.97" x-axis-rotation="0" y="63.72"/>
  1094. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="47.97" x-axis-rotation="0" y="83.72"/>
  1095. <line x="47.97" y="98.72"/>
  1096. <close/>
  1097. </path>
  1098. <fillstroke/>
  1099. <path>
  1100. <move x="37.97" y="41.72"/>
  1101. <line x="37.97" y="88.72"/>
  1102. <move x="27.97" y="88.72"/>
  1103. <line x="47.97" y="88.72"/>
  1104. </path>
  1105. <fillstroke/>
  1106. <ellipse h="6" w="6" x="34.97" y="35.72"/>
  1107. <stroke/>
  1108. </foreground>
  1109. </shape>
  1110. <shape aspect="variable" h="100.68" name="Link" strokewidth="inherit" w="100.42">
  1111. <connections/>
  1112. <foreground>
  1113. <path>
  1114. <move x="54.25" y="71.17"/>
  1115. <line x="28.25" y="97.17"/>
  1116. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="13.25" x-axis-rotation="0" y="97.17"/>
  1117. <line x="3.25" y="87.17"/>
  1118. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="3.25" x-axis-rotation="0" y="72.67"/>
  1119. <line x="38.25" y="37.57"/>
  1120. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="52.75" x-axis-rotation="0" y="37.67"/>
  1121. <line x="63.45" y="48.67"/>
  1122. <move x="50.25" y="64.67"/>
  1123. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="63.85" x-axis-rotation="0" y="61.37"/>
  1124. <line x="96.75" y="28.17"/>
  1125. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="95.25" x-axis-rotation="0" y="12.17"/>
  1126. <line x="86.25" y="3.17"/>
  1127. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="71.25" x-axis-rotation="0" y="4.37"/>
  1128. <line x="47.25" y="28.17"/>
  1129. </path>
  1130. <stroke/>
  1131. </foreground>
  1132. </shape>
  1133. <shape aspect="variable" h="100.87" name="Location" strokewidth="inherit" w="79.94">
  1134. <connections/>
  1135. <foreground>
  1136. <path>
  1137. <move x="39.97" y="100.87"/>
  1138. <line x="9.97" y="58.87"/>
  1139. <arc large-arc-flag="1" rx="36" ry="36" sweep-flag="1" x="69.97" x-axis-rotation="0" y="58.87"/>
  1140. <close/>
  1141. </path>
  1142. <fillstroke/>
  1143. <ellipse h="16" w="16" x="31.97" y="30.87"/>
  1144. <stroke/>
  1145. </foreground>
  1146. </shape>
  1147. <shape aspect="variable" h="100" name="Location 2" strokewidth="inherit" w="100">
  1148. <connections/>
  1149. <foreground>
  1150. <ellipse h="100" w="100" x="0" y="0"/>
  1151. <fillstroke/>
  1152. <fillcolor color="#0080F0"/>
  1153. <path>
  1154. <move x="15" y="55"/>
  1155. <line x="75" y="25"/>
  1156. <line x="45" y="85"/>
  1157. <line x="45" y="55"/>
  1158. <close/>
  1159. </path>
  1160. <fill/>
  1161. </foreground>
  1162. </shape>
  1163. <shape aspect="variable" h="100" name="Locked" strokewidth="inherit" w="80">
  1164. <connections/>
  1165. <foreground>
  1166. <rect h="50" w="80" x="0" y="50"/>
  1167. <fillstroke/>
  1168. <path>
  1169. <move x="10" y="50"/>
  1170. <line x="10" y="30"/>
  1171. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
  1172. <line x="70" y="50"/>
  1173. </path>
  1174. <stroke/>
  1175. </foreground>
  1176. </shape>
  1177. <shape aspect="variable" h="100" name="Looking Glass" strokewidth="inherit" w="100">
  1178. <connections/>
  1179. <foreground>
  1180. <ellipse h="80" w="80" x="0" y="0"/>
  1181. <fillstroke/>
  1182. <path>
  1183. <move x="68" y="68"/>
  1184. <line x="100" y="100"/>
  1185. </path>
  1186. <fillstroke/>
  1187. </foreground>
  1188. </shape>
  1189. <shape aspect="variable" h="108.5" name="Loud" strokewidth="inherit" w="102.32">
  1190. <connections/>
  1191. <foreground>
  1192. <ellipse h="100" w="100" x="0" y="4.25"/>
  1193. <fill/>
  1194. <path>
  1195. <move x="37.5" y="44.25"/>
  1196. <line x="54" y="44.25"/>
  1197. <line x="62" y="34.25"/>
  1198. <line x="62" y="74.25"/>
  1199. <line x="54" y="64.25"/>
  1200. <line x="37.5" y="64.25"/>
  1201. <close/>
  1202. <move x="76" y="39.25"/>
  1203. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="76" x-axis-rotation="0" y="69.25"/>
  1204. <move x="84" y="33.25"/>
  1205. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="84" x-axis-rotation="0" y="75.25"/>
  1206. <move x="93" y="28.75"/>
  1207. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="93" x-axis-rotation="0" y="79.75"/>
  1208. <move x="91" y="25.25"/>
  1209. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="0" x="91" x-axis-rotation="0" y="83.25"/>
  1210. </path>
  1211. <stroke/>
  1212. </foreground>
  1213. </shape>
  1214. <shape aspect="variable" h="100" name="Magnet" strokewidth="inherit" w="80">
  1215. <connections/>
  1216. <foreground>
  1217. <path>
  1218. <move x="15" y="0"/>
  1219. <line x="15" y="60"/>
  1220. <arc large-arc-flag="1" rx="25" ry="25" sweep-flag="0" x="65" x-axis-rotation="0" y="60"/>
  1221. <line x="65" y="0"/>
  1222. <line x="80" y="0"/>
  1223. <line x="80" y="60"/>
  1224. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
  1225. <line x="0" y="0"/>
  1226. <close/>
  1227. <move x="0" y="10"/>
  1228. <line x="15" y="10"/>
  1229. <move x="65" y="10"/>
  1230. <line x="80" y="10"/>
  1231. </path>
  1232. <fillstroke/>
  1233. </foreground>
  1234. </shape>
  1235. <shape aspect="variable" h="55" name="Mail" strokewidth="inherit" w="100">
  1236. <connections/>
  1237. <foreground>
  1238. <rect h="55" w="100" x="0" y="0"/>
  1239. <fillstroke/>
  1240. <path>
  1241. <move x="0" y="0"/>
  1242. <line x="50" y="45"/>
  1243. <line x="100" y="0"/>
  1244. <move x="0" y="55"/>
  1245. <line x="31" y="27.5"/>
  1246. <move x="100" y="55"/>
  1247. <line x="69" y="27.5"/>
  1248. </path>
  1249. <stroke/>
  1250. </foreground>
  1251. </shape>
  1252. <shape aspect="variable" h="100" name="Map" strokewidth="inherit" w="100">
  1253. <connections/>
  1254. <foreground>
  1255. <path>
  1256. <move x="0" y="15"/>
  1257. <line x="25" y="0"/>
  1258. <line x="50" y="15"/>
  1259. <line x="75" y="0"/>
  1260. <line x="100" y="15"/>
  1261. <line x="100" y="100"/>
  1262. <line x="75" y="85"/>
  1263. <line x="50" y="100"/>
  1264. <line x="25" y="85"/>
  1265. <line x="0" y="100"/>
  1266. <close/>
  1267. </path>
  1268. <fillstroke/>
  1269. <path>
  1270. <move x="50" y="15"/>
  1271. <line x="50" y="100"/>
  1272. <move x="25" y="0"/>
  1273. <line x="25" y="85"/>
  1274. <move x="75" y="0"/>
  1275. <line x="75" y="85"/>
  1276. </path>
  1277. <stroke/>
  1278. </foreground>
  1279. </shape>
  1280. <shape aspect="variable" h="65" name="Message" strokewidth="inherit" w="100">
  1281. <connections/>
  1282. <foreground>
  1283. <path>
  1284. <move x="0" y="5"/>
  1285. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1286. <line x="95" y="0"/>
  1287. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  1288. <line x="100" y="50"/>
  1289. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="55"/>
  1290. <line x="90" y="55"/>
  1291. <line x="90" y="65"/>
  1292. <line x="80" y="55"/>
  1293. <line x="5" y="55"/>
  1294. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  1295. <close/>
  1296. </path>
  1297. <fillstroke/>
  1298. </foreground>
  1299. </shape>
  1300. <shape aspect="variable" h="85" name="Messages" strokewidth="inherit" w="100">
  1301. <connections/>
  1302. <foreground>
  1303. <path>
  1304. <move x="0" y="0"/>
  1305. <line x="75" y="0"/>
  1306. <line x="75" y="20"/>
  1307. <line x="100" y="20"/>
  1308. <line x="100" y="75"/>
  1309. <line x="90" y="75"/>
  1310. <line x="90" y="85"/>
  1311. <line x="80" y="75"/>
  1312. <line x="25" y="75"/>
  1313. <line x="25" y="55"/>
  1314. <line x="0" y="55"/>
  1315. <close/>
  1316. </path>
  1317. <fillstroke/>
  1318. <path>
  1319. <move x="75" y="20"/>
  1320. <line x="25" y="20"/>
  1321. <line x="25" y="55"/>
  1322. </path>
  1323. <stroke/>
  1324. </foreground>
  1325. </shape>
  1326. <shape aspect="variable" h="100" name="Microphone" strokewidth="inherit" w="40">
  1327. <connections/>
  1328. <foreground>
  1329. <path>
  1330. <move x="0" y="50"/>
  1331. <line x="0" y="60"/>
  1332. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="40" x-axis-rotation="0" y="60"/>
  1333. <line x="40" y="50"/>
  1334. <move x="20" y="80"/>
  1335. <line x="20" y="100"/>
  1336. <move x="5" y="100"/>
  1337. <line x="35" y="100"/>
  1338. </path>
  1339. <stroke/>
  1340. <path>
  1341. <move x="5" y="15"/>
  1342. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="35" x-axis-rotation="0" y="15"/>
  1343. <line x="35" y="60"/>
  1344. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="5" x-axis-rotation="0" y="60"/>
  1345. <close/>
  1346. </path>
  1347. <fillstroke/>
  1348. </foreground>
  1349. </shape>
  1350. <shape aspect="variable" h="65" name="Monitor" strokewidth="inherit" w="100">
  1351. <connections/>
  1352. <foreground>
  1353. <rect h="55" w="100" x="0" y="0"/>
  1354. <fillstroke/>
  1355. <path>
  1356. <move x="50" y="55"/>
  1357. <line x="50" y="65"/>
  1358. <move x="40" y="65"/>
  1359. <line x="60" y="65"/>
  1360. </path>
  1361. <stroke/>
  1362. </foreground>
  1363. </shape>
  1364. <shape aspect="variable" h="97.67" name="Moon" strokewidth="inherit" w="97.67">
  1365. <connections/>
  1366. <foreground>
  1367. <path>
  1368. <move x="27.67" y="0"/>
  1369. <arc large-arc-flag="0" rx="51" ry="51" sweep-flag="0" x="97.67" x-axis-rotation="0" y="70"/>
  1370. <arc large-arc-flag="1" rx="51" ry="51" sweep-flag="1" x="27.67" x-axis-rotation="0" y="0"/>
  1371. <close/>
  1372. </path>
  1373. <fillstroke/>
  1374. </foreground>
  1375. </shape>
  1376. <shape aspect="variable" h="76" name="Most Viewed" strokewidth="inherit" w="94">
  1377. <connections/>
  1378. <foreground>
  1379. <path>
  1380. <move x="24" y="8"/>
  1381. <line x="94" y="8"/>
  1382. <move x="24" y="38"/>
  1383. <line x="94" y="38"/>
  1384. <move x="24" y="68"/>
  1385. <line x="94" y="68"/>
  1386. </path>
  1387. <stroke/>
  1388. <path>
  1389. <move x="9" y="30"/>
  1390. <line x="15" y="46"/>
  1391. <line x="0" y="36"/>
  1392. <line x="18" y="36"/>
  1393. <line x="3" y="46"/>
  1394. <close/>
  1395. <move x="9" y="0"/>
  1396. <line x="15" y="16"/>
  1397. <line x="0" y="6"/>
  1398. <line x="18" y="6"/>
  1399. <line x="3" y="16"/>
  1400. <close/>
  1401. <move x="9" y="60"/>
  1402. <line x="15" y="76"/>
  1403. <line x="0" y="66"/>
  1404. <line x="18" y="66"/>
  1405. <line x="3" y="76"/>
  1406. <close/>
  1407. </path>
  1408. <fill/>
  1409. </foreground>
  1410. </shape>
  1411. <shape aspect="variable" h="75" name="Move to Folder" strokewidth="inherit" w="100">
  1412. <connections/>
  1413. <foreground>
  1414. <path>
  1415. <move x="0" y="0"/>
  1416. <line x="100" y="0"/>
  1417. <line x="100" y="50"/>
  1418. <line x="57.3" y="50"/>
  1419. <line x="80" y="75"/>
  1420. <line x="20" y="75"/>
  1421. <line x="42.7" y="50"/>
  1422. <line x="0" y="50"/>
  1423. <close/>
  1424. </path>
  1425. <fillstroke/>
  1426. <path>
  1427. <move x="42.7" y="50"/>
  1428. <line x="50" y="42"/>
  1429. <line x="57.3" y="50"/>
  1430. </path>
  1431. <stroke/>
  1432. </foreground>
  1433. </shape>
  1434. <shape aspect="variable" h="99.25" name="Note" strokewidth="inherit" w="99.4">
  1435. <connections/>
  1436. <foreground>
  1437. <path>
  1438. <move x="74.4" y="15"/>
  1439. <line x="99.4" y="20"/>
  1440. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="74.4" x-axis-rotation="0" y="0"/>
  1441. <line x="74.4" y="90"/>
  1442. <arc large-arc-flag="1" rx="15" ry="10" sweep-flag="1" x="74.4" x-axis-rotation="0" y="88"/>
  1443. <close/>
  1444. </path>
  1445. <fillstroke/>
  1446. <path>
  1447. <move x="0" y="19.6"/>
  1448. <line x="50" y="19.6"/>
  1449. <move x="0" y="44.6"/>
  1450. <line x="50" y="44.6"/>
  1451. <move x="0" y="69.6"/>
  1452. <line x="50" y="69.6"/>
  1453. </path>
  1454. <stroke/>
  1455. </foreground>
  1456. </shape>
  1457. <shape aspect="variable" h="50" name="Options" strokewidth="inherit" w="100">
  1458. <connections/>
  1459. <foreground>
  1460. <path>
  1461. <move x="0" y="0"/>
  1462. <line x="100" y="0"/>
  1463. <line x="100" y="10"/>
  1464. <line x="0" y="10"/>
  1465. <close/>
  1466. <move x="0" y="20"/>
  1467. <line x="100" y="20"/>
  1468. <line x="100" y="30"/>
  1469. <line x="0" y="30"/>
  1470. <close/>
  1471. <move x="0" y="40"/>
  1472. <line x="100" y="40"/>
  1473. <line x="100" y="50"/>
  1474. <line x="0" y="50"/>
  1475. <close/>
  1476. </path>
  1477. <fillstroke/>
  1478. </foreground>
  1479. </shape>
  1480. <shape aspect="variable" h="70" name="Orientation Lock" strokewidth="inherit" w="77">
  1481. <connections/>
  1482. <foreground>
  1483. <path>
  1484. <move x="35" y="70"/>
  1485. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="70" x-axis-rotation="0" y="35"/>
  1486. <move x="25" y="30"/>
  1487. <line x="25" y="25"/>
  1488. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="25"/>
  1489. <line x="45" y="30"/>
  1490. </path>
  1491. <stroke/>
  1492. <path>
  1493. <move x="63" y="35"/>
  1494. <line x="70" y="45"/>
  1495. <line x="77" y="35"/>
  1496. <close/>
  1497. </path>
  1498. <fill/>
  1499. <rect h="20" w="30" x="20" y="30"/>
  1500. <fill/>
  1501. </foreground>
  1502. </shape>
  1503. <shape aspect="variable" h="16" name="Page Navigation" strokewidth="inherit" w="100">
  1504. <connections/>
  1505. <foreground>
  1506. <ellipse h="16" w="16" x="0" y="0"/>
  1507. <fillstroke/>
  1508. <ellipse h="16" w="16" x="42" y="0"/>
  1509. <fillstroke/>
  1510. <ellipse h="16" w="16" x="84" y="0"/>
  1511. <fillstroke/>
  1512. </foreground>
  1513. </shape>
  1514. <shape aspect="variable" h="85" name="Paint" strokewidth="inherit" w="100">
  1515. <connections/>
  1516. <foreground>
  1517. <roundrect arcsize="16.67" h="30" w="90" x="5" y="0"/>
  1518. <fillstroke/>
  1519. <rect h="25" w="8" x="46" y="60"/>
  1520. <fillstroke/>
  1521. <path>
  1522. <move x="50" y="60"/>
  1523. <line x="50" y="40"/>
  1524. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="45" x-axis-rotation="0" y="35"/>
  1525. <line x="5" y="35"/>
  1526. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
  1527. <line x="0" y="20"/>
  1528. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="15"/>
  1529. <move x="95" y="15"/>
  1530. <line x="100" y="15"/>
  1531. </path>
  1532. <stroke/>
  1533. </foreground>
  1534. </shape>
  1535. <shape aspect="variable" h="80" name="Pause" strokewidth="inherit" w="50">
  1536. <connections/>
  1537. <foreground>
  1538. <path>
  1539. <move x="0" y="0"/>
  1540. <line x="15" y="0"/>
  1541. <line x="15" y="80"/>
  1542. <line x="0" y="80"/>
  1543. <close/>
  1544. <move x="35" y="0"/>
  1545. <line x="50" y="0"/>
  1546. <line x="50" y="80"/>
  1547. <line x="35" y="80"/>
  1548. <close/>
  1549. </path>
  1550. <fillstroke/>
  1551. </foreground>
  1552. </shape>
  1553. <shape aspect="variable" h="99" name="Pen" strokewidth="inherit" w="98">
  1554. <connections/>
  1555. <foreground>
  1556. <path>
  1557. <move x="16" y="75"/>
  1558. <line x="90" y="1"/>
  1559. <line x="98" y="9"/>
  1560. <line x="24" y="83"/>
  1561. <close/>
  1562. <move x="7" y="81"/>
  1563. <arc large-arc-flag="1" rx="8" ry="8" sweep-flag="1" x="18" x-axis-rotation="0" y="92"/>
  1564. <line x="0" y="99"/>
  1565. <close/>
  1566. </path>
  1567. <fillstroke/>
  1568. <path>
  1569. <move x="88" y="3"/>
  1570. <line x="85" y="0"/>
  1571. <line x="64" y="21"/>
  1572. <move x="72" y="19"/>
  1573. <line x="80" y="27"/>
  1574. <move x="0" y="99"/>
  1575. <line x="10" y="89"/>
  1576. </path>
  1577. <stroke/>
  1578. </foreground>
  1579. </shape>
  1580. <shape aspect="variable" h="101.04" name="Phone" strokewidth="inherit" w="74.83">
  1581. <connections/>
  1582. <foreground>
  1583. <path>
  1584. <move x="21.83" y="0.56"/>
  1585. <curve x1="21.83" x2="0" x3="0.29" y1="0.56" y2="0.84" y3="20.26"/>
  1586. <curve x1="0.57" x2="4.54" x3="11.06" y1="39.68" y2="56.85" y3="66.42"/>
  1587. <curve x1="17.58" x2="34.3" x3="53.3" y1="75.99" y2="101.04" y3="98.51"/>
  1588. <curve x1="53.3" x2="62.66" x3="69.74" y1="98.51" y2="96.54" y3="92.03"/>
  1589. <line x="46.78" y="74.3"/>
  1590. <curve x1="46.78" x2="39.98" x3="35.72" y1="74.3" y2="78.52" y3="72.89"/>
  1591. <curve x1="31.47" x2="18.14" x3="18.14" y1="67.26" y2="41.09" y3="41.09"/>
  1592. <curve x1="18.14" x2="14.45" x3="22.68" y1="41.09" y2="32.65" y3="28.99"/>
  1593. <line x="21.83" y="0.56"/>
  1594. <close/>
  1595. <move x="24.39" y="0.56"/>
  1596. <curve x1="24.39" x2="26.09" x3="29.21" y1="0.56" y2="0" y3="1.69"/>
  1597. <curve x1="32.33" x2="32.33" x3="32.33" y1="3.38" y2="4.78" y3="4.78"/>
  1598. <line x="32.61" y="24.2"/>
  1599. <curve x1="32.61" x2="31.76" x3="30.63" y1="24.2" y2="25.33" y3="26.45"/>
  1600. <curve x1="29.5" x2="25.81" x3="25.24" y1="27.58" y2="29.27" y3="28.14"/>
  1601. <curve x1="24.67" x2="24.39" x3="24.39" y1="27.02" y2="0.56" y3="0.56"/>
  1602. <close/>
  1603. <move x="48.69" y="72.23"/>
  1604. <line x="55" y="68.96"/>
  1605. <curve x1="55" x2="56.42" x3="58.68" y1="68.96" y2="68.68" y3="70.09"/>
  1606. <curve x1="60.95" x2="72.85" x3="72.85" y1="71.5" y2="80.79" y3="80.79"/>
  1607. <curve x1="72.85" x2="74.83" x3="74.27" y1="80.79" y2="82.48" y3="84.45"/>
  1608. <curve x1="73.7" x2="72.29" x3="72.29" y1="86.42" y2="90.64" y3="90.64"/>
  1609. <line x="48.69" y="72.23"/>
  1610. <close/>
  1611. </path>
  1612. <fillstroke/>
  1613. </foreground>
  1614. </shape>
  1615. <shape aspect="variable" h="100" name="Pie Chart" strokewidth="inherit" w="100">
  1616. <connections/>
  1617. <foreground>
  1618. <ellipse h="100" w="100" x="0" y="0"/>
  1619. <fillstroke/>
  1620. <path>
  1621. <move x="50" y="0"/>
  1622. <line x="50" y="50"/>
  1623. <line x="70" y="96"/>
  1624. <move x="50" y="50"/>
  1625. <line x="97" y="33"/>
  1626. </path>
  1627. <stroke/>
  1628. </foreground>
  1629. </shape>
  1630. <shape aspect="variable" h="80" name="Play" strokewidth="inherit" w="70">
  1631. <connections/>
  1632. <foreground>
  1633. <path>
  1634. <move x="0" y="0"/>
  1635. <line x="70" y="40"/>
  1636. <line x="0" y="80"/>
  1637. <close/>
  1638. </path>
  1639. <fillstroke/>
  1640. </foreground>
  1641. </shape>
  1642. <shape aspect="variable" h="100" name="Pointer" strokewidth="inherit" w="100">
  1643. <connections/>
  1644. <foreground>
  1645. <path>
  1646. <move x="100" y="0"/>
  1647. <line x="45" y="100"/>
  1648. <line x="30" y="70"/>
  1649. <line x="0" y="55"/>
  1650. <close/>
  1651. </path>
  1652. <fillstroke/>
  1653. <path>
  1654. <move x="100" y="0"/>
  1655. <line x="30" y="70"/>
  1656. </path>
  1657. <fillstroke/>
  1658. </foreground>
  1659. </shape>
  1660. <shape aspect="variable" h="80" name="Preferences" strokewidth="inherit" w="100">
  1661. <connections/>
  1662. <foreground>
  1663. <path>
  1664. <move x="0" y="0"/>
  1665. <line x="15" y="0"/>
  1666. <line x="15" y="15"/>
  1667. <line x="0" y="15"/>
  1668. <close/>
  1669. <move x="0" y="32.5"/>
  1670. <line x="15" y="32.5"/>
  1671. <line x="15" y="47.5"/>
  1672. <line x="0" y="47.5"/>
  1673. <close/>
  1674. <move x="0" y="65"/>
  1675. <line x="15" y="65"/>
  1676. <line x="15" y="80"/>
  1677. <line x="0" y="80"/>
  1678. <close/>
  1679. <move x="30" y="0"/>
  1680. <line x="100" y="0"/>
  1681. <line x="100" y="15"/>
  1682. <line x="30" y="15"/>
  1683. <close/>
  1684. <move x="30" y="32.5"/>
  1685. <line x="100" y="32.5"/>
  1686. <line x="100" y="47.5"/>
  1687. <line x="30" y="47.5"/>
  1688. <close/>
  1689. <move x="30" y="65"/>
  1690. <line x="100" y="65"/>
  1691. <line x="100" y="80"/>
  1692. <line x="30" y="80"/>
  1693. <close/>
  1694. </path>
  1695. <fillstroke/>
  1696. </foreground>
  1697. </shape>
  1698. <shape aspect="variable" h="85" name="Printer" strokewidth="inherit" w="100">
  1699. <connections/>
  1700. <foreground>
  1701. <path>
  1702. <move x="0" y="65"/>
  1703. <line x="0" y="10"/>
  1704. <line x="25" y="10"/>
  1705. <line x="25" y="0"/>
  1706. <line x="75" y="0"/>
  1707. <line x="75" y="10"/>
  1708. <line x="100" y="10"/>
  1709. <line x="100" y="65"/>
  1710. <line x="75" y="65"/>
  1711. <line x="75" y="85"/>
  1712. <line x="25" y="85"/>
  1713. <line x="25" y="65"/>
  1714. <close/>
  1715. </path>
  1716. <fillstroke/>
  1717. <path>
  1718. <move x="25" y="65"/>
  1719. <line x="25" y="45"/>
  1720. <line x="75" y="45"/>
  1721. <line x="75" y="65"/>
  1722. <move x="25" y="10"/>
  1723. <line x="75" y="10"/>
  1724. </path>
  1725. <stroke/>
  1726. <ellipse h="6" w="6" x="12" y="27"/>
  1727. <stroke/>
  1728. <ellipse h="6" w="6" x="27" y="27"/>
  1729. <stroke/>
  1730. </foreground>
  1731. </shape>
  1732. <shape aspect="variable" h="94.56" name="Privacy" strokewidth="inherit" w="56">
  1733. <connections/>
  1734. <foreground>
  1735. <path>
  1736. <move x="46" y="90"/>
  1737. <arc large-arc-flag="0" rx="28" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="79"/>
  1738. <line x="0" y="4"/>
  1739. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="8" x-axis-rotation="0" y="4"/>
  1740. <line x="8" y="49"/>
  1741. <line x="12" y="49"/>
  1742. <line x="12" y="4"/>
  1743. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="4"/>
  1744. <line x="20" y="49"/>
  1745. <line x="24" y="49"/>
  1746. <line x="24" y="4"/>
  1747. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="32" x-axis-rotation="0" y="4"/>
  1748. <line x="32" y="49"/>
  1749. <line x="36" y="49"/>
  1750. <line x="36" y="4"/>
  1751. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="44" x-axis-rotation="0" y="4"/>
  1752. <line x="44" y="57"/>
  1753. <line x="44" y="64"/>
  1754. <line x="48" y="64"/>
  1755. <line x="48" y="47"/>
  1756. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="56" x-axis-rotation="0" y="47"/>
  1757. <line x="56" y="74"/>
  1758. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="46" x-axis-rotation="0" y="90"/>
  1759. <close/>
  1760. </path>
  1761. <fillstroke/>
  1762. </foreground>
  1763. </shape>
  1764. <shape aspect="variable" h="75" name="Radio" strokewidth="inherit" w="100">
  1765. <connections/>
  1766. <foreground>
  1767. <rect h="60" w="100" x="0" y="15"/>
  1768. <fillstroke/>
  1769. <ellipse h="6" w="6" x="87" y="22"/>
  1770. <stroke/>
  1771. <ellipse h="6" w="6" x="87" y="32"/>
  1772. <stroke/>
  1773. <path>
  1774. <move x="10" y="0"/>
  1775. <line x="100" y="15"/>
  1776. </path>
  1777. <stroke/>
  1778. <ellipse h="4" w="4" x="28" y="43"/>
  1779. <stroke/>
  1780. <ellipse h="4" w="4" x="28" y="18"/>
  1781. <stroke/>
  1782. <ellipse h="4" w="4" x="53" y="43"/>
  1783. <stroke/>
  1784. <ellipse h="4" w="4" x="28" y="68"/>
  1785. <stroke/>
  1786. <ellipse h="4" w="4" x="3" y="43"/>
  1787. <stroke/>
  1788. <ellipse h="4" w="4" x="28" y="30.5"/>
  1789. <stroke/>
  1790. <ellipse h="4" w="4" x="36.8" y="34.2"/>
  1791. <stroke/>
  1792. <ellipse h="4" w="4" x="36.8" y="51.8"/>
  1793. <stroke/>
  1794. <ellipse h="4" w="4" x="40.5" y="43"/>
  1795. <stroke/>
  1796. <ellipse h="4" w="4" x="28" y="55.5"/>
  1797. <stroke/>
  1798. <ellipse h="4" w="4" x="19.2" y="51.8"/>
  1799. <stroke/>
  1800. <ellipse h="4" w="4" x="19.2" y="34.2"/>
  1801. <stroke/>
  1802. <ellipse h="4" w="4" x="6" y="31.3"/>
  1803. <stroke/>
  1804. <ellipse h="4" w="4" x="16.3" y="21"/>
  1805. <stroke/>
  1806. <ellipse h="4" w="4" x="39.8" y="21"/>
  1807. <stroke/>
  1808. <ellipse h="4" w="4" x="50" y="31.3"/>
  1809. <stroke/>
  1810. <ellipse h="4" w="4" x="50" y="54.8"/>
  1811. <stroke/>
  1812. <ellipse h="4" w="4" x="39.8" y="65"/>
  1813. <stroke/>
  1814. <ellipse h="4" w="4" x="16.3" y="65"/>
  1815. <stroke/>
  1816. <ellipse h="4" w="4" x="6" y="54.8"/>
  1817. <stroke/>
  1818. <ellipse h="4" w="4" x="15.5" y="43"/>
  1819. <stroke/>
  1820. </foreground>
  1821. </shape>
  1822. <shape aspect="variable" h="90" name="Reload" strokewidth="inherit" w="80">
  1823. <connections/>
  1824. <foreground>
  1825. <path>
  1826. <move x="80" y="50"/>
  1827. <arc large-arc-flag="1" rx="40" ry="40" sweep-flag="1" x="40" x-axis-rotation="0" y="10"/>
  1828. </path>
  1829. <stroke/>
  1830. <path>
  1831. <move x="40" y="0"/>
  1832. <line x="55" y="10"/>
  1833. <line x="40" y="20"/>
  1834. <close/>
  1835. </path>
  1836. <fillstroke/>
  1837. </foreground>
  1838. </shape>
  1839. <shape aspect="variable" h="80" name="Repeat" strokewidth="inherit" w="100">
  1840. <connections/>
  1841. <foreground>
  1842. <path>
  1843. <move x="0" y="40"/>
  1844. <line x="0" y="20"/>
  1845. <line x="100" y="20"/>
  1846. <move x="100" y="40"/>
  1847. <line x="100" y="60"/>
  1848. <line x="0" y="60"/>
  1849. <move x="20" y="40"/>
  1850. <line x="0" y="60"/>
  1851. <line x="20" y="80"/>
  1852. <move x="80" y="0"/>
  1853. <line x="100" y="20"/>
  1854. <line x="80" y="40"/>
  1855. </path>
  1856. <stroke/>
  1857. </foreground>
  1858. </shape>
  1859. <shape aspect="variable" h="48.51" name="Retry" strokewidth="inherit" w="92.1">
  1860. <connections/>
  1861. <foreground>
  1862. <path>
  1863. <move x="80.28" y="48.51"/>
  1864. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
  1865. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
  1866. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
  1867. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
  1868. <close/>
  1869. </path>
  1870. <fillstroke/>
  1871. <path>
  1872. <move x="57.28" y="33.51"/>
  1873. <arc large-arc-flag="1" rx="13" ry="13" sweep-flag="1" x="47.28" x-axis-rotation="0" y="18.51"/>
  1874. <move x="44.28" y="17.01"/>
  1875. <line x="47.28" y="18.51"/>
  1876. <line x="44.28" y="19.51"/>
  1877. </path>
  1878. <stroke/>
  1879. </foreground>
  1880. </shape>
  1881. <shape aspect="variable" h="100" name="Select" strokewidth="inherit" w="100">
  1882. <connections/>
  1883. <foreground>
  1884. <ellipse h="100" w="100" x="0" y="0"/>
  1885. <fillstroke/>
  1886. <path>
  1887. <move x="20" y="55"/>
  1888. <line x="30" y="70"/>
  1889. <line x="85" y="25"/>
  1890. </path>
  1891. <stroke/>
  1892. </foreground>
  1893. </shape>
  1894. <shape aspect="variable" h="100" name="Settings" strokewidth="inherit" w="100">
  1895. <connections/>
  1896. <foreground>
  1897. <path>
  1898. <move x="44" y="0"/>
  1899. <line x="56" y="0"/>
  1900. <line x="56" y="9.5"/>
  1901. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="74.5" x-axis-rotation="0" y="17"/>
  1902. <line x="81" y="10.5"/>
  1903. <line x="89.5" y="18.9"/>
  1904. <line x="82.9" y="25.4"/>
  1905. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="90.5" x-axis-rotation="0" y="44"/>
  1906. <line x="100" y="44"/>
  1907. <line x="100" y="56"/>
  1908. <line x="90.5" y="56"/>
  1909. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="82.9" x-axis-rotation="0" y="74.4"/>
  1910. <line x="89.5" y="81"/>
  1911. <line x="81" y="89.5"/>
  1912. <line x="74.5" y="83"/>
  1913. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="56" x-axis-rotation="0" y="90.5"/>
  1914. <line x="56" y="100"/>
  1915. <line x="44" y="100"/>
  1916. <line x="44" y="90.5"/>
  1917. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="25.5" x-axis-rotation="0" y="83"/>
  1918. <line x="19" y="89.5"/>
  1919. <line x="10.5" y="81.2"/>
  1920. <line x="17" y="74.4"/>
  1921. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="9.5" x-axis-rotation="0" y="56"/>
  1922. <line x="0" y="56"/>
  1923. <line x="0" y="44"/>
  1924. <line x="9.5" y="44"/>
  1925. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="17" x-axis-rotation="0" y="25.4"/>
  1926. <line x="10.5" y="18.9"/>
  1927. <line x="19" y="10.5"/>
  1928. <line x="25.5" y="17"/>
  1929. <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="44" x-axis-rotation="0" y="9.5"/>
  1930. <close/>
  1931. <move x="50" y="35"/>
  1932. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="65"/>
  1933. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="35"/>
  1934. <close/>
  1935. </path>
  1936. <fillstroke/>
  1937. </foreground>
  1938. </shape>
  1939. <shape aspect="variable" h="95" name="Share" strokewidth="inherit" w="70">
  1940. <connections/>
  1941. <foreground>
  1942. <path>
  1943. <move x="45" y="25"/>
  1944. <line x="70" y="25"/>
  1945. <line x="70" y="95"/>
  1946. <line x="0" y="95"/>
  1947. <line x="0" y="25"/>
  1948. <line x="25" y="25"/>
  1949. </path>
  1950. <fillstroke/>
  1951. <path>
  1952. <move x="15" y="20"/>
  1953. <line x="35" y="0"/>
  1954. <line x="55" y="20"/>
  1955. <move x="35" y="60"/>
  1956. <line x="35" y="0"/>
  1957. </path>
  1958. <stroke/>
  1959. </foreground>
  1960. </shape>
  1961. <shape aspect="variable" h="85" name="Shopping Cart" strokewidth="inherit" w="100">
  1962. <connections/>
  1963. <foreground>
  1964. <path>
  1965. <move x="14.2" y="20"/>
  1966. <line x="100" y="20"/>
  1967. <line x="75" y="65"/>
  1968. <line x="23" y="65"/>
  1969. <close/>
  1970. </path>
  1971. <fillstroke/>
  1972. <ellipse h="10" w="10" x="20" y="75"/>
  1973. <fillstroke/>
  1974. <ellipse h="10" w="10" x="65" y="75"/>
  1975. <fillstroke/>
  1976. <path>
  1977. <move x="0" y="0"/>
  1978. <line x="10.5" y="0"/>
  1979. <line x="25" y="75"/>
  1980. <line x="70" y="75"/>
  1981. </path>
  1982. <stroke/>
  1983. </foreground>
  1984. </shape>
  1985. <shape aspect="variable" h="70" name="Shuffle" strokewidth="inherit" w="100">
  1986. <connections/>
  1987. <foreground>
  1988. <fillcolor color="none"/>
  1989. <path>
  1990. <move x="85" y="0"/>
  1991. <line x="100" y="15"/>
  1992. <line x="85" y="30"/>
  1993. <move x="85" y="40"/>
  1994. <line x="100" y="55"/>
  1995. <line x="85" y="70"/>
  1996. <move x="0" y="15"/>
  1997. <line x="25" y="15"/>
  1998. <line x="75" y="55"/>
  1999. <line x="100" y="55"/>
  2000. <move x="0" y="55"/>
  2001. <line x="25" y="55"/>
  2002. <line x="48.5" y="36.2"/>
  2003. <move x="51.5" y="33.8"/>
  2004. <line x="75" y="15"/>
  2005. <line x="100" y="15"/>
  2006. </path>
  2007. <stroke/>
  2008. </foreground>
  2009. </shape>
  2010. <shape aspect="variable" h="100" name="Silent" strokewidth="inherit" w="100">
  2011. <connections/>
  2012. <foreground>
  2013. <ellipse h="100" w="100" x="0" y="0"/>
  2014. <fillstroke/>
  2015. <path>
  2016. <move x="37.5" y="40"/>
  2017. <line x="54" y="40"/>
  2018. <line x="62" y="30"/>
  2019. <line x="62" y="70"/>
  2020. <line x="54" y="60"/>
  2021. <line x="37.5" y="60"/>
  2022. <close/>
  2023. </path>
  2024. <stroke/>
  2025. </foreground>
  2026. </shape>
  2027. <shape aspect="variable" h="100" name="Smartphone" strokewidth="inherit" w="60">
  2028. <connections/>
  2029. <foreground>
  2030. <rect h="100" w="60" x="0" y="0"/>
  2031. <fillstroke/>
  2032. <path>
  2033. <move x="0" y="8"/>
  2034. <line x="60" y="8"/>
  2035. <move x="0" y="85"/>
  2036. <line x="60" y="85"/>
  2037. <move x="27" y="92.5"/>
  2038. <line x="33" y="92.5"/>
  2039. </path>
  2040. <stroke/>
  2041. </foreground>
  2042. </shape>
  2043. <shape aspect="variable" h="90" name="Star" strokewidth="inherit" w="100">
  2044. <connections/>
  2045. <foreground>
  2046. <path>
  2047. <move x="50" y="0"/>
  2048. <line x="63.7" y="35"/>
  2049. <line x="100" y="35"/>
  2050. <line x="71.1" y="53.9"/>
  2051. <line x="85" y="90"/>
  2052. <line x="50" y="67.4"/>
  2053. <line x="15" y="90"/>
  2054. <line x="28.9" y="53.9"/>
  2055. <line x="0" y="35"/>
  2056. <line x="36.4" y="35"/>
  2057. <close/>
  2058. </path>
  2059. <fillstroke/>
  2060. </foreground>
  2061. </shape>
  2062. <shape aspect="variable" h="94" name="Stopwatch" strokewidth="inherit" w="90">
  2063. <connections/>
  2064. <foreground>
  2065. <ellipse h="90" w="90" x="0" y="4"/>
  2066. <fillstroke/>
  2067. <path>
  2068. <move x="45" y="14"/>
  2069. <line x="45" y="49"/>
  2070. <move x="45" y="0"/>
  2071. <line x="45" y="4"/>
  2072. <move x="77" y="12"/>
  2073. <line x="74" y="15"/>
  2074. <move x="75" y="10"/>
  2075. <line x="79" y="14"/>
  2076. </path>
  2077. <fillstroke/>
  2078. <ellipse h="2" w="2" x="44" y="40"/>
  2079. <fillstroke/>
  2080. </foreground>
  2081. </shape>
  2082. <shape aspect="variable" h="35" name="Storage" strokewidth="inherit" w="100">
  2083. <connections/>
  2084. <foreground>
  2085. <path>
  2086. <move x="15" y="0"/>
  2087. <line x="85" y="0"/>
  2088. <line x="100" y="15"/>
  2089. <line x="100" y="35"/>
  2090. <line x="0" y="35"/>
  2091. <line x="0" y="15"/>
  2092. <close/>
  2093. </path>
  2094. <fillstroke/>
  2095. <path>
  2096. <move x="0" y="15"/>
  2097. <line x="40" y="15"/>
  2098. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="60" x-axis-rotation="0" y="15"/>
  2099. <line x="100" y="15"/>
  2100. </path>
  2101. <stroke/>
  2102. </foreground>
  2103. </shape>
  2104. <shape aspect="variable" h="100" name="Sun" strokewidth="inherit" w="100">
  2105. <connections/>
  2106. <foreground>
  2107. <ellipse h="40" w="40" x="30" y="30"/>
  2108. <fillstroke/>
  2109. <path>
  2110. <move x="50" y="0"/>
  2111. <line x="50" y="25"/>
  2112. <move x="50" y="75"/>
  2113. <line x="50" y="100"/>
  2114. <move x="75" y="50"/>
  2115. <line x="100" y="50"/>
  2116. <move x="25" y="50"/>
  2117. <line x="0" y="50"/>
  2118. <move x="14.5" y="14.5"/>
  2119. <line x="32.5" y="32.5"/>
  2120. <move x="32.5" y="67.5"/>
  2121. <line x="14.5" y="85.5"/>
  2122. <move x="85.5" y="14.5"/>
  2123. <line x="67.5" y="32.5"/>
  2124. <move x="67.5" y="67.5"/>
  2125. <line x="85.5" y="85.5"/>
  2126. </path>
  2127. <stroke/>
  2128. </foreground>
  2129. </shape>
  2130. <shape aspect="variable" h="40" name="Tape" strokewidth="inherit" w="100">
  2131. <connections/>
  2132. <foreground>
  2133. <path>
  2134. <move x="20" y="40"/>
  2135. <line x="80" y="40"/>
  2136. </path>
  2137. <fillstroke/>
  2138. <ellipse h="40" w="40" x="0" y="0"/>
  2139. <fillstroke/>
  2140. <ellipse h="40" w="40" x="60" y="0"/>
  2141. <fillstroke/>
  2142. </foreground>
  2143. </shape>
  2144. <shape aspect="variable" h="98.75" name="Tools" strokewidth="inherit" w="98.75">
  2145. <connections/>
  2146. <foreground>
  2147. <path>
  2148. <move x="82" y="70"/>
  2149. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="85" x-axis-rotation="0" y="78"/>
  2150. <line x="95" y="88"/>
  2151. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="88" x-axis-rotation="0" y="95"/>
  2152. <line x="77" y="84"/>
  2153. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="82"/>
  2154. <close/>
  2155. <move x="10" y="85"/>
  2156. <line x="3" y="92"/>
  2157. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="19" x-axis-rotation="0" y="75"/>
  2158. <line x="75" y="19"/>
  2159. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="92" x-axis-rotation="0" y="3"/>
  2160. <line x="85" y="10"/>
  2161. <line x="90" y="15"/>
  2162. <line x="97" y="8"/>
  2163. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="81" x-axis-rotation="0" y="25"/>
  2164. <line x="25" y="81"/>
  2165. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="8" x-axis-rotation="0" y="97"/>
  2166. <line x="15" y="90"/>
  2167. <close/>
  2168. <move x="5" y="0"/>
  2169. <line x="15" y="10"/>
  2170. <line x="15" y="15"/>
  2171. <line x="10" y="15"/>
  2172. <line x="0" y="5"/>
  2173. <close/>
  2174. </path>
  2175. <fillstroke/>
  2176. <path>
  2177. <move x="15" y="15"/>
  2178. <line x="76" y="76"/>
  2179. </path>
  2180. <stroke/>
  2181. </foreground>
  2182. </shape>
  2183. <shape aspect="variable" h="100" name="Trashcan" strokewidth="inherit" w="80">
  2184. <connections/>
  2185. <foreground>
  2186. <path>
  2187. <move x="0" y="5"/>
  2188. <line x="80" y="5"/>
  2189. <line x="75" y="5"/>
  2190. <line x="70" y="95"/>
  2191. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="100"/>
  2192. <line x="15" y="100"/>
  2193. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="10" x-axis-rotation="0" y="95"/>
  2194. <line x="5" y="5"/>
  2195. <line x="0" y="5"/>
  2196. <close/>
  2197. </path>
  2198. <fillstroke/>
  2199. <path>
  2200. <move x="30" y="5"/>
  2201. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="0"/>
  2202. <line x="45" y="0"/>
  2203. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
  2204. <move x="40" y="10"/>
  2205. <line x="40" y="95"/>
  2206. <move x="57.5" y="10"/>
  2207. <line x="55" y="95"/>
  2208. <move x="22.5" y="10"/>
  2209. <line x="25" y="95"/>
  2210. </path>
  2211. <stroke/>
  2212. </foreground>
  2213. </shape>
  2214. <shape aspect="variable" h="100" name="Trophy" strokewidth="inherit" w="94.69">
  2215. <connections/>
  2216. <foreground>
  2217. <path>
  2218. <move x="82.34" y="0"/>
  2219. <line x="82.34" y="30"/>
  2220. <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="12.34" x-axis-rotation="0" y="30"/>
  2221. <line x="12.34" y="0"/>
  2222. <close/>
  2223. </path>
  2224. <fillstroke/>
  2225. <path>
  2226. <move x="82.34" y="0"/>
  2227. <line x="88.84" y="0"/>
  2228. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="92.84" x-axis-rotation="0" y="10.5"/>
  2229. <line x="82.34" y="25"/>
  2230. <move x="12.34" y="0"/>
  2231. <line x="5.84" y="0"/>
  2232. <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="0" x="1.84" x-axis-rotation="0" y="10.5"/>
  2233. <line x="12.34" y="25"/>
  2234. <move x="47.34" y="65"/>
  2235. <line x="47.34" y="100"/>
  2236. <move x="27.34" y="100"/>
  2237. <line x="67.34" y="100"/>
  2238. </path>
  2239. <stroke/>
  2240. </foreground>
  2241. </shape>
  2242. <shape aspect="variable" h="70" name="Typing" strokewidth="inherit" w="100">
  2243. <connections/>
  2244. <foreground>
  2245. <path>
  2246. <move x="90" y="0"/>
  2247. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  2248. <line x="100" y="45"/>
  2249. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="55"/>
  2250. <line x="70" y="55"/>
  2251. <line x="70" y="70"/>
  2252. <line x="60" y="55"/>
  2253. <line x="10" y="55"/>
  2254. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
  2255. <line x="0" y="10"/>
  2256. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2257. <close/>
  2258. </path>
  2259. <fillstroke/>
  2260. <fillcolor color="#0080F0"/>
  2261. <ellipse h="10" w="10" x="20" y="22.5"/>
  2262. <fill/>
  2263. <ellipse h="10" w="10" x="45" y="22.5"/>
  2264. <fill/>
  2265. <ellipse h="10" w="10" x="70" y="22.5"/>
  2266. <fill/>
  2267. </foreground>
  2268. </shape>
  2269. <shape aspect="variable" h="100" name="Umbrella" strokewidth="inherit" w="100">
  2270. <connections/>
  2271. <foreground>
  2272. <path>
  2273. <move x="0" y="55"/>
  2274. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="55"/>
  2275. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="75" x-axis-rotation="0" y="55"/>
  2276. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="55"/>
  2277. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="25" x-axis-rotation="0" y="55"/>
  2278. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="0" x-axis-rotation="0" y="55"/>
  2279. <close/>
  2280. </path>
  2281. <fillstroke/>
  2282. <path>
  2283. <move x="50" y="55"/>
  2284. <line x="50" y="90"/>
  2285. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="90"/>
  2286. <move x="50" y="0"/>
  2287. <line x="50" y="5"/>
  2288. </path>
  2289. <stroke/>
  2290. </foreground>
  2291. </shape>
  2292. <shape aspect="variable" h="100" name="Unlocked" strokewidth="inherit" w="80">
  2293. <connections/>
  2294. <foreground>
  2295. <rect h="50" w="80" x="0" y="50"/>
  2296. <fillstroke/>
  2297. <path>
  2298. <move x="10" y="50"/>
  2299. <line x="10" y="30"/>
  2300. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
  2301. <line x="70" y="35"/>
  2302. </path>
  2303. <stroke/>
  2304. </foreground>
  2305. </shape>
  2306. <shape aspect="variable" h="85" name="Up" strokewidth="inherit" w="70">
  2307. <connections/>
  2308. <foreground>
  2309. <path>
  2310. <move x="45" y="70"/>
  2311. <line x="70" y="70"/>
  2312. <line x="70" y="0"/>
  2313. <line x="0" y="0"/>
  2314. <line x="0" y="70"/>
  2315. <line x="25" y="70"/>
  2316. </path>
  2317. <fillstroke/>
  2318. <path>
  2319. <move x="15" y="45"/>
  2320. <line x="35" y="25"/>
  2321. <line x="55" y="45"/>
  2322. <move x="35" y="85"/>
  2323. <line x="35" y="25"/>
  2324. </path>
  2325. <stroke/>
  2326. </foreground>
  2327. </shape>
  2328. <shape aspect="variable" h="100" name="User" strokewidth="inherit" w="100">
  2329. <connections/>
  2330. <foreground>
  2331. <ellipse h="100" w="100" x="0" y="0"/>
  2332. <fillstroke/>
  2333. <path>
  2334. <move x="10" y="80"/>
  2335. <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="38" x-axis-rotation="0" y="68"/>
  2336. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="41.5" x-axis-rotation="0" y="65"/>
  2337. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35" x-axis-rotation="0" y="48"/>
  2338. <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="37"/>
  2339. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="50" x-axis-rotation="0" y="19"/>
  2340. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="65" x-axis-rotation="0" y="37"/>
  2341. <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="48"/>
  2342. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="58.5" x-axis-rotation="0" y="65"/>
  2343. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="62" x-axis-rotation="0" y="68"/>
  2344. <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="90" x-axis-rotation="0" y="80"/>
  2345. </path>
  2346. <stroke/>
  2347. </foreground>
  2348. </shape>
  2349. <shape aspect="variable" h="50" name="Video Conversation" strokewidth="inherit" w="100.26">
  2350. <connections/>
  2351. <foreground>
  2352. <path>
  2353. <move x="0" y="5"/>
  2354. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  2355. <line x="65" y="0"/>
  2356. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="70" x-axis-rotation="0" y="5"/>
  2357. <line x="70" y="20"/>
  2358. <line x="96" y="6.5"/>
  2359. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  2360. <line x="100" y="40"/>
  2361. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96" x-axis-rotation="0" y="43.5"/>
  2362. <line x="70" y="30"/>
  2363. <line x="70" y="45"/>
  2364. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="50"/>
  2365. <line x="5" y="50"/>
  2366. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
  2367. <close/>
  2368. <move x="70" y="15"/>
  2369. <line x="70" y="35"/>
  2370. </path>
  2371. <fillstroke/>
  2372. </foreground>
  2373. </shape>
  2374. <shape aspect="variable" h="100" name="Volume" strokewidth="inherit" w="100">
  2375. <connections/>
  2376. <foreground>
  2377. <path>
  2378. <move x="7" y="0"/>
  2379. <line x="7" y="100"/>
  2380. <move x="93" y="0"/>
  2381. <line x="93" y="100"/>
  2382. <move x="50" y="0"/>
  2383. <line x="50" y="100"/>
  2384. </path>
  2385. <fillstroke/>
  2386. <ellipse h="14" w="14" x="0" y="86"/>
  2387. <fillstroke/>
  2388. <ellipse h="14" w="14" x="86" y="0"/>
  2389. <fillstroke/>
  2390. <ellipse h="14" w="14" x="43" y="43"/>
  2391. <fillstroke/>
  2392. </foreground>
  2393. </shape>
  2394. <shape aspect="variable" h="94.4" name="Volume 2" strokewidth="inherit" w="101.21">
  2395. <connections/>
  2396. <foreground>
  2397. <path>
  2398. <move x="40" y="17.2"/>
  2399. <line x="40" y="77.2"/>
  2400. <line x="20" y="62.2"/>
  2401. <line x="0" y="62.2"/>
  2402. <line x="0" y="32.2"/>
  2403. <line x="20" y="32.2"/>
  2404. <close/>
  2405. </path>
  2406. <fillstroke/>
  2407. <path>
  2408. <move x="76.8" y="0"/>
  2409. <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="76.8" x-axis-rotation="0" y="94.4"/>
  2410. <move x="61.8" y="13.2"/>
  2411. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="61.8" x-axis-rotation="0" y="81.2"/>
  2412. <move x="47.2" y="27"/>
  2413. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="47.2" x-axis-rotation="0" y="67.4"/>
  2414. </path>
  2415. <stroke/>
  2416. </foreground>
  2417. </shape>
  2418. <shape aspect="variable" h="80" name="Wallet" strokewidth="inherit" w="100">
  2419. <connections/>
  2420. <foreground>
  2421. <path>
  2422. <move x="0" y="80"/>
  2423. <line x="0" y="5"/>
  2424. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  2425. <line x="60" y="0"/>
  2426. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="5"/>
  2427. <line x="65" y="10"/>
  2428. <line x="100" y="10"/>
  2429. <line x="100" y="80"/>
  2430. <close/>
  2431. <move x="0" y="10"/>
  2432. <line x="65" y="10"/>
  2433. </path>
  2434. <fillstroke/>
  2435. <ellipse h="10" w="10" x="80" y="40"/>
  2436. <stroke/>
  2437. </foreground>
  2438. </shape>
  2439. <shape aspect="variable" h="70.01" name="WiFi" strokewidth="inherit" w="99">
  2440. <connections/>
  2441. <foreground>
  2442. <path>
  2443. <move x="49.5" y="70.01"/>
  2444. <line x="42.5" y="63.01"/>
  2445. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="56.5" x-axis-rotation="0" y="63.01"/>
  2446. <close/>
  2447. <move x="63.7" y="56.01"/>
  2448. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35.3" x-axis-rotation="0" y="56.01"/>
  2449. <line x="28.3" y="48.81"/>
  2450. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="70.7" x-axis-rotation="0" y="48.81"/>
  2451. <close/>
  2452. <move x="77.9" y="41.81"/>
  2453. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="21.1" x-axis-rotation="0" y="41.81"/>
  2454. <line x="14.3" y="34.51"/>
  2455. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="84.7" x-axis-rotation="0" y="34.51"/>
  2456. <close/>
  2457. <move x="91.9" y="27.51"/>
  2458. <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="7.1" x-axis-rotation="0" y="27.51"/>
  2459. <line x="0" y="20.51"/>
  2460. <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="99" x-axis-rotation="0" y="20.51"/>
  2461. <close/>
  2462. </path>
  2463. <fillstroke/>
  2464. </foreground>
  2465. </shape>
  2466. <shape aspect="variable" h="100" name="Window" strokewidth="inherit" w="100">
  2467. <connections/>
  2468. <foreground>
  2469. <rect h="100" w="100" x="0" y="0"/>
  2470. <fillstroke/>
  2471. <path>
  2472. <move x="0" y="12"/>
  2473. <line x="100" y="12"/>
  2474. <move x="4" y="6"/>
  2475. <line x="6" y="6"/>
  2476. <move x="9" y="6"/>
  2477. <line x="11" y="6"/>
  2478. <move x="14" y="6"/>
  2479. <line x="96" y="6"/>
  2480. </path>
  2481. <stroke/>
  2482. </foreground>
  2483. </shape>
  2484. </shapes>