floorplan.xml 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  1. <shapes name="mxgraph.floorplan">
  2. <shape aspect="variable" h="60" name="Bathtub" strokewidth="inherit" w="180">
  3. <connections/>
  4. <background>
  5. <rect h="60" w="180" x="0" y="0"/>
  6. </background>
  7. <foreground>
  8. <fillstroke/>
  9. <path>
  10. <move x="10" y="15"/>
  11. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="20" x-axis-rotation="0" y="5"/>
  12. <line x="125" y="5"/>
  13. <arc large-arc-flag="0" rx="30" ry="20" sweep-flag="1" x="155" x-axis-rotation="0" y="25"/>
  14. <line x="155" y="35"/>
  15. <arc large-arc-flag="0" rx="30" ry="20" sweep-flag="1" x="125" x-axis-rotation="0" y="55"/>
  16. <line x="20" y="55"/>
  17. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="45"/>
  18. <close/>
  19. </path>
  20. <stroke/>
  21. <path>
  22. <move x="0" y="16"/>
  23. <line x="2" y="16"/>
  24. <arc large-arc-flag="0" rx="3" ry="15" sweep-flag="1" x="5" x-axis-rotation="0" y="30"/>
  25. <arc large-arc-flag="0" rx="3" ry="15" sweep-flag="1" x="2" x-axis-rotation="0" y="44"/>
  26. <line x="0" y="44"/>
  27. </path>
  28. <stroke/>
  29. <roundrect arcsize="50" h="4" w="18" x="1.5" y="28"/>
  30. <fillstroke/>
  31. <strokecolor color="none"/>
  32. <fillcolor color="#000000"/>
  33. <ellipse h="8" w="8" x="21" y="26"/>
  34. <fill/>
  35. </foreground>
  36. </shape>
  37. <shape aspect="variable" h="180" name="Bed Double" strokewidth="inherit" w="200">
  38. <connections/>
  39. <background>
  40. <rect h="180" w="200" x="0" y="0"/>
  41. </background>
  42. <foreground>
  43. <fillstroke/>
  44. <roundrect arcsize="12.5" h="40" w="80" x="10" y="5"/>
  45. <stroke/>
  46. <roundrect arcsize="12.5" h="40" w="80" x="110" y="5"/>
  47. <stroke/>
  48. <rect h="25" w="200" x="0" y="30"/>
  49. <fillstroke/>
  50. </foreground>
  51. </shape>
  52. <shape aspect="variable" h="180" name="Bed Single" strokewidth="inherit" w="100">
  53. <connections/>
  54. <background>
  55. <rect h="180" w="100" x="0" y="0"/>
  56. </background>
  57. <foreground>
  58. <fillstroke/>
  59. <roundrect arcsize="12.5" h="40" w="80" x="10" y="5"/>
  60. <stroke/>
  61. <rect h="25" w="100" x="0" y="30"/>
  62. <fillstroke/>
  63. </foreground>
  64. </shape>
  65. <shape aspect="variable" h="30" name="Bookcase" strokewidth="inherit" w="120">
  66. <connections/>
  67. <background>
  68. <rect h="30" w="120" x="0" y="0"/>
  69. </background>
  70. <foreground>
  71. <fillstroke/>
  72. <path>
  73. <move x="0" y="25"/>
  74. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="7" x-axis-rotation="0" y="25"/>
  75. <line x="7" y="8"/>
  76. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="8"/>
  77. <close/>
  78. <move x="8" y="25"/>
  79. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="15" x-axis-rotation="0" y="25"/>
  80. <line x="15" y="8"/>
  81. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="8" x-axis-rotation="0" y="8"/>
  82. <close/>
  83. <move x="16" y="25"/>
  84. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="23" x-axis-rotation="0" y="25"/>
  85. <line x="23" y="8"/>
  86. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="16" x-axis-rotation="0" y="8"/>
  87. <close/>
  88. <move x="24" y="25"/>
  89. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="31" x-axis-rotation="0" y="25"/>
  90. <line x="31" y="8"/>
  91. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="24" x-axis-rotation="0" y="8"/>
  92. <close/>
  93. <move x="32" y="25"/>
  94. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="39" x-axis-rotation="0" y="25"/>
  95. <line x="39" y="8"/>
  96. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="32" x-axis-rotation="0" y="8"/>
  97. <close/>
  98. <move x="40" y="25"/>
  99. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="47" x-axis-rotation="0" y="25"/>
  100. <line x="47" y="8"/>
  101. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="40" x-axis-rotation="0" y="8"/>
  102. <close/>
  103. <move x="48" y="25"/>
  104. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="55" x-axis-rotation="0" y="25"/>
  105. <line x="55" y="8"/>
  106. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="48" x-axis-rotation="0" y="8"/>
  107. <close/>
  108. <move x="56" y="25"/>
  109. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="63" x-axis-rotation="0" y="25"/>
  110. <line x="63" y="8"/>
  111. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="56" x-axis-rotation="0" y="8"/>
  112. <close/>
  113. <move x="64" y="25"/>
  114. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="71" x-axis-rotation="0" y="25"/>
  115. <line x="71" y="8"/>
  116. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="64" x-axis-rotation="0" y="8"/>
  117. <close/>
  118. <move x="72" y="25"/>
  119. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="79" x-axis-rotation="0" y="25"/>
  120. <line x="79" y="8"/>
  121. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="72" x-axis-rotation="0" y="8"/>
  122. <close/>
  123. <move x="80" y="25"/>
  124. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="87" x-axis-rotation="0" y="25"/>
  125. <line x="87" y="8"/>
  126. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="80" x-axis-rotation="0" y="8"/>
  127. <close/>
  128. <move x="88" y="25"/>
  129. <arc large-arc-flag="0" rx="3.5" ry="2.5" sweep-flag="0" x="95" x-axis-rotation="0" y="25"/>
  130. <line x="95" y="8"/>
  131. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="88" x-axis-rotation="0" y="8"/>
  132. <close/>
  133. <move x="104.78" y="4.68"/>
  134. <line x="98.89" y="24.84"/>
  135. <line x="112.33" y="28.76"/>
  136. <line x="118.22" y="8.61"/>
  137. <line x="104.78" y="4.68"/>
  138. <close/>
  139. </path>
  140. <stroke/>
  141. </foreground>
  142. </shape>
  143. <shape aspect="variable" h="52.35" name="Chair" strokewidth="inherit" w="41.24">
  144. <connections/>
  145. <background>
  146. <linejoin join="round"/>
  147. <path>
  148. <move x="37.67" y="17.74"/>
  149. <line x="40.67" y="41.74"/>
  150. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="36.67" x-axis-rotation="0" y="50.74"/>
  151. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="5.67" x-axis-rotation="0" y="50.74"/>
  152. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="1.67" x-axis-rotation="0" y="41.74"/>
  153. <line x="4.67" y="17.74"/>
  154. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="11.67" x-axis-rotation="0" y="12.74"/>
  155. <line x="30.67" y="12.74"/>
  156. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="37.67" x-axis-rotation="0" y="17.74"/>
  157. <close/>
  158. <move x="10.85" y="12.74"/>
  159. <line x="5.71" y="6.4"/>
  160. <move x="16.56" y="12.74"/>
  161. <line x="14.85" y="5.5"/>
  162. <move x="23.41" y="12.74"/>
  163. <line x="25.69" y="5.5"/>
  164. <move x="29.12" y="12.74"/>
  165. <line x="34.83" y="6.4"/>
  166. <move x="36.54" y="6.74"/>
  167. <arc large-arc-flag="0" rx="91.36" ry="80" sweep-flag="0" x="4.57" x-axis-rotation="0" y="6.74"/>
  168. <line x="0" y="2.74"/>
  169. <arc large-arc-flag="0" rx="91.36" ry="80" sweep-flag="1" x="41.11" x-axis-rotation="0" y="2.74"/>
  170. <close/>
  171. </path>
  172. </background>
  173. <foreground>
  174. <fillstroke/>
  175. </foreground>
  176. </shape>
  177. <shape aspect="variable" h="60" name="Copier" strokewidth="inherit" w="110">
  178. <connections/>
  179. <background>
  180. <roundrect arcsize="5" h="60" w="80" x="5" y="0"/>
  181. </background>
  182. <foreground>
  183. <fillstroke/>
  184. <rect h="40" w="5" x="0" y="10"/>
  185. <fillstroke/>
  186. <path>
  187. <move x="85" y="8"/>
  188. <line x="110" y="8"/>
  189. <line x="110" y="20"/>
  190. <line x="106" y="25"/>
  191. <line x="106" y="35"/>
  192. <line x="110" y="40"/>
  193. <line x="110" y="52"/>
  194. <line x="85" y="52"/>
  195. <close/>
  196. </path>
  197. <fillstroke/>
  198. <path>
  199. <move x="110" y="20"/>
  200. <line x="85" y="20"/>
  201. <move x="110" y="40"/>
  202. <line x="85" y="40"/>
  203. <move x="110" y="50"/>
  204. <line x="85" y="50"/>
  205. <move x="110" y="10"/>
  206. <line x="85" y="10"/>
  207. </path>
  208. <stroke/>
  209. <rect h="44.4" w="69.4" x="11.6" y="5.2"/>
  210. <stroke/>
  211. <ellipse h="4" w="4" x="10" y="53"/>
  212. <stroke/>
  213. <ellipse h="4" w="4" x="16" y="53"/>
  214. <stroke/>
  215. <ellipse h="4" w="4" x="22" y="53"/>
  216. <stroke/>
  217. <ellipse h="4" w="4" x="28" y="53"/>
  218. <stroke/>
  219. <rect h="6" w="18" x="37" y="52"/>
  220. <stroke/>
  221. </foreground>
  222. </shape>
  223. <shape aspect="variable" h="80" name="Couch" strokewidth="inherit" w="150">
  224. <connections/>
  225. <background>
  226. <rect h="10" w="130" x="10" y="10"/>
  227. </background>
  228. <foreground>
  229. <fillstroke/>
  230. <roundrect arcsize="20" h="80" w="15" x="0" y="0"/>
  231. <fillstroke/>
  232. <roundrect arcsize="20" h="15" w="120" x="15" y="0"/>
  233. <fillstroke/>
  234. <roundrect arcsize="5" h="65" w="60" x="15" y="15"/>
  235. <fillstroke/>
  236. <roundrect arcsize="5" h="65" w="60" x="75" y="15"/>
  237. <fillstroke/>
  238. <roundrect arcsize="20" h="80" w="15" x="135" y="0"/>
  239. <fillstroke/>
  240. </foreground>
  241. </shape>
  242. <shape aspect="variable" h="40" name="CRT TV" strokewidth="inherit" w="60">
  243. <connections/>
  244. <background>
  245. <path>
  246. <move x="0" y="40"/>
  247. <line x="60" y="40"/>
  248. <line x="60" y="35"/>
  249. <line x="50.6" y="5"/>
  250. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="45" x-axis-rotation="0" y="0"/>
  251. <line x="15" y="0"/>
  252. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="8.8" x-axis-rotation="0" y="5"/>
  253. <line x="0" y="35"/>
  254. <close/>
  255. </path>
  256. </background>
  257. <foreground>
  258. <fillstroke/>
  259. <path>
  260. <move x="24" y="5.6"/>
  261. <line x="24" y="23"/>
  262. <move x="27" y="5.6"/>
  263. <line x="27" y="23"/>
  264. <move x="30" y="5.6"/>
  265. <line x="30" y="23"/>
  266. <move x="36" y="5.6"/>
  267. <line x="36" y="23"/>
  268. <move x="33" y="5.6"/>
  269. <line x="33" y="23"/>
  270. <move x="60" y="35"/>
  271. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="50" x-axis-rotation="0" y="25"/>
  272. <line x="10" y="25"/>
  273. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="0" x-axis-rotation="0" y="35"/>
  274. <close/>
  275. </path>
  276. <fillstroke/>
  277. </foreground>
  278. </shape>
  279. <shape aspect="variable" h="150" name="Desk Corner" strokewidth="inherit" w="150">
  280. <connections/>
  281. <background>
  282. <path>
  283. <move x="58.71" y="78.93"/>
  284. <line x="39.42" y="64.34"/>
  285. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="35.76" x-axis-rotation="134.22" y="55.2"/>
  286. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="57.38" x-axis-rotation="134.22" y="32.98"/>
  287. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="66.62" x-axis-rotation="134.22" y="36.39"/>
  288. <line x="81.72" y="55.28"/>
  289. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="80.42" x-axis-rotation="134.22" y="63.78"/>
  290. <line x="67.17" y="77.4"/>
  291. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="58.71" x-axis-rotation="134.22" y="78.93"/>
  292. <close/>
  293. </path>
  294. </background>
  295. <foreground>
  296. <fillstroke/>
  297. <path>
  298. <move x="63.19" y="82.2"/>
  299. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="61.48" x-axis-rotation="134.22" y="79.15"/>
  300. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="82.41" x-axis-rotation="134.22" y="57.65"/>
  301. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="85.5" x-axis-rotation="134.22" y="59.27"/>
  302. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="63.19" x-axis-rotation="134.22" y="82.2"/>
  303. </path>
  304. <fillstroke/>
  305. <path>
  306. <move x="0" y="0"/>
  307. <line x="150" y="0"/>
  308. <line x="150" y="40"/>
  309. <line x="90" y="40"/>
  310. <line x="40" y="90"/>
  311. <line x="40" y="150"/>
  312. <line x="0" y="150"/>
  313. <close/>
  314. </path>
  315. <fillstroke/>
  316. </foreground>
  317. </shape>
  318. <shape aspect="variable" h="120" name="Desk Corner 2" strokewidth="inherit" w="150">
  319. <connections/>
  320. <background>
  321. <path>
  322. <move x="0" y="0"/>
  323. <line x="150" y="0"/>
  324. <line x="150" y="60"/>
  325. <line x="40" y="60"/>
  326. <line x="40" y="120"/>
  327. <line x="0" y="120"/>
  328. <close/>
  329. </path>
  330. </background>
  331. <foreground>
  332. <fillstroke/>
  333. </foreground>
  334. </shape>
  335. <shape aspect="variable" h="65" name="Dresser" strokewidth="inherit" w="100">
  336. <connections/>
  337. <background>
  338. <rect h="60" w="100" x="0" y="0"/>
  339. </background>
  340. <foreground>
  341. <fillstroke/>
  342. <path>
  343. <move x="0" y="55"/>
  344. <line x="100" y="55"/>
  345. <move x="50" y="55"/>
  346. <line x="50" y="60"/>
  347. </path>
  348. <stroke/>
  349. <rect h="5" w="10" x="20" y="60"/>
  350. <fillstroke/>
  351. <rect h="5" w="10" x="70" y="60"/>
  352. <fillstroke/>
  353. </foreground>
  354. </shape>
  355. <shape aspect="variable" h="100" name="Elevator" strokewidth="inherit" w="100">
  356. <connections/>
  357. <background>
  358. <rect h="100" w="100" x="0" y="0"/>
  359. </background>
  360. <foreground>
  361. <fillstroke/>
  362. <path>
  363. <move x="0" y="0"/>
  364. <line x="100" y="100"/>
  365. <move x="100" y="0"/>
  366. <line x="0" y="100"/>
  367. </path>
  368. <stroke/>
  369. </foreground>
  370. </shape>
  371. <shape aspect="variable" h="200" name="Fireplace" strokewidth="inherit" w="304">
  372. <connections/>
  373. <background>
  374. <rect h="200" w="304" x="0" y="0"/>
  375. </background>
  376. <foreground>
  377. <fillstroke/>
  378. <path>
  379. <move x="0" y="188"/>
  380. <line x="32" y="188"/>
  381. <move x="0" y="176"/>
  382. <line x="32" y="176"/>
  383. <move x="0" y="164"/>
  384. <line x="32" y="164"/>
  385. <move x="0" y="152"/>
  386. <line x="32" y="152"/>
  387. <move x="0" y="140"/>
  388. <line x="32" y="140"/>
  389. <move x="0" y="128"/>
  390. <line x="32" y="128"/>
  391. <move x="0" y="116"/>
  392. <line x="32" y="116"/>
  393. <move x="0" y="104"/>
  394. <line x="32" y="104"/>
  395. <move x="0" y="92"/>
  396. <line x="32" y="92"/>
  397. <move x="0" y="80"/>
  398. <line x="32" y="80"/>
  399. <move x="0" y="68"/>
  400. <line x="32" y="68"/>
  401. <move x="0" y="32"/>
  402. <line x="304" y="32"/>
  403. <move x="32" y="0"/>
  404. <line x="32" y="200"/>
  405. <move x="272" y="0"/>
  406. <line x="272" y="200"/>
  407. <move x="44" y="0"/>
  408. <line x="44" y="32"/>
  409. <move x="56" y="0"/>
  410. <line x="56" y="32"/>
  411. <move x="68" y="0"/>
  412. <line x="68" y="32"/>
  413. <move x="80" y="0"/>
  414. <line x="80" y="32"/>
  415. <move x="104" y="0"/>
  416. <line x="104" y="32"/>
  417. <move x="116" y="0"/>
  418. <line x="116" y="32"/>
  419. <move x="128" y="0"/>
  420. <line x="128" y="32"/>
  421. <move x="140" y="0"/>
  422. <line x="140" y="32"/>
  423. <move x="152" y="0"/>
  424. <line x="152" y="32"/>
  425. <move x="92" y="0"/>
  426. <line x="92" y="32"/>
  427. <move x="164" y="0"/>
  428. <line x="164" y="32"/>
  429. <move x="176" y="0"/>
  430. <line x="176" y="32"/>
  431. <move x="188" y="0"/>
  432. <line x="188" y="32"/>
  433. <move x="200" y="0"/>
  434. <line x="200" y="32"/>
  435. <move x="212" y="0"/>
  436. <line x="212" y="32"/>
  437. <move x="224" y="0"/>
  438. <line x="224" y="32"/>
  439. <move x="236" y="0"/>
  440. <line x="236" y="32"/>
  441. <move x="272" y="44"/>
  442. <line x="304" y="44"/>
  443. <move x="272" y="56"/>
  444. <line x="304" y="56"/>
  445. <move x="272" y="68"/>
  446. <line x="304" y="68"/>
  447. <move x="272" y="152"/>
  448. <line x="304" y="152"/>
  449. <move x="272" y="80"/>
  450. <line x="304" y="80"/>
  451. <move x="272" y="92"/>
  452. <line x="304" y="92"/>
  453. <move x="272" y="104"/>
  454. <line x="304" y="104"/>
  455. <move x="272" y="116"/>
  456. <line x="304" y="116"/>
  457. <move x="272" y="128"/>
  458. <line x="304" y="128"/>
  459. <move x="272" y="140"/>
  460. <line x="304" y="140"/>
  461. <move x="272" y="164"/>
  462. <line x="304" y="164"/>
  463. <move x="272" y="176"/>
  464. <line x="304" y="176"/>
  465. <move x="272" y="188"/>
  466. <line x="304" y="188"/>
  467. <move x="32" y="200"/>
  468. <line x="110" y="176"/>
  469. <move x="32" y="32"/>
  470. <line x="110" y="152"/>
  471. <move x="272" y="32"/>
  472. <line x="194" y="152"/>
  473. <move x="272" y="200"/>
  474. <line x="194" y="176"/>
  475. <move x="0" y="56"/>
  476. <line x="32" y="56"/>
  477. <move x="0" y="44"/>
  478. <line x="32" y="44"/>
  479. <move x="248" y="0"/>
  480. <line x="248" y="32"/>
  481. <move x="260" y="0"/>
  482. <line x="260" y="32"/>
  483. </path>
  484. <stroke/>
  485. <rect h="24" w="84" x="110" y="152"/>
  486. <stroke/>
  487. </foreground>
  488. </shape>
  489. <shape aspect="variable" h="10" name="Flat TV" strokewidth="inherit" w="70">
  490. <connections/>
  491. <background>
  492. <rect h="5" w="70" x="0" y="5"/>
  493. </background>
  494. <foreground>
  495. <fillstroke/>
  496. <path>
  497. <move x="10" y="5"/>
  498. <line x="17" y="1"/>
  499. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="20" x-axis-rotation="0" y="0"/>
  500. <line x="50" y="0"/>
  501. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="53" x-axis-rotation="0" y="1"/>
  502. <line x="60" y="5"/>
  503. <close/>
  504. </path>
  505. <fillstroke/>
  506. <path>
  507. <move x="29" y="1"/>
  508. <line x="29" y="5"/>
  509. <move x="32" y="1"/>
  510. <line x="32" y="5"/>
  511. <move x="35" y="1"/>
  512. <line x="35" y="5"/>
  513. <move x="41" y="1"/>
  514. <line x="41" y="5"/>
  515. <move x="38" y="1"/>
  516. <line x="38" y="5"/>
  517. </path>
  518. <stroke/>
  519. </foreground>
  520. </shape>
  521. <shape aspect="variable" h="50" name="Floor Lamp" strokewidth="inherit" w="50">
  522. <connections/>
  523. <background>
  524. <path>
  525. <move x="25" y="0"/>
  526. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="25" x-axis-rotation="0" y="50"/>
  527. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="25" x-axis-rotation="0" y="0"/>
  528. <close/>
  529. <move x="25" y="9"/>
  530. <arc large-arc-flag="1" rx="16" ry="16" sweep-flag="1" x="25" x-axis-rotation="0" y="41"/>
  531. <arc large-arc-flag="1" rx="16" ry="16" sweep-flag="1" x="25" x-axis-rotation="0" y="9"/>
  532. <close/>
  533. </path>
  534. </background>
  535. <foreground>
  536. <fillstroke/>
  537. <path>
  538. <move x="25" y="9"/>
  539. <line x="25" y="25"/>
  540. <move x="25" y="25"/>
  541. <line x="12.5" y="35"/>
  542. <move x="25" y="25"/>
  543. <line x="37.5" y="35"/>
  544. </path>
  545. <stroke/>
  546. <ellipse h="10" w="10" x="20" y="20"/>
  547. <fillstroke/>
  548. <ellipse h="24" w="24" x="13" y="13"/>
  549. <stroke/>
  550. </foreground>
  551. </shape>
  552. <shape aspect="variable" h="35" name="Laptop" strokewidth="inherit" w="40">
  553. <connections/>
  554. <background>
  555. <rect h="35" w="40" x="0" y="0"/>
  556. </background>
  557. <foreground>
  558. <fillstroke/>
  559. <rect h="11" w="36" x="2" y="1.5"/>
  560. <stroke/>
  561. <rect h="12.5" w="37" x="1.5" y="16"/>
  562. <stroke/>
  563. <rect h="4" w="8" x="16" y="30"/>
  564. <stroke/>
  565. <path>
  566. <move x="0" y="14"/>
  567. <line x="40" y="14"/>
  568. <move x="1.5" y="18.5"/>
  569. <line x="38.5" y="18.5"/>
  570. <move x="1.5" y="21"/>
  571. <line x="38.5" y="21"/>
  572. <move x="1.5" y="23.5"/>
  573. <line x="38.5" y="23.5"/>
  574. <move x="14" y="26"/>
  575. <line x="14" y="28.5"/>
  576. <move x="26" y="26"/>
  577. <line x="26" y="28.5"/>
  578. <move x="1.5" y="26"/>
  579. <line x="38.5" y="26"/>
  580. </path>
  581. <stroke/>
  582. </foreground>
  583. </shape>
  584. <shape aspect="variable" h="42.86" name="Office Chair" strokewidth="inherit" w="40.14">
  585. <connections/>
  586. <background>
  587. <path>
  588. <move x="36.57" y="8.25"/>
  589. <line x="39.57" y="32.25"/>
  590. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="35.57" x-axis-rotation="0" y="41.25"/>
  591. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="4.57" x-axis-rotation="0" y="41.25"/>
  592. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="0.57" x-axis-rotation="0" y="32.25"/>
  593. <line x="3.57" y="8.25"/>
  594. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="10.57" x-axis-rotation="0" y="3.25"/>
  595. <line x="29.57" y="3.25"/>
  596. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="36.57" x-axis-rotation="0" y="8.25"/>
  597. <close/>
  598. </path>
  599. </background>
  600. <foreground>
  601. <fillstroke/>
  602. <path>
  603. <move x="35.79" y="2.76"/>
  604. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="34.79" x-axis-rotation="0" y="6.11"/>
  605. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="4.79" x-axis-rotation="0" y="6.11"/>
  606. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="3.79" x-axis-rotation="0" y="2.76"/>
  607. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="35.79" x-axis-rotation="0" y="2.76"/>
  608. </path>
  609. <fillstroke/>
  610. </foreground>
  611. </shape>
  612. <shape aspect="variable" h="143.19" name="Piano" strokewidth="inherit" w="135">
  613. <connections/>
  614. <background>
  615. <save/>
  616. <path>
  617. <move x="0" y="143.19"/>
  618. <line x="0" y="23.19"/>
  619. <arc large-arc-flag="0" rx="31" ry="31" sweep-flag="1" x="60" x-axis-rotation="0" y="23.19"/>
  620. <arc large-arc-flag="0" rx="90" ry="90" sweep-flag="0" x="120" x-axis-rotation="0" y="81.19"/>
  621. <arc large-arc-flag="0" rx="20" ry="30" sweep-flag="1" x="135" x-axis-rotation="0" y="103.19"/>
  622. <line x="135" y="143.19"/>
  623. <close/>
  624. <close/>
  625. </path>
  626. </background>
  627. <foreground>
  628. <fillstroke/>
  629. <rect h="12" w="135" x="0" y="131.19"/>
  630. <stroke/>
  631. <restore/>
  632. <rect/>
  633. <stroke/>
  634. <path>
  635. <move x="3" y="131.19"/>
  636. <line x="3" y="143.19"/>
  637. <move x="9" y="131.19"/>
  638. <line x="9" y="143.19"/>
  639. <move x="15" y="131.19"/>
  640. <line x="15" y="143.19"/>
  641. <move x="21" y="131.19"/>
  642. <line x="21" y="143.19"/>
  643. <move x="27" y="131.19"/>
  644. <line x="27" y="143.19"/>
  645. <move x="33" y="131.19"/>
  646. <line x="33" y="143.19"/>
  647. <move x="39" y="131.19"/>
  648. <line x="39" y="143.19"/>
  649. <move x="45" y="131.19"/>
  650. <line x="45" y="143.19"/>
  651. <move x="51" y="131.19"/>
  652. <line x="51" y="143.19"/>
  653. <move x="6" y="131.19"/>
  654. <line x="6" y="143.19"/>
  655. <move x="12" y="131.19"/>
  656. <line x="12" y="143.19"/>
  657. <move x="18" y="131.19"/>
  658. <line x="18" y="143.19"/>
  659. <move x="24" y="131.19"/>
  660. <line x="24" y="143.19"/>
  661. <move x="30" y="131.19"/>
  662. <line x="30" y="143.19"/>
  663. <move x="36" y="131.19"/>
  664. <line x="36" y="143.19"/>
  665. <move x="42" y="131.19"/>
  666. <line x="42" y="143.19"/>
  667. <move x="48" y="131.19"/>
  668. <line x="48" y="143.19"/>
  669. <move x="54" y="131.19"/>
  670. <line x="54" y="143.19"/>
  671. <move x="57" y="131.19"/>
  672. <line x="57" y="143.19"/>
  673. <move x="63" y="131.19"/>
  674. <line x="63" y="143.19"/>
  675. <move x="69" y="131.19"/>
  676. <line x="69" y="143.19"/>
  677. <move x="75" y="131.19"/>
  678. <line x="75" y="143.19"/>
  679. <move x="81" y="131.19"/>
  680. <line x="81" y="143.19"/>
  681. <move x="87" y="131.19"/>
  682. <line x="87" y="143.19"/>
  683. <move x="93" y="131.19"/>
  684. <line x="93" y="143.19"/>
  685. <move x="99" y="131.19"/>
  686. <line x="99" y="143.19"/>
  687. <move x="105" y="131.19"/>
  688. <line x="105" y="143.19"/>
  689. <move x="60" y="131.19"/>
  690. <line x="60" y="143.19"/>
  691. <move x="66" y="131.19"/>
  692. <line x="66" y="143.19"/>
  693. <move x="72" y="131.19"/>
  694. <line x="72" y="143.19"/>
  695. <move x="78" y="131.19"/>
  696. <line x="78" y="143.19"/>
  697. <move x="84" y="131.19"/>
  698. <line x="84" y="143.19"/>
  699. <move x="90" y="131.19"/>
  700. <line x="90" y="143.19"/>
  701. <move x="96" y="131.19"/>
  702. <line x="96" y="143.19"/>
  703. <move x="102" y="131.19"/>
  704. <line x="102" y="143.19"/>
  705. <move x="108" y="131.19"/>
  706. <line x="108" y="143.19"/>
  707. <move x="111" y="131.19"/>
  708. <line x="111" y="143.19"/>
  709. <move x="117" y="131.19"/>
  710. <line x="117" y="143.19"/>
  711. <move x="123" y="131.19"/>
  712. <line x="123" y="143.19"/>
  713. <move x="129" y="131.19"/>
  714. <line x="129" y="143.19"/>
  715. <move x="114" y="131.19"/>
  716. <line x="114" y="143.19"/>
  717. <move x="120" y="131.19"/>
  718. <line x="120" y="143.19"/>
  719. <move x="126" y="131.19"/>
  720. <line x="126" y="143.19"/>
  721. <move x="132" y="131.19"/>
  722. <line x="132" y="143.19"/>
  723. </path>
  724. <stroke/>
  725. </foreground>
  726. </shape>
  727. <shape aspect="variable" h="51.13" name="Plant" strokewidth="inherit" w="47.34">
  728. <connections/>
  729. <background>
  730. <ellipse h="30" w="30" x="10.99" y="10.93"/>
  731. </background>
  732. <foreground>
  733. <fillstroke/>
  734. <ellipse h="23.6" w="10.6" x="19.79" y="27.53"/>
  735. <fillstroke/>
  736. <path>
  737. <move x="25.49" y="26.16"/>
  738. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="18.53" x-axis-rotation="50.62" y="38.47"/>
  739. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="5.09" x-axis-rotation="50.62" y="42.91"/>
  740. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="12.06" x-axis-rotation="50.62" y="30.59"/>
  741. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="25.49" x-axis-rotation="50.62" y="26.16"/>
  742. <close/>
  743. </path>
  744. <fillstroke/>
  745. <path>
  746. <move x="-1.77" y="12.71"/>
  747. <arc large-arc-flag="0" rx="6.05" ry="15.85" sweep-flag="1" x="15.13" x-axis-rotation="-64.12" y="14.18"/>
  748. <arc large-arc-flag="0" rx="6.05" ry="15.85" sweep-flag="1" x="26.75" x-axis-rotation="-64.12" y="26.55"/>
  749. <arc large-arc-flag="0" rx="6.05" ry="15.85" sweep-flag="1" x="9.85" x-axis-rotation="-64.12" y="25.08"/>
  750. <arc large-arc-flag="0" rx="6.05" ry="15.85" sweep-flag="1" x="-1.77" x-axis-rotation="-64.12" y="12.71"/>
  751. <close/>
  752. </path>
  753. <fillstroke/>
  754. <path>
  755. <move x="28.11" y="23.5"/>
  756. <arc large-arc-flag="0" rx="6.8" ry="14.17" sweep-flag="1" x="43.16" x-axis-rotation="-47.74" y="28"/>
  757. <arc large-arc-flag="0" rx="6.8" ry="14.17" sweep-flag="1" x="49.08" x-axis-rotation="-47.74" y="42.56"/>
  758. <arc large-arc-flag="0" rx="6.8" ry="14.17" sweep-flag="1" x="34.02" x-axis-rotation="-47.74" y="38.06"/>
  759. <arc large-arc-flag="0" rx="6.8" ry="14.17" sweep-flag="1" x="28.11" x-axis-rotation="-47.74" y="23.5"/>
  760. <close/>
  761. </path>
  762. <fillstroke/>
  763. <path>
  764. <move x="52.56" y="13.47"/>
  765. <arc large-arc-flag="0" rx="5.2" ry="15.5" sweep-flag="1" x="41.66" x-axis-rotation="60.38" y="25.65"/>
  766. <arc large-arc-flag="0" rx="5.2" ry="15.5" sweep-flag="1" x="25.62" x-axis-rotation="60.38" y="28.79"/>
  767. <arc large-arc-flag="0" rx="5.2" ry="15.5" sweep-flag="1" x="36.52" x-axis-rotation="60.38" y="16.61"/>
  768. <arc large-arc-flag="0" rx="5.2" ry="15.5" sweep-flag="1" x="52.56" x-axis-rotation="60.38" y="13.47"/>
  769. <close/>
  770. </path>
  771. <fillstroke/>
  772. <path>
  773. <move x="20.46" y="3.04"/>
  774. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="28.27" x-axis-rotation="-12.38" y="14.84"/>
  775. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="26.12" x-axis-rotation="-12.38" y="28.82"/>
  776. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="18.31" x-axis-rotation="-12.38" y="17.02"/>
  777. <arc large-arc-flag="0" rx="5.1" ry="13.2" sweep-flag="1" x="20.46" x-axis-rotation="-12.38" y="3.04"/>
  778. <close/>
  779. </path>
  780. <fillstroke/>
  781. <path>
  782. <move x="34.92" y="10.26"/>
  783. <arc large-arc-flag="0" rx="4.17" ry="10.5" sweep-flag="1" x="33.68" x-axis-rotation="27.99" y="21.49"/>
  784. <arc large-arc-flag="0" rx="4.17" ry="10.5" sweep-flag="1" x="25.06" x-axis-rotation="27.99" y="28.81"/>
  785. <arc large-arc-flag="0" rx="4.17" ry="10.5" sweep-flag="1" x="26.31" x-axis-rotation="27.99" y="17.57"/>
  786. <arc large-arc-flag="0" rx="4.17" ry="10.5" sweep-flag="1" x="34.92" x-axis-rotation="27.99" y="10.26"/>
  787. <close/>
  788. </path>
  789. <fillstroke/>
  790. </foreground>
  791. </shape>
  792. <shape aspect="variable" h="47" name="Printer" strokewidth="inherit" w="40">
  793. <connections/>
  794. <background>
  795. <roundrect arcsize="10" h="20" w="40" x="0" y="10"/>
  796. </background>
  797. <foreground>
  798. <fillstroke/>
  799. <rect h="47" w="30" x="5" y="0"/>
  800. <fillstroke/>
  801. <path>
  802. <move x="11" y="0"/>
  803. <line x="11" y="16"/>
  804. <move x="17" y="0"/>
  805. <line x="17" y="16"/>
  806. <move x="23" y="0"/>
  807. <line x="23" y="16"/>
  808. <move x="29" y="0"/>
  809. <line x="29" y="16"/>
  810. <move x="5" y="16"/>
  811. <line x="35" y="16"/>
  812. <move x="5" y="23"/>
  813. <line x="35" y="23"/>
  814. <move x="35" y="37"/>
  815. <line x="25" y="37"/>
  816. <line x="23" y="35"/>
  817. <line x="17" y="35"/>
  818. <line x="15" y="37"/>
  819. <line x="5" y="37"/>
  820. </path>
  821. <stroke/>
  822. <rect h="1" w="4" x="18" y="46"/>
  823. <stroke/>
  824. <ellipse h="2" w="2" x="36.5" y="26"/>
  825. <stroke/>
  826. </foreground>
  827. </shape>
  828. <shape aspect="variable" h="62" name="Range 1" strokewidth="inherit" w="50">
  829. <connections/>
  830. <background>
  831. <rect h="60" w="50" x="0" y="0"/>
  832. </background>
  833. <foreground>
  834. <fillstroke/>
  835. <ellipse h="6" w="6" x="34.5" y="12"/>
  836. <stroke/>
  837. <ellipse h="8" w="8" x="33.5" y="41"/>
  838. <stroke/>
  839. <ellipse h="10" w="10" x="7.5" y="40"/>
  840. <stroke/>
  841. <ellipse h="12" w="12" x="6.5" y="9"/>
  842. <stroke/>
  843. <path>
  844. <move x="34" y="11.5"/>
  845. <line x="41" y="18.5"/>
  846. <move x="41" y="11.5"/>
  847. <line x="34" y="18.5"/>
  848. <move x="33" y="40.5"/>
  849. <line x="42" y="49.5"/>
  850. <move x="42" y="40.5"/>
  851. <line x="33" y="49.5"/>
  852. <move x="6" y="8.5"/>
  853. <line x="19" y="21.5"/>
  854. <move x="19" y="8.5"/>
  855. <line x="6" y="21.5"/>
  856. <move x="7" y="39.5"/>
  857. <line x="18" y="50.5"/>
  858. <move x="18" y="39.5"/>
  859. <line x="7" y="50.5"/>
  860. </path>
  861. <stroke/>
  862. <rect h="2" w="5" x="5" y="60"/>
  863. <fillstroke/>
  864. <rect h="2" w="5" x="14" y="60"/>
  865. <fillstroke/>
  866. <rect h="2" w="5" x="23" y="60"/>
  867. <fillstroke/>
  868. <rect h="2" w="5" x="32" y="60"/>
  869. <fillstroke/>
  870. <rect h="2" w="5" x="41" y="60"/>
  871. <fillstroke/>
  872. </foreground>
  873. </shape>
  874. <shape aspect="variable" h="62" name="Range 2" strokewidth="inherit" w="75">
  875. <connections/>
  876. <background>
  877. <rect h="60" w="75" x="0" y="0"/>
  878. </background>
  879. <foreground>
  880. <fillstroke/>
  881. <ellipse h="6" w="6" x="59.5" y="12"/>
  882. <stroke/>
  883. <ellipse h="8" w="8" x="58.5" y="41"/>
  884. <stroke/>
  885. <ellipse h="10" w="10" x="7.5" y="40"/>
  886. <stroke/>
  887. <ellipse h="12" w="12" x="6.5" y="9"/>
  888. <stroke/>
  889. <path>
  890. <move x="59" y="11.5"/>
  891. <line x="66" y="18.5"/>
  892. <move x="66" y="11.5"/>
  893. <line x="59" y="18.5"/>
  894. <move x="58" y="40.5"/>
  895. <line x="67" y="49.5"/>
  896. <move x="67" y="40.5"/>
  897. <line x="58" y="49.5"/>
  898. <move x="6" y="8.5"/>
  899. <line x="19" y="21.5"/>
  900. <move x="19" y="8.5"/>
  901. <line x="6" y="21.5"/>
  902. <move x="7" y="39.5"/>
  903. <line x="18" y="50.5"/>
  904. <move x="18" y="39.5"/>
  905. <line x="7" y="50.5"/>
  906. </path>
  907. <stroke/>
  908. <roundrect arcsize="15" h="50" w="20" x="27.5" y="5"/>
  909. <stroke/>
  910. <rect h="2" w="5" x="5" y="60"/>
  911. <fillstroke/>
  912. <rect h="2" w="5" x="14" y="60"/>
  913. <fillstroke/>
  914. <rect h="2" w="5" x="23" y="60"/>
  915. <fillstroke/>
  916. <rect h="2" w="5" x="32" y="60"/>
  917. <fillstroke/>
  918. <rect h="2" w="5" x="41" y="60"/>
  919. <fillstroke/>
  920. <rect h="2" w="5" x="50" y="60"/>
  921. <fillstroke/>
  922. <rect h="2" w="5" x="59" y="60"/>
  923. <fillstroke/>
  924. <rect h="2" w="5" x="68" y="60"/>
  925. <fillstroke/>
  926. </foreground>
  927. </shape>
  928. <shape aspect="variable" h="62.04" name="Refrigerator" strokewidth="inherit" w="60">
  929. <connections/>
  930. <background>
  931. <path>
  932. <move x="60" y="54.04"/>
  933. <line x="60" y="56.04"/>
  934. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="56" x-axis-rotation="0" y="60.04"/>
  935. <line x="4" y="60.04"/>
  936. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="56.04"/>
  937. <line x="0" y="54.04"/>
  938. <close/>
  939. </path>
  940. </background>
  941. <foreground>
  942. <fillstroke/>
  943. <rect h="47" w="60" x="0" y="5.04"/>
  944. <fillstroke/>
  945. <path>
  946. <move x="6" y="5.04"/>
  947. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="10" x-axis-rotation="0" y="0.04"/>
  948. <line x="50" y="0.04"/>
  949. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="54" x-axis-rotation="0" y="5.04"/>
  950. </path>
  951. <stroke/>
  952. <rect h="2" w="6" x="45" y="60.04"/>
  953. <fillstroke/>
  954. </foreground>
  955. </shape>
  956. <shape aspect="variable" h="100" name="Shower" strokewidth="inherit" w="100">
  957. <connections/>
  958. <background>
  959. <rect h="100" w="100" x="0" y="0"/>
  960. </background>
  961. <foreground>
  962. <fillstroke/>
  963. <roundrect arcsize="9.52" h="84" w="84" x="8" y="8"/>
  964. <stroke/>
  965. <path>
  966. <move x="94" y="9"/>
  967. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="79" x-axis-rotation="0" y="28"/>
  968. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="1" x="72" x-axis-rotation="0" y="21"/>
  969. <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="91" x-axis-rotation="0" y="6"/>
  970. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="94" x-axis-rotation="0" y="9"/>
  971. <close/>
  972. </path>
  973. <fillstroke/>
  974. <fillcolor color="#000000"/>
  975. <ellipse h="10" w="10" x="15" y="75"/>
  976. <fill/>
  977. </foreground>
  978. </shape>
  979. <shape aspect="variable" h="35" name="Sink 1" strokewidth="inherit" w="40">
  980. <connections/>
  981. <background>
  982. <path>
  983. <move x="40" y="0"/>
  984. <line x="40" y="20"/>
  985. <arc large-arc-flag="0" rx="20" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="20"/>
  986. <line x="0" y="0"/>
  987. <close/>
  988. <close/>
  989. </path>
  990. </background>
  991. <foreground>
  992. <fillstroke/>
  993. <ellipse h="20" w="30" x="5" y="10"/>
  994. <stroke/>
  995. <roundrect arcsize="50" h="16" w="4" x="18.5" y="3"/>
  996. <fillstroke/>
  997. <roundrect arcsize="50" h="11" w="4" x="18.5" y="3"/>
  998. <stroke/>
  999. </foreground>
  1000. </shape>
  1001. <shape aspect="variable" h="35" name="Sink 2" strokewidth="inherit" w="40">
  1002. <connections/>
  1003. <background>
  1004. <save/>
  1005. <roundrect arcsize="11.43" h="35" w="40" x="0" y="0"/>
  1006. </background>
  1007. <foreground>
  1008. <fillstroke/>
  1009. <roundrect arcsize="14.29" h="21" w="32" x="4" y="10"/>
  1010. <stroke/>
  1011. <fillcolor color="#000000"/>
  1012. <ellipse h="5" w="5" x="17.5" y="16.5"/>
  1013. <fill/>
  1014. <restore/>
  1015. <rect/>
  1016. <stroke/>
  1017. <roundrect arcsize="50" h="16" w="4" x="18" y="3"/>
  1018. <fillstroke/>
  1019. <roundrect arcsize="50" h="11" w="4" x="18" y="3"/>
  1020. <stroke/>
  1021. </foreground>
  1022. </shape>
  1023. <shape aspect="variable" h="35" name="Sink Double" strokewidth="inherit" w="80">
  1024. <connections/>
  1025. <background>
  1026. <roundrect arcsize="11.43" h="35" w="80" x="0" y="0"/>
  1027. </background>
  1028. <foreground>
  1029. <fillstroke/>
  1030. <roundrect arcsize="14.29" h="21" w="32" x="4" y="10"/>
  1031. <stroke/>
  1032. <roundrect arcsize="50" h="16" w="4" x="38" y="3"/>
  1033. <fillstroke/>
  1034. <roundrect arcsize="50" h="11" w="4" x="38" y="3"/>
  1035. <stroke/>
  1036. <roundrect arcsize="14.29" h="21" w="32" x="44" y="10"/>
  1037. <stroke/>
  1038. <fillcolor color="#000000"/>
  1039. <ellipse h="5" w="5" x="27.5" y="14.5"/>
  1040. <fill/>
  1041. <ellipse h="5" w="5" x="47.5" y="14.5"/>
  1042. <fill/>
  1043. </foreground>
  1044. </shape>
  1045. <shape aspect="variable" h="80" name="Sofa" strokewidth="inherit" w="90">
  1046. <connections/>
  1047. <background>
  1048. <rect h="10" w="70" x="10" y="10"/>
  1049. </background>
  1050. <foreground>
  1051. <fillstroke/>
  1052. <roundrect arcsize="20" h="80" w="15" x="0" y="0"/>
  1053. <fillstroke/>
  1054. <roundrect arcsize="20" h="15" w="60" x="15" y="0"/>
  1055. <fillstroke/>
  1056. <roundrect arcsize="5" h="65" w="60" x="15" y="15"/>
  1057. <fillstroke/>
  1058. <roundrect arcsize="20" h="80" w="15" x="75" y="0"/>
  1059. <fillstroke/>
  1060. </foreground>
  1061. </shape>
  1062. <shape aspect="variable" h="200" name="Spiral Stairs" strokewidth="inherit" w="200">
  1063. <connections/>
  1064. <background>
  1065. <ellipse h="200" w="200" x="0" y="0"/>
  1066. </background>
  1067. <foreground>
  1068. <fillstroke/>
  1069. <ellipse h="20" w="20" x="90" y="90"/>
  1070. <stroke/>
  1071. <path>
  1072. <move x="100" y="0"/>
  1073. <line x="100" y="90"/>
  1074. <move x="148.5" y="12"/>
  1075. <line x="105" y="91"/>
  1076. <move x="188" y="51.5"/>
  1077. <line x="109" y="95"/>
  1078. <move x="200" y="100"/>
  1079. <line x="110" y="100"/>
  1080. <move x="148.25" y="187.5"/>
  1081. <line x="105" y="109"/>
  1082. <move x="100" y="200"/>
  1083. <line x="100" y="110"/>
  1084. <move x="52" y="187.5"/>
  1085. <line x="95" y="109"/>
  1086. <move x="12.25" y="148.25"/>
  1087. <line x="91" y="105"/>
  1088. <move x="0" y="100"/>
  1089. <line x="90" y="100"/>
  1090. <move x="12.5" y="52"/>
  1091. <line x="91" y="95"/>
  1092. <move x="52" y="12.75"/>
  1093. <line x="95" y="91"/>
  1094. </path>
  1095. <stroke/>
  1096. </foreground>
  1097. </shape>
  1098. <shape aspect="variable" h="50" name="Table" strokewidth="inherit" w="90">
  1099. <connections/>
  1100. <background>
  1101. <rect h="50" w="90" x="0" y="0"/>
  1102. </background>
  1103. <foreground>
  1104. <fillstroke/>
  1105. <rect h="7" w="10" x="0" y="0"/>
  1106. <stroke/>
  1107. <rect h="7" w="10" x="0" y="43"/>
  1108. <stroke/>
  1109. <rect h="7" w="10" x="80" y="0"/>
  1110. <stroke/>
  1111. <rect h="7" w="10" x="80" y="43"/>
  1112. <stroke/>
  1113. </foreground>
  1114. </shape>
  1115. <shape aspect="variable" h="119.13" name="Table 1" strokewidth="inherit" w="169.86">
  1116. <connections/>
  1117. <background>
  1118. <path>
  1119. <move x="98.19" y="8.25"/>
  1120. <line x="101.19" y="32.25"/>
  1121. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="97.19" x-axis-rotation="0" y="41.25"/>
  1122. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="66.19" x-axis-rotation="0" y="41.25"/>
  1123. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="62.19" x-axis-rotation="0" y="32.25"/>
  1124. <line x="65.19" y="8.25"/>
  1125. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="72.19" x-axis-rotation="0" y="3.25"/>
  1126. <line x="91.19" y="3.25"/>
  1127. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="98.19" x-axis-rotation="0" y="8.25"/>
  1128. <close/>
  1129. </path>
  1130. </background>
  1131. <foreground>
  1132. <fillstroke/>
  1133. <path>
  1134. <move x="97.41" y="2.76"/>
  1135. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="96.41" x-axis-rotation="0" y="6.11"/>
  1136. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="66.41" x-axis-rotation="0" y="6.11"/>
  1137. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="65.41" x-axis-rotation="0" y="2.76"/>
  1138. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="97.41" x-axis-rotation="0" y="2.76"/>
  1139. </path>
  1140. <fillstroke/>
  1141. <path>
  1142. <move x="156.19" y="8.25"/>
  1143. <line x="159.19" y="32.25"/>
  1144. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="155.19" x-axis-rotation="0" y="41.25"/>
  1145. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="124.19" x-axis-rotation="0" y="41.25"/>
  1146. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="120.19" x-axis-rotation="0" y="32.25"/>
  1147. <line x="123.19" y="8.25"/>
  1148. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="130.19" x-axis-rotation="0" y="3.25"/>
  1149. <line x="149.19" y="3.25"/>
  1150. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="156.19" x-axis-rotation="0" y="8.25"/>
  1151. <close/>
  1152. </path>
  1153. <fillstroke/>
  1154. <path>
  1155. <move x="155.41" y="2.76"/>
  1156. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="154.41" x-axis-rotation="0" y="6.11"/>
  1157. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="124.41" x-axis-rotation="0" y="6.11"/>
  1158. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="123.41" x-axis-rotation="0" y="2.76"/>
  1159. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="155.41" x-axis-rotation="0" y="2.76"/>
  1160. </path>
  1161. <fillstroke/>
  1162. <path>
  1163. <move x="65.13" y="90.87"/>
  1164. <line x="62.24" y="66.86"/>
  1165. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="66.28" x-axis-rotation="-179.74" y="57.88"/>
  1166. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="97.28" x-axis-rotation="-179.74" y="58.01"/>
  1167. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="101.24" x-axis-rotation="-179.74" y="67.03"/>
  1168. <line x="98.13" y="91.02"/>
  1169. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="91.11" x-axis-rotation="-179.74" y="95.99"/>
  1170. <line x="72.11" y="95.9"/>
  1171. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="65.13" x-axis-rotation="-179.74" y="90.87"/>
  1172. <close/>
  1173. </path>
  1174. <fillstroke/>
  1175. <path>
  1176. <move x="65.89" y="96.36"/>
  1177. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="66.9" x-axis-rotation="-179.74" y="93.02"/>
  1178. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="96.9" x-axis-rotation="-179.74" y="93.16"/>
  1179. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="97.88" x-axis-rotation="-179.74" y="96.51"/>
  1180. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="65.89" x-axis-rotation="-179.74" y="96.36"/>
  1181. </path>
  1182. <fillstroke/>
  1183. <path>
  1184. <move x="123.47" y="89.87"/>
  1185. <line x="120.57" y="65.86"/>
  1186. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="124.61" x-axis-rotation="-179.74" y="56.88"/>
  1187. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="155.61" x-axis-rotation="-179.74" y="57.01"/>
  1188. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="159.57" x-axis-rotation="-179.74" y="66.03"/>
  1189. <line x="156.47" y="90.02"/>
  1190. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="149.44" x-axis-rotation="-179.74" y="94.99"/>
  1191. <line x="130.44" y="94.9"/>
  1192. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="123.47" x-axis-rotation="-179.74" y="89.87"/>
  1193. <close/>
  1194. </path>
  1195. <fillstroke/>
  1196. <path>
  1197. <move x="124.22" y="95.36"/>
  1198. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="125.23" x-axis-rotation="-179.74" y="92.02"/>
  1199. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="155.23" x-axis-rotation="-179.74" y="92.16"/>
  1200. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="156.22" x-axis-rotation="-179.74" y="95.51"/>
  1201. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="124.22" x-axis-rotation="-179.74" y="95.36"/>
  1202. </path>
  1203. <fillstroke/>
  1204. <rect h="70" w="120" x="49.86" y="13.92"/>
  1205. <fillstroke/>
  1206. </foreground>
  1207. </shape>
  1208. <shape aspect="variable" h="104.26" name="Table 2" strokewidth="inherit" w="217.73">
  1209. <connections/>
  1210. <background>
  1211. <path>
  1212. <move x="155.53" y="8.85"/>
  1213. <line x="158.53" y="32.85"/>
  1214. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="154.53" x-axis-rotation="0" y="41.85"/>
  1215. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="123.53" x-axis-rotation="0" y="41.85"/>
  1216. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="119.53" x-axis-rotation="0" y="32.85"/>
  1217. <line x="122.53" y="8.85"/>
  1218. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="129.53" x-axis-rotation="0" y="3.85"/>
  1219. <line x="148.53" y="3.85"/>
  1220. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="155.53" x-axis-rotation="0" y="8.85"/>
  1221. <close/>
  1222. </path>
  1223. </background>
  1224. <foreground>
  1225. <fillstroke/>
  1226. <path>
  1227. <move x="154.76" y="3.36"/>
  1228. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="153.76" x-axis-rotation="0" y="6.7"/>
  1229. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="123.76" x-axis-rotation="0" y="6.7"/>
  1230. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="122.76" x-axis-rotation="0" y="3.36"/>
  1231. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="154.76" x-axis-rotation="0" y="3.36"/>
  1232. </path>
  1233. <fillstroke/>
  1234. <path>
  1235. <move x="187.72" y="76.31"/>
  1236. <line x="163.7" y="79.14"/>
  1237. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="154.73" x-axis-rotation="90.43" y="75.07"/>
  1238. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="154.96" x-axis-rotation="90.43" y="44.07"/>
  1239. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="163.99" x-axis-rotation="90.43" y="40.14"/>
  1240. <line x="187.97" y="43.32"/>
  1241. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="192.92" x-axis-rotation="90.43" y="50.35"/>
  1242. <line x="192.77" y="69.35"/>
  1243. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="187.72" x-axis-rotation="90.43" y="76.31"/>
  1244. <close/>
  1245. </path>
  1246. <fillstroke/>
  1247. <path>
  1248. <move x="193.22" y="75.58"/>
  1249. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="189.88" x-axis-rotation="90.43" y="74.55"/>
  1250. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="190.1" x-axis-rotation="90.43" y="44.55"/>
  1251. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="193.46" x-axis-rotation="90.43" y="43.58"/>
  1252. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="193.22" x-axis-rotation="90.43" y="75.58"/>
  1253. </path>
  1254. <fillstroke/>
  1255. <path>
  1256. <move x="122.23" y="110.47"/>
  1257. <line x="119.33" y="86.46"/>
  1258. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="123.37" x-axis-rotation="-179.74" y="77.47"/>
  1259. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="154.37" x-axis-rotation="-179.74" y="77.61"/>
  1260. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="158.33" x-axis-rotation="-179.74" y="86.63"/>
  1261. <line x="155.22" y="110.62"/>
  1262. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="148.2" x-axis-rotation="-179.74" y="115.59"/>
  1263. <line x="129.2" y="115.5"/>
  1264. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="122.23" x-axis-rotation="-179.74" y="110.47"/>
  1265. <close/>
  1266. </path>
  1267. <fillstroke/>
  1268. <path>
  1269. <move x="122.98" y="115.96"/>
  1270. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="123.99" x-axis-rotation="-179.74" y="112.62"/>
  1271. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="153.99" x-axis-rotation="-179.74" y="112.76"/>
  1272. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="154.98" x-axis-rotation="-179.74" y="116.11"/>
  1273. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="122.98" x-axis-rotation="-179.74" y="115.96"/>
  1274. </path>
  1275. <fillstroke/>
  1276. <path>
  1277. <move x="90.35" y="42.73"/>
  1278. <line x="114.38" y="40.02"/>
  1279. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="123.33" x-axis-rotation="-89.31" y="44.12"/>
  1280. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="122.96" x-axis-rotation="-89.31" y="75.12"/>
  1281. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="113.91" x-axis-rotation="-89.31" y="79.01"/>
  1282. <line x="89.95" y="75.73"/>
  1283. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="85.04" x-axis-rotation="-89.31" y="68.67"/>
  1284. <line x="85.26" y="49.67"/>
  1285. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="90.35" x-axis-rotation="-89.31" y="42.73"/>
  1286. <close/>
  1287. </path>
  1288. <fillstroke/>
  1289. <path>
  1290. <move x="84.85" y="43.44"/>
  1291. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="88.18" x-axis-rotation="-89.31" y="44.48"/>
  1292. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="87.82" x-axis-rotation="-89.31" y="74.48"/>
  1293. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="84.46" x-axis-rotation="-89.31" y="75.44"/>
  1294. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="84.85" x-axis-rotation="-89.31" y="43.44"/>
  1295. </path>
  1296. <fillstroke/>
  1297. <rect h="90" w="90" x="93.95" y="14.26"/>
  1298. <fillstroke/>
  1299. </foreground>
  1300. </shape>
  1301. <shape aspect="variable" h="109.26" name="Table 3" strokewidth="inherit" w="217.73">
  1302. <connections/>
  1303. <background>
  1304. <path>
  1305. <move x="155.53" y="8.85"/>
  1306. <line x="158.53" y="32.85"/>
  1307. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="154.53" x-axis-rotation="0" y="41.85"/>
  1308. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="123.53" x-axis-rotation="0" y="41.85"/>
  1309. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="119.53" x-axis-rotation="0" y="32.85"/>
  1310. <line x="122.53" y="8.85"/>
  1311. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="129.53" x-axis-rotation="0" y="3.85"/>
  1312. <line x="148.53" y="3.85"/>
  1313. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="155.53" x-axis-rotation="0" y="8.85"/>
  1314. <close/>
  1315. </path>
  1316. </background>
  1317. <foreground>
  1318. <fillstroke/>
  1319. <path>
  1320. <move x="154.76" y="3.36"/>
  1321. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="153.76" x-axis-rotation="0" y="6.7"/>
  1322. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="123.76" x-axis-rotation="0" y="6.7"/>
  1323. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="122.76" x-axis-rotation="0" y="3.36"/>
  1324. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="154.76" x-axis-rotation="0" y="3.36"/>
  1325. </path>
  1326. <fillstroke/>
  1327. <path>
  1328. <move x="187.72" y="76.31"/>
  1329. <line x="163.7" y="79.14"/>
  1330. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="154.73" x-axis-rotation="90.43" y="75.07"/>
  1331. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="154.96" x-axis-rotation="90.43" y="44.07"/>
  1332. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="163.99" x-axis-rotation="90.43" y="40.14"/>
  1333. <line x="187.97" y="43.32"/>
  1334. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="192.92" x-axis-rotation="90.43" y="50.35"/>
  1335. <line x="192.77" y="69.35"/>
  1336. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="187.72" x-axis-rotation="90.43" y="76.31"/>
  1337. <close/>
  1338. </path>
  1339. <fillstroke/>
  1340. <path>
  1341. <move x="193.22" y="75.58"/>
  1342. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="189.88" x-axis-rotation="90.43" y="74.55"/>
  1343. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="190.1" x-axis-rotation="90.43" y="44.55"/>
  1344. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="193.46" x-axis-rotation="90.43" y="43.58"/>
  1345. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="193.22" x-axis-rotation="90.43" y="75.58"/>
  1346. </path>
  1347. <fillstroke/>
  1348. <path>
  1349. <move x="122.23" y="110.47"/>
  1350. <line x="119.33" y="86.46"/>
  1351. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="123.37" x-axis-rotation="-179.74" y="77.47"/>
  1352. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="154.37" x-axis-rotation="-179.74" y="77.61"/>
  1353. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="158.33" x-axis-rotation="-179.74" y="86.63"/>
  1354. <line x="155.22" y="110.62"/>
  1355. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="148.2" x-axis-rotation="-179.74" y="115.59"/>
  1356. <line x="129.2" y="115.5"/>
  1357. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="122.23" x-axis-rotation="-179.74" y="110.47"/>
  1358. <close/>
  1359. </path>
  1360. <fillstroke/>
  1361. <path>
  1362. <move x="122.98" y="115.96"/>
  1363. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="123.99" x-axis-rotation="-179.74" y="112.62"/>
  1364. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="153.99" x-axis-rotation="-179.74" y="112.76"/>
  1365. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="154.98" x-axis-rotation="-179.74" y="116.11"/>
  1366. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="122.98" x-axis-rotation="-179.74" y="115.96"/>
  1367. </path>
  1368. <fillstroke/>
  1369. <path>
  1370. <move x="90.35" y="42.73"/>
  1371. <line x="114.38" y="40.02"/>
  1372. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="123.33" x-axis-rotation="-89.31" y="44.12"/>
  1373. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="122.96" x-axis-rotation="-89.31" y="75.12"/>
  1374. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="113.91" x-axis-rotation="-89.31" y="79.01"/>
  1375. <line x="89.95" y="75.73"/>
  1376. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="85.04" x-axis-rotation="-89.31" y="68.67"/>
  1377. <line x="85.26" y="49.67"/>
  1378. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="90.35" x-axis-rotation="-89.31" y="42.73"/>
  1379. <close/>
  1380. </path>
  1381. <fillstroke/>
  1382. <path>
  1383. <move x="84.85" y="43.44"/>
  1384. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="88.18" x-axis-rotation="-89.31" y="44.48"/>
  1385. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="87.82" x-axis-rotation="-89.31" y="74.48"/>
  1386. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="84.46" x-axis-rotation="-89.31" y="75.44"/>
  1387. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="84.85" x-axis-rotation="-89.31" y="43.44"/>
  1388. </path>
  1389. <fillstroke/>
  1390. <ellipse h="100" w="100" x="88.95" y="9.26"/>
  1391. <fillstroke/>
  1392. </foreground>
  1393. </shape>
  1394. <shape aspect="variable" h="159.64" name="Table 4" strokewidth="inherit" w="239.36">
  1395. <connections/>
  1396. <background>
  1397. <path>
  1398. <move x="153.94" y="48.4"/>
  1399. <line x="156.94" y="72.4"/>
  1400. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="152.94" x-axis-rotation="0" y="81.4"/>
  1401. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="121.94" x-axis-rotation="0" y="81.4"/>
  1402. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="117.94" x-axis-rotation="0" y="72.4"/>
  1403. <line x="120.94" y="48.4"/>
  1404. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="127.94" x-axis-rotation="0" y="43.4"/>
  1405. <line x="146.94" y="43.4"/>
  1406. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="153.94" x-axis-rotation="0" y="48.4"/>
  1407. <close/>
  1408. </path>
  1409. </background>
  1410. <foreground>
  1411. <fillstroke/>
  1412. <path>
  1413. <move x="153.16" y="42.91"/>
  1414. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="152.16" x-axis-rotation="0" y="46.26"/>
  1415. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="122.16" x-axis-rotation="0" y="46.26"/>
  1416. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="121.16" x-axis-rotation="0" y="42.91"/>
  1417. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="153.16" x-axis-rotation="0" y="42.91"/>
  1418. </path>
  1419. <fillstroke/>
  1420. <path>
  1421. <move x="205.19" y="47.65"/>
  1422. <line x="208.19" y="71.65"/>
  1423. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="204.19" x-axis-rotation="0" y="80.65"/>
  1424. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="173.19" x-axis-rotation="0" y="80.65"/>
  1425. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="169.19" x-axis-rotation="0" y="71.65"/>
  1426. <line x="172.19" y="47.65"/>
  1427. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="179.19" x-axis-rotation="0" y="42.65"/>
  1428. <line x="198.19" y="42.65"/>
  1429. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="205.19" x-axis-rotation="0" y="47.65"/>
  1430. <close/>
  1431. </path>
  1432. <fillstroke/>
  1433. <path>
  1434. <move x="204.41" y="42.16"/>
  1435. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="203.41" x-axis-rotation="0" y="45.51"/>
  1436. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="173.41" x-axis-rotation="0" y="45.51"/>
  1437. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="172.41" x-axis-rotation="0" y="42.16"/>
  1438. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="204.41" x-axis-rotation="0" y="42.16"/>
  1439. </path>
  1440. <fillstroke/>
  1441. <path>
  1442. <move x="120.88" y="131.02"/>
  1443. <line x="117.99" y="107.01"/>
  1444. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="122.03" x-axis-rotation="-179.74" y="98.03"/>
  1445. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="153.03" x-axis-rotation="-179.74" y="98.17"/>
  1446. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="156.99" x-axis-rotation="-179.74" y="107.18"/>
  1447. <line x="153.88" y="131.17"/>
  1448. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="146.86" x-axis-rotation="-179.74" y="136.14"/>
  1449. <line x="127.86" y="136.05"/>
  1450. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="120.88" x-axis-rotation="-179.74" y="131.02"/>
  1451. <close/>
  1452. </path>
  1453. <fillstroke/>
  1454. <path>
  1455. <move x="121.63" y="136.52"/>
  1456. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="122.65" x-axis-rotation="-179.74" y="133.17"/>
  1457. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="152.65" x-axis-rotation="-179.74" y="133.31"/>
  1458. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="153.63" x-axis-rotation="-179.74" y="136.66"/>
  1459. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="121.63" x-axis-rotation="-179.74" y="136.52"/>
  1460. </path>
  1461. <fillstroke/>
  1462. <path>
  1463. <move x="172.46" y="129.27"/>
  1464. <line x="169.57" y="105.26"/>
  1465. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="173.61" x-axis-rotation="-179.74" y="96.28"/>
  1466. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="204.61" x-axis-rotation="-179.74" y="96.42"/>
  1467. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="208.57" x-axis-rotation="-179.74" y="105.43"/>
  1468. <line x="205.46" y="129.42"/>
  1469. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="198.44" x-axis-rotation="-179.74" y="134.39"/>
  1470. <line x="179.44" y="134.3"/>
  1471. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="172.46" x-axis-rotation="-179.74" y="129.27"/>
  1472. <close/>
  1473. </path>
  1474. <fillstroke/>
  1475. <path>
  1476. <move x="173.22" y="134.77"/>
  1477. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="174.23" x-axis-rotation="-179.74" y="131.42"/>
  1478. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="204.23" x-axis-rotation="-179.74" y="131.56"/>
  1479. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="205.22" x-axis-rotation="-179.74" y="134.91"/>
  1480. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="173.22" x-axis-rotation="-179.74" y="134.77"/>
  1481. </path>
  1482. <fillstroke/>
  1483. <path>
  1484. <move x="243.12" y="104.88"/>
  1485. <line x="219.13" y="107.94"/>
  1486. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="210.12" x-axis-rotation="89.86" y="103.96"/>
  1487. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="210.05" x-axis-rotation="89.86" y="72.96"/>
  1488. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="219.04" x-axis-rotation="89.86" y="68.94"/>
  1489. <line x="243.04" y="71.88"/>
  1490. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="248.06" x-axis-rotation="89.86" y="78.87"/>
  1491. <line x="248.1" y="97.87"/>
  1492. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="243.12" x-axis-rotation="89.86" y="104.88"/>
  1493. <close/>
  1494. </path>
  1495. <fillstroke/>
  1496. <path>
  1497. <move x="248.61" y="104.09"/>
  1498. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="245.26" x-axis-rotation="89.86" y="103.1"/>
  1499. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="245.19" x-axis-rotation="89.86" y="73.1"/>
  1500. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="248.53" x-axis-rotation="89.86" y="72.09"/>
  1501. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="248.61" x-axis-rotation="89.86" y="104.09"/>
  1502. </path>
  1503. <fillstroke/>
  1504. <path>
  1505. <move x="83.67" y="71.77"/>
  1506. <line x="107.68" y="68.82"/>
  1507. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="116.67" x-axis-rotation="-89.88" y="72.84"/>
  1508. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="116.6" x-axis-rotation="-89.88" y="103.84"/>
  1509. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="107.59" x-axis-rotation="-89.88" y="107.82"/>
  1510. <line x="83.6" y="104.77"/>
  1511. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="78.62" x-axis-rotation="-89.88" y="97.76"/>
  1512. <line x="78.66" y="78.76"/>
  1513. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="83.67" x-axis-rotation="-89.88" y="71.77"/>
  1514. <close/>
  1515. </path>
  1516. <fillstroke/>
  1517. <path>
  1518. <move x="78.18" y="72.53"/>
  1519. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="81.53" x-axis-rotation="-89.88" y="73.54"/>
  1520. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="81.46" x-axis-rotation="-89.88" y="103.54"/>
  1521. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="78.11" x-axis-rotation="-89.88" y="104.53"/>
  1522. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="78.18" x-axis-rotation="-89.88" y="72.53"/>
  1523. </path>
  1524. <fillstroke/>
  1525. <rect h="70" w="150" x="89.36" y="53.82"/>
  1526. <fillstroke/>
  1527. </foreground>
  1528. </shape>
  1529. <shape aspect="variable" h="181.67" name="Table 5" strokewidth="inherit" w="440.03">
  1530. <connections/>
  1531. <background>
  1532. <path>
  1533. <move x="254.61" y="70.76"/>
  1534. <line x="257.61" y="94.76"/>
  1535. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="253.61" x-axis-rotation="0" y="103.76"/>
  1536. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="222.61" x-axis-rotation="0" y="103.76"/>
  1537. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="218.61" x-axis-rotation="0" y="94.76"/>
  1538. <line x="221.61" y="70.76"/>
  1539. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="228.61" x-axis-rotation="0" y="65.76"/>
  1540. <line x="247.61" y="65.76"/>
  1541. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="254.61" x-axis-rotation="0" y="70.76"/>
  1542. <close/>
  1543. </path>
  1544. </background>
  1545. <foreground>
  1546. <fillstroke/>
  1547. <path>
  1548. <move x="253.83" y="65.27"/>
  1549. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="252.83" x-axis-rotation="0" y="68.62"/>
  1550. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="222.83" x-axis-rotation="0" y="68.62"/>
  1551. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="221.83" x-axis-rotation="0" y="65.27"/>
  1552. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="253.83" x-axis-rotation="0" y="65.27"/>
  1553. </path>
  1554. <fillstroke/>
  1555. <path>
  1556. <move x="306.19" y="70.35"/>
  1557. <line x="309.19" y="94.35"/>
  1558. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="305.19" x-axis-rotation="0" y="103.35"/>
  1559. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="274.19" x-axis-rotation="0" y="103.35"/>
  1560. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="270.19" x-axis-rotation="0" y="94.35"/>
  1561. <line x="273.19" y="70.35"/>
  1562. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="280.19" x-axis-rotation="0" y="65.35"/>
  1563. <line x="299.19" y="65.35"/>
  1564. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="306.19" x-axis-rotation="0" y="70.35"/>
  1565. <close/>
  1566. </path>
  1567. <fillstroke/>
  1568. <path>
  1569. <move x="305.41" y="64.86"/>
  1570. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="304.41" x-axis-rotation="0" y="68.2"/>
  1571. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="274.41" x-axis-rotation="0" y="68.2"/>
  1572. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="273.41" x-axis-rotation="0" y="64.86"/>
  1573. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="305.41" x-axis-rotation="0" y="64.86"/>
  1574. </path>
  1575. <fillstroke/>
  1576. <path>
  1577. <move x="221.55" y="153.39"/>
  1578. <line x="218.66" y="129.37"/>
  1579. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="222.7" x-axis-rotation="-179.74" y="120.39"/>
  1580. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="253.7" x-axis-rotation="-179.74" y="120.53"/>
  1581. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="257.66" x-axis-rotation="-179.74" y="129.55"/>
  1582. <line x="254.55" y="153.53"/>
  1583. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="247.53" x-axis-rotation="-179.74" y="158.5"/>
  1584. <line x="228.53" y="158.42"/>
  1585. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="221.55" x-axis-rotation="-179.74" y="153.39"/>
  1586. <close/>
  1587. </path>
  1588. <fillstroke/>
  1589. <path>
  1590. <move x="222.3" y="158.88"/>
  1591. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="223.32" x-axis-rotation="-179.74" y="155.54"/>
  1592. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="253.32" x-axis-rotation="-179.74" y="155.67"/>
  1593. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="254.3" x-axis-rotation="-179.74" y="159.02"/>
  1594. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="222.3" x-axis-rotation="-179.74" y="158.88"/>
  1595. </path>
  1596. <fillstroke/>
  1597. <path>
  1598. <move x="273.47" y="151.97"/>
  1599. <line x="270.57" y="127.96"/>
  1600. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="274.62" x-axis-rotation="-179.74" y="118.97"/>
  1601. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="305.62" x-axis-rotation="-179.74" y="119.11"/>
  1602. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="309.57" x-axis-rotation="-179.74" y="128.13"/>
  1603. <line x="306.47" y="152.12"/>
  1604. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="299.44" x-axis-rotation="-179.74" y="157.09"/>
  1605. <line x="280.44" y="157"/>
  1606. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="273.47" x-axis-rotation="-179.74" y="151.97"/>
  1607. <close/>
  1608. </path>
  1609. <fillstroke/>
  1610. <path>
  1611. <move x="274.22" y="157.46"/>
  1612. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="275.23" x-axis-rotation="-179.74" y="154.12"/>
  1613. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="305.23" x-axis-rotation="-179.74" y="154.25"/>
  1614. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="306.22" x-axis-rotation="-179.74" y="157.61"/>
  1615. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="274.22" x-axis-rotation="-179.74" y="157.46"/>
  1616. </path>
  1617. <fillstroke/>
  1618. <path>
  1619. <move x="444.12" y="127.58"/>
  1620. <line x="420.13" y="130.63"/>
  1621. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="411.12" x-axis-rotation="89.86" y="126.66"/>
  1622. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="411.05" x-axis-rotation="89.86" y="95.66"/>
  1623. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="420.04" x-axis-rotation="89.86" y="91.63"/>
  1624. <line x="444.05" y="94.58"/>
  1625. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="449.06" x-axis-rotation="89.86" y="101.57"/>
  1626. <line x="449.11" y="120.57"/>
  1627. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="444.12" x-axis-rotation="89.86" y="127.58"/>
  1628. <close/>
  1629. </path>
  1630. <fillstroke/>
  1631. <path>
  1632. <move x="449.61" y="126.79"/>
  1633. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="446.26" x-axis-rotation="89.86" y="125.8"/>
  1634. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="446.19" x-axis-rotation="89.86" y="95.8"/>
  1635. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="449.54" x-axis-rotation="89.86" y="94.79"/>
  1636. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="449.61" x-axis-rotation="89.86" y="126.79"/>
  1637. </path>
  1638. <fillstroke/>
  1639. <path>
  1640. <move x="184.34" y="94.13"/>
  1641. <line x="208.35" y="91.18"/>
  1642. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="217.34" x-axis-rotation="-89.88" y="95.2"/>
  1643. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="217.27" x-axis-rotation="-89.88" y="126.2"/>
  1644. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="208.26" x-axis-rotation="-89.88" y="130.18"/>
  1645. <line x="184.27" y="127.13"/>
  1646. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="179.29" x-axis-rotation="-89.88" y="120.12"/>
  1647. <line x="179.33" y="101.12"/>
  1648. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="184.34" x-axis-rotation="-89.88" y="94.13"/>
  1649. <close/>
  1650. </path>
  1651. <fillstroke/>
  1652. <path>
  1653. <move x="178.85" y="94.9"/>
  1654. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="182.2" x-axis-rotation="-89.88" y="95.9"/>
  1655. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="182.13" x-axis-rotation="-89.88" y="125.9"/>
  1656. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="178.78" x-axis-rotation="-89.88" y="126.9"/>
  1657. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="178.85" x-axis-rotation="-89.88" y="94.9"/>
  1658. </path>
  1659. <fillstroke/>
  1660. <path>
  1661. <move x="355.28" y="71.1"/>
  1662. <line x="358.28" y="95.1"/>
  1663. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="354.28" x-axis-rotation="0" y="104.1"/>
  1664. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="323.28" x-axis-rotation="0" y="104.1"/>
  1665. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="319.28" x-axis-rotation="0" y="95.1"/>
  1666. <line x="322.28" y="71.1"/>
  1667. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="329.28" x-axis-rotation="0" y="66.1"/>
  1668. <line x="348.28" y="66.1"/>
  1669. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="355.28" x-axis-rotation="0" y="71.1"/>
  1670. <close/>
  1671. </path>
  1672. <fillstroke/>
  1673. <path>
  1674. <move x="354.5" y="65.61"/>
  1675. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="353.5" x-axis-rotation="0" y="68.95"/>
  1676. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="323.5" x-axis-rotation="0" y="68.95"/>
  1677. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="322.5" x-axis-rotation="0" y="65.61"/>
  1678. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="354.5" x-axis-rotation="0" y="65.61"/>
  1679. </path>
  1680. <fillstroke/>
  1681. <path>
  1682. <move x="406.53" y="71.01"/>
  1683. <line x="409.53" y="95.01"/>
  1684. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="405.53" x-axis-rotation="0" y="104.01"/>
  1685. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="374.53" x-axis-rotation="0" y="104.01"/>
  1686. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="370.53" x-axis-rotation="0" y="95.01"/>
  1687. <line x="373.53" y="71.01"/>
  1688. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="380.53" x-axis-rotation="0" y="66.01"/>
  1689. <line x="399.53" y="66.01"/>
  1690. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="406.53" x-axis-rotation="0" y="71.01"/>
  1691. <close/>
  1692. </path>
  1693. <fillstroke/>
  1694. <path>
  1695. <move x="405.75" y="65.52"/>
  1696. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="404.75" x-axis-rotation="0" y="68.87"/>
  1697. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="374.75" x-axis-rotation="0" y="68.87"/>
  1698. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="373.75" x-axis-rotation="0" y="65.52"/>
  1699. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="405.75" x-axis-rotation="0" y="65.52"/>
  1700. </path>
  1701. <fillstroke/>
  1702. <path>
  1703. <move x="322.22" y="153.72"/>
  1704. <line x="319.32" y="129.71"/>
  1705. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="323.37" x-axis-rotation="-179.74" y="120.72"/>
  1706. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="354.37" x-axis-rotation="-179.74" y="120.86"/>
  1707. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="358.32" x-axis-rotation="-179.74" y="129.88"/>
  1708. <line x="355.22" y="153.87"/>
  1709. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="348.19" x-axis-rotation="-179.74" y="158.84"/>
  1710. <line x="329.19" y="158.75"/>
  1711. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="322.22" x-axis-rotation="-179.74" y="153.72"/>
  1712. <close/>
  1713. </path>
  1714. <fillstroke/>
  1715. <path>
  1716. <move x="322.97" y="159.21"/>
  1717. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="323.98" x-axis-rotation="-179.74" y="155.87"/>
  1718. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="353.98" x-axis-rotation="-179.74" y="156"/>
  1719. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="354.97" x-axis-rotation="-179.74" y="159.36"/>
  1720. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="322.97" x-axis-rotation="-179.74" y="159.21"/>
  1721. </path>
  1722. <fillstroke/>
  1723. <path>
  1724. <move x="373.8" y="152.64"/>
  1725. <line x="370.91" y="128.62"/>
  1726. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="374.95" x-axis-rotation="-179.74" y="119.64"/>
  1727. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="405.95" x-axis-rotation="-179.74" y="119.78"/>
  1728. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="409.91" x-axis-rotation="-179.74" y="128.8"/>
  1729. <line x="406.8" y="152.78"/>
  1730. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="399.78" x-axis-rotation="-179.74" y="157.75"/>
  1731. <line x="380.78" y="157.67"/>
  1732. <arc large-arc-flag="0" rx="8" ry="6" sweep-flag="1" x="373.8" x-axis-rotation="-179.74" y="152.64"/>
  1733. <close/>
  1734. </path>
  1735. <fillstroke/>
  1736. <path>
  1737. <move x="374.55" y="158.13"/>
  1738. <arc large-arc-flag="0" rx="1.5" ry="1.67" sweep-flag="1" x="375.57" x-axis-rotation="-179.74" y="154.79"/>
  1739. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="0" x="405.57" x-axis-rotation="-179.74" y="154.92"/>
  1740. <arc large-arc-flag="0" rx="1.89" ry="2.1" sweep-flag="1" x="406.55" x-axis-rotation="-179.74" y="158.27"/>
  1741. <arc large-arc-flag="0" rx="70" ry="78.13" sweep-flag="1" x="374.55" x-axis-rotation="-179.74" y="158.13"/>
  1742. </path>
  1743. <fillstroke/>
  1744. <rect h="70" w="250" x="190.03" y="76.18"/>
  1745. <fillstroke/>
  1746. </foreground>
  1747. </shape>
  1748. <shape aspect="variable" h="67" name="Toilet" strokewidth="inherit" w="50">
  1749. <connections/>
  1750. <background>
  1751. <roundrect arcsize="13.33" h="15" w="50" x="0" y="0"/>
  1752. </background>
  1753. <foreground>
  1754. <fillstroke/>
  1755. <rect h="17" w="32" x="9" y="15"/>
  1756. <fillstroke/>
  1757. <ellipse h="50" w="40" x="5" y="17"/>
  1758. <fillstroke/>
  1759. <ellipse h="30" w="24" x="13" y="29"/>
  1760. <stroke/>
  1761. <fillcolor color="#000000"/>
  1762. <ellipse h="14" w="10" x="20" y="29"/>
  1763. <fill/>
  1764. </foreground>
  1765. </shape>
  1766. <shape aspect="variable" h="40" name="Water Cooler" strokewidth="inherit" w="40">
  1767. <connections/>
  1768. <background>
  1769. <roundrect arcsize="7.5" h="40" w="40" x="0" y="0"/>
  1770. </background>
  1771. <foreground>
  1772. <fillstroke/>
  1773. <fillcolor color="#eeeeee"/>
  1774. <ellipse h="36" w="36" x="2" y="2"/>
  1775. <fillstroke/>
  1776. <ellipse h="6" w="6" x="17" y="17"/>
  1777. <stroke/>
  1778. </foreground>
  1779. </shape>
  1780. <shape aspect="variable" h="40" name="Workstation" strokewidth="inherit" w="50">
  1781. <connections/>
  1782. <background>
  1783. <rect h="18" w="40" x="5" y="22"/>
  1784. </background>
  1785. <foreground>
  1786. <fillstroke/>
  1787. <rect h="20" w="28" x="10" y="0"/>
  1788. <fillstroke/>
  1789. <rect h="15" w="50" x="0" y="2"/>
  1790. <fillstroke/>
  1791. <fillcolor color="none"/>
  1792. <rect h="10" w="20" x="7" y="27"/>
  1793. <stroke/>
  1794. <rect h="10" w="8" x="35" y="27"/>
  1795. <stroke/>
  1796. <rect h="3" w="4" x="29" y="34"/>
  1797. <stroke/>
  1798. <rect h="3" w="4" x="29" y="27"/>
  1799. <stroke/>
  1800. <path>
  1801. <move x="0" y="5"/>
  1802. <line x="50" y="5"/>
  1803. </path>
  1804. <stroke/>
  1805. <rect h="8" w="44" x="3" y="7"/>
  1806. <stroke/>
  1807. </foreground>
  1808. </shape>
  1809. </shapes>