misc.xml 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058
  1. <shapes name="mxgraph.pid.misc">
  2. <shape aspect="variable" h="97.4" name="Aerator With Sparger" strokewidth="inherit" w="35">
  3. <connections/>
  4. <background>
  5. <path>
  6. <move x="23.5" y="2.4"/>
  7. <line x="23.5" y="27.4"/>
  8. <arc large-arc-flag="0" rx="5" ry="2" sweep-flag="1" x="11.5" x-axis-rotation="0" y="27.4"/>
  9. <line x="11.5" y="2.4"/>
  10. <arc large-arc-flag="0" rx="5" ry="2" sweep-flag="1" x="23.5" x-axis-rotation="0" y="2.4"/>
  11. <close/>
  12. </path>
  13. </background>
  14. <foreground>
  15. <fillstroke/>
  16. <rect h="5" w="30" x="2.5" y="92.4"/>
  17. <fillstroke/>
  18. <rect h="57.5" w="2" x="16.5" y="29.9"/>
  19. <fillstroke/>
  20. <path>
  21. <move x="11.5" y="2.4"/>
  22. <line x="23.5" y="2.4"/>
  23. <move x="11.5" y="27.4"/>
  24. <line x="23.5" y="27.4"/>
  25. </path>
  26. <stroke/>
  27. <ellipse h="2" w="10" x="17.5" y="86.4"/>
  28. <fillstroke/>
  29. <ellipse h="2" w="10" x="7.5" y="86.4"/>
  30. <fillstroke/>
  31. <ellipse h="5" w="5" x="0" y="92.4"/>
  32. <fillstroke/>
  33. <ellipse h="5" w="5" x="30" y="92.4"/>
  34. <fillstroke/>
  35. </foreground>
  36. </shape>
  37. <shape aspect="variable" h="20" name="Air Cooler" strokewidth="inherit" w="70">
  38. <connections/>
  39. <background>
  40. <rect h="20" w="70" x="0" y="0"/>
  41. </background>
  42. <foreground>
  43. <fillstroke/>
  44. <path>
  45. <move x="10" y="14"/>
  46. <line x="60" y="6"/>
  47. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="60" x-axis-rotation="0" y="14"/>
  48. <line x="10" y="6"/>
  49. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="10" x-axis-rotation="0" y="14"/>
  50. <close/>
  51. </path>
  52. <stroke/>
  53. </foreground>
  54. </shape>
  55. <shape aspect="variable" h="65" name="Air Filter" strokewidth="inherit" w="40">
  56. <connections/>
  57. <background>
  58. <rect h="65" w="40" x="0" y="0"/>
  59. </background>
  60. <foreground>
  61. <fillstroke/>
  62. <dashpattern pattern="2 2"/>
  63. <dashed dashed="1"/>
  64. <path>
  65. <move x="0" y="0"/>
  66. <line x="40" y="65"/>
  67. </path>
  68. <stroke/>
  69. </foreground>
  70. </shape>
  71. <shape aspect="variable" h="106" name="Air Separator" strokewidth="inherit" w="65.5">
  72. <connections>
  73. <constraint name="W" perimeter="0" x="0" y="0.78"/>
  74. <constraint name="E" perimeter="0" x="1" y="0.22"/>
  75. </connections>
  76. <background>
  77. <rect h="106" w="10" x="28" y="0"/>
  78. </background>
  79. <foreground>
  80. <fillstroke/>
  81. <path>
  82. <move x="53" y="23"/>
  83. <line x="61.5" y="23"/>
  84. <move x="61.5" y="13"/>
  85. <line x="61.5" y="33"/>
  86. <move x="65.5" y="13"/>
  87. <line x="65.5" y="33"/>
  88. <move x="13" y="83"/>
  89. <line x="4.5" y="83"/>
  90. <move x="4.5" y="73"/>
  91. <line x="4.5" y="93"/>
  92. <move x="0" y="73"/>
  93. <line x="0" y="93"/>
  94. <move x="53" y="13"/>
  95. <line x="53" y="93"/>
  96. <arc large-arc-flag="0" rx="13" ry="5" sweep-flag="1" x="13" x-axis-rotation="0" y="93"/>
  97. <line x="13" y="13"/>
  98. <arc large-arc-flag="0" rx="13" ry="5" sweep-flag="1" x="53" x-axis-rotation="0" y="13"/>
  99. <close/>
  100. </path>
  101. <fillstroke/>
  102. </foreground>
  103. </shape>
  104. <shape aspect="variable" h="32" name="Back Draft Damper" strokewidth="inherit" w="62">
  105. <connections/>
  106. <background>
  107. <rect h="30" w="60" x="2" y="2"/>
  108. </background>
  109. <foreground>
  110. <fillstroke/>
  111. <path>
  112. <move x="2" y="2"/>
  113. <line x="62" y="32"/>
  114. </path>
  115. <stroke/>
  116. <fillcolor color="#000000"/>
  117. <ellipse h="4" w="4" x="0" y="0"/>
  118. <fillstroke/>
  119. </foreground>
  120. </shape>
  121. <shape aspect="variable" h="100" name="Bag Filling Machine" strokewidth="inherit" w="80">
  122. <connections/>
  123. <background>
  124. <rect h="100" w="80" x="0" y="0"/>
  125. </background>
  126. <foreground>
  127. <fillstroke/>
  128. <rect h="35" w="25" x="10" y="20"/>
  129. <stroke/>
  130. <rect h="35" w="25" x="45" y="20"/>
  131. <stroke/>
  132. <path>
  133. <move x="75" y="80"/>
  134. <line x="20" y="80"/>
  135. <move x="22.5" y="19.5"/>
  136. <line x="15" y="10"/>
  137. <line x="30" y="10"/>
  138. <close/>
  139. <move x="22.5" y="10"/>
  140. <line x="22.5" y="20"/>
  141. <move x="57.5" y="19.5"/>
  142. <line x="50" y="10"/>
  143. <line x="65" y="10"/>
  144. <close/>
  145. <move x="57.5" y="10"/>
  146. <line x="57.5" y="20"/>
  147. </path>
  148. <stroke/>
  149. <fillcolor color="#000000"/>
  150. <path>
  151. <move x="20" y="77"/>
  152. <line x="20" y="83"/>
  153. <line x="9" y="80"/>
  154. <close/>
  155. </path>
  156. <fillstroke/>
  157. </foreground>
  158. </shape>
  159. <shape aspect="variable" h="98" name="Belt Skimmer" strokewidth="inherit" w="70">
  160. <connections/>
  161. <background>
  162. <rect h="25" w="40" x="0" y="0"/>
  163. </background>
  164. <foreground>
  165. <fillstroke/>
  166. <ellipse h="16" w="16" x="12" y="4.5"/>
  167. <stroke/>
  168. <ellipse h="16" w="16" x="12" y="82"/>
  169. <fillstroke/>
  170. <path>
  171. <move x="12" y="12.5"/>
  172. <line x="12" y="90"/>
  173. <move x="28" y="12.5"/>
  174. <line x="28" y="90"/>
  175. <move x="70" y="20"/>
  176. <line x="40" y="8"/>
  177. <line x="40" y="16"/>
  178. <line x="70" y="28"/>
  179. </path>
  180. <fillstroke/>
  181. </foreground>
  182. </shape>
  183. <shape aspect="variable" h="65" name="Bin" strokewidth="inherit" w="100">
  184. <connections/>
  185. <background>
  186. <path>
  187. <move x="0" y="0"/>
  188. <line x="100" y="0"/>
  189. <line x="100" y="40"/>
  190. <line x="75" y="65"/>
  191. <line x="25" y="65"/>
  192. <line x="0" y="40"/>
  193. <close/>
  194. </path>
  195. </background>
  196. <foreground>
  197. <fillstroke/>
  198. </foreground>
  199. </shape>
  200. <shape aspect="variable" h="120" name="Boiler (Dome)" strokewidth="inherit" w="100">
  201. <connections>
  202. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  203. <constraint name="W" perimeter="0" x="0" y="0.3"/>
  204. </connections>
  205. <background>
  206. <rect h="100" w="100" x="0" y="20"/>
  207. </background>
  208. <foreground>
  209. <fillstroke/>
  210. <path>
  211. <move x="30" y="20"/>
  212. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="20"/>
  213. </path>
  214. <fillstroke/>
  215. </foreground>
  216. </shape>
  217. <shape aspect="variable" h="120" name="Boiler (Dome, Hot Liquid)" strokewidth="inherit" w="100">
  218. <connections>
  219. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  220. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  221. <constraint name="W" perimeter="0" x="0" y="0.6"/>
  222. <constraint name="E" perimeter="0" x="1" y="0.6"/>
  223. </connections>
  224. <background>
  225. <rect h="100" w="100" x="0" y="20"/>
  226. </background>
  227. <foreground>
  228. <fillstroke/>
  229. <path>
  230. <move x="30" y="20"/>
  231. <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="20"/>
  232. <move x="100" y="20"/>
  233. <line x="0" y="120"/>
  234. </path>
  235. <fillstroke/>
  236. </foreground>
  237. </shape>
  238. <shape aspect="variable" h="80" name="Box Truck" strokewidth="inherit" w="120">
  239. <connections/>
  240. <background>
  241. <rect h="60" w="120" x="0" y="0"/>
  242. </background>
  243. <foreground>
  244. <fillstroke/>
  245. <ellipse h="20" w="20" x="15" y="60"/>
  246. <fillstroke/>
  247. <ellipse h="20" w="20" x="85" y="60"/>
  248. <fillstroke/>
  249. </foreground>
  250. </shape>
  251. <shape aspect="variable" h="200" name="Bucket Elevator" strokewidth="inherit" w="65">
  252. <connections/>
  253. <background>
  254. <path>
  255. <move x="25" y="0"/>
  256. <line x="45" y="0"/>
  257. <line x="45" y="185"/>
  258. <line x="65" y="185"/>
  259. <line x="45" y="200"/>
  260. <line x="25" y="200"/>
  261. <line x="25" y="15"/>
  262. <line x="0" y="15"/>
  263. <close/>
  264. </path>
  265. </background>
  266. <foreground>
  267. <fillstroke/>
  268. </foreground>
  269. </shape>
  270. <shape aspect="variable" h="115.5" name="Chiller" strokewidth="inherit" w="156.69">
  271. <connections>
  272. <constraint name="NE" perimeter="0" x="0.885" y="0"/>
  273. <constraint name="NW" perimeter="0" x="0.18" y="0"/>
  274. <constraint name="W" perimeter="0" x="0" y="0.69"/>
  275. <constraint name="SW" perimeter="0" x="0" y="0.915"/>
  276. </connections>
  277. <background>
  278. <path>
  279. <move x="149" y="12.5"/>
  280. <arc large-arc-flag="1" rx="5" ry="13" sweep-flag="1" x="149" x-axis-rotation="0" y="52.5"/>
  281. <line x="19" y="52.5"/>
  282. <arc large-arc-flag="1" rx="5" ry="13" sweep-flag="1" x="19" x-axis-rotation="0" y="12.5"/>
  283. <close/>
  284. </path>
  285. </background>
  286. <foreground>
  287. <fillstroke/>
  288. <path>
  289. <move x="149" y="72.5"/>
  290. <arc large-arc-flag="1" rx="5" ry="13" sweep-flag="1" x="149" x-axis-rotation="0" y="112.5"/>
  291. <line x="19" y="112.5"/>
  292. <arc large-arc-flag="1" rx="5" ry="13" sweep-flag="1" x="19" x-axis-rotation="0" y="72.5"/>
  293. <close/>
  294. </path>
  295. <fillstroke/>
  296. <path>
  297. <move x="4" y="79.5"/>
  298. <line x="13" y="79.5"/>
  299. <move x="4" y="105.5"/>
  300. <line x="13" y="105.5"/>
  301. <move x="4" y="69.5"/>
  302. <line x="4" y="89.5"/>
  303. <move x="0" y="69.5"/>
  304. <line x="0" y="89.5"/>
  305. <move x="4" y="95.5"/>
  306. <line x="4" y="115.5"/>
  307. <move x="0" y="95.5"/>
  308. <line x="0" y="115.5"/>
  309. <move x="139" y="12.5"/>
  310. <line x="139" y="4"/>
  311. <move x="129" y="4"/>
  312. <line x="149" y="4"/>
  313. <move x="129" y="0"/>
  314. <line x="149" y="0"/>
  315. <move x="29" y="12.5"/>
  316. <line x="29" y="4"/>
  317. <move x="19" y="4"/>
  318. <line x="39" y="4"/>
  319. <move x="19" y="0"/>
  320. <line x="39" y="0"/>
  321. </path>
  322. <stroke/>
  323. <rect h="20" w="10" x="34" y="52.5"/>
  324. <fillstroke/>
  325. <rect h="20" w="10" x="119" y="52.5"/>
  326. <fillstroke/>
  327. </foreground>
  328. </shape>
  329. <shape aspect="variable" h="100" name="Combustion Chamber" strokewidth="inherit" w="130">
  330. <connections>
  331. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  332. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  333. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  334. </connections>
  335. <background>
  336. <rect h="100" w="130" x="0" y="0"/>
  337. </background>
  338. <foreground>
  339. <fillstroke/>
  340. <rect h="10" w="130" x="0" y="90"/>
  341. <stroke/>
  342. <path>
  343. <move x="25" y="90"/>
  344. <line x="65" y="15"/>
  345. <line x="105" y="90"/>
  346. <close/>
  347. <move x="40" y="90"/>
  348. <line x="65" y="45"/>
  349. <line x="90" y="90"/>
  350. </path>
  351. <stroke/>
  352. </foreground>
  353. </shape>
  354. <shape aspect="variable" h="60" name="Conveyor" strokewidth="inherit" w="200">
  355. <connections>
  356. <constraint name="N" perimeter="0" x="0.1" y="0"/>
  357. <constraint name="S" perimeter="0" x="0.9" y="1"/>
  358. </connections>
  359. <background>
  360. <rect h="60" w="200" x="0" y="0"/>
  361. </background>
  362. <foreground>
  363. <fillstroke/>
  364. <fillcolor color="#000000"/>
  365. <path>
  366. <move x="20" y="30"/>
  367. <line x="115" y="30"/>
  368. <move x="115" y="20"/>
  369. <line x="115" y="40"/>
  370. <line x="150" y="30"/>
  371. <close/>
  372. </path>
  373. <fillstroke/>
  374. </foreground>
  375. </shape>
  376. <shape aspect="variable" h="50" name="Conveyor (Belt)" strokewidth="inherit" w="200">
  377. <connections>
  378. <constraint name="N" perimeter="0" x="0.125" y="0"/>
  379. <constraint name="S" perimeter="0" x="1" y="0.5"/>
  380. </connections>
  381. <background>
  382. <rect h="50" w="150" x="25" y="0"/>
  383. </background>
  384. <foreground>
  385. <fillstroke/>
  386. <ellipse h="50" w="50" x="0" y="0"/>
  387. <fillstroke/>
  388. <ellipse h="50" w="50" x="150" y="0"/>
  389. <fillstroke/>
  390. </foreground>
  391. </shape>
  392. <shape aspect="variable" h="80" name="Conveyor (Belt, Closed)" strokewidth="inherit" w="240">
  393. <connections>
  394. <constraint name="N" perimeter="0" x="0.19" y="0"/>
  395. <constraint name="S" perimeter="0" x="1" y="0.5"/>
  396. </connections>
  397. <background>
  398. <rect h="80" w="240" x="0" y="0"/>
  399. </background>
  400. <foreground>
  401. <fillstroke/>
  402. <rect h="50" w="150" x="45" y="15"/>
  403. <fillstroke/>
  404. <ellipse h="50" w="50" x="20" y="15"/>
  405. <fillstroke/>
  406. <ellipse h="50" w="50" x="170" y="15"/>
  407. <fillstroke/>
  408. </foreground>
  409. </shape>
  410. <shape aspect="variable" h="80" name="Conveyor (Belt, Closed, Reversible)" strokewidth="inherit" w="240">
  411. <connections>
  412. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  413. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  414. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  415. </connections>
  416. <background>
  417. <rect h="80" w="240" x="0" y="0"/>
  418. </background>
  419. <foreground>
  420. <fillstroke/>
  421. <rect h="50" w="150" x="45" y="15"/>
  422. <stroke/>
  423. <ellipse h="50" w="50" x="20" y="15"/>
  424. <fillstroke/>
  425. <ellipse h="50" w="50" x="170" y="15"/>
  426. <fillstroke/>
  427. <path>
  428. <move x="105" y="40"/>
  429. <line x="135" y="40"/>
  430. </path>
  431. <stroke/>
  432. <fillcolor color="#000000"/>
  433. <path>
  434. <move x="135" y="35"/>
  435. <line x="135" y="45"/>
  436. <line x="151.2" y="40"/>
  437. <close/>
  438. <move x="105" y="35"/>
  439. <line x="105" y="45"/>
  440. <line x="90" y="40"/>
  441. <close/>
  442. </path>
  443. <fillstroke/>
  444. </foreground>
  445. </shape>
  446. <shape aspect="variable" h="80" name="Conveyor (Chain, Closed)" strokewidth="inherit" w="240">
  447. <connections>
  448. <constraint name="N" perimeter="0" x="0.19" y="0"/>
  449. <constraint name="S" perimeter="0" x="0.81" y="1"/>
  450. </connections>
  451. <background>
  452. <save/>
  453. <rect h="80" w="240" x="0" y="0"/>
  454. </background>
  455. <foreground>
  456. <fillstroke/>
  457. <dashpattern pattern="2 2"/>
  458. <dashed dashed="1"/>
  459. <rect h="50" w="150" x="45" y="15"/>
  460. <stroke/>
  461. <restore/>
  462. <rect/>
  463. <stroke/>
  464. <ellipse h="50" w="50" x="20" y="15"/>
  465. <fillstroke/>
  466. <ellipse h="50" w="50" x="170" y="15"/>
  467. <fillstroke/>
  468. </foreground>
  469. </shape>
  470. <shape aspect="variable" h="80" name="Conveyor (Screw, Closed)" strokewidth="inherit" w="220">
  471. <connections>
  472. <constraint name="N" perimeter="0" x="0.1" y="0"/>
  473. <constraint name="S" perimeter="0" x="0.94" y="1"/>
  474. </connections>
  475. <background>
  476. <rect h="80" w="210" x="10" y="0"/>
  477. </background>
  478. <foreground>
  479. <fillstroke/>
  480. <path>
  481. <move x="35" y="40"/>
  482. <line x="50" y="15"/>
  483. <line x="80" y="65"/>
  484. <line x="95" y="40"/>
  485. <move x="0" y="40"/>
  486. <line x="205" y="40"/>
  487. <move x="130" y="40"/>
  488. <line x="145" y="15"/>
  489. <line x="175" y="65"/>
  490. <line x="190" y="40"/>
  491. </path>
  492. <stroke/>
  493. </foreground>
  494. </shape>
  495. <shape aspect="variable" h="80" name="Conveyor (Vibrating, Closed)" strokewidth="inherit" w="240">
  496. <connections>
  497. <constraint name="N" perimeter="0" x="0.1" y="0"/>
  498. <constraint name="S" perimeter="0" x="0.94" y="1"/>
  499. </connections>
  500. <background>
  501. <rect h="80" w="240" x="0" y="0"/>
  502. </background>
  503. <foreground>
  504. <fillstroke/>
  505. <path>
  506. <move x="140" y="30"/>
  507. <line x="120" y="30"/>
  508. <move x="100" y="50"/>
  509. <line x="120" y="50"/>
  510. </path>
  511. <stroke/>
  512. <fillcolor color="#000000"/>
  513. <path>
  514. <move x="120" y="25"/>
  515. <line x="120" y="35"/>
  516. <line x="100" y="30"/>
  517. <close/>
  518. <move x="120" y="45"/>
  519. <line x="120" y="55"/>
  520. <line x="140" y="50"/>
  521. <close/>
  522. </path>
  523. <fillstroke/>
  524. </foreground>
  525. </shape>
  526. <shape aspect="variable" h="90" name="Cooler" strokewidth="inherit" w="85">
  527. <connections/>
  528. <background>
  529. <ellipse h="80" w="80" x="0" y="5"/>
  530. </background>
  531. <foreground>
  532. <fillstroke/>
  533. <path>
  534. <move x="10" y="0"/>
  535. <line x="10" y="90"/>
  536. <move x="85" y="15"/>
  537. <line x="50" y="15"/>
  538. <line x="50" y="35"/>
  539. <line x="65" y="35"/>
  540. <line x="65" y="60"/>
  541. <line x="50" y="60"/>
  542. <line x="50" y="80"/>
  543. <line x="85" y="80"/>
  544. </path>
  545. <stroke/>
  546. </foreground>
  547. </shape>
  548. <shape aspect="variable" h="120" name="Cooling Tower" strokewidth="inherit" w="100">
  549. <connections>
  550. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  551. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  552. </connections>
  553. <background>
  554. <path>
  555. <move x="0" y="120"/>
  556. <line x="0" y="100"/>
  557. <line x="25" y="0"/>
  558. <line x="75" y="0"/>
  559. <line x="100" y="100"/>
  560. <line x="100" y="120"/>
  561. <close/>
  562. <move x="100" y="100"/>
  563. <line x="0" y="100"/>
  564. </path>
  565. </background>
  566. <foreground>
  567. <fillstroke/>
  568. </foreground>
  569. </shape>
  570. <shape aspect="variable" h="120" name="Cooling Tower (Dry, Forced Draught)" strokewidth="inherit" w="100">
  571. <connections>
  572. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  573. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  574. </connections>
  575. <background>
  576. <path>
  577. <move x="0" y="120"/>
  578. <line x="0" y="100"/>
  579. <line x="25" y="0"/>
  580. <line x="75" y="0"/>
  581. <line x="100" y="100"/>
  582. <line x="100" y="120"/>
  583. <close/>
  584. </path>
  585. </background>
  586. <foreground>
  587. <fillstroke/>
  588. <path>
  589. <move x="100" y="100"/>
  590. <line x="0" y="100"/>
  591. <move x="0" y="110"/>
  592. <line x="100" y="110"/>
  593. <move x="50" y="105"/>
  594. <line x="50" y="115"/>
  595. <move x="37.5" y="105"/>
  596. <line x="37.5" y="115"/>
  597. <move x="25" y="105"/>
  598. <line x="25" y="115"/>
  599. <move x="12.5" y="105"/>
  600. <line x="12.5" y="115"/>
  601. <move x="62.5" y="105"/>
  602. <line x="62.5" y="115"/>
  603. <move x="75" y="105"/>
  604. <line x="75" y="115"/>
  605. <move x="87.5" y="105"/>
  606. <line x="87.5" y="115"/>
  607. <move x="42" y="62.5"/>
  608. <line x="36" y="81"/>
  609. <move x="58" y="62.5"/>
  610. <line x="64" y="81"/>
  611. </path>
  612. <stroke/>
  613. <ellipse h="30" w="30" x="35" y="60"/>
  614. <stroke/>
  615. </foreground>
  616. </shape>
  617. <shape aspect="variable" h="120" name="Cooling Tower (Dry, Induced Draught)" strokewidth="inherit" w="100">
  618. <connections>
  619. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  620. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  621. </connections>
  622. <background>
  623. <path>
  624. <move x="0" y="120"/>
  625. <line x="0" y="100"/>
  626. <line x="25" y="0"/>
  627. <line x="75" y="0"/>
  628. <line x="100" y="100"/>
  629. <line x="100" y="120"/>
  630. <close/>
  631. </path>
  632. </background>
  633. <foreground>
  634. <fillstroke/>
  635. <path>
  636. <move x="100" y="100"/>
  637. <line x="0" y="100"/>
  638. <move x="0" y="110"/>
  639. <line x="100" y="110"/>
  640. <move x="50" y="105"/>
  641. <line x="50" y="115"/>
  642. <move x="37.5" y="105"/>
  643. <line x="37.5" y="115"/>
  644. <move x="25" y="105"/>
  645. <line x="25" y="115"/>
  646. <move x="12.5" y="105"/>
  647. <line x="12.5" y="115"/>
  648. <move x="62.5" y="105"/>
  649. <line x="62.5" y="115"/>
  650. <move x="75" y="105"/>
  651. <line x="75" y="115"/>
  652. <move x="87.5" y="105"/>
  653. <line x="87.5" y="115"/>
  654. <move x="42" y="12.5"/>
  655. <line x="36" y="31"/>
  656. <move x="58" y="12.5"/>
  657. <line x="64" y="31"/>
  658. </path>
  659. <stroke/>
  660. <ellipse h="30" w="30" x="35" y="10"/>
  661. <stroke/>
  662. </foreground>
  663. </shape>
  664. <shape aspect="variable" h="120" name="Cooling Tower (Dry, Natural Draught)" strokewidth="inherit" w="100">
  665. <connections>
  666. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  667. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  668. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  669. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  670. </connections>
  671. <background>
  672. <path>
  673. <move x="0" y="120"/>
  674. <line x="0" y="100"/>
  675. <line x="25" y="0"/>
  676. <line x="75" y="0"/>
  677. <line x="100" y="100"/>
  678. <line x="100" y="120"/>
  679. <close/>
  680. </path>
  681. </background>
  682. <foreground>
  683. <fillstroke/>
  684. <path>
  685. <move x="100" y="100"/>
  686. <line x="0" y="100"/>
  687. <move x="0" y="110"/>
  688. <line x="100" y="110"/>
  689. <move x="50" y="105"/>
  690. <line x="50" y="115"/>
  691. <move x="37.5" y="105"/>
  692. <line x="37.5" y="115"/>
  693. <move x="25" y="105"/>
  694. <line x="25" y="115"/>
  695. <move x="12.5" y="105"/>
  696. <line x="12.5" y="115"/>
  697. <move x="62.5" y="105"/>
  698. <line x="62.5" y="115"/>
  699. <move x="75" y="105"/>
  700. <line x="75" y="115"/>
  701. <move x="87.5" y="105"/>
  702. <line x="87.5" y="115"/>
  703. </path>
  704. <stroke/>
  705. </foreground>
  706. </shape>
  707. <shape aspect="variable" h="120" name="Cooling Tower (Wet, Forced Draught)" strokewidth="inherit" w="100">
  708. <connections>
  709. <constraint name="W" perimeter="0" x="0.14" y="0.375"/>
  710. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  711. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  712. </connections>
  713. <background>
  714. <path>
  715. <move x="0" y="120"/>
  716. <line x="0" y="100"/>
  717. <line x="25" y="0"/>
  718. <line x="75" y="0"/>
  719. <line x="100" y="100"/>
  720. <line x="100" y="120"/>
  721. <close/>
  722. </path>
  723. </background>
  724. <foreground>
  725. <fillstroke/>
  726. <path>
  727. <move x="100" y="100"/>
  728. <line x="0" y="100"/>
  729. <move x="14" y="45"/>
  730. <line x="50" y="45"/>
  731. <line x="50" y="55"/>
  732. <move x="40" y="55"/>
  733. <line x="50" y="45"/>
  734. <line x="60" y="55"/>
  735. <move x="42" y="62.5"/>
  736. <line x="36" y="81"/>
  737. <move x="58" y="62.5"/>
  738. <line x="64" y="81"/>
  739. </path>
  740. <stroke/>
  741. <ellipse h="30" w="30" x="35" y="60"/>
  742. <stroke/>
  743. </foreground>
  744. </shape>
  745. <shape aspect="variable" h="120" name="Cooling Tower (Wet, Induced Draught)" strokewidth="inherit" w="100">
  746. <connections>
  747. <constraint name="W" perimeter="0" x="0.14" y="0.375"/>
  748. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  749. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  750. </connections>
  751. <background>
  752. <path>
  753. <move x="0" y="120"/>
  754. <line x="0" y="100"/>
  755. <line x="25" y="0"/>
  756. <line x="75" y="0"/>
  757. <line x="100" y="100"/>
  758. <line x="100" y="120"/>
  759. <close/>
  760. </path>
  761. </background>
  762. <foreground>
  763. <fillstroke/>
  764. <path>
  765. <move x="100" y="100"/>
  766. <line x="0" y="100"/>
  767. <move x="14" y="45"/>
  768. <line x="50" y="45"/>
  769. <line x="50" y="55"/>
  770. <move x="40" y="55"/>
  771. <line x="50" y="45"/>
  772. <line x="60" y="55"/>
  773. <move x="58" y="12.5"/>
  774. <line x="64" y="31"/>
  775. <move x="42" y="12.5"/>
  776. <line x="36" y="31"/>
  777. </path>
  778. <stroke/>
  779. <ellipse h="30" w="30" x="35" y="10"/>
  780. <stroke/>
  781. </foreground>
  782. </shape>
  783. <shape aspect="variable" h="120" name="Cooling Tower (Wet, Natural Draught)" strokewidth="inherit" w="100">
  784. <connections>
  785. <constraint name="W" perimeter="0" x="0.14" y="0.375"/>
  786. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  787. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  788. </connections>
  789. <background>
  790. <path>
  791. <move x="0" y="120"/>
  792. <line x="0" y="100"/>
  793. <line x="25" y="0"/>
  794. <line x="75" y="0"/>
  795. <line x="100" y="100"/>
  796. <line x="100" y="120"/>
  797. <close/>
  798. </path>
  799. </background>
  800. <foreground>
  801. <fillstroke/>
  802. <path>
  803. <move x="100" y="100"/>
  804. <line x="0" y="100"/>
  805. <move x="14" y="45"/>
  806. <line x="50" y="45"/>
  807. <line x="50" y="55"/>
  808. <move x="40" y="55"/>
  809. <line x="50" y="45"/>
  810. <line x="60" y="55"/>
  811. </path>
  812. <stroke/>
  813. </foreground>
  814. </shape>
  815. <shape aspect="variable" h="120" name="Cooling Tower (Wet-Dry, Natural Draught)" strokewidth="inherit" w="100">
  816. <connections>
  817. <constraint name="W" perimeter="0" x="0.14" y="0.375"/>
  818. <constraint name="SW" perimeter="0" x="0" y="0.92"/>
  819. <constraint name="SE" perimeter="0" x="1" y="0.92"/>
  820. </connections>
  821. <background>
  822. <path>
  823. <move x="0" y="120"/>
  824. <line x="0" y="100"/>
  825. <line x="25" y="0"/>
  826. <line x="75" y="0"/>
  827. <line x="100" y="100"/>
  828. <line x="100" y="120"/>
  829. <close/>
  830. </path>
  831. </background>
  832. <foreground>
  833. <fillstroke/>
  834. <path>
  835. <move x="100" y="100"/>
  836. <line x="0" y="100"/>
  837. <move x="14" y="45"/>
  838. <line x="50" y="45"/>
  839. <line x="50" y="55"/>
  840. <move x="40" y="55"/>
  841. <line x="50" y="45"/>
  842. <line x="60" y="55"/>
  843. <move x="0" y="110"/>
  844. <line x="100" y="110"/>
  845. <move x="50" y="105"/>
  846. <line x="50" y="115"/>
  847. <move x="37.5" y="105"/>
  848. <line x="37.5" y="115"/>
  849. <move x="25" y="105"/>
  850. <line x="25" y="115"/>
  851. <move x="12.5" y="105"/>
  852. <line x="12.5" y="115"/>
  853. <move x="62.5" y="105"/>
  854. <line x="62.5" y="115"/>
  855. <move x="75" y="105"/>
  856. <line x="75" y="115"/>
  857. <move x="87.5" y="105"/>
  858. <line x="87.5" y="115"/>
  859. </path>
  860. <stroke/>
  861. </foreground>
  862. </shape>
  863. <shape aspect="variable" h="100" name="Covered Gas Vent" strokewidth="inherit" w="80">
  864. <connections/>
  865. <background>
  866. <path>
  867. <move x="0" y="40"/>
  868. <line x="40" y="0"/>
  869. <line x="80" y="40"/>
  870. <move x="40" y="100"/>
  871. <line x="40" y="20"/>
  872. </path>
  873. </background>
  874. <foreground>
  875. <stroke/>
  876. </foreground>
  877. </shape>
  878. <shape aspect="variable" h="100" name="Crane" strokewidth="inherit" w="100">
  879. <connections/>
  880. <background>
  881. <rect h="100" w="100" x="0" y="0"/>
  882. </background>
  883. <foreground>
  884. <fillstroke/>
  885. <path>
  886. <move x="50" y="10"/>
  887. <line x="50" y="25"/>
  888. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="35" x-axis-rotation="0" y="40"/>
  889. </path>
  890. <stroke/>
  891. </foreground>
  892. </shape>
  893. <shape aspect="variable" h="70" name="Curved Gas Vent" strokewidth="inherit" w="30">
  894. <connections/>
  895. <background>
  896. <path>
  897. <move x="0" y="70"/>
  898. <line x="0" y="15"/>
  899. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="30" x-axis-rotation="0" y="15"/>
  900. </path>
  901. </background>
  902. <foreground>
  903. <stroke/>
  904. </foreground>
  905. </shape>
  906. <shape aspect="variable" h="80" name="Cyclone" strokewidth="inherit" w="100">
  907. <connections>
  908. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  909. <constraint name="W" perimeter="0" x="0" y="0.12"/>
  910. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  911. </connections>
  912. <background>
  913. <path>
  914. <move x="0" y="0"/>
  915. <line x="0" y="20"/>
  916. <line x="50" y="80"/>
  917. <line x="100" y="20"/>
  918. <line x="100" y="0"/>
  919. <close/>
  920. </path>
  921. </background>
  922. <foreground>
  923. <fillstroke/>
  924. </foreground>
  925. </shape>
  926. <shape aspect="variable" h="100" name="Dryer" strokewidth="inherit" w="80">
  927. <connections/>
  928. <background>
  929. <path>
  930. <move x="15" y="100"/>
  931. <line x="0" y="85"/>
  932. <line x="0" y="0"/>
  933. <line x="80" y="0"/>
  934. <line x="80" y="85"/>
  935. <line x="65" y="100"/>
  936. <close/>
  937. </path>
  938. </background>
  939. <foreground>
  940. <fillstroke/>
  941. </foreground>
  942. </shape>
  943. <shape aspect="variable" h="250" name="Elevator (Bucket)" strokewidth="inherit" w="160">
  944. <connections>
  945. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  946. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  947. </connections>
  948. <background>
  949. <rect h="250" w="160" x="0" y="0"/>
  950. </background>
  951. <foreground>
  952. <fillstroke/>
  953. <rect h="180" w="40" x="60" y="40"/>
  954. <stroke/>
  955. <path>
  956. <move x="100" y="40"/>
  957. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="140" x-axis-rotation="0" y="80"/>
  958. <line x="100" y="80"/>
  959. <close/>
  960. <move x="60" y="180"/>
  961. <line x="60" y="220"/>
  962. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="20" x-axis-rotation="0" y="180"/>
  963. <close/>
  964. </path>
  965. <stroke/>
  966. <ellipse h="40" w="40" x="60" y="20"/>
  967. <fillstroke/>
  968. <ellipse h="40" w="40" x="60" y="200"/>
  969. <fillstroke/>
  970. </foreground>
  971. </shape>
  972. <shape aspect="variable" h="250" name="Elevator (Bucket, Z-Form)" strokewidth="inherit" w="430">
  973. <connections>
  974. <constraint name="W" perimeter="0" x="0.08" y="0.72"/>
  975. <constraint name="E" perimeter="0" x="0.92" y="0.28"/>
  976. </connections>
  977. <background>
  978. <path>
  979. <move x="0" y="180"/>
  980. <line x="180" y="180"/>
  981. <line x="180" y="0"/>
  982. <line x="430" y="0"/>
  983. <line x="430" y="70"/>
  984. <line x="250" y="70"/>
  985. <line x="250" y="250"/>
  986. <line x="0" y="250"/>
  987. <close/>
  988. </path>
  989. </background>
  990. <foreground>
  991. <fillstroke/>
  992. <rect h="180" w="40" x="195" y="35"/>
  993. <stroke/>
  994. <rect h="40" w="180" x="215" y="15"/>
  995. <stroke/>
  996. <rect h="40" w="180" x="35" y="195"/>
  997. <stroke/>
  998. <ellipse h="40" w="40" x="375" y="15"/>
  999. <fillstroke/>
  1000. <ellipse h="40" w="40" x="15" y="195"/>
  1001. <fillstroke/>
  1002. <ellipse h="40" w="40" x="195" y="15"/>
  1003. <fillstroke/>
  1004. <ellipse h="40" w="40" x="195" y="195"/>
  1005. <fillstroke/>
  1006. </foreground>
  1007. </shape>
  1008. <shape aspect="variable" h="100" name="Fan" strokewidth="inherit" w="100">
  1009. <connections>
  1010. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1011. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1012. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1013. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1014. <constraint name="NW" perimeter="0" x="0.145" y="0.145"/>
  1015. <constraint name="SW" perimeter="0" x="0.145" y="0.855"/>
  1016. <constraint name="NE" perimeter="0" x="0.855" y="0.145"/>
  1017. <constraint name="SE" perimeter="0" x="0.855" y="0.855"/>
  1018. </connections>
  1019. <background>
  1020. <ellipse h="100" w="100" x="0" y="0"/>
  1021. </background>
  1022. <foreground>
  1023. <fillstroke/>
  1024. <path>
  1025. <move x="30" y="4.5"/>
  1026. <line x="97" y="33"/>
  1027. <move x="30" y="95.5"/>
  1028. <line x="97" y="67"/>
  1029. <move x="42.28" y="36.55"/>
  1030. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="49.75" x-axis-rotation="49.48" y="49.9"/>
  1031. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="37.72" x-axis-rotation="49.48" y="40.45"/>
  1032. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="30.25" x-axis-rotation="49.48" y="27.1"/>
  1033. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="42.28" x-axis-rotation="49.48" y="36.55"/>
  1034. <close/>
  1035. <move x="37.7" y="59.73"/>
  1036. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="49.66" x-axis-rotation="-49.91" y="50.19"/>
  1037. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="42.3" x-axis-rotation="-49.91" y="63.6"/>
  1038. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="30.34" x-axis-rotation="-49.91" y="73.14"/>
  1039. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="37.7" x-axis-rotation="-49.91" y="59.73"/>
  1040. <close/>
  1041. </path>
  1042. <stroke/>
  1043. <ellipse h="6" w="30" x="50" y="47"/>
  1044. <stroke/>
  1045. </foreground>
  1046. </shape>
  1047. <shape aspect="variable" h="8" name="Fan 2" strokewidth="inherit" w="58">
  1048. <connections/>
  1049. <background>
  1050. <path>
  1051. <move x="4" y="8"/>
  1052. <line x="54" y="0"/>
  1053. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="1" x="54" x-axis-rotation="0" y="8"/>
  1054. <line x="4" y="0"/>
  1055. <arc large-arc-flag="1" rx="4" ry="4" sweep-flag="0" x="4" x-axis-rotation="0" y="8"/>
  1056. <close/>
  1057. </path>
  1058. </background>
  1059. <foreground>
  1060. <fillstroke/>
  1061. </foreground>
  1062. </shape>
  1063. <shape aspect="variable" h="100" name="Filter" strokewidth="inherit" w="100">
  1064. <connections>
  1065. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1066. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1067. </connections>
  1068. <background>
  1069. <rect h="100" w="100" x="0" y="0"/>
  1070. </background>
  1071. <foreground>
  1072. <fillstroke/>
  1073. <dashpattern pattern="2 2"/>
  1074. <dashed dashed="1"/>
  1075. <path>
  1076. <move x="100" y="0"/>
  1077. <line x="0" y="100"/>
  1078. </path>
  1079. <stroke/>
  1080. </foreground>
  1081. </shape>
  1082. <shape aspect="variable" h="100" name="Filter 2" strokewidth="inherit" w="100">
  1083. <connections>
  1084. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1085. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1086. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1087. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1088. </connections>
  1089. <background>
  1090. <rect h="100" w="100" x="0" y="0"/>
  1091. </background>
  1092. <foreground>
  1093. <fillstroke/>
  1094. <path>
  1095. <move x="0" y="0"/>
  1096. <line x="100" y="100"/>
  1097. <move x="20" y="0"/>
  1098. <line x="100" y="80"/>
  1099. <move x="40" y="0"/>
  1100. <line x="100" y="60"/>
  1101. <move x="60" y="0"/>
  1102. <line x="100" y="40"/>
  1103. <move x="80" y="0"/>
  1104. <line x="100" y="20"/>
  1105. <move x="0" y="20"/>
  1106. <line x="80" y="100"/>
  1107. <move x="0" y="40"/>
  1108. <line x="60" y="100"/>
  1109. <move x="0" y="60"/>
  1110. <line x="40" y="100"/>
  1111. <move x="0" y="80"/>
  1112. <line x="20" y="100"/>
  1113. <move x="0" y="20"/>
  1114. <line x="20" y="0"/>
  1115. <move x="0" y="40"/>
  1116. <line x="40" y="0"/>
  1117. <move x="0" y="60"/>
  1118. <line x="60" y="0"/>
  1119. <move x="0" y="80"/>
  1120. <line x="80" y="0"/>
  1121. <move x="0" y="100"/>
  1122. <line x="100" y="0"/>
  1123. <move x="100" y="20"/>
  1124. <line x="20" y="100"/>
  1125. <move x="40" y="100"/>
  1126. <line x="100" y="40"/>
  1127. <move x="100" y="60"/>
  1128. <line x="60" y="100"/>
  1129. <move x="80" y="100"/>
  1130. <line x="100" y="80"/>
  1131. </path>
  1132. <stroke/>
  1133. </foreground>
  1134. </shape>
  1135. <shape aspect="variable" h="100" name="Firing System, Burner" strokewidth="inherit" w="100">
  1136. <connections>
  1137. <constraint name="E" perimeter="0" x="0" y="0.88"/>
  1138. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1139. </connections>
  1140. <background>
  1141. <rect h="25" w="100" x="0" y="75"/>
  1142. </background>
  1143. <foreground>
  1144. <fillstroke/>
  1145. <path>
  1146. <move x="10" y="75"/>
  1147. <line x="50" y="0"/>
  1148. <line x="90" y="75"/>
  1149. <close/>
  1150. </path>
  1151. <fillstroke/>
  1152. <path>
  1153. <move x="25" y="75"/>
  1154. <line x="50" y="30"/>
  1155. <line x="75" y="75"/>
  1156. </path>
  1157. <stroke/>
  1158. </foreground>
  1159. </shape>
  1160. <shape aspect="variable" h="40" name="Flame Arrestor" strokewidth="inherit" w="100">
  1161. <connections>
  1162. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1163. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1164. </connections>
  1165. <background>
  1166. <path>
  1167. <move x="20" y="0"/>
  1168. <line x="80" y="0"/>
  1169. <line x="88.5" y="20"/>
  1170. <line x="80" y="40"/>
  1171. <line x="20" y="40"/>
  1172. <line x="11.5" y="20"/>
  1173. <close/>
  1174. </path>
  1175. </background>
  1176. <foreground>
  1177. <fillstroke/>
  1178. <path>
  1179. <move x="0" y="10"/>
  1180. <line x="0" y="30"/>
  1181. <move x="3" y="10"/>
  1182. <line x="3" y="30"/>
  1183. <move x="3" y="20"/>
  1184. <line x="11.5" y="20"/>
  1185. <move x="100" y="10"/>
  1186. <line x="100" y="30"/>
  1187. <move x="97" y="10"/>
  1188. <line x="97" y="30"/>
  1189. <move x="97" y="20"/>
  1190. <line x="88.5" y="20"/>
  1191. <move x="20" y="0"/>
  1192. <line x="20" y="40"/>
  1193. <move x="30" y="0"/>
  1194. <line x="30" y="40"/>
  1195. <move x="40" y="0"/>
  1196. <line x="40" y="40"/>
  1197. <move x="50" y="0"/>
  1198. <line x="50" y="40"/>
  1199. <move x="60" y="0"/>
  1200. <line x="60" y="40"/>
  1201. <move x="70" y="0"/>
  1202. <line x="70" y="40"/>
  1203. <move x="80" y="0"/>
  1204. <line x="80" y="40"/>
  1205. </path>
  1206. <stroke/>
  1207. </foreground>
  1208. </shape>
  1209. <shape aspect="variable" h="16" name="Flexible Pipe" strokewidth="inherit" w="60">
  1210. <connections>
  1211. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1212. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1213. </connections>
  1214. <background>
  1215. <path>
  1216. <move x="0" y="8"/>
  1217. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="1" x="10" x-axis-rotation="0" y="8"/>
  1218. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="0" x="20" x-axis-rotation="0" y="8"/>
  1219. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="1" x="30" x-axis-rotation="0" y="8"/>
  1220. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="0" x="40" x-axis-rotation="0" y="8"/>
  1221. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="1" x="50" x-axis-rotation="0" y="8"/>
  1222. <arc large-arc-flag="1" rx="5" ry="8" sweep-flag="0" x="60" x-axis-rotation="0" y="8"/>
  1223. </path>
  1224. </background>
  1225. <foreground>
  1226. <stroke/>
  1227. </foreground>
  1228. </shape>
  1229. <shape aspect="variable" h="30" name="Forced Flow Air Cooler" strokewidth="inherit" w="70">
  1230. <connections/>
  1231. <background>
  1232. <rect h="15" w="70" x="0" y="0"/>
  1233. </background>
  1234. <foreground>
  1235. <fillstroke/>
  1236. <path>
  1237. <move x="23" y="26"/>
  1238. <line x="47" y="20"/>
  1239. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="47" x-axis-rotation="0" y="26"/>
  1240. <line x="23" y="20"/>
  1241. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="23" x-axis-rotation="0" y="26"/>
  1242. <close/>
  1243. </path>
  1244. <fillstroke/>
  1245. <path>
  1246. <move x="10" y="0"/>
  1247. <line x="10" y="15"/>
  1248. <line x="5" y="30"/>
  1249. <move x="60" y="0"/>
  1250. <line x="60" y="15"/>
  1251. <line x="65" y="30"/>
  1252. </path>
  1253. <stroke/>
  1254. </foreground>
  1255. </shape>
  1256. <shape aspect="variable" h="100" name="Forklift (Manual)" strokewidth="inherit" w="140">
  1257. <connections/>
  1258. <background>
  1259. <rect h="100" w="140" x="0" y="0"/>
  1260. </background>
  1261. <foreground>
  1262. <fillstroke/>
  1263. <path>
  1264. <move x="20" y="15"/>
  1265. <line x="20" y="70"/>
  1266. <line x="130" y="70"/>
  1267. <move x="10" y="15"/>
  1268. <line x="30" y="15"/>
  1269. </path>
  1270. <stroke/>
  1271. <ellipse h="20" w="20" x="30" y="75"/>
  1272. <stroke/>
  1273. <ellipse h="20" w="20" x="110" y="75"/>
  1274. <stroke/>
  1275. </foreground>
  1276. </shape>
  1277. <shape aspect="variable" h="100" name="Forklift (Truck)" strokewidth="inherit" w="140">
  1278. <connections/>
  1279. <background>
  1280. <rect h="100" w="140" x="0" y="0"/>
  1281. </background>
  1282. <foreground>
  1283. <fillstroke/>
  1284. <path>
  1285. <move x="85" y="30"/>
  1286. <line x="85" y="80"/>
  1287. <line x="110" y="80"/>
  1288. <move x="30" y="55"/>
  1289. <line x="80" y="55"/>
  1290. <line x="70" y="20"/>
  1291. <line x="50" y="20"/>
  1292. <line x="50" y="55"/>
  1293. </path>
  1294. <stroke/>
  1295. <ellipse h="20" w="20" x="30" y="60"/>
  1296. <stroke/>
  1297. <ellipse h="20" w="20" x="60" y="60"/>
  1298. <stroke/>
  1299. <path>
  1300. </path>
  1301. <stroke/>
  1302. </foreground>
  1303. </shape>
  1304. <shape aspect="variable" h="80" name="Funnel" strokewidth="inherit" w="40">
  1305. <connections/>
  1306. <background>
  1307. <path>
  1308. <move x="0" y="0"/>
  1309. <line x="20" y="35"/>
  1310. <line x="40" y="0"/>
  1311. <move x="20" y="35"/>
  1312. <line x="20" y="80"/>
  1313. </path>
  1314. </background>
  1315. <foreground>
  1316. <stroke/>
  1317. </foreground>
  1318. </shape>
  1319. <shape aspect="variable" h="100" name="Gas Flare" strokewidth="inherit" w="60">
  1320. <connections>
  1321. <constraint name="W" perimeter="0" x="0.33" y="0.9"/>
  1322. </connections>
  1323. <background>
  1324. <path>
  1325. <move x="0" y="100"/>
  1326. <line x="60" y="100"/>
  1327. <move x="30" y="25"/>
  1328. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="30" x-axis-rotation="0" y="0"/>
  1329. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="30" x-axis-rotation="0" y="25"/>
  1330. <close/>
  1331. </path>
  1332. </background>
  1333. <foreground>
  1334. <fillstroke/>
  1335. <rect h="75" w="20" x="20" y="25"/>
  1336. <fillstroke/>
  1337. </foreground>
  1338. </shape>
  1339. <shape aspect="variable" h="30" name="Induced Flow Air Cooler" strokewidth="inherit" w="92.8">
  1340. <connections/>
  1341. <background>
  1342. <rect h="15" w="70" x="12" y="15"/>
  1343. </background>
  1344. <foreground>
  1345. <fillstroke/>
  1346. <path>
  1347. <move x="35" y="10"/>
  1348. <line x="59" y="4"/>
  1349. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="59" x-axis-rotation="0" y="10"/>
  1350. <line x="35" y="4"/>
  1351. <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="0" x="35" x-axis-rotation="0" y="10"/>
  1352. <close/>
  1353. </path>
  1354. <fillstroke/>
  1355. <path>
  1356. <move x="22" y="30"/>
  1357. <line x="22" y="15"/>
  1358. <line x="27" y="0"/>
  1359. <move x="72" y="30"/>
  1360. <line x="72" y="15"/>
  1361. <line x="67" y="0"/>
  1362. <move x="0" y="22.5"/>
  1363. <line x="92.8" y="22.5"/>
  1364. </path>
  1365. <stroke/>
  1366. </foreground>
  1367. </shape>
  1368. <shape aspect="variable" h="20" name="Industrial Truck" strokewidth="inherit" w="120">
  1369. <connections/>
  1370. <background>
  1371. <ellipse h="20" w="20" x="15" y="0"/>
  1372. </background>
  1373. <foreground>
  1374. <fillstroke/>
  1375. <ellipse h="20" w="20" x="85" y="0"/>
  1376. <fillstroke/>
  1377. <path>
  1378. <move x="0" y="0"/>
  1379. <line x="120" y="0"/>
  1380. </path>
  1381. <stroke/>
  1382. </foreground>
  1383. </shape>
  1384. <shape aspect="variable" h="100" name="Lift" strokewidth="inherit" w="100">
  1385. <connections/>
  1386. <background>
  1387. <rect h="100" w="100" x="0" y="0"/>
  1388. </background>
  1389. <foreground>
  1390. <fillstroke/>
  1391. <ellipse h="30" w="30" x="45" y="10"/>
  1392. <stroke/>
  1393. <path>
  1394. <move x="45" y="25"/>
  1395. <line x="45" y="60"/>
  1396. </path>
  1397. <stroke/>
  1398. <rect h="30" w="30" x="30" y="60"/>
  1399. <stroke/>
  1400. </foreground>
  1401. </shape>
  1402. <shape aspect="variable" h="80" name="Loading Arm" strokewidth="inherit" w="120">
  1403. <connections>
  1404. <constraint name="W" perimeter="0" x="0" y="0.88"/>
  1405. <constraint name="E" perimeter="0" x="1" y="0.88"/>
  1406. <constraint name="S" perimeter="0" x="0.92" y="1"/>
  1407. <constraint name="SE" perimeter="0" x="0.98" y="0.96"/>
  1408. </connections>
  1409. <background>
  1410. <path>
  1411. <move x="10" y="70"/>
  1412. <line x="60" y="10"/>
  1413. <line x="110" y="70"/>
  1414. </path>
  1415. </background>
  1416. <foreground>
  1417. <stroke/>
  1418. <ellipse h="20" w="20" x="0" y="60"/>
  1419. <fillstroke/>
  1420. <ellipse h="20" w="20" x="50" y="0"/>
  1421. <fillstroke/>
  1422. <ellipse h="20" w="20" x="100" y="60"/>
  1423. <fillstroke/>
  1424. </foreground>
  1425. </shape>
  1426. <shape aspect="variable" h="100" name="Mixer" strokewidth="inherit" w="80">
  1427. <connections/>
  1428. <background>
  1429. <path>
  1430. <move x="80" y="0"/>
  1431. <line x="80" y="60"/>
  1432. <arc large-arc-flag="1" rx="40" ry="40" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
  1433. <line x="0" y="0"/>
  1434. <close/>
  1435. </path>
  1436. </background>
  1437. <foreground>
  1438. <fillstroke/>
  1439. <path>
  1440. <move x="43.09" y="60.64"/>
  1441. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="40.06" x-axis-rotation="90.13" y="75.63"/>
  1442. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="37.09" x-axis-rotation="90.13" y="60.63"/>
  1443. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="40.13" x-axis-rotation="90.13" y="45.63"/>
  1444. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="43.09" x-axis-rotation="90.13" y="60.64"/>
  1445. <close/>
  1446. <move x="53.6" y="37.94"/>
  1447. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="40.23" x-axis-rotation="139.61" y="45.38"/>
  1448. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="49.71" x-axis-rotation="139.61" y="33.38"/>
  1449. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="63.08" x-axis-rotation="139.61" y="25.94"/>
  1450. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="53.6" x-axis-rotation="139.61" y="37.94"/>
  1451. <close/>
  1452. <move x="30.42" y="33.32"/>
  1453. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="39.94" x-axis-rotation="40.22" y="45.29"/>
  1454. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="26.55" x-axis-rotation="40.22" y="37.9"/>
  1455. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="17.03" x-axis-rotation="40.22" y="25.92"/>
  1456. <arc large-arc-flag="0" rx="15" ry="3" sweep-flag="1" x="30.42" x-axis-rotation="40.22" y="33.32"/>
  1457. <close/>
  1458. </path>
  1459. <stroke/>
  1460. </foreground>
  1461. </shape>
  1462. <shape aspect="variable" h="100" name="Palletizer" strokewidth="inherit" w="80">
  1463. <connections/>
  1464. <background>
  1465. <rect h="100" w="80" x="0" y="0"/>
  1466. </background>
  1467. <foreground>
  1468. <fillstroke/>
  1469. <path>
  1470. <move x="5" y="60"/>
  1471. <line x="75" y="60"/>
  1472. <move x="75" y="80"/>
  1473. <line x="20" y="80"/>
  1474. <move x="15" y="60"/>
  1475. <line x="15" y="30"/>
  1476. <line x="40" y="30"/>
  1477. <line x="40" y="35"/>
  1478. <line x="65" y="35"/>
  1479. <line x="65" y="60"/>
  1480. <move x="15" y="55"/>
  1481. <line x="65" y="55"/>
  1482. <move x="15" y="50"/>
  1483. <line x="65" y="50"/>
  1484. <move x="15" y="45"/>
  1485. <line x="65" y="45"/>
  1486. <move x="15" y="40"/>
  1487. <line x="65" y="40"/>
  1488. <move x="15" y="35"/>
  1489. <line x="40" y="35"/>
  1490. <move x="27.5" y="35"/>
  1491. <line x="27.5" y="40"/>
  1492. <move x="27.5" y="45"/>
  1493. <line x="27.5" y="50"/>
  1494. <move x="27.5" y="55"/>
  1495. <line x="27.5" y="60"/>
  1496. <move x="40" y="40"/>
  1497. <line x="40" y="45"/>
  1498. <move x="40" y="50"/>
  1499. <line x="40" y="55"/>
  1500. <move x="52.5" y="35"/>
  1501. <line x="52.5" y="40"/>
  1502. <move x="52.5" y="45"/>
  1503. <line x="52.5" y="50"/>
  1504. <move x="52.5" y="55"/>
  1505. <line x="52.5" y="60"/>
  1506. </path>
  1507. <stroke/>
  1508. <fillcolor color="#000000"/>
  1509. <path>
  1510. <move x="20" y="77"/>
  1511. <line x="20" y="83"/>
  1512. <line x="9" y="80"/>
  1513. <close/>
  1514. </path>
  1515. <fillstroke/>
  1516. </foreground>
  1517. </shape>
  1518. <shape aspect="variable" h="100" name="Protective Palette Covering" strokewidth="inherit" w="80">
  1519. <connections/>
  1520. <background>
  1521. <rect h="100" w="80" x="0" y="0"/>
  1522. </background>
  1523. <foreground>
  1524. <fillstroke/>
  1525. <path>
  1526. <move x="5" y="80"/>
  1527. <line x="75" y="80"/>
  1528. <move x="15" y="70"/>
  1529. <line x="65" y="70"/>
  1530. <move x="15" y="65"/>
  1531. <line x="65" y="65"/>
  1532. <move x="15" y="60"/>
  1533. <line x="65" y="60"/>
  1534. <move x="15" y="55"/>
  1535. <line x="65" y="55"/>
  1536. <move x="27.3" y="55.4"/>
  1537. <line x="27.3" y="60.4"/>
  1538. <move x="27.3" y="65.4"/>
  1539. <line x="27.3" y="70.4"/>
  1540. <move x="27.3" y="75.4"/>
  1541. <line x="27.3" y="80.4"/>
  1542. <move x="39.8" y="60.4"/>
  1543. <line x="39.8" y="65.4"/>
  1544. <move x="39.8" y="70.4"/>
  1545. <line x="39.8" y="75.4"/>
  1546. <move x="52.3" y="55.4"/>
  1547. <line x="52.3" y="60.4"/>
  1548. <move x="52.3" y="65.4"/>
  1549. <line x="52.3" y="70.4"/>
  1550. <move x="52.3" y="75.4"/>
  1551. <line x="52.3" y="80.4"/>
  1552. <move x="15" y="45"/>
  1553. <line x="65" y="45"/>
  1554. <move x="15" y="50"/>
  1555. <line x="65" y="50"/>
  1556. <move x="40" y="50"/>
  1557. <line x="40" y="55"/>
  1558. <move x="40" y="40"/>
  1559. <line x="40" y="45"/>
  1560. <move x="27.5" y="45"/>
  1561. <line x="27.5" y="50"/>
  1562. <move x="52.5" y="45"/>
  1563. <line x="52.5" y="50"/>
  1564. </path>
  1565. <stroke/>
  1566. <rect h="60" w="70" x="5" y="15"/>
  1567. <stroke/>
  1568. <rect h="40" w="50" x="15" y="40"/>
  1569. <stroke/>
  1570. </foreground>
  1571. </shape>
  1572. <shape aspect="variable" h="20" name="Roller Conveyor" strokewidth="inherit" w="160">
  1573. <connections/>
  1574. <background>
  1575. <rect h="10" w="160" x="0" y="10"/>
  1576. </background>
  1577. <foreground>
  1578. <fillstroke/>
  1579. <ellipse h="20" w="20" x="10" y="0"/>
  1580. <fillstroke/>
  1581. <ellipse h="20" w="20" x="40" y="0"/>
  1582. <fillstroke/>
  1583. <ellipse h="20" w="20" x="70" y="0"/>
  1584. <fillstroke/>
  1585. <ellipse h="20" w="20" x="100" y="0"/>
  1586. <fillstroke/>
  1587. <ellipse h="20" w="20" x="130" y="0"/>
  1588. <fillstroke/>
  1589. <rect h="10" w="160" x="0" y="10"/>
  1590. <stroke/>
  1591. </foreground>
  1592. </shape>
  1593. <shape aspect="variable" h="65" name="Rolling Bin" strokewidth="inherit" w="100">
  1594. <connections/>
  1595. <background>
  1596. <path>
  1597. <move x="0" y="0"/>
  1598. <line x="0" y="45"/>
  1599. <line x="100" y="45"/>
  1600. <line x="100" y="0"/>
  1601. </path>
  1602. </background>
  1603. <foreground>
  1604. <fillstroke/>
  1605. <ellipse h="20" w="20" x="0" y="45"/>
  1606. <fillstroke/>
  1607. <ellipse h="20" w="20" x="80" y="45"/>
  1608. <fillstroke/>
  1609. </foreground>
  1610. </shape>
  1611. <shape aspect="variable" h="65" name="Rotary Screen" strokewidth="inherit" w="100">
  1612. <connections/>
  1613. <background>
  1614. <rect h="40" w="100" x="0" y="25"/>
  1615. </background>
  1616. <foreground>
  1617. <fillstroke/>
  1618. <ellipse h="50" w="50" x="25" y="0"/>
  1619. <fillstroke/>
  1620. <rect h="40" w="100" x="0" y="25"/>
  1621. <stroke/>
  1622. </foreground>
  1623. </shape>
  1624. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer" strokewidth="inherit" w="80">
  1625. <connections>
  1626. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1627. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1628. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1629. </connections>
  1630. <background>
  1631. <path>
  1632. <move x="0" y="0"/>
  1633. <line x="80" y="0"/>
  1634. <line x="80" y="80"/>
  1635. <line x="40" y="120"/>
  1636. <line x="0" y="80"/>
  1637. <close/>
  1638. </path>
  1639. </background>
  1640. <foreground>
  1641. <fillstroke/>
  1642. <dashpattern pattern="2 2"/>
  1643. <dashed dashed="1"/>
  1644. <path>
  1645. <move x="0.5" y="0.75"/>
  1646. <line x="80" y="79.5"/>
  1647. </path>
  1648. <stroke/>
  1649. </foreground>
  1650. </shape>
  1651. <shape aspect="variable" h="180" name="Screening Device, Sieve, Strainer (Basket Reel)" strokewidth="inherit" w="80">
  1652. <connections/>
  1653. <background>
  1654. <path>
  1655. <move x="0" y="0"/>
  1656. <line x="80" y="0"/>
  1657. <line x="80" y="140"/>
  1658. <line x="40" y="180"/>
  1659. <line x="0" y="140"/>
  1660. <close/>
  1661. </path>
  1662. </background>
  1663. <foreground>
  1664. <fillstroke/>
  1665. <ellipse h="20" w="20" x="30" y="15"/>
  1666. <stroke/>
  1667. <ellipse h="20" w="20" x="30" y="115"/>
  1668. <stroke/>
  1669. <dashpattern pattern="2 2"/>
  1670. <dashed dashed="1"/>
  1671. <path>
  1672. <move x="30" y="25"/>
  1673. <line x="30" y="125"/>
  1674. <move x="50" y="25"/>
  1675. <line x="50" y="125"/>
  1676. <move x="50" y="40"/>
  1677. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="60"/>
  1678. <move x="50" y="85"/>
  1679. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="105"/>
  1680. <move x="30" y="60"/>
  1681. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="10" x-axis-rotation="0" y="40"/>
  1682. <move x="30" y="105"/>
  1683. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="10" x-axis-rotation="0" y="85"/>
  1684. </path>
  1685. <stroke/>
  1686. </foreground>
  1687. </shape>
  1688. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer (Coarse and Fine Screens)" strokewidth="inherit" w="80">
  1689. <connections>
  1690. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1691. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1692. <constraint name="NE" perimeter="0" x="1" y="0.3"/>
  1693. <constraint name="SE" perimeter="0" x="1" y="0.5"/>
  1694. </connections>
  1695. <background>
  1696. <path>
  1697. <move x="0" y="0"/>
  1698. <line x="80" y="0"/>
  1699. <line x="80" y="80"/>
  1700. <line x="40" y="120"/>
  1701. <line x="0" y="80"/>
  1702. <close/>
  1703. </path>
  1704. </background>
  1705. <foreground>
  1706. <fillstroke/>
  1707. <dashpattern pattern="2 2"/>
  1708. <dashed dashed="1"/>
  1709. <path>
  1710. <move x="0.5" y="0.75"/>
  1711. <line x="80" y="79.5"/>
  1712. <move x="25" y="0"/>
  1713. <line x="80" y="55"/>
  1714. </path>
  1715. <stroke/>
  1716. </foreground>
  1717. </shape>
  1718. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer (Coarse Rake)" strokewidth="inherit" w="80">
  1719. <connections>
  1720. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1721. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1722. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1723. </connections>
  1724. <background>
  1725. <path>
  1726. <move x="0" y="0"/>
  1727. <line x="80" y="0"/>
  1728. <line x="80" y="80"/>
  1729. <line x="40" y="120"/>
  1730. <line x="0" y="80"/>
  1731. <close/>
  1732. </path>
  1733. </background>
  1734. <foreground>
  1735. <fillstroke/>
  1736. <path>
  1737. <move x="31.43" y="23.44"/>
  1738. <line x="38.51" y="16.38"/>
  1739. <line x="63.91" y="41.9"/>
  1740. <line x="56.82" y="48.95"/>
  1741. <move x="46.98" y="24.89"/>
  1742. <line x="39.89" y="31.94"/>
  1743. <move x="55.44" y="33.39"/>
  1744. <line x="48.36" y="40.45"/>
  1745. </path>
  1746. <stroke/>
  1747. <dashpattern pattern="2 2"/>
  1748. <dashed dashed="1"/>
  1749. <path>
  1750. <move x="0.5" y="0.75"/>
  1751. <line x="80" y="79.5"/>
  1752. </path>
  1753. <stroke/>
  1754. </foreground>
  1755. </shape>
  1756. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer (Fine Rake)" strokewidth="inherit" w="80">
  1757. <connections>
  1758. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1759. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1760. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1761. </connections>
  1762. <background>
  1763. <path>
  1764. <move x="0" y="0"/>
  1765. <line x="80" y="0"/>
  1766. <line x="80" y="80"/>
  1767. <line x="40" y="120"/>
  1768. <line x="0" y="80"/>
  1769. <close/>
  1770. </path>
  1771. </background>
  1772. <foreground>
  1773. <fillstroke/>
  1774. <path>
  1775. <move x="31.43" y="23.44"/>
  1776. <line x="38.51" y="16.38"/>
  1777. <line x="63.91" y="41.9"/>
  1778. <line x="56.82" y="48.95"/>
  1779. <move x="46.98" y="24.89"/>
  1780. <line x="39.89" y="31.94"/>
  1781. <move x="55.44" y="33.39"/>
  1782. <line x="48.36" y="40.45"/>
  1783. <move x="42.48" y="20.39"/>
  1784. <line x="35.39" y="27.44"/>
  1785. <move x="51.1" y="28.89"/>
  1786. <line x="44.02" y="35.94"/>
  1787. <move x="59.6" y="37.39"/>
  1788. <line x="52.52" y="44.44"/>
  1789. </path>
  1790. <stroke/>
  1791. <dashpattern pattern="2 2"/>
  1792. <dashed dashed="1"/>
  1793. <path>
  1794. <move x="0.5" y="0.75"/>
  1795. <line x="80" y="79.5"/>
  1796. </path>
  1797. <stroke/>
  1798. </foreground>
  1799. </shape>
  1800. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer (Rotating Drum)" strokewidth="inherit" w="80">
  1801. <connections>
  1802. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1803. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1804. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1805. </connections>
  1806. <background>
  1807. <path>
  1808. <move x="0" y="0"/>
  1809. <line x="80" y="0"/>
  1810. <line x="80" y="80"/>
  1811. <line x="40" y="120"/>
  1812. <line x="0" y="80"/>
  1813. <close/>
  1814. </path>
  1815. </background>
  1816. <foreground>
  1817. <fillstroke/>
  1818. <path>
  1819. <move x="28" y="31.5"/>
  1820. <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="1" x="52" x-axis-rotation="0" y="31.5"/>
  1821. </path>
  1822. <stroke/>
  1823. <dashpattern pattern="2 2"/>
  1824. <dashed dashed="1"/>
  1825. <ellipse h="30" w="30" x="25" y="35"/>
  1826. <stroke/>
  1827. </foreground>
  1828. </shape>
  1829. <shape aspect="variable" h="120" name="Screening Device, Sieve, Strainer (Vibrating)" strokewidth="inherit" w="80">
  1830. <connections>
  1831. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1832. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1833. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1834. </connections>
  1835. <background>
  1836. <path>
  1837. <move x="0" y="0"/>
  1838. <line x="80" y="0"/>
  1839. <line x="80" y="80"/>
  1840. <line x="40" y="120"/>
  1841. <line x="0" y="80"/>
  1842. <close/>
  1843. </path>
  1844. </background>
  1845. <foreground>
  1846. <fillstroke/>
  1847. <path>
  1848. <move x="31.63" y="23.63"/>
  1849. <line x="52.88" y="44.8"/>
  1850. <move x="40.12" y="22.2"/>
  1851. <line x="61.37" y="43.37"/>
  1852. </path>
  1853. <stroke/>
  1854. <fillcolor color="#000000"/>
  1855. <path>
  1856. <move x="54.3" y="43.39"/>
  1857. <line x="51.47" y="46.22"/>
  1858. <line x="56.43" y="48.33"/>
  1859. <close/>
  1860. <move x="41.53" y="20.78"/>
  1861. <line x="38.7" y="23.61"/>
  1862. <line x="36.57" y="18.67"/>
  1863. <close/>
  1864. </path>
  1865. <fillstroke/>
  1866. <dashpattern pattern="2 2"/>
  1867. <dashed dashed="1"/>
  1868. <path>
  1869. <move x="0.5" y="0.75"/>
  1870. <line x="80" y="79.5"/>
  1871. </path>
  1872. <stroke/>
  1873. </foreground>
  1874. </shape>
  1875. <shape aspect="variable" h="60" name="Ship" strokewidth="inherit" w="105">
  1876. <connections/>
  1877. <background>
  1878. <path>
  1879. <move x="0" y="40"/>
  1880. <line x="70" y="40"/>
  1881. <line x="70" y="35"/>
  1882. <line x="105" y="30"/>
  1883. <line x="95" y="60"/>
  1884. <line x="5" y="60"/>
  1885. <close/>
  1886. <move x="25" y="20"/>
  1887. <line x="35" y="20"/>
  1888. <line x="35" y="40"/>
  1889. <line x="15" y="40"/>
  1890. <line x="15" y="30"/>
  1891. <line x="25" y="30"/>
  1892. <close/>
  1893. <move x="35" y="0"/>
  1894. <line x="35" y="20"/>
  1895. </path>
  1896. </background>
  1897. <foreground>
  1898. <fillstroke/>
  1899. </foreground>
  1900. </shape>
  1901. <shape aspect="variable" h="30" name="Silencer" strokewidth="inherit" w="100">
  1902. <connections>
  1903. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1904. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1905. </connections>
  1906. <background>
  1907. <path>
  1908. <move x="3" y="10"/>
  1909. <line x="20" y="10"/>
  1910. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="30" x-axis-rotation="0" y="0"/>
  1911. <line x="70" y="0"/>
  1912. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="80" x-axis-rotation="0" y="10"/>
  1913. <line x="97" y="10"/>
  1914. <line x="97" y="20"/>
  1915. <line x="80" y="20"/>
  1916. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
  1917. <line x="30" y="30"/>
  1918. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="20" x-axis-rotation="0" y="20"/>
  1919. <line x="3" y="20"/>
  1920. <close/>
  1921. </path>
  1922. </background>
  1923. <foreground>
  1924. <fillstroke/>
  1925. <path>
  1926. <move x="0" y="5"/>
  1927. <line x="0" y="25"/>
  1928. <move x="3" y="5"/>
  1929. <line x="3" y="25"/>
  1930. <move x="100" y="5"/>
  1931. <line x="100" y="25"/>
  1932. <move x="97" y="5"/>
  1933. <line x="97" y="25"/>
  1934. </path>
  1935. <stroke/>
  1936. </foreground>
  1937. </shape>
  1938. <shape aspect="variable" h="20" name="Spraying Device" strokewidth="inherit" w="60">
  1939. <connections/>
  1940. <background>
  1941. <path>
  1942. <move x="0" y="0"/>
  1943. <line x="35" y="0"/>
  1944. <line x="35" y="10"/>
  1945. <move x="10" y="20"/>
  1946. <line x="35" y="10"/>
  1947. <line x="60" y="20"/>
  1948. <move x="25" y="20"/>
  1949. <line x="35" y="10"/>
  1950. <line x="45" y="20"/>
  1951. </path>
  1952. </background>
  1953. <foreground>
  1954. <stroke/>
  1955. </foreground>
  1956. </shape>
  1957. <shape aspect="variable" h="120" name="Spray Cooler" strokewidth="inherit" w="100">
  1958. <connections>
  1959. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1960. <constraint name="NW" perimeter="0" x="0" y="0.17"/>
  1961. <constraint name="W" perimeter="0" x="0" y="0.46"/>
  1962. <constraint name="SW" perimeter="0" x="0" y="0.875"/>
  1963. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1964. </connections>
  1965. <background>
  1966. <rect h="120" w="100" x="0" y="0"/>
  1967. </background>
  1968. <foreground>
  1969. <fillstroke/>
  1970. <path>
  1971. <move x="0" y="20"/>
  1972. <line x="50" y="20"/>
  1973. <line x="50" y="30"/>
  1974. <move x="40" y="30"/>
  1975. <line x="50" y="20"/>
  1976. <line x="60" y="30"/>
  1977. <move x="0" y="55"/>
  1978. <line x="50" y="55"/>
  1979. <line x="75" y="80"/>
  1980. <line x="25" y="80"/>
  1981. <line x="50" y="105"/>
  1982. <line x="0" y="105"/>
  1983. </path>
  1984. <stroke/>
  1985. </foreground>
  1986. </shape>
  1987. <shape aspect="variable" h="100" name="Stack, Chimney" strokewidth="inherit" w="60">
  1988. <connections>
  1989. <constraint name="W" perimeter="0" x="0.18" y="0.9"/>
  1990. </connections>
  1991. <background>
  1992. <path>
  1993. <move x="10" y="100"/>
  1994. <line x="20" y="0"/>
  1995. <line x="40" y="0"/>
  1996. <line x="50" y="100"/>
  1997. <close/>
  1998. <move x="0" y="100"/>
  1999. <line x="60" y="100"/>
  2000. </path>
  2001. </background>
  2002. <foreground>
  2003. <fillstroke/>
  2004. </foreground>
  2005. </shape>
  2006. <shape aspect="variable" h="52.48" name="Steam Trap" strokewidth="inherit" w="52.48">
  2007. <connections>
  2008. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2009. <constraint name="E" perimeter="0" x="0.955" y="0.5"/>
  2010. </connections>
  2011. <background>
  2012. <ellipse h="50" w="50" x="0" y="0"/>
  2013. </background>
  2014. <foreground>
  2015. <fillstroke/>
  2016. <fillcolor color="#000000"/>
  2017. <path>
  2018. <move x="42.7" y="7.3"/>
  2019. <arc large-arc-flag="1" rx="25" ry="25" sweep-flag="1" x="7.3" x-axis-rotation="0" y="42.7"/>
  2020. <close/>
  2021. </path>
  2022. <fillstroke/>
  2023. </foreground>
  2024. </shape>
  2025. <shape aspect="variable" h="80" name="Tank Car, Tank Wagon" strokewidth="inherit" w="126.67">
  2026. <connections/>
  2027. <background>
  2028. <path>
  2029. <move x="13.33" y="60"/>
  2030. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="13.33" x-axis-rotation="0" y="0"/>
  2031. <line x="113.33" y="0"/>
  2032. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="113.33" x-axis-rotation="0" y="60"/>
  2033. <close/>
  2034. </path>
  2035. </background>
  2036. <foreground>
  2037. <fillstroke/>
  2038. <ellipse h="20" w="20" x="18.33" y="60"/>
  2039. <fillstroke/>
  2040. <ellipse h="20" w="20" x="88.33" y="60"/>
  2041. <fillstroke/>
  2042. </foreground>
  2043. </shape>
  2044. <shape aspect="variable" h="50" name="Viewing Glass" strokewidth="inherit" w="80">
  2045. <connections>
  2046. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2047. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2048. </connections>
  2049. <background>
  2050. <rect h="50" w="80" x="0" y="0"/>
  2051. </background>
  2052. <foreground>
  2053. <fillstroke/>
  2054. <ellipse h="50" w="50" x="15" y="0"/>
  2055. <stroke/>
  2056. </foreground>
  2057. </shape>
  2058. </shapes>