homebridge-config-ui-x 5.0.0-beta.9 → 5.0.0-beta.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/CHANGELOG.md +428 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +37 -192
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +51 -50
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +2 -2
  9. package/dist/bin/platforms/darwin.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +1 -0
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +15 -3
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +23 -11
  22. package/dist/core/config/config.service.js +39 -19
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -77
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +2 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +8 -7
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +19 -79
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  46. package/dist/modules/config-editor/config-editor.service.js +84 -67
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  74. package/dist/modules/plugins/plugins.service.js +168 -103
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +28 -3
  77. package/dist/modules/server/server.controller.js +137 -20
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +27 -6
  80. package/dist/modules/server/server.service.js +212 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +25 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +50 -43
  94. package/public/3rdpartylicenses.txt +192 -109
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/assets/plugin-ui-utils/ui.js +3 -0
  137. package/public/assets/plugin-ui-utils/ui.js.map +1 -1
  138. package/public/chunk-2EMPNH2X.js +5 -0
  139. package/public/chunk-2VGFYHDE.js +1 -0
  140. package/public/chunk-346GJNBG.js +1 -0
  141. package/public/chunk-3HISBS3B.js +1 -0
  142. package/public/{chunk-EA5J2VEJ.js → chunk-4VKEWS3F.js} +1 -1
  143. package/public/chunk-4W65T6DT.js +1 -0
  144. package/public/chunk-56VIVSJU.js +1 -0
  145. package/public/chunk-5GQ5LHPJ.js +1 -0
  146. package/public/chunk-5OVPVUOZ.js +1 -0
  147. package/public/chunk-5P7NZODH.js +1 -0
  148. package/public/chunk-6AEKDPHD.js +1 -0
  149. package/public/chunk-6IA7K4TY.js +1 -0
  150. package/public/chunk-6MBDS53J.js +1 -0
  151. package/public/chunk-6MUZSNBL.js +1 -0
  152. package/public/chunk-7LKPHFJR.js +1 -0
  153. package/public/{chunk-QE7DO6J3.js → chunk-ANCTYTNR.js} +2 -2
  154. package/public/{chunk-LWNID63H.js → chunk-ASWAWBAB.js} +2 -2
  155. package/public/chunk-BHX6S5LW.js +1 -0
  156. package/public/chunk-BWWDBVP3.js +1 -0
  157. package/public/chunk-CBKMIXD7.js +1 -0
  158. package/public/{chunk-GR5ZC55C.js → chunk-CEC3XQIL.js} +11 -11
  159. package/public/{chunk-JZZQRLNW.js → chunk-DQBVZWYJ.js} +1 -1
  160. package/public/chunk-EB3RUUUU.js +1 -0
  161. package/public/chunk-EJ3RNOUF.js +1 -0
  162. package/public/chunk-EU2PYI42.js +1 -0
  163. package/public/{chunk-6TCHCTXZ.js → chunk-EWUBHGYD.js} +1 -1
  164. package/public/chunk-FC2ZP4GG.js +1 -0
  165. package/public/chunk-FDPTBVVC.js +2 -0
  166. package/public/chunk-FDZTOO2J.js +1 -0
  167. package/public/{chunk-7EUQWCP5.js → chunk-FIDKTTX5.js} +2 -2
  168. package/public/chunk-FLL5WOYP.js +1 -0
  169. package/public/chunk-FMIYWTUO.js +1 -0
  170. package/public/chunk-FN3OPQ7O.js +1 -0
  171. package/public/chunk-G6ZI7M42.js +1 -0
  172. package/public/chunk-GA7DSDUF.js +1 -0
  173. package/public/chunk-GOW5VSYJ.js +1 -0
  174. package/public/chunk-GWC7VRF6.js +1 -0
  175. package/public/{chunk-MPLDW2J6.js → chunk-HBZONUFA.js} +1 -1
  176. package/public/chunk-HRWCTTRC.js +5 -0
  177. package/public/chunk-HYKYJOGA.js +1 -0
  178. package/public/chunk-IC342R5Q.js +8 -0
  179. package/public/chunk-ICWWGXAA.js +1 -0
  180. package/public/chunk-IF56BKOM.js +1 -0
  181. package/public/chunk-JUHAP4JY.js +1 -0
  182. package/public/chunk-L3LHJ4JZ.js +23 -0
  183. package/public/chunk-L3YFIHHA.js +1 -0
  184. package/public/{chunk-WNWWUCCZ.js → chunk-L7P4OVCU.js} +3 -3
  185. package/public/chunk-LPGZUTF3.js +1 -0
  186. package/public/chunk-MPEMMRY5.js +6 -0
  187. package/public/chunk-MZFQR6RR.js +1 -0
  188. package/public/chunk-NM36IH7P.js +1 -0
  189. package/public/chunk-NR37MAXW.js +7 -0
  190. package/public/{chunk-XSDOEAMI.js → chunk-OMLHTTMP.js} +1 -1
  191. package/public/{chunk-ENKVNFKF.js → chunk-OTCI6CN2.js} +1 -1
  192. package/public/chunk-PRR4LQWG.js +1 -0
  193. package/public/chunk-QGHY5CLC.js +2 -0
  194. package/public/chunk-QRORVNZ7.js +1 -0
  195. package/public/chunk-RGIMTPTA.js +1 -0
  196. package/public/chunk-RK3BSPVK.js +1 -0
  197. package/public/chunk-SEDDFWVS.js +1 -0
  198. package/public/chunk-TLWI6DE6.js +1 -0
  199. package/public/chunk-U5WNNZWN.js +1 -0
  200. package/public/chunk-UAAJJBQH.js +1 -0
  201. package/public/chunk-VQSRL3AI.js +29 -0
  202. package/public/chunk-VWYIDHUF.js +8 -0
  203. package/public/chunk-VZG6DA4F.js +1 -0
  204. package/public/chunk-XEFNJNER.js +1 -0
  205. package/public/chunk-XH3VLWN5.js +1 -0
  206. package/public/chunk-Y3BJZ7QJ.js +1 -0
  207. package/public/chunk-Y6TXYIFY.js +7 -0
  208. package/public/chunk-YDQT2IQW.js +1 -0
  209. package/public/chunk-YOQMEVOQ.js +1 -0
  210. package/public/chunk-YVAFKINR.js +20 -0
  211. package/public/chunk-YWKZ3P6I.js +1 -0
  212. package/public/chunk-Z4SD7E4P.js +1 -0
  213. package/public/chunk-ZNDTZTBG.js +1 -0
  214. package/public/chunk-ZOLUFCSO.js +1 -0
  215. package/public/chunk-ZPSG5SPC.js +1 -0
  216. package/public/chunk-ZSNEJNFO.js +1 -0
  217. package/public/index.html +2 -2
  218. package/public/main-KNYHSHUX.js +1 -0
  219. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  220. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  221. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  222. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  223. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  224. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  225. package/public/polyfills-GCAZ7JAV.js +2 -0
  226. package/public/styles-PKR3EGHP.css +1 -0
  227. package/scripts/upgrade-install-plugin.sh +1 -1
  228. package/public/chunk-2JFSWT5B.js +0 -1
  229. package/public/chunk-2L7ELAST.js +0 -1
  230. package/public/chunk-2S6LQXQQ.js +0 -1
  231. package/public/chunk-33GSDLFJ.js +0 -1
  232. package/public/chunk-3IX3CLER.js +0 -1
  233. package/public/chunk-3OQBMVGJ.js +0 -1
  234. package/public/chunk-4G7JJKXC.js +0 -1
  235. package/public/chunk-4W4R6Q5O.js +0 -1
  236. package/public/chunk-4YG6EOJW.js +0 -1
  237. package/public/chunk-5ABRPQAO.js +0 -1
  238. package/public/chunk-5JQMTC6B.js +0 -1
  239. package/public/chunk-BKCPDNDQ.js +0 -1
  240. package/public/chunk-BKUGARB4.js +0 -7
  241. package/public/chunk-BPMSJ2VF.js +0 -1
  242. package/public/chunk-BVRAVCVU.js +0 -1
  243. package/public/chunk-CCUID66K.js +0 -1
  244. package/public/chunk-CNLFTFGS.js +0 -1
  245. package/public/chunk-COZI4IQZ.js +0 -1
  246. package/public/chunk-DFKBPEBJ.js +0 -1
  247. package/public/chunk-FIWNQUN6.js +0 -1
  248. package/public/chunk-HSJSWZHD.js +0 -1
  249. package/public/chunk-JJL2MTZS.js +0 -1
  250. package/public/chunk-JKN6S535.js +0 -1
  251. package/public/chunk-KQJ7ONUG.js +0 -1
  252. package/public/chunk-KSIUXDRS.js +0 -1
  253. package/public/chunk-KZATMDCZ.js +0 -6
  254. package/public/chunk-L3MK74M5.js +0 -1
  255. package/public/chunk-M2ME37TX.js +0 -8
  256. package/public/chunk-M3VCR6YB.js +0 -1
  257. package/public/chunk-M5AJDIBQ.js +0 -1
  258. package/public/chunk-MK7X7MS5.js +0 -1
  259. package/public/chunk-NBOHFRJZ.js +0 -1
  260. package/public/chunk-NHZHWKSG.js +0 -1
  261. package/public/chunk-NQVE3PCO.js +0 -1
  262. package/public/chunk-NW6AFAD7.js +0 -1
  263. package/public/chunk-NWWJ57YP.js +0 -1
  264. package/public/chunk-NZNNTHFQ.js +0 -1
  265. package/public/chunk-ORPWYWCL.js +0 -5
  266. package/public/chunk-QGKMS5A5.js +0 -1
  267. package/public/chunk-QHPDGSZ6.js +0 -1
  268. package/public/chunk-QOGRNTPH.js +0 -1
  269. package/public/chunk-QXKNQTUO.js +0 -1
  270. package/public/chunk-ROX65GNZ.js +0 -23
  271. package/public/chunk-RTYW4L3V.js +0 -1
  272. package/public/chunk-SQRHRHFP.js +0 -20
  273. package/public/chunk-T7JTTE4M.js +0 -1
  274. package/public/chunk-T7R6ZVT6.js +0 -1
  275. package/public/chunk-TCSXGQNF.js +0 -1
  276. package/public/chunk-THICF3SZ.js +0 -1
  277. package/public/chunk-TUWXLY3X.js +0 -1
  278. package/public/chunk-TXOB7R5K.js +0 -7
  279. package/public/chunk-U5ZKGWCF.js +0 -1
  280. package/public/chunk-UG5DK2RQ.js +0 -2
  281. package/public/chunk-UYFK7HVI.js +0 -1
  282. package/public/chunk-UZOK2K35.js +0 -1
  283. package/public/chunk-VDCXEJXR.js +0 -1
  284. package/public/chunk-VEBWYZYZ.js +0 -1
  285. package/public/chunk-VNARIZ6E.js +0 -1
  286. package/public/chunk-VP4MXPRG.js +0 -1
  287. package/public/chunk-VPJTE4TI.js +0 -1
  288. package/public/chunk-VPKOFODJ.js +0 -1
  289. package/public/chunk-WHJOLAED.js +0 -1
  290. package/public/chunk-WHJSVGC7.js +0 -1
  291. package/public/chunk-WQJUPQJT.js +0 -1
  292. package/public/chunk-XMYXVAEK.js +0 -1
  293. package/public/chunk-XO7XB4PL.js +0 -1
  294. package/public/chunk-XTVTI5YA.js +0 -5
  295. package/public/chunk-YSQSVKZB.js +0 -32
  296. package/public/chunk-Z5GB7FXV.js +0 -1
  297. package/public/chunk-ZT23DWNL.js +0 -1
  298. package/public/main-CNETRB3V.js +0 -1
  299. package/public/media/01-RQ3S2L53.png +0 -0
  300. package/public/media/02-VNCG2I2A.png +0 -0
  301. package/public/media/03-HI42L4ZG.png +0 -0
  302. package/public/media/04-FJLL55LZ.png +0 -0
  303. package/public/media/05-V3EO6SPT.png +0 -0
  304. package/public/media/06-EOJZCQZN.png +0 -0
  305. package/public/media/07-KMKB5PBD.png +0 -0
  306. package/public/media/08-UQJRF6B2.png +0 -0
  307. package/public/media/09-2DJQFRHH.png +0 -0
  308. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  309. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  310. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  311. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  312. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  313. package/public/polyfills-C6JHVXJJ.js +0 -2
  314. package/public/scripts-6GVLYD7F.js +0 -62
  315. package/public/styles-EG5MFQEM.css +0 -1
  316. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
@@ -1,20 +1,49 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="456px" height="351px" viewBox="0 0 456 351" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>Group</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Group" transform="translate(0.933594, 0.000000)">
6
- <polygon class="valve_off_grey" id="Path" fill="#42D653" points="0 350.554688 454.617187 350.554688 454.617188 274.222656 425.945312 312.388672 390.386719 274.222656 360.625 312.388672 324.054688 274.222656 295.980469 312.388672 260.863281 274.222656 227.308594 312.388672 194.144531 274.222656 162.945312 312.388672 128.582031 274.222656 97.9023438 312.388672 62.71875 274.222656 32.515625 312.388672 0 274.222656"></polygon>
7
- <rect id="Rectangle" fill="#C9C7CF" x="69.0664062" y="0" width="316" height="194" rx="25"></rect>
8
- <polygon id="Path-2" fill="#818181" points="279.066406 194 279.066406 274 296.563477 287.825195 314.060547 274.222656 314.060547 194"></polygon>
9
- <polygon id="Path-2" fill="#818181" points="147.066406 194 147.066406 274 164.563477 287.825195 182.060547 274.222656 182.060547 194"></polygon>
10
- <circle id="Oval" fill="#818181" cx="305.566406" cy="58.5" r="23.5"></circle>
11
- <circle id="Oval" fill="#818181" cx="305.566406" cy="137.5" r="23.5"></circle>
12
- <g id="1745699" transform="translate(102.066406, 24.000000)">
13
- <g id="Group" transform="translate(72.000000, 72.000000) scale(-1, 1) rotate(-180.000000) translate(-72.000000, -72.000000) translate(0.000000, -0.000000)">
14
- <circle id="Oval" class="valve_off_grey" fill="#FFFFFF" cx="72" cy="72" r="72"></circle>
15
- <path d="M70.3295331,120.035764 C62.8539631,110.974335 55.3230185,100.245159 50.0347448,91.1466691 C43.32519,79.6021495 39.310532,69.4196238 38.2861021,61.3032521 C37.6862106,56.4945798 38.0092291,52.9089224 39.5043431,48.0631891 C40.6395223,44.3663486 42.3284473,40.8177522 44.5618893,37.4544612 C46.0385451,35.2307977 47.339848,33.6371722 49.2595005,31.700732 C52.1297503,28.8192347 54.5385451,27.0310386 57.805646,25.3725563 C61.3219327,23.575095 64.718241,22.5837117 68.8805646,22.1111832 C70.1634093,21.9629389 73.8273616,21.9629389 75.1563518,22.1111832 C82.927253,22.9635875 89.4891422,26.2249606 95.0912052,32.0064857 C100.250271,37.3247475 104.006515,44.4960623 105.520087,51.8990086 C106.156895,55.0028722 106.156895,58.847957 105.520087,62.7856944 C103.378936,76.0164922 93.4484256,94.6952654 77.795874,114.912073 C75.5808903,117.784305 72.1292074,122 72.0092291,122 C71.9815418,122 71.2155266,121.110535 70.3295331,120.035764 Z" id="Path" class="valve_off_grey" fill="#2D98D3" fill-rule="nonzero"></path>
16
- </g>
17
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <svg
3
+ width="456px"
4
+ height="351px"
5
+ viewBox="0 0 456 351"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ >
10
+ <title>Group</title>
11
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
12
+ <g id="Group" transform="translate(0.933594, 0.000000)">
13
+ <polygon
14
+ class="valve_off_grey"
15
+ id="Path"
16
+ fill="#42D653"
17
+ points="0 350.554688 454.617187 350.554688 454.617188 274.222656 425.945312 312.388672 390.386719 274.222656 360.625 312.388672 324.054688 274.222656 295.980469 312.388672 260.863281 274.222656 227.308594 312.388672 194.144531 274.222656 162.945312 312.388672 128.582031 274.222656 97.9023438 312.388672 62.71875 274.222656 32.515625 312.388672 0 274.222656"
18
+ />
19
+ <rect id="Rectangle" fill="#C9C7CF" x="69.0664062" y="0" width="316" height="194" rx="25" />
20
+ <polygon
21
+ id="Path-2"
22
+ fill="#818181"
23
+ points="279.066406 194 279.066406 274 296.563477 287.825195 314.060547 274.222656 314.060547 194"
24
+ />
25
+ <polygon
26
+ id="Path-2"
27
+ fill="#818181"
28
+ points="147.066406 194 147.066406 274 164.563477 287.825195 182.060547 274.222656 182.060547 194"
29
+ />
30
+ <circle id="Oval" fill="#818181" cx="305.566406" cy="58.5" r="23.5" />
31
+ <circle id="Oval" fill="#818181" cx="305.566406" cy="137.5" r="23.5" />
32
+ <g id="1745699" transform="translate(102.066406, 24.000000)">
33
+ <g
34
+ id="Group"
35
+ transform="translate(72.000000, 72.000000) scale(-1, 1) rotate(-180.000000) translate(-72.000000, -72.000000) translate(0.000000, -0.000000)"
36
+ >
37
+ <circle id="Oval" class="valve_off_grey" fill="#FFFFFF" cx="72" cy="72" r="72" />
38
+ <path
39
+ d="M70.3295331,120.035764 C62.8539631,110.974335 55.3230185,100.245159 50.0347448,91.1466691 C43.32519,79.6021495 39.310532,69.4196238 38.2861021,61.3032521 C37.6862106,56.4945798 38.0092291,52.9089224 39.5043431,48.0631891 C40.6395223,44.3663486 42.3284473,40.8177522 44.5618893,37.4544612 C46.0385451,35.2307977 47.339848,33.6371722 49.2595005,31.700732 C52.1297503,28.8192347 54.5385451,27.0310386 57.805646,25.3725563 C61.3219327,23.575095 64.718241,22.5837117 68.8805646,22.1111832 C70.1634093,21.9629389 73.8273616,21.9629389 75.1563518,22.1111832 C82.927253,22.9635875 89.4891422,26.2249606 95.0912052,32.0064857 C100.250271,37.3247475 104.006515,44.4960623 105.520087,51.8990086 C106.156895,55.0028722 106.156895,58.847957 105.520087,62.7856944 C103.378936,76.0164922 93.4484256,94.6952654 77.795874,114.912073 C75.5808903,117.784305 72.1292074,122 72.0092291,122 C71.9815418,122 71.2155266,121.110535 70.3295331,120.035764 Z"
40
+ id="Path"
41
+ class="valve_off_grey"
42
+ fill="#2D98D3"
43
+ fill-rule="nonzero"
44
+ />
18
45
  </g>
46
+ </g>
19
47
  </g>
20
- </svg>
48
+ </g>
49
+ </svg>
@@ -1,3 +1,53 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 400 400" width="400" height="400"><defs><path d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z" id="a1SO212y0b"></path><path d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z" id="a1cTsMb0e2"></path><path d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z" id="i9aNcnB0x"></path><path d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z" id="aaIulEMu3"></path><path d="M220.09 229.19C220.09 267.48 190.73 298.52 154.51 298.52C118.29 298.52 88.93 267.48 88.93 229.19C88.93 190.9 118.29 159.86 154.51 101.48C190.73 159.86 220.09 190.9 220.09 229.19Z" id="cuk8FB3K"></path></defs><g><g><g><use xlink:href="#a1SO212y0b" opacity="1" fill="#9bcdfa" fill-opacity="1" class="leak_sensor_background"></use></g><g><use xlink:href="#a1cTsMb0e2" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines"></use></g><g><use xlink:href="#i9aNcnB0x" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines"></use></g><g><use xlink:href="#aaIulEMu3" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines"></use></g><g><use xlink:href="#cuk8FB3K" opacity="1" fill="#ffffff" fill-opacity="1" class="leak_sensor_droplet"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 400 400"
9
+ width="400"
10
+ height="400"
11
+ >
12
+ <defs>
13
+ <path
14
+ d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z"
15
+ id="a1SO212y0b"
16
+ />
17
+ <path
18
+ d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z"
19
+ id="a1cTsMb0e2"
20
+ />
21
+ <path
22
+ d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z"
23
+ id="i9aNcnB0x"
24
+ />
25
+ <path
26
+ d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z"
27
+ id="aaIulEMu3"
28
+ />
29
+ <path
30
+ d="M220.09 229.19C220.09 267.48 190.73 298.52 154.51 298.52C118.29 298.52 88.93 267.48 88.93 229.19C88.93 190.9 118.29 159.86 154.51 101.48C190.73 159.86 220.09 190.9 220.09 229.19Z"
31
+ id="cuk8FB3K"
32
+ />
33
+ </defs>
34
+ <g>
35
+ <g>
36
+ <g>
37
+ <use xlink:href="#a1SO212y0b" opacity="1" fill="#9bcdfa" fill-opacity="1" class="leak_sensor_background" />
38
+ </g>
39
+ <g>
40
+ <use xlink:href="#a1cTsMb0e2" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines" />
41
+ </g>
42
+ <g>
43
+ <use xlink:href="#i9aNcnB0x" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines" />
44
+ </g>
45
+ <g>
46
+ <use xlink:href="#aaIulEMu3" opacity="1" fill="#fb0000" fill-opacity="1" class="leak_sensor_trigger_lines" />
47
+ </g>
48
+ <g>
49
+ <use xlink:href="#cuk8FB3K" opacity="1" fill="#ffffff" fill-opacity="1" class="leak_sensor_droplet" />
50
+ </g>
51
+ </g>
52
+ </g>
53
+ </svg>
@@ -1,31 +1,50 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
- <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
- width="140.000000pt" height="140.000000pt" viewBox="0 0 140.000000 140.000000"
6
- preserveAspectRatio="xMidYMid meet">
7
-
8
- <g id="accessoryIcon" transform="translate(0.000000,140.000000) scale(0.100000,-0.100000)"
9
- fill="#000000" stroke="none">
10
- <path d="M656 1354 c-23 -22 -29 -55 -24 -131 3 -54 8 -69 27 -84 31 -26 57
11
- -24 86 6 22 21 25 33 25 102 0 95 -15 123 -65 123 -18 0 -41 -7 -49 -16z"/>
12
- <path d="M243 1190 c-29 -12 -45 -44 -37 -74 3 -14 32 -50 64 -80 64 -61 96
13
- -70 130 -36 35 35 26 66 -37 130 -62 62 -85 74 -120 60z"/>
14
- <path d="M1095 1181 c-47 -28 -115 -108 -115 -134 0 -32 35 -67 67 -67 34 0
15
- 153 116 153 149 0 24 -41 71 -62 71 -7 0 -26 -8 -43 -19z"/>
16
- <path d="M592 1012 c-232 -83 -296 -386 -118 -550 78 -72 118 -87 226 -87 110
1
+ <?xml version="1.0" standalone="no" ?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
3
+ <svg
4
+ version="1.0"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width="140.000000pt"
7
+ height="140.000000pt"
8
+ viewBox="0 0 140.000000 140.000000"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ >
11
+ <g
12
+ id="accessoryIcon"
13
+ transform="translate(0.000000,140.000000) scale(0.100000,-0.100000)"
14
+ fill="#000000"
15
+ stroke="none"
16
+ >
17
+ <path
18
+ d="M656 1354 c-23 -22 -29 -55 -24 -131 3 -54 8 -69 27 -84 31 -26 57
19
+ -24 86 6 22 21 25 33 25 102 0 95 -15 123 -65 123 -18 0 -41 -7 -49 -16z"
20
+ />
21
+ <path
22
+ d="M243 1190 c-29 -12 -45 -44 -37 -74 3 -14 32 -50 64 -80 64 -61 96
23
+ -70 130 -36 35 35 26 66 -37 130 -62 62 -85 74 -120 60z"
24
+ />
25
+ <path
26
+ d="M1095 1181 c-47 -28 -115 -108 -115 -134 0 -32 35 -67 67 -67 34 0
27
+ 153 116 153 149 0 24 -41 71 -62 71 -7 0 -26 -8 -43 -19z"
28
+ />
29
+ <path
30
+ d="M592 1012 c-232 -83 -296 -386 -118 -550 78 -72 118 -87 226 -87 110
17
31
  0 154 17 228 89 65 61 94 126 100 216 5 95 -20 168 -84 239 -88 98 -232 136
18
32
  -352 93z m207 -142 c126 -64 133 -256 12 -336 -94 -62 -232 -30 -280 65 -44
19
- 86 -35 167 27 233 65 69 154 83 241 38z"/>
20
- <path d="M65 759 c-28 -17 -35 -29 -35 -66 0 -48 29 -63 123 -63 69 0 81 3
21
- 102 25 30 29 32 55 6 86 -17 21 -29 24 -98 27 -47 1 -86 -2 -98 -9z"/>
22
- <path d="M1164 758 c-47 -22 -50 -93 -5 -117 32 -17 163 -14 189 5 33 23 28
23
- 93 -8 111 -30 15 -146 16 -176 1z"/>
24
- <path d="M279 373 c-83 -78 -96 -125 -43 -159 35 -24 64 -12 127 55 63 66 71
25
- 95 34 129 -35 33 -62 27 -118 -25z"/>
26
- <path d="M1006 399 c-43 -34 -35 -64 37 -136 71 -70 94 -77 132 -38 39 38 32
27
- 61 -38 132 -69 68 -89 75 -131 42z"/>
28
- <path d="M674 268 c-31 -15 -44 -50 -44 -121 0 -86 15 -111 67 -115 58 -4 73
29
- 20 73 119 0 59 -4 82 -17 97 -23 26 -52 33 -79 20z"/>
30
- </g>
33
+ 86 -35 167 27 233 65 69 154 83 241 38z"
34
+ />
35
+ <path
36
+ d="M65 759 c-28 -17 -35 -29 -35 -66 0 -48 29 -63 123 -63 69 0 81 3
37
+ 102 25 30 29 32 55 6 86 -17 21 -29 24 -98 27 -47 1 -86 -2 -98 -9z"
38
+ />
39
+ <path d="M1164 758 c-47 -22 -50 -93 -5 -117 32 -17 163 -14 189 5 33 23 28
40
+ 93 -8 111 -30 15 -146 16 -176 1z" />
41
+ <path d="M279 373 c-83 -78 -96 -125 -43 -159 35 -24 64 -12 127 55 63 66 71
42
+ 95 34 129 -35 33 -62 27 -118 -25z" />
43
+ <path d="M1006 399 c-43 -34 -35 -64 37 -136 71 -70 94 -77 132 -38 39 38 32
44
+ 61 -38 132 -69 68 -89 75 -131 42z" />
45
+ <path
46
+ d="M674 268 c-31 -15 -44 -50 -44 -121 0 -86 15 -111 67 -115 58 -4 73
47
+ 20 73 119 0 59 -4 82 -17 97 -23 26 -52 33 -79 20z"
48
+ />
49
+ </g>
31
50
  </svg>
@@ -1,14 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
- <title>bulb</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-4.000000, -4.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 4.000000)">
10
- <path d="M8.04893656,20.9879868 C5.56555168,18.7894577 4,15.5775559 4,12 C4,5.372583 9.372583,0 16,0 C22.627417,0 28,5.372583 28,12 C28,15.5351969 26.4713018,18.7133471 24.0388879,20.9094684 C22.8714144,21.9635298 22.3935361,26.314352 21.2275404,29.0298342 C20.2686082,31.263087 18.8677424,32.0416197 16.0327148,31.9748535 C13.2665152,31.9097083 11.7263284,31.2123902 10.7692871,29.0864258 C9.55282281,26.3841811 9.23382169,22.0369601 8.04893656,20.9879868 L8.04893656,20.9879868 Z M6,12 C6,6.4771525 10.4771525,2 16,2 C21.5228475,2 26,6.4771525 26,12 C26,13.4039787 25.7097455,14.7600975 25.1685764,16 L6.83144854,16 C6.29038009,14.7602736 6,13.4041311 6,12 L6,12 Z M10.4462142,21 C10.1610402,20.3571063 9.8320342,19.8954144 9.37465546,19.4904991 C8.55828153,18.7677671 7.87243458,17.9262861 7.33680389,17 L7.33680389,17 L24.66319,17 C24.1437667,17.8981932 23.482983,18.7168207 22.6986172,19.4249906 C22.2402726,19.8388101 21.9047051,20.3213336 21.6043283,21 L10.4462142,21 L10.4462142,21 L10.4462142,21 Z M11.1018052,23 C11.1720882,23.2658547 11.2440709,23.5508756 11.3192464,23.8572605 C11.3437376,23.9570767 11.5960867,25.004759 11.7045027,25.4435106 L11.7045027,25.4435106 L20.8873043,23.1382947 C20.9002539,23.0916455 20.9131357,23.0455506 20.9259569,23 L11.1018052,23 L11.1018052,23 L11.1018052,23 Z M12.5749549,28.2249957 C12.3621958,27.7446626 12.1664961,27.1655223 11.9572719,26.4110846 L11.9572719,26.4110846 L20.5928403,24.2432441 C20.4835056,24.6645271 20.3300954,25.2573517 20.2770527,25.4580134 C20.1911713,25.7829042 20.1100328,26.0797864 20.0319804,26.353012 L12.5749542,28.2249958 L12.5749549,28.2249957 L12.5749549,28.2249957 Z M13.1241608,29.1181532 C13.6755154,29.7210257 14.4995511,29.9381923 16.0798027,29.9754079 C18.1496378,30.0241534 18.7757989,29.6706585 19.3897941,28.2407279 C19.4897734,28.0078865 19.586616,27.7549737 19.6843919,27.4712975 L13.1241608,29.1181532 L13.1241608,29.1181532 L13.1241608,29.1181532 Z M8.49999999,12.0473103 C8,12.0473103 8.02221433,11.3092774 8.06530214,10.9730396 C8.52717694,7.36877756 11.387523,4.51476445 14.9947964,4.06254437 C15.2453908,4.031129 16.0447247,4.00000003 16.0447247,4.50000001 C16.0447247,5 14.9166805,5.08331953 14.9166805,5.08331953 C11.918172,5.5491681 9.5491681,7.91817199 9.08331953,10.9166805 C9.08331953,10.9166805 8.99999997,12.0473103 8.49999999,12.0473103 L8.49999999,12.0473103 Z" sketch:type="MSShapeGroup"></path>
11
- </g>
12
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <svg
3
+ width="32px"
4
+ height="32px"
5
+ viewBox="0 0 32 32"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
+ >
11
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
+ <title>bulb</title>
13
+ <desc>Created with Sketch.</desc>
14
+ <defs />
15
+ <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
+ <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-4.000000, -4.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 4.000000)">
18
+ <path
19
+ d="M8.04893656,20.9879868 C5.56555168,18.7894577 4,15.5775559 4,12 C4,5.372583 9.372583,0 16,0 C22.627417,0 28,5.372583 28,12 C28,15.5351969 26.4713018,18.7133471 24.0388879,20.9094684 C22.8714144,21.9635298 22.3935361,26.314352 21.2275404,29.0298342 C20.2686082,31.263087 18.8677424,32.0416197 16.0327148,31.9748535 C13.2665152,31.9097083 11.7263284,31.2123902 10.7692871,29.0864258 C9.55282281,26.3841811 9.23382169,22.0369601 8.04893656,20.9879868 L8.04893656,20.9879868 Z M6,12 C6,6.4771525 10.4771525,2 16,2 C21.5228475,2 26,6.4771525 26,12 C26,13.4039787 25.7097455,14.7600975 25.1685764,16 L6.83144854,16 C6.29038009,14.7602736 6,13.4041311 6,12 L6,12 Z M10.4462142,21 C10.1610402,20.3571063 9.8320342,19.8954144 9.37465546,19.4904991 C8.55828153,18.7677671 7.87243458,17.9262861 7.33680389,17 L7.33680389,17 L24.66319,17 C24.1437667,17.8981932 23.482983,18.7168207 22.6986172,19.4249906 C22.2402726,19.8388101 21.9047051,20.3213336 21.6043283,21 L10.4462142,21 L10.4462142,21 L10.4462142,21 Z M11.1018052,23 C11.1720882,23.2658547 11.2440709,23.5508756 11.3192464,23.8572605 C11.3437376,23.9570767 11.5960867,25.004759 11.7045027,25.4435106 L11.7045027,25.4435106 L20.8873043,23.1382947 C20.9002539,23.0916455 20.9131357,23.0455506 20.9259569,23 L11.1018052,23 L11.1018052,23 L11.1018052,23 Z M12.5749549,28.2249957 C12.3621958,27.7446626 12.1664961,27.1655223 11.9572719,26.4110846 L11.9572719,26.4110846 L20.5928403,24.2432441 C20.4835056,24.6645271 20.3300954,25.2573517 20.2770527,25.4580134 C20.1911713,25.7829042 20.1100328,26.0797864 20.0319804,26.353012 L12.5749542,28.2249958 L12.5749549,28.2249957 L12.5749549,28.2249957 Z M13.1241608,29.1181532 C13.6755154,29.7210257 14.4995511,29.9381923 16.0798027,29.9754079 C18.1496378,30.0241534 18.7757989,29.6706585 19.3897941,28.2407279 C19.4897734,28.0078865 19.586616,27.7549737 19.6843919,27.4712975 L13.1241608,29.1181532 L13.1241608,29.1181532 L13.1241608,29.1181532 Z M8.49999999,12.0473103 C8,12.0473103 8.02221433,11.3092774 8.06530214,10.9730396 C8.52717694,7.36877756 11.387523,4.51476445 14.9947964,4.06254437 C15.2453908,4.031129 16.0447247,4.00000003 16.0447247,4.50000001 C16.0447247,5 14.9166805,5.08331953 14.9166805,5.08331953 C11.918172,5.5491681 9.5491681,7.91817199 9.08331953,10.9166805 C9.08331953,10.9166805 8.99999997,12.0473103 8.49999999,12.0473103 L8.49999999,12.0473103 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,14 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
- <title>lock a</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -196.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 196.000000)">
10
- <path d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 L6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 L8,19.0058587 Z M11,16 L11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,16 L23,16 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,16 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 L16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 L16,26 Z" sketch:type="MSShapeGroup"></path>
11
- </g>
12
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <svg
3
+ width="32px"
4
+ height="32px"
5
+ viewBox="0 0 32 32"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
+ >
11
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
+ <title>lock a</title>
13
+ <desc>Created with Sketch.</desc>
14
+ <defs />
15
+ <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
+ <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -196.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 196.000000)">
18
+ <path
19
+ d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 L6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 L8,19.0058587 Z M11,16 L11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,16 L23,16 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,16 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 L16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 L16,26 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,14 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
- <title>lock b</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-132.000000, -196.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(132.000000, 196.000000)">
10
- <path d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 Z M11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,10 C21,10 21,11 22,11 C23,11 23,10 23,10 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,6.99706188 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 Z" sketch:type="MSShapeGroup"></path>
11
- </g>
12
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <svg
3
+ width="32px"
4
+ height="32px"
5
+ viewBox="0 0 32 32"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
+ >
11
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
+ <title>lock b</title>
13
+ <desc>Created with Sketch.</desc>
14
+ <defs />
15
+ <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
+ <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-132.000000, -196.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(132.000000, 196.000000)">
18
+ <path
19
+ d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 Z M11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,10 C21,10 21,11 22,11 C23,11 23,10 23,10 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,6.99706188 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,3 +1,101 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 400 400" width="400" height="400"><defs><path d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z" id="afqPxZAZR"></path><path d="M207.9 83.94C207.9 70.36 197.14 59.24 183.98 59.24C170.83 59.24 160.07 70.36 160.07 83.94C160.07 97.53 170.83 108.65 183.98 108.65C197.14 108.65 207.9 97.53 207.9 83.94Z" id="b16HJ82NHZ"></path><path d="M249.29 175.95C227.17 175.95 208.03 163.6 197.27 145.69C196.13 143.72 187.04 127.91 185.91 125.93C181.72 118.52 173.95 114.2 165.58 114.2C162.59 114.2 159.6 114.81 156.61 116.05C152.42 117.82 131.5 126.67 93.83 142.6L93.83 200.66L117.74 200.66L117.74 159.28L138.67 150.02L105.79 324.17L130.9 324.17L151.83 225.36L177.54 250.06L177.54 324.17L201.46 324.17L201.46 230.92L176.94 205.6C181.25 183.36 183.64 171.01 184.12 168.54C199.66 188.3 222.98 200.66 249.29 200.66C249.29 195.72 249.29 178.42 249.29 175.95Z" id="a1UnmkcSuP"></path><path d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z" id="b14FxccCIu"></path><path d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z" id="i1vaie4N2y"></path><path d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z" id="bj13XqHEa"></path><path d="M71.34 174.02C72.77 174.02 73.93 175.18 73.93 176.62C73.93 177.8 73.93 178.75 73.93 179.93C73.93 181.36 72.77 182.52 71.34 182.52C65.07 182.52 48.86 182.52 42.59 182.52C41.16 182.52 40 181.36 40 179.93C40 178.75 40 177.8 40 176.62C40 175.18 41.16 174.02 42.59 174.02C48.86 174.02 65.07 174.02 71.34 174.02Z" id="eCVKwDRev"></path><path d="M85.57 117.94C86.68 117.94 87.59 118.84 87.59 119.95C87.59 121.25 87.59 123.13 87.59 124.43C87.59 125.54 86.68 126.44 85.57 126.44C80.7 126.44 68.11 126.44 63.24 126.44C62.13 126.44 61.23 125.54 61.23 124.43C61.23 123.13 61.23 121.25 61.23 119.95C61.23 118.84 62.13 117.94 63.24 117.94C68.11 117.94 80.7 117.94 85.57 117.94Z" id="a2tK3uBA1H"></path><path d="M98.76 227.88C100.48 227.9 101.84 229.3 101.82 231.02C101.81 232.09 101.81 232.24 101.79 233.32C101.77 235.03 100.36 236.4 98.65 236.37C91.16 236.27 71.78 236.02 64.29 235.92C62.58 235.9 61.21 234.49 61.23 232.78C61.24 231.7 61.25 231.56 61.26 230.48C61.28 228.77 62.69 227.4 64.4 227.42C71.89 227.52 91.27 227.78 98.76 227.88Z" id="a1rSD8K77Y"></path></defs><g><g><g><use xlink:href="#afqPxZAZR" opacity="1" fill="#53d769" fill-opacity="1" class="motion_sensor_background"></use></g><g><use xlink:href="#b16HJ82NHZ" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person"></use><g><use xlink:href="#b16HJ82NHZ" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#a1UnmkcSuP" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person"></use><g><use xlink:href="#a1UnmkcSuP" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#b14FxccCIu" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#i1vaie4N2y" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#bj13XqHEa" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#eCVKwDRev" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></use></g><g><use xlink:href="#a2tK3uBA1H" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></use></g><g><use xlink:href="#a1rSD8K77Y" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 400 400"
9
+ width="400"
10
+ height="400"
11
+ >
12
+ <defs>
13
+ <path
14
+ d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z"
15
+ id="afqPxZAZR"
16
+ />
17
+ <path
18
+ d="M207.9 83.94C207.9 70.36 197.14 59.24 183.98 59.24C170.83 59.24 160.07 70.36 160.07 83.94C160.07 97.53 170.83 108.65 183.98 108.65C197.14 108.65 207.9 97.53 207.9 83.94Z"
19
+ id="b16HJ82NHZ"
20
+ />
21
+ <path
22
+ d="M249.29 175.95C227.17 175.95 208.03 163.6 197.27 145.69C196.13 143.72 187.04 127.91 185.91 125.93C181.72 118.52 173.95 114.2 165.58 114.2C162.59 114.2 159.6 114.81 156.61 116.05C152.42 117.82 131.5 126.67 93.83 142.6L93.83 200.66L117.74 200.66L117.74 159.28L138.67 150.02L105.79 324.17L130.9 324.17L151.83 225.36L177.54 250.06L177.54 324.17L201.46 324.17L201.46 230.92L176.94 205.6C181.25 183.36 183.64 171.01 184.12 168.54C199.66 188.3 222.98 200.66 249.29 200.66C249.29 195.72 249.29 178.42 249.29 175.95Z"
23
+ id="a1UnmkcSuP"
24
+ />
25
+ <path
26
+ d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z"
27
+ id="b14FxccCIu"
28
+ />
29
+ <path
30
+ d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z"
31
+ id="i1vaie4N2y"
32
+ />
33
+ <path
34
+ d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z"
35
+ id="bj13XqHEa"
36
+ />
37
+ <path
38
+ d="M71.34 174.02C72.77 174.02 73.93 175.18 73.93 176.62C73.93 177.8 73.93 178.75 73.93 179.93C73.93 181.36 72.77 182.52 71.34 182.52C65.07 182.52 48.86 182.52 42.59 182.52C41.16 182.52 40 181.36 40 179.93C40 178.75 40 177.8 40 176.62C40 175.18 41.16 174.02 42.59 174.02C48.86 174.02 65.07 174.02 71.34 174.02Z"
39
+ id="eCVKwDRev"
40
+ />
41
+ <path
42
+ d="M85.57 117.94C86.68 117.94 87.59 118.84 87.59 119.95C87.59 121.25 87.59 123.13 87.59 124.43C87.59 125.54 86.68 126.44 85.57 126.44C80.7 126.44 68.11 126.44 63.24 126.44C62.13 126.44 61.23 125.54 61.23 124.43C61.23 123.13 61.23 121.25 61.23 119.95C61.23 118.84 62.13 117.94 63.24 117.94C68.11 117.94 80.7 117.94 85.57 117.94Z"
43
+ id="a2tK3uBA1H"
44
+ />
45
+ <path
46
+ d="M98.76 227.88C100.48 227.9 101.84 229.3 101.82 231.02C101.81 232.09 101.81 232.24 101.79 233.32C101.77 235.03 100.36 236.4 98.65 236.37C91.16 236.27 71.78 236.02 64.29 235.92C62.58 235.9 61.21 234.49 61.23 232.78C61.24 231.7 61.25 231.56 61.26 230.48C61.28 228.77 62.69 227.4 64.4 227.42C71.89 227.52 91.27 227.78 98.76 227.88Z"
47
+ id="a1rSD8K77Y"
48
+ />
49
+ </defs>
50
+ <g>
51
+ <g>
52
+ <g>
53
+ <use xlink:href="#afqPxZAZR" opacity="1" fill="#53d769" fill-opacity="1" class="motion_sensor_background" />
54
+ </g>
55
+ <g>
56
+ <use xlink:href="#b16HJ82NHZ" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person" />
57
+ <g>
58
+ <use
59
+ xlink:href="#b16HJ82NHZ"
60
+ opacity="1"
61
+ fill-opacity="0"
62
+ stroke="#000000"
63
+ stroke-width="1"
64
+ stroke-opacity="0"
65
+ />
66
+ </g>
67
+ </g>
68
+ <g>
69
+ <use xlink:href="#a1UnmkcSuP" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person" />
70
+ <g>
71
+ <use
72
+ xlink:href="#a1UnmkcSuP"
73
+ opacity="1"
74
+ fill-opacity="0"
75
+ stroke="#000000"
76
+ stroke-width="1"
77
+ stroke-opacity="0"
78
+ />
79
+ </g>
80
+ </g>
81
+ <g>
82
+ <use xlink:href="#b14FxccCIu" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
83
+ </g>
84
+ <g>
85
+ <use xlink:href="#i1vaie4N2y" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
86
+ </g>
87
+ <g>
88
+ <use xlink:href="#bj13XqHEa" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
89
+ </g>
90
+ <g>
91
+ <use xlink:href="#eCVKwDRev" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
92
+ </g>
93
+ <g>
94
+ <use xlink:href="#a2tK3uBA1H" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
95
+ </g>
96
+ <g>
97
+ <use xlink:href="#a1rSD8K77Y" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
98
+ </g>
99
+ </g>
100
+ </g>
101
+ </svg>
@@ -1,3 +1,98 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 400 400" width="400" height="400"><defs><path d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z" id="deMotnikS"></path><path d="M190.85 83.94C190.85 70.36 180.09 59.24 166.93 59.24C153.78 59.24 143.02 70.36 143.02 83.94C143.02 97.53 153.78 108.65 166.93 108.65C180.09 108.65 190.85 97.53 190.85 83.94Z" id="ba2xuN6SZ"></path><path d="M232.24 175.95C210.12 175.95 190.98 163.6 180.22 145.69C179.08 143.72 169.99 127.91 168.86 125.93C164.67 118.52 156.9 114.2 148.53 114.2C145.54 114.2 142.55 114.81 139.56 116.05C135.37 117.82 114.45 126.67 76.78 142.6L76.78 200.66L100.69 200.66L100.69 159.28L121.62 150.02L88.73 324.17L113.85 324.17L134.78 225.36L160.49 250.06L160.49 324.17L184.4 324.17L184.4 230.92L159.89 205.6C164.19 183.36 166.59 171.01 167.06 168.54C182.61 188.3 205.93 200.66 232.24 200.66C232.24 195.72 232.24 178.42 232.24 175.95Z" id="dsDC8BEe"></path><path d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z" id="bcTE6Pnht"></path><path d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z" id="b4EBqfvD6i"></path><path d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z" id="bRWtz22R"></path></defs><g><g><g><use xlink:href="#deMotnikS" opacity="1" fill="#fd9500" fill-opacity="1" class="occupancy_sensor_background"></use></g><g><use xlink:href="#ba2xuN6SZ" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person"></use><g><use xlink:href="#ba2xuN6SZ" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#dsDC8BEe" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person"></use><g><use xlink:href="#dsDC8BEe" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#bcTE6Pnht" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></use></g><g><use xlink:href="#b4EBqfvD6i" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></use></g><g><use xlink:href="#bRWtz22R" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 400 400"
9
+ width="400"
10
+ height="400"
11
+ >
12
+ <defs>
13
+ <path
14
+ d="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z"
15
+ id="deMotnikS"
16
+ />
17
+ <path
18
+ d="M190.85 83.94C190.85 70.36 180.09 59.24 166.93 59.24C153.78 59.24 143.02 70.36 143.02 83.94C143.02 97.53 153.78 108.65 166.93 108.65C180.09 108.65 190.85 97.53 190.85 83.94Z"
19
+ id="ba2xuN6SZ"
20
+ />
21
+ <path
22
+ d="M232.24 175.95C210.12 175.95 190.98 163.6 180.22 145.69C179.08 143.72 169.99 127.91 168.86 125.93C164.67 118.52 156.9 114.2 148.53 114.2C145.54 114.2 142.55 114.81 139.56 116.05C135.37 117.82 114.45 126.67 76.78 142.6L76.78 200.66L100.69 200.66L100.69 159.28L121.62 150.02L88.73 324.17L113.85 324.17L134.78 225.36L160.49 250.06L160.49 324.17L184.4 324.17L184.4 230.92L159.89 205.6C164.19 183.36 166.59 171.01 167.06 168.54C182.61 188.3 205.93 200.66 232.24 200.66C232.24 195.72 232.24 178.42 232.24 175.95Z"
23
+ id="dsDC8BEe"
24
+ />
25
+ <path
26
+ d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z"
27
+ id="bcTE6Pnht"
28
+ />
29
+ <path
30
+ d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z"
31
+ id="b4EBqfvD6i"
32
+ />
33
+ <path
34
+ d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z"
35
+ id="bRWtz22R"
36
+ />
37
+ </defs>
38
+ <g>
39
+ <g>
40
+ <g>
41
+ <use xlink:href="#deMotnikS" opacity="1" fill="#fd9500" fill-opacity="1" class="occupancy_sensor_background" />
42
+ </g>
43
+ <g>
44
+ <use xlink:href="#ba2xuN6SZ" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person" />
45
+ <g>
46
+ <use
47
+ xlink:href="#ba2xuN6SZ"
48
+ opacity="1"
49
+ fill-opacity="0"
50
+ stroke="#000000"
51
+ stroke-width="1"
52
+ stroke-opacity="0"
53
+ />
54
+ </g>
55
+ </g>
56
+ <g>
57
+ <use xlink:href="#dsDC8BEe" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person" />
58
+ <g>
59
+ <use
60
+ xlink:href="#dsDC8BEe"
61
+ opacity="1"
62
+ fill-opacity="0"
63
+ stroke="#000000"
64
+ stroke-width="1"
65
+ stroke-opacity="0"
66
+ />
67
+ </g>
68
+ </g>
69
+ <g>
70
+ <use
71
+ xlink:href="#bcTE6Pnht"
72
+ opacity="1"
73
+ fill="#fb0000"
74
+ fill-opacity="1"
75
+ class="occupancy_sensor_trigger_lines"
76
+ />
77
+ </g>
78
+ <g>
79
+ <use
80
+ xlink:href="#b4EBqfvD6i"
81
+ opacity="1"
82
+ fill="#fb0000"
83
+ fill-opacity="1"
84
+ class="occupancy_sensor_trigger_lines"
85
+ />
86
+ </g>
87
+ <g>
88
+ <use
89
+ xlink:href="#bRWtz22R"
90
+ opacity="1"
91
+ fill="#fb0000"
92
+ fill-opacity="1"
93
+ class="occupancy_sensor_trigger_lines"
94
+ />
95
+ </g>
96
+ </g>
97
+ </g>
98
+ </svg>