homebridge-config-ui-x 5.0.0-beta.6 → 5.0.0-beta.61

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 +385 -20
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +34 -144
  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 +2 -2
  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 +4 -6
  22. package/dist/core/config/config.service.js +9 -9
  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 +1 -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.d.ts +1 -0
  39. package/dist/modules/backup/backup.service.js +57 -89
  40. package/dist/modules/backup/backup.service.js.map +1 -1
  41. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  42. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  44. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  45. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  46. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  47. package/dist/modules/config-editor/config-editor.service.js +62 -64
  48. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  51. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  52. package/dist/modules/log/log.gateway.d.ts +2 -1
  53. package/dist/modules/log/log.gateway.js.map +1 -1
  54. package/dist/modules/log/log.service.js +3 -3
  55. package/dist/modules/log/log.service.js.map +1 -1
  56. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  57. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  59. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  61. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  63. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  64. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  65. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  66. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  67. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  69. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  70. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  71. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  72. package/dist/modules/plugins/plugins.controller.js +4 -4
  73. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  74. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  75. package/dist/modules/plugins/plugins.service.js +174 -103
  76. package/dist/modules/plugins/plugins.service.js.map +1 -1
  77. package/dist/modules/server/server.controller.d.ts +22 -2
  78. package/dist/modules/server/server.controller.js +86 -18
  79. package/dist/modules/server/server.controller.js.map +1 -1
  80. package/dist/modules/server/server.service.d.ts +24 -6
  81. package/dist/modules/server/server.service.js +186 -67
  82. package/dist/modules/server/server.service.js.map +1 -1
  83. package/dist/modules/status/status.controller.d.ts +0 -1
  84. package/dist/modules/status/status.controller.js +3 -4
  85. package/dist/modules/status/status.controller.js.map +1 -1
  86. package/dist/modules/status/status.gateway.d.ts +1 -1
  87. package/dist/modules/status/status.service.d.ts +1 -1
  88. package/dist/modules/status/status.service.js +17 -41
  89. package/dist/modules/status/status.service.js.map +1 -1
  90. package/dist/modules/users/users.controller.js +7 -7
  91. package/dist/modules/users/users.controller.js.map +1 -1
  92. package/dist/self-check.js +6 -6
  93. package/dist/self-check.js.map +1 -1
  94. package/package.json +45 -43
  95. package/public/3rdpartylicenses.txt +119 -62
  96. package/public/assets/hap-icons/airpurifier.svg +49 -16
  97. package/public/assets/hap-icons/airquality.svg +24 -13
  98. package/public/assets/hap-icons/co-sensor.svg +72 -0
  99. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  100. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  101. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  102. package/public/assets/hap-icons/door-closed.svg +32 -2
  103. package/public/assets/hap-icons/door-open.svg +48 -2
  104. package/public/assets/hap-icons/fan-off.svg +24 -13
  105. package/public/assets/hap-icons/fan-on.svg +24 -13
  106. package/public/assets/hap-icons/garagedoor.svg +24 -13
  107. package/public/assets/hap-icons/humidity.svg +24 -13
  108. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  109. package/public/assets/hap-icons/leaksensor.svg +52 -2
  110. package/public/assets/hap-icons/light.svg +47 -28
  111. package/public/assets/hap-icons/lightbulb.svg +24 -13
  112. package/public/assets/hap-icons/lock-locked.svg +24 -13
  113. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  114. package/public/assets/hap-icons/motionsensor.svg +100 -2
  115. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  116. package/public/assets/hap-icons/outlet.svg +24 -13
  117. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  118. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  119. package/public/assets/hap-icons/smokesensor.svg +42 -9
  120. package/public/assets/hap-icons/speaker.svg +29 -13
  121. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  122. package/public/assets/hap-icons/switch.svg +24 -13
  123. package/public/assets/hap-icons/television.svg +15 -4
  124. package/public/assets/hap-icons/temperature.svg +24 -13
  125. package/public/assets/hap-icons/unknown.svg +24 -13
  126. package/public/assets/hap-icons/valve-generic.svg +27 -16
  127. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  128. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  129. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  130. package/public/assets/hap-icons/window-closed.svg +85 -2
  131. package/public/assets/hap-icons/window-open.svg +136 -2
  132. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  133. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  134. package/public/assets/homebridge-color-round.svg +36 -1
  135. package/public/assets/homebridge-logo.svg +11 -1
  136. package/public/assets/mask-icon.svg +5 -1
  137. package/public/{chunk-NWD4LL6Q.js → chunk-2GVOK6BI.js} +1 -1
  138. package/public/chunk-2P6JPHXI.js +1 -0
  139. package/public/{chunk-CCUID66K.js → chunk-3NAAMMFZ.js} +1 -1
  140. package/public/chunk-42UKUWDD.js +1 -0
  141. package/public/{chunk-BKUGARB4.js → chunk-44K5XVZH.js} +1 -1
  142. package/public/chunk-4OUX4UQY.js +1 -0
  143. package/public/chunk-4UVD743J.js +1 -0
  144. package/public/chunk-5LBWTKKF.js +1 -0
  145. package/public/chunk-5YIASUJW.js +8 -0
  146. package/public/{chunk-NW6AFAD7.js → chunk-6OMIETCH.js} +1 -1
  147. package/public/chunk-6ZN4TBLM.js +7 -0
  148. package/public/chunk-7EOOXP3I.js +1 -0
  149. package/public/chunk-7NE26EL6.js +1 -0
  150. package/public/{chunk-QE7DO6J3.js → chunk-AFY7IWPI.js} +2 -2
  151. package/public/chunk-B5HKUCMN.js +1 -0
  152. package/public/chunk-BC4ZZQWV.js +1 -0
  153. package/public/chunk-BKSSD45L.js +1 -0
  154. package/public/{chunk-4IKE4OKZ.js → chunk-BQUVVOUW.js} +1 -1
  155. package/public/chunk-C7E6RDLL.js +1 -0
  156. package/public/chunk-CGQPMOSR.js +1 -0
  157. package/public/chunk-CR3VDLLZ.js +1 -0
  158. package/public/{chunk-WNWWUCCZ.js → chunk-CUKPSGYS.js} +1 -1
  159. package/public/{chunk-WHJSVGC7.js → chunk-D33FRRVF.js} +1 -1
  160. package/public/chunk-DBUCH6BG.js +1 -0
  161. package/public/chunk-DS75GNAL.js +1 -0
  162. package/public/chunk-EIHOKU54.js +1 -0
  163. package/public/chunk-FETTFNJ2.js +1 -0
  164. package/public/chunk-FMZZARWY.js +1 -0
  165. package/public/chunk-FUIS42EJ.js +1 -0
  166. package/public/chunk-FYUKPIEK.js +1 -0
  167. package/public/{chunk-6TCHCTXZ.js → chunk-G5LGUOIC.js} +1 -1
  168. package/public/chunk-GDFC3M3E.js +2 -0
  169. package/public/chunk-H27SDDCX.js +1 -0
  170. package/public/chunk-I275JECR.js +1 -0
  171. package/public/chunk-I2KUIMJX.js +6 -0
  172. package/public/{chunk-JZZQRLNW.js → chunk-I6OD3CV4.js} +1 -1
  173. package/public/chunk-ICIZAF7G.js +1 -0
  174. package/public/chunk-IGIZ77E4.js +1 -0
  175. package/public/chunk-K7DJFJZD.js +1 -0
  176. package/public/{chunk-7EUQWCP5.js → chunk-KPW2P5T4.js} +1 -1
  177. package/public/chunk-KYMGPDQN.js +1 -0
  178. package/public/chunk-L3LMIZ4T.js +1 -0
  179. package/public/chunk-LU6OEQYJ.js +1 -0
  180. package/public/chunk-MB2NVLXB.js +1 -0
  181. package/public/chunk-MQZKICE2.js +1 -0
  182. package/public/chunk-N6XRSUIB.js +20 -0
  183. package/public/chunk-NEGHHJIS.js +1 -0
  184. package/public/chunk-NEXSHIYQ.js +5 -0
  185. package/public/chunk-NLNP7SCN.js +1 -0
  186. package/public/chunk-NO7W5YAI.js +1 -0
  187. package/public/chunk-OLDGAQOK.js +1 -0
  188. package/public/chunk-ORBSZVUF.js +1 -0
  189. package/public/chunk-OXOBBTSH.js +1 -0
  190. package/public/chunk-PSHNN4VH.js +1 -0
  191. package/public/{chunk-EA5J2VEJ.js → chunk-QCVDY2FW.js} +1 -1
  192. package/public/{chunk-QXT6R24L.js → chunk-QTDJ54JB.js} +1 -1
  193. package/public/{chunk-3KDOQQBM.js → chunk-R5EOKUDT.js} +2 -2
  194. package/public/chunk-RB6CGL2N.js +1 -0
  195. package/public/chunk-RHUPLSY4.js +1 -0
  196. package/public/chunk-ROUD4I2C.js +1 -0
  197. package/public/chunk-SQG276V4.js +1 -0
  198. package/public/chunk-SYFO7BL7.js +1 -0
  199. package/public/chunk-SZKL6WZ7.js +1 -0
  200. package/public/chunk-TEFE7EK6.js +1 -0
  201. package/public/chunk-TLED5FNX.js +1 -0
  202. package/public/chunk-TPASMSSI.js +23 -0
  203. package/public/chunk-UNATDMH5.js +1 -0
  204. package/public/chunk-UXKQ6PIP.js +32 -0
  205. package/public/chunk-VL3O4ILB.js +1 -0
  206. package/public/chunk-VPQE7WRP.js +1 -0
  207. package/public/chunk-W2INV3O5.js +5 -0
  208. package/public/chunk-X4AOTN7R.js +1 -0
  209. package/public/chunk-XJG5222J.js +14 -0
  210. package/public/chunk-XSS6G7LC.js +1 -0
  211. package/public/chunk-Y6GOOB57.js +1 -0
  212. package/public/chunk-YEVI6ERU.js +1 -0
  213. package/public/chunk-YM3UWZ6I.js +1 -0
  214. package/public/chunk-YRKSTZPV.js +1 -0
  215. package/public/chunk-YZCOAAJB.js +1 -0
  216. package/public/chunk-ZBSCV5KR.js +1 -0
  217. package/public/chunk-ZIXTTJ4W.js +1 -0
  218. package/public/chunk-ZPHQO57O.js +1 -0
  219. package/public/chunk-ZTOLTRNF.js +1 -0
  220. package/public/index.html +2 -2
  221. package/public/main-VCGHYJKU.js +1 -0
  222. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  223. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  224. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  225. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  226. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  227. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  228. package/public/polyfills-JFMQVUE2.js +2 -0
  229. package/public/styles-6IKEC5B4.css +1 -0
  230. package/scripts/upgrade-install-plugin.sh +1 -1
  231. package/public/chunk-2J6XFH3T.js +0 -1
  232. package/public/chunk-2KNNQ3N3.js +0 -1
  233. package/public/chunk-3FKHRKWG.js +0 -1
  234. package/public/chunk-3IX3CLER.js +0 -1
  235. package/public/chunk-3YHN3VHA.js +0 -1
  236. package/public/chunk-4AVEC3ZU.js +0 -1
  237. package/public/chunk-5BHGCTWL.js +0 -5
  238. package/public/chunk-62ADZGBJ.js +0 -6
  239. package/public/chunk-6GHV2TKM.js +0 -1
  240. package/public/chunk-6SC3OCKT.js +0 -8
  241. package/public/chunk-BCHM64F4.js +0 -1
  242. package/public/chunk-BPMSJ2VF.js +0 -1
  243. package/public/chunk-C2ERQ3FX.js +0 -1
  244. package/public/chunk-C6NH5RUO.js +0 -1
  245. package/public/chunk-CUPS2NE5.js +0 -1
  246. package/public/chunk-D6EUS4KM.js +0 -1
  247. package/public/chunk-DNZYDCPW.js +0 -1
  248. package/public/chunk-E3OHYYGW.js +0 -23
  249. package/public/chunk-EMKXES77.js +0 -14
  250. package/public/chunk-G7AVJCRN.js +0 -1
  251. package/public/chunk-HSJSWZHD.js +0 -1
  252. package/public/chunk-HYBTNEG3.js +0 -1
  253. package/public/chunk-J34SI644.js +0 -1
  254. package/public/chunk-JD7YSN6P.js +0 -1
  255. package/public/chunk-JL3HH376.js +0 -1
  256. package/public/chunk-JN46TW24.js +0 -1
  257. package/public/chunk-JPWCYJWM.js +0 -1
  258. package/public/chunk-JQVXXNK7.js +0 -1
  259. package/public/chunk-JW6PX64L.js +0 -1
  260. package/public/chunk-JXEJU7V3.js +0 -1
  261. package/public/chunk-K53Q52AX.js +0 -1
  262. package/public/chunk-KD3Z24TB.js +0 -1
  263. package/public/chunk-KPCZLNW7.js +0 -1
  264. package/public/chunk-KQJ7ONUG.js +0 -1
  265. package/public/chunk-KUOCPYMN.js +0 -1
  266. package/public/chunk-KXMGIDLQ.js +0 -1
  267. package/public/chunk-KZLHFU5K.js +0 -1
  268. package/public/chunk-LJHUPCL3.js +0 -32
  269. package/public/chunk-MTMEA6JC.js +0 -1
  270. package/public/chunk-N5BZ3IQD.js +0 -1
  271. package/public/chunk-N5UE2QRB.js +0 -1
  272. package/public/chunk-NGAJQJ5T.js +0 -1
  273. package/public/chunk-NNATGODS.js +0 -1
  274. package/public/chunk-NZNNTHFQ.js +0 -1
  275. package/public/chunk-ORPWYWCL.js +0 -5
  276. package/public/chunk-OSDZN4BY.js +0 -1
  277. package/public/chunk-PREJ7FYU.js +0 -1
  278. package/public/chunk-QHPDGSZ6.js +0 -1
  279. package/public/chunk-RBHJOIVB.js +0 -1
  280. package/public/chunk-RRHDXAZE.js +0 -1
  281. package/public/chunk-T7MCUROV.js +0 -1
  282. package/public/chunk-TCSXGQNF.js +0 -1
  283. package/public/chunk-TTENUNEO.js +0 -1
  284. package/public/chunk-TXOB7R5K.js +0 -7
  285. package/public/chunk-UEX6RTZJ.js +0 -1
  286. package/public/chunk-UG5DK2RQ.js +0 -2
  287. package/public/chunk-UG6ZOHXY.js +0 -1
  288. package/public/chunk-UN5422JY.js +0 -1
  289. package/public/chunk-VAJZ7KCO.js +0 -1
  290. package/public/chunk-VBCYNIMT.js +0 -1
  291. package/public/chunk-WHJOLAED.js +0 -1
  292. package/public/chunk-WJFAG3CM.js +0 -20
  293. package/public/chunk-YN5SJ37A.js +0 -1
  294. package/public/chunk-YR3ETJZY.js +0 -1
  295. package/public/chunk-YRD5IXFM.js +0 -1
  296. package/public/chunk-Z4A7KLCA.js +0 -1
  297. package/public/chunk-ZT23DWNL.js +0 -1
  298. package/public/main-LYJIIXIC.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,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>
@@ -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>socket i</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(-36.000000, -132.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(36.000000, 132.000000)">
10
- <path d="M0,6.00017566 C0,2.68637015 2.68697795,0 6.00017566,0 L25.9998243,0 C29.3136299,0 32,2.68697795 32,6.00017566 L32,25.9998243 C32,29.3136299 29.3130221,32 25.9998243,32 L6.00017566,32 C2.68637015,32 0,29.3130221 0,25.9998243 L0,6.00017566 L0,6.00017566 Z M2,6.00017566 L2,25.9998243 C2,28.2086938 3.79118088,30 6.00017566,30 L25.9998243,30 C28.2086938,30 30,28.2088191 30,25.9998243 L30,6.00017566 C30,3.7913062 28.2088191,2 25.9998243,2 L6.00017566,2 C3.7913062,2 2,3.79118088 2,6.00017566 L2,6.00017566 Z M4,9.00197269 C4,6.23945945 6.23630996,4 9.00197269,4 L22.9980273,4 C25.7605405,4 28,6.23630996 28,9.00197269 L28,22.9980273 C28,25.7605405 25.76369,28 22.9980273,28 L9.00197269,28 C6.23945945,28 4,25.76369 4,22.9980273 L4,9.00197269 L4,9.00197269 Z M5,9.00197269 L5,22.9980273 C5,25.2102201 6.79055863,27 9.00197269,27 L22.9980273,27 C25.2102201,27 27,25.2094414 27,22.9980273 L27,9.00197269 C27,6.78977986 25.2094414,5 22.9980273,5 L9.00197269,5 C6.78977986,5 5,6.79055863 5,9.00197269 L5,9.00197269 Z M16,25 C11.0294373,25 7,20.9705627 7,16 C7,11.0294373 11.0294373,7 16,7 C20.9705627,7 25,11.0294373 25,16 C25,20.9705627 20.9705627,25 16,25 L16,25 Z M16,24 C20.418278,24 24,20.418278 24,16 C24,11.581722 20.418278,8 16,8 C11.581722,8 8,11.581722 8,16 C8,20.418278 11.581722,24 16,24 L16,24 Z M16,21 C15.4477153,21 15,20.5566468 15,19.9906311 L15,18.0093689 C15,17.4519098 15.4438648,17 16,17 C16.5522847,17 17,17.4433532 17,18.0093689 L17,19.9906311 C17,20.5480902 16.5561352,21 16,21 L16,21 Z M17.2679492,13 C17.5440916,12.5217074 18.1519043,12.3556512 18.6420883,12.638659 L20.3579117,13.6292901 C20.8406854,13.9080197 21.0101184,14.5183728 20.7320508,15 C20.4559084,15.4782926 19.8480957,15.6443488 19.3579117,15.361341 L17.6420883,14.3707099 C17.1593146,14.0919803 16.9898816,13.4816272 17.2679492,13 L17.2679492,13 Z M11.2679492,15 C10.9918068,14.5217074 11.1519043,13.912298 11.6420883,13.6292901 L13.3579117,12.638659 C13.8406854,12.3599295 14.4539832,12.5183728 14.7320508,13 C15.0081932,13.4782926 14.8480957,14.087702 14.3579117,14.3707099 L12.6420883,15.361341 C12.1593146,15.6400705 11.5460168,15.4816272 11.2679492,15 L11.2679492,15 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>socket i</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(-36.000000, -132.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(36.000000, 132.000000)">
18
+ <path
19
+ d="M0,6.00017566 C0,2.68637015 2.68697795,0 6.00017566,0 L25.9998243,0 C29.3136299,0 32,2.68697795 32,6.00017566 L32,25.9998243 C32,29.3136299 29.3130221,32 25.9998243,32 L6.00017566,32 C2.68637015,32 0,29.3130221 0,25.9998243 L0,6.00017566 L0,6.00017566 Z M2,6.00017566 L2,25.9998243 C2,28.2086938 3.79118088,30 6.00017566,30 L25.9998243,30 C28.2086938,30 30,28.2088191 30,25.9998243 L30,6.00017566 C30,3.7913062 28.2088191,2 25.9998243,2 L6.00017566,2 C3.7913062,2 2,3.79118088 2,6.00017566 L2,6.00017566 Z M4,9.00197269 C4,6.23945945 6.23630996,4 9.00197269,4 L22.9980273,4 C25.7605405,4 28,6.23630996 28,9.00197269 L28,22.9980273 C28,25.7605405 25.76369,28 22.9980273,28 L9.00197269,28 C6.23945945,28 4,25.76369 4,22.9980273 L4,9.00197269 L4,9.00197269 Z M5,9.00197269 L5,22.9980273 C5,25.2102201 6.79055863,27 9.00197269,27 L22.9980273,27 C25.2102201,27 27,25.2094414 27,22.9980273 L27,9.00197269 C27,6.78977986 25.2094414,5 22.9980273,5 L9.00197269,5 C6.78977986,5 5,6.79055863 5,9.00197269 L5,9.00197269 Z M16,25 C11.0294373,25 7,20.9705627 7,16 C7,11.0294373 11.0294373,7 16,7 C20.9705627,7 25,11.0294373 25,16 C25,20.9705627 20.9705627,25 16,25 L16,25 Z M16,24 C20.418278,24 24,20.418278 24,16 C24,11.581722 20.418278,8 16,8 C11.581722,8 8,11.581722 8,16 C8,20.418278 11.581722,24 16,24 L16,24 Z M16,21 C15.4477153,21 15,20.5566468 15,19.9906311 L15,18.0093689 C15,17.4519098 15.4438648,17 16,17 C16.5522847,17 17,17.4433532 17,18.0093689 L17,19.9906311 C17,20.5480902 16.5561352,21 16,21 L16,21 Z M17.2679492,13 C17.5440916,12.5217074 18.1519043,12.3556512 18.6420883,12.638659 L20.3579117,13.6292901 C20.8406854,13.9080197 21.0101184,14.5183728 20.7320508,15 C20.4559084,15.4782926 19.8480957,15.6443488 19.3579117,15.361341 L17.6420883,14.3707099 C17.1593146,14.0919803 16.9898816,13.4816272 17.2679492,13 L17.2679492,13 Z M11.2679492,15 C10.9918068,14.5217074 11.1519043,13.912298 11.6420883,13.6292901 L13.3579117,12.638659 C13.8406854,12.3599295 14.4539832,12.5183728 14.7320508,13 C15.0081932,13.4782926 14.8480957,14.087702 14.3579117,14.3707099 L12.6420883,15.361341 C12.1593146,15.6400705 11.5460168,15.4816272 11.2679492,15 L11.2679492,15 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,3 +1,103 @@
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 485 410" width="485" height="410"><defs><path d="M170.94 317.5C157.13 317.5 145.94 328.69 145.94 342.5C145.94 345.83 145.94 362.5 145.94 392.5L467.19 392.5C467.19 362.5 467.19 345.83 467.19 342.5C467.19 328.69 456 317.5 442.19 317.5C433.39 317.5 284.59 317.5 170.94 317.5Z" id="d5qI6nbAnR"></path><path d="M287.66 17.5C251.41 17.5 220.35 43.43 213.88 79.09C211.04 94.98 196.86 174.45 171.34 317.5L416.79 317.5C391.27 174.45 377.1 94.98 374.26 79.09C367.78 43.43 336.71 17.5 300.46 17.5C297.9 17.5 288.94 17.5 287.66 17.5Z" id="djkaoyeRK"></path><path d="M330 105C323.1 105 317.5 110.6 317.5 117.5C317.5 124.4 323.1 130 330 130C336.9 130 342.5 124.4 342.5 117.5C342.5 110.6 336.9 105 330 105Z" id="djWmFz4iV"></path><path d="M307.07 5.22L310.18 5.5L313.26 5.89L316.31 6.38L319.33 6.98L322.31 7.68L325.25 8.48L328.15 9.38L331.01 10.37L333.83 11.46L336.6 12.65L339.32 13.93L342 15.3L344.62 16.76L347.18 18.3L349.69 19.93L352.14 21.64L354.53 23.44L356.85 25.31L359.11 27.27L361.31 29.29L363.43 31.4L365.48 33.57L367.46 35.82L369.36 38.14L371.19 40.52L372.93 42.97L374.6 45.48L376.18 48.06L377.67 50.7L379.07 53.39L380.39 56.14L381.61 58.95L382.73 61.81L383.76 64.72L384.7 67.68L385.53 70.69L386.25 73.75L386.87 76.85L427.57 305L442.5 305L444.04 305.03L445.57 305.12L447.08 305.28L448.57 305.49L450.05 305.76L451.5 306.09L452.93 306.48L454.34 306.91L455.72 307.41L457.08 307.95L458.41 308.55L459.72 309.19L460.99 309.89L462.24 310.63L463.45 311.41L464.63 312.24L465.78 313.12L466.89 314.04L467.97 315L469 316L470 317.03L470.96 318.11L471.88 319.22L472.76 320.37L473.59 321.55L474.37 322.76L475.11 324.01L475.81 325.28L476.45 326.59L477.05 327.92L477.59 329.28L478.09 330.66L478.52 332.07L478.91 333.5L479.24 334.95L479.51 336.43L479.72 337.92L479.88 339.43L479.97 340.96L480 342.5L480 392.5L479.99 393.02L479.96 393.53L479.91 394.03L479.84 394.53L479.75 395.02L479.64 395.5L479.51 395.98L479.36 396.45L479.2 396.91L479.02 397.37L478.82 397.81L478.6 398.24L478.37 398.67L478.13 399.08L477.86 399.49L477.59 399.88L477.3 400.26L476.99 400.63L476.67 400.99L476.34 401.34L475.99 401.67L475.63 401.99L475.26 402.3L474.88 402.59L474.49 402.86L474.08 403.13L473.67 403.37L473.24 403.6L472.81 403.82L472.37 404.02L471.91 404.2L471.45 404.36L470.98 404.51L470.5 404.64L470.02 404.75L469.53 404.84L469.03 404.91L468.53 404.96L468.02 404.99L467.5 405L17.5 405L16.98 404.99L16.47 404.96L15.97 404.91L15.47 404.84L14.98 404.75L14.5 404.64L14.02 404.51L13.55 404.36L13.09 404.2L12.63 404.02L12.19 403.82L11.76 403.6L11.33 403.37L10.92 403.13L10.51 402.86L10.12 402.59L9.74 402.3L9.37 401.99L9.01 401.67L8.66 401.34L8.33 400.99L8.01 400.63L7.7 400.26L7.41 399.88L7.13 399.49L6.87 399.08L6.63 398.67L6.4 398.24L6.18 397.81L5.98 397.37L5.8 396.91L5.64 396.45L5.49 395.98L5.36 395.5L5.25 395.02L5.16 394.53L5.09 394.03L5.04 393.53L5.01 393.02L5 392.5L5 342.5L5.03 340.96L5.12 339.43L5.28 337.92L5.49 336.43L5.76 334.95L6.09 333.5L6.48 332.07L6.91 330.66L7.41 329.28L7.95 327.92L8.55 326.59L9.19 325.28L9.89 324.01L10.63 322.76L11.41 321.55L12.24 320.37L13.12 319.22L14.04 318.11L15 317.03L16 316L17.03 315L18.11 314.04L19.22 313.12L20.37 312.24L21.55 311.41L22.76 310.63L24.01 309.89L25.28 309.19L26.59 308.55L27.92 307.95L29.28 307.41L30.66 306.91L32.07 306.48L33.5 306.09L34.95 305.76L36.43 305.49L37.92 305.28L39.43 305.12L40.96 305.03L42.5 305L57.43 305L98.13 76.89L98.75 73.79L99.48 70.73L100.31 67.72L101.24 64.75L102.27 61.84L103.39 58.98L104.61 56.17L105.93 53.41L107.33 50.72L108.82 48.08L110.4 45.5L112.07 42.99L113.81 40.53L115.63 38.15L117.54 35.83L119.52 33.58L121.57 31.41L123.69 29.3L125.88 27.27L128.14 25.32L130.47 23.44L132.86 21.65L135.31 19.93L137.82 18.3L140.38 16.76L143 15.3L145.67 13.93L148.39 12.65L151.17 11.47L153.98 10.37L156.84 9.38L159.75 8.48L162.69 7.68L165.67 6.98L168.68 6.38L171.73 5.89L174.82 5.5L177.93 5.22L181.06 5.06L184.23 5L300.78 5L303.94 5.06L307.07 5.22ZM41.99 330.01L41.48 330.04L40.97 330.09L40.48 330.16L39.98 330.25L39.5 330.36L39.02 330.49L38.55 330.64L38.09 330.8L37.64 330.98L37.2 331.18L36.76 331.4L36.34 331.63L35.92 331.88L35.52 332.14L35.12 332.41L34.74 332.71L34.37 333.01L34.01 333.33L33.67 333.67L33.33 334.01L33.01 334.37L32.71 334.74L32.41 335.12L32.14 335.52L31.88 335.92L31.63 336.34L31.4 336.76L31.18 337.2L30.98 337.64L30.8 338.09L30.64 338.55L30.49 339.02L30.36 339.5L30.25 339.98L30.16 340.48L30.09 340.97L30.04 341.48L30.01 341.99L30 342.5L30 380L455 380L455 342.5L454.99 341.99L454.96 341.48L454.91 340.97L454.84 340.48L454.75 339.98L454.64 339.5L454.51 339.02L454.36 338.55L454.2 338.09L454.02 337.64L453.82 337.2L453.6 336.76L453.37 336.34L453.12 335.92L452.86 335.52L452.59 335.12L452.29 334.74L451.99 334.37L451.67 334.01L451.33 333.67L450.99 333.33L450.63 333.01L450.26 332.71L449.88 332.41L449.48 332.14L449.08 331.88L448.66 331.63L448.24 331.4L447.8 331.18L447.36 330.98L446.91 330.8L446.45 330.64L445.98 330.49L445.5 330.36L445.02 330.25L444.52 330.16L444.03 330.09L443.52 330.04L443.01 330.01L442.5 330L42.5 330L41.99 330.01ZM182.71 30.03L181.2 30.13L179.68 30.29L178.17 30.51L176.65 30.8L175.13 31.15L173.61 31.57L172.09 32.05L170.57 32.6L169.05 33.21L167.52 33.88L165.99 34.62L164.47 35.42L162.94 36.29L161.41 37.22L159.88 38.21L158.34 39.27L156.81 40.39L155.27 41.58L153.74 42.83L152.2 44.15L150.66 45.52L149.12 46.97L147.58 48.48L146.04 50.05L144.49 51.68L142.95 53.38L141.4 55.15L139.85 56.98L138.3 58.87L136.75 60.82L135.2 62.84L133.65 64.93L132.09 67.08L130.53 69.29L128.98 71.57L127.42 73.91L125.86 76.32L124.3 78.79L122.74 81.32L82.83 305L402.17 305L362.27 81.28L361.83 79.07L361.31 76.89L360.71 74.74L360.05 72.63L359.32 70.55L358.51 68.51L357.64 66.51L356.7 64.54L355.7 62.62L354.63 60.74L353.5 58.9L352.32 57.11L351.07 55.36L349.77 53.66L348.41 52.01L346.99 50.4L345.53 48.85L344.01 47.35L342.45 45.9L340.83 44.5L339.17 43.17L337.46 41.89L335.71 40.66L333.92 39.5L332.09 38.4L330.22 37.35L328.31 36.38L326.37 35.46L324.39 34.62L322.38 33.84L320.33 33.12L318.26 32.48L316.16 31.91L314.03 31.41L311.87 30.99L309.7 30.63L307.5 30.36L305.27 30.16L303.03 30.04L300.78 30L184.23 30L182.71 30.03Z" id="a8tK7qlUXs"></path><path d="M351.96 164.33C350.73 157.53 344.21 153.02 337.43 154.26C330.64 155.5 326.13 162 327.36 168.8C329.2 178.89 343.87 259.64 345.7 269.73C346.94 276.58 353.5 281.03 360.23 279.8C367.03 278.56 371.53 272.06 370.3 265.27C366.63 245.08 353.79 174.42 351.96 164.33Z" id="dFkilpBi1"></path></defs><g><g><g><use xlink:href="#d5qI6nbAnR" opacity="1" fill="#57555c" fill-opacity="1"></use><g><use xlink:href="#d5qI6nbAnR" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#djkaoyeRK" opacity="1" fill="#ed5151" fill-opacity="1"></use><g><use xlink:href="#djkaoyeRK" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#djWmFz4iV" opacity="1" fill="#000000" fill-opacity="1"></use><g><use xlink:href="#djWmFz4iV" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#a8tK7qlUXs" opacity="1" fill="#000000" fill-opacity="1"></use><g><use xlink:href="#a8tK7qlUXs" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#dFkilpBi1" opacity="1" fill="#000000" fill-opacity="1"></use><g><use xlink:href="#dFkilpBi1" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></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 485 410"
9
+ width="485"
10
+ height="410"
11
+ >
12
+ <defs>
13
+ <path
14
+ d="M170.94 317.5C157.13 317.5 145.94 328.69 145.94 342.5C145.94 345.83 145.94 362.5 145.94 392.5L467.19 392.5C467.19 362.5 467.19 345.83 467.19 342.5C467.19 328.69 456 317.5 442.19 317.5C433.39 317.5 284.59 317.5 170.94 317.5Z"
15
+ id="d5qI6nbAnR"
16
+ />
17
+ <path
18
+ d="M287.66 17.5C251.41 17.5 220.35 43.43 213.88 79.09C211.04 94.98 196.86 174.45 171.34 317.5L416.79 317.5C391.27 174.45 377.1 94.98 374.26 79.09C367.78 43.43 336.71 17.5 300.46 17.5C297.9 17.5 288.94 17.5 287.66 17.5Z"
19
+ id="djkaoyeRK"
20
+ />
21
+ <path
22
+ d="M330 105C323.1 105 317.5 110.6 317.5 117.5C317.5 124.4 323.1 130 330 130C336.9 130 342.5 124.4 342.5 117.5C342.5 110.6 336.9 105 330 105Z"
23
+ id="djWmFz4iV"
24
+ />
25
+ <path
26
+ d="M307.07 5.22L310.18 5.5L313.26 5.89L316.31 6.38L319.33 6.98L322.31 7.68L325.25 8.48L328.15 9.38L331.01 10.37L333.83 11.46L336.6 12.65L339.32 13.93L342 15.3L344.62 16.76L347.18 18.3L349.69 19.93L352.14 21.64L354.53 23.44L356.85 25.31L359.11 27.27L361.31 29.29L363.43 31.4L365.48 33.57L367.46 35.82L369.36 38.14L371.19 40.52L372.93 42.97L374.6 45.48L376.18 48.06L377.67 50.7L379.07 53.39L380.39 56.14L381.61 58.95L382.73 61.81L383.76 64.72L384.7 67.68L385.53 70.69L386.25 73.75L386.87 76.85L427.57 305L442.5 305L444.04 305.03L445.57 305.12L447.08 305.28L448.57 305.49L450.05 305.76L451.5 306.09L452.93 306.48L454.34 306.91L455.72 307.41L457.08 307.95L458.41 308.55L459.72 309.19L460.99 309.89L462.24 310.63L463.45 311.41L464.63 312.24L465.78 313.12L466.89 314.04L467.97 315L469 316L470 317.03L470.96 318.11L471.88 319.22L472.76 320.37L473.59 321.55L474.37 322.76L475.11 324.01L475.81 325.28L476.45 326.59L477.05 327.92L477.59 329.28L478.09 330.66L478.52 332.07L478.91 333.5L479.24 334.95L479.51 336.43L479.72 337.92L479.88 339.43L479.97 340.96L480 342.5L480 392.5L479.99 393.02L479.96 393.53L479.91 394.03L479.84 394.53L479.75 395.02L479.64 395.5L479.51 395.98L479.36 396.45L479.2 396.91L479.02 397.37L478.82 397.81L478.6 398.24L478.37 398.67L478.13 399.08L477.86 399.49L477.59 399.88L477.3 400.26L476.99 400.63L476.67 400.99L476.34 401.34L475.99 401.67L475.63 401.99L475.26 402.3L474.88 402.59L474.49 402.86L474.08 403.13L473.67 403.37L473.24 403.6L472.81 403.82L472.37 404.02L471.91 404.2L471.45 404.36L470.98 404.51L470.5 404.64L470.02 404.75L469.53 404.84L469.03 404.91L468.53 404.96L468.02 404.99L467.5 405L17.5 405L16.98 404.99L16.47 404.96L15.97 404.91L15.47 404.84L14.98 404.75L14.5 404.64L14.02 404.51L13.55 404.36L13.09 404.2L12.63 404.02L12.19 403.82L11.76 403.6L11.33 403.37L10.92 403.13L10.51 402.86L10.12 402.59L9.74 402.3L9.37 401.99L9.01 401.67L8.66 401.34L8.33 400.99L8.01 400.63L7.7 400.26L7.41 399.88L7.13 399.49L6.87 399.08L6.63 398.67L6.4 398.24L6.18 397.81L5.98 397.37L5.8 396.91L5.64 396.45L5.49 395.98L5.36 395.5L5.25 395.02L5.16 394.53L5.09 394.03L5.04 393.53L5.01 393.02L5 392.5L5 342.5L5.03 340.96L5.12 339.43L5.28 337.92L5.49 336.43L5.76 334.95L6.09 333.5L6.48 332.07L6.91 330.66L7.41 329.28L7.95 327.92L8.55 326.59L9.19 325.28L9.89 324.01L10.63 322.76L11.41 321.55L12.24 320.37L13.12 319.22L14.04 318.11L15 317.03L16 316L17.03 315L18.11 314.04L19.22 313.12L20.37 312.24L21.55 311.41L22.76 310.63L24.01 309.89L25.28 309.19L26.59 308.55L27.92 307.95L29.28 307.41L30.66 306.91L32.07 306.48L33.5 306.09L34.95 305.76L36.43 305.49L37.92 305.28L39.43 305.12L40.96 305.03L42.5 305L57.43 305L98.13 76.89L98.75 73.79L99.48 70.73L100.31 67.72L101.24 64.75L102.27 61.84L103.39 58.98L104.61 56.17L105.93 53.41L107.33 50.72L108.82 48.08L110.4 45.5L112.07 42.99L113.81 40.53L115.63 38.15L117.54 35.83L119.52 33.58L121.57 31.41L123.69 29.3L125.88 27.27L128.14 25.32L130.47 23.44L132.86 21.65L135.31 19.93L137.82 18.3L140.38 16.76L143 15.3L145.67 13.93L148.39 12.65L151.17 11.47L153.98 10.37L156.84 9.38L159.75 8.48L162.69 7.68L165.67 6.98L168.68 6.38L171.73 5.89L174.82 5.5L177.93 5.22L181.06 5.06L184.23 5L300.78 5L303.94 5.06L307.07 5.22ZM41.99 330.01L41.48 330.04L40.97 330.09L40.48 330.16L39.98 330.25L39.5 330.36L39.02 330.49L38.55 330.64L38.09 330.8L37.64 330.98L37.2 331.18L36.76 331.4L36.34 331.63L35.92 331.88L35.52 332.14L35.12 332.41L34.74 332.71L34.37 333.01L34.01 333.33L33.67 333.67L33.33 334.01L33.01 334.37L32.71 334.74L32.41 335.12L32.14 335.52L31.88 335.92L31.63 336.34L31.4 336.76L31.18 337.2L30.98 337.64L30.8 338.09L30.64 338.55L30.49 339.02L30.36 339.5L30.25 339.98L30.16 340.48L30.09 340.97L30.04 341.48L30.01 341.99L30 342.5L30 380L455 380L455 342.5L454.99 341.99L454.96 341.48L454.91 340.97L454.84 340.48L454.75 339.98L454.64 339.5L454.51 339.02L454.36 338.55L454.2 338.09L454.02 337.64L453.82 337.2L453.6 336.76L453.37 336.34L453.12 335.92L452.86 335.52L452.59 335.12L452.29 334.74L451.99 334.37L451.67 334.01L451.33 333.67L450.99 333.33L450.63 333.01L450.26 332.71L449.88 332.41L449.48 332.14L449.08 331.88L448.66 331.63L448.24 331.4L447.8 331.18L447.36 330.98L446.91 330.8L446.45 330.64L445.98 330.49L445.5 330.36L445.02 330.25L444.52 330.16L444.03 330.09L443.52 330.04L443.01 330.01L442.5 330L42.5 330L41.99 330.01ZM182.71 30.03L181.2 30.13L179.68 30.29L178.17 30.51L176.65 30.8L175.13 31.15L173.61 31.57L172.09 32.05L170.57 32.6L169.05 33.21L167.52 33.88L165.99 34.62L164.47 35.42L162.94 36.29L161.41 37.22L159.88 38.21L158.34 39.27L156.81 40.39L155.27 41.58L153.74 42.83L152.2 44.15L150.66 45.52L149.12 46.97L147.58 48.48L146.04 50.05L144.49 51.68L142.95 53.38L141.4 55.15L139.85 56.98L138.3 58.87L136.75 60.82L135.2 62.84L133.65 64.93L132.09 67.08L130.53 69.29L128.98 71.57L127.42 73.91L125.86 76.32L124.3 78.79L122.74 81.32L82.83 305L402.17 305L362.27 81.28L361.83 79.07L361.31 76.89L360.71 74.74L360.05 72.63L359.32 70.55L358.51 68.51L357.64 66.51L356.7 64.54L355.7 62.62L354.63 60.74L353.5 58.9L352.32 57.11L351.07 55.36L349.77 53.66L348.41 52.01L346.99 50.4L345.53 48.85L344.01 47.35L342.45 45.9L340.83 44.5L339.17 43.17L337.46 41.89L335.71 40.66L333.92 39.5L332.09 38.4L330.22 37.35L328.31 36.38L326.37 35.46L324.39 34.62L322.38 33.84L320.33 33.12L318.26 32.48L316.16 31.91L314.03 31.41L311.87 30.99L309.7 30.63L307.5 30.36L305.27 30.16L303.03 30.04L300.78 30L184.23 30L182.71 30.03Z"
27
+ id="a8tK7qlUXs"
28
+ />
29
+ <path
30
+ d="M351.96 164.33C350.73 157.53 344.21 153.02 337.43 154.26C330.64 155.5 326.13 162 327.36 168.8C329.2 178.89 343.87 259.64 345.7 269.73C346.94 276.58 353.5 281.03 360.23 279.8C367.03 278.56 371.53 272.06 370.3 265.27C366.63 245.08 353.79 174.42 351.96 164.33Z"
31
+ id="dFkilpBi1"
32
+ />
33
+ </defs>
34
+ <g>
35
+ <g>
36
+ <g>
37
+ <use xlink:href="#d5qI6nbAnR" opacity="1" fill="#57555c" fill-opacity="1" />
38
+ <g>
39
+ <use
40
+ xlink:href="#d5qI6nbAnR"
41
+ opacity="1"
42
+ fill-opacity="0"
43
+ stroke="#000000"
44
+ stroke-width="1"
45
+ stroke-opacity="0"
46
+ />
47
+ </g>
48
+ </g>
49
+ <g>
50
+ <use xlink:href="#djkaoyeRK" opacity="1" fill="#ed5151" fill-opacity="1" />
51
+ <g>
52
+ <use
53
+ xlink:href="#djkaoyeRK"
54
+ opacity="1"
55
+ fill-opacity="0"
56
+ stroke="#000000"
57
+ stroke-width="1"
58
+ stroke-opacity="0"
59
+ />
60
+ </g>
61
+ </g>
62
+ <g>
63
+ <use xlink:href="#djWmFz4iV" opacity="1" fill="#000000" fill-opacity="1" />
64
+ <g>
65
+ <use
66
+ xlink:href="#djWmFz4iV"
67
+ opacity="1"
68
+ fill-opacity="0"
69
+ stroke="#000000"
70
+ stroke-width="1"
71
+ stroke-opacity="0"
72
+ />
73
+ </g>
74
+ </g>
75
+ <g>
76
+ <use xlink:href="#a8tK7qlUXs" opacity="1" fill="#000000" fill-opacity="1" />
77
+ <g>
78
+ <use
79
+ xlink:href="#a8tK7qlUXs"
80
+ opacity="1"
81
+ fill-opacity="0"
82
+ stroke="#000000"
83
+ stroke-width="1"
84
+ stroke-opacity="0"
85
+ />
86
+ </g>
87
+ </g>
88
+ <g>
89
+ <use xlink:href="#dFkilpBi1" opacity="1" fill="#000000" fill-opacity="1" />
90
+ <g>
91
+ <use
92
+ xlink:href="#dFkilpBi1"
93
+ opacity="1"
94
+ fill-opacity="0"
95
+ stroke="#000000"
96
+ stroke-width="1"
97
+ stroke-opacity="0"
98
+ />
99
+ </g>
100
+ </g>
101
+ </g>
102
+ </g>
103
+ </svg>