homebridge-config-ui-x 5.0.0-beta.8 → 5.0.0-beta.81
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.
- package/CHANGELOG.md +412 -31
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +35 -145
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +51 -50
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/darwin.js +2 -2
- package/dist/bin/platforms/darwin.js.map +1 -1
- package/dist/bin/platforms/win32.js +4 -2
- package/dist/bin/platforms/win32.js.map +1 -1
- package/dist/bin/standalone.js +1 -0
- package/dist/bin/standalone.js.map +1 -1
- package/dist/core/auth/auth.controller.d.ts +3 -3
- package/dist/core/auth/auth.controller.js.map +1 -1
- package/dist/core/auth/auth.module.js +1 -1
- package/dist/core/auth/auth.module.js.map +1 -1
- package/dist/core/auth/auth.service.js +10 -10
- package/dist/core/auth/auth.service.js.map +1 -1
- package/dist/core/auth/jwt.strategy.d.ts +3 -1
- package/dist/core/config/config.service.d.ts +8 -10
- package/dist/core/config/config.service.js +24 -19
- package/dist/core/config/config.service.js.map +1 -1
- package/dist/core/config/config.startup.js +2 -2
- package/dist/core/config/config.startup.js.map +1 -1
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
- package/dist/index.js +6 -77
- package/dist/index.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/modules/accessories/accessories.controller.js +5 -5
- package/dist/modules/accessories/accessories.controller.js.map +1 -1
- package/dist/modules/accessories/accessories.service.js +8 -7
- package/dist/modules/accessories/accessories.service.js.map +1 -1
- package/dist/modules/backup/backup.controller.js +7 -7
- package/dist/modules/backup/backup.controller.js.map +1 -1
- package/dist/modules/backup/backup.service.js +19 -79
- package/dist/modules/backup/backup.service.js.map +1 -1
- package/dist/modules/child-bridges/child-bridges.service.js +0 -7
- package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
- package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.controller.js +8 -8
- package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
- package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.service.js +62 -64
- package/dist/modules/config-editor/config-editor.service.js.map +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +17 -13
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
- package/dist/modules/log/log.gateway.d.ts +2 -1
- package/dist/modules/log/log.gateway.js.map +1 -1
- package/dist/modules/log/log.service.js +3 -3
- package/dist/modules/log/log.service.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
- package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
- package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
- package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.service.js +2 -2
- package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
- package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
- package/dist/modules/plugins/plugins.controller.js +4 -4
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +4 -1
- package/dist/modules/plugins/plugins.service.js +168 -103
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +28 -3
- package/dist/modules/server/server.controller.js +137 -20
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +27 -6
- package/dist/modules/server/server.service.js +212 -66
- package/dist/modules/server/server.service.js.map +1 -1
- package/dist/modules/status/status.controller.d.ts +0 -1
- package/dist/modules/status/status.controller.js +3 -4
- package/dist/modules/status/status.controller.js.map +1 -1
- package/dist/modules/status/status.gateway.d.ts +1 -1
- package/dist/modules/status/status.service.d.ts +1 -1
- package/dist/modules/status/status.service.js +17 -41
- package/dist/modules/status/status.service.js.map +1 -1
- package/dist/modules/users/users.controller.js +7 -7
- package/dist/modules/users/users.controller.js.map +1 -1
- package/dist/self-check.js +6 -6
- package/dist/self-check.js.map +1 -1
- package/package.json +45 -43
- package/public/3rdpartylicenses.txt +145 -62
- package/public/assets/hap-icons/airpurifier.svg +49 -16
- package/public/assets/hap-icons/airquality.svg +24 -13
- package/public/assets/hap-icons/co-sensor.svg +72 -0
- package/public/assets/hap-icons/co2-sensor.svg +72 -0
- package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
- package/public/assets/hap-icons/contactsensor-open.svg +80 -2
- package/public/assets/hap-icons/door-closed.svg +32 -2
- package/public/assets/hap-icons/door-open.svg +48 -2
- package/public/assets/hap-icons/fan-off.svg +24 -13
- package/public/assets/hap-icons/fan-on.svg +24 -13
- package/public/assets/hap-icons/garagedoor.svg +24 -13
- package/public/assets/hap-icons/humidity.svg +24 -13
- package/public/assets/hap-icons/irrigation-system.svg +47 -18
- package/public/assets/hap-icons/leaksensor.svg +52 -2
- package/public/assets/hap-icons/light.svg +47 -28
- package/public/assets/hap-icons/lightbulb.svg +24 -13
- package/public/assets/hap-icons/lock-locked.svg +24 -13
- package/public/assets/hap-icons/lock-unlocked.svg +24 -13
- package/public/assets/hap-icons/motionsensor.svg +100 -2
- package/public/assets/hap-icons/occupancysensor.svg +97 -2
- package/public/assets/hap-icons/outlet.svg +24 -13
- package/public/assets/hap-icons/securitysystem-active.svg +102 -2
- package/public/assets/hap-icons/securitysystem-off.svg +68 -2
- package/public/assets/hap-icons/smokesensor.svg +42 -9
- package/public/assets/hap-icons/speaker.svg +29 -13
- package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
- package/public/assets/hap-icons/switch.svg +24 -13
- package/public/assets/hap-icons/television.svg +15 -4
- package/public/assets/hap-icons/temperature.svg +24 -13
- package/public/assets/hap-icons/unknown.svg +24 -13
- package/public/assets/hap-icons/valve-generic.svg +27 -16
- package/public/assets/hap-icons/valve-irrigation.svg +37 -21
- package/public/assets/hap-icons/valve-showerhead.svg +52 -0
- package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
- package/public/assets/hap-icons/window-closed.svg +85 -2
- package/public/assets/hap-icons/window-open.svg +136 -2
- package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
- package/public/assets/hap-icons/windowcovering-open.svg +40 -44
- package/public/assets/homebridge-color-round.svg +36 -1
- package/public/assets/homebridge-logo.svg +11 -1
- package/public/assets/mask-icon.svg +5 -1
- package/public/assets/plugin-ui-utils/ui.js +3 -0
- package/public/assets/plugin-ui-utils/ui.js.map +1 -1
- package/public/chunk-2BYFJJKD.js +1 -0
- package/public/chunk-2HBIS5KD.js +14 -0
- package/public/chunk-2O6AXIBR.js +1 -0
- package/public/chunk-2SEP7Q76.js +1 -0
- package/public/chunk-2UZO6OQ7.js +23 -0
- package/public/chunk-3RCQ6L4J.js +6 -0
- package/public/chunk-4SITUFK3.js +1 -0
- package/public/{chunk-YRSHLHYL.js → chunk-4UM5QHY6.js} +1 -1
- package/public/chunk-57WSQ6T6.js +1 -0
- package/public/chunk-62DAT7AX.js +1 -0
- package/public/chunk-67A3U7JY.js +1 -0
- package/public/{chunk-CCUID66K.js → chunk-6US6MXBM.js} +1 -1
- package/public/{chunk-EA5J2VEJ.js → chunk-7VVMNL54.js} +1 -1
- package/public/chunk-7Z74FGCO.js +1 -0
- package/public/chunk-7ZNHDMCE.js +1 -0
- package/public/chunk-A7263J2F.js +1 -0
- package/public/{chunk-QE7DO6J3.js → chunk-ADC7QO6N.js} +2 -2
- package/public/chunk-AU74FUFM.js +1 -0
- package/public/chunk-BI2JONL7.js +1 -0
- package/public/{chunk-7EUQWCP5.js → chunk-BVWBB74Y.js} +2 -2
- package/public/chunk-CIDCYWQD.js +1 -0
- package/public/chunk-COJPC76A.js +1 -0
- package/public/chunk-D6GDUL63.js +5 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-EGECSH4K.js} +3 -3
- package/public/chunk-EON6XHIW.js +20 -0
- package/public/chunk-F2CIREEO.js +1 -0
- package/public/chunk-F75NHZPV.js +1 -0
- package/public/chunk-FD54JRNF.js +1 -0
- package/public/chunk-FQEUOMOT.js +1 -0
- package/public/chunk-GJL2B6EX.js +1 -0
- package/public/{chunk-6TCHCTXZ.js → chunk-GN7IXG4L.js} +1 -1
- package/public/chunk-HI45ZEZU.js +1 -0
- package/public/chunk-HWJ734TY.js +1 -0
- package/public/chunk-I5VNJY5H.js +1 -0
- package/public/chunk-I7XHOSDH.js +1 -0
- package/public/{chunk-D2D564LE.js → chunk-IH7IL35X.js} +1 -1
- package/public/chunk-JIT72ITX.js +1 -0
- package/public/chunk-LBGUEPBU.js +1 -0
- package/public/chunk-LEMXCMWD.js +1 -0
- package/public/chunk-LIG3MQU2.js +1 -0
- package/public/chunk-MCY32ZEQ.js +1 -0
- package/public/{chunk-TSZZQKYF.js → chunk-MVL5EQPC.js} +1 -1
- package/public/chunk-MXAKDDIW.js +1 -0
- package/public/chunk-MZFFFGFF.js +1 -0
- package/public/chunk-OZ3D5PEN.js +1 -0
- package/public/chunk-P6HYOLET.js +1 -0
- package/public/chunk-PAZ5V5TQ.js +7 -0
- package/public/chunk-PDQGIGL6.js +1 -0
- package/public/chunk-PGJGS3YA.js +1 -0
- package/public/chunk-PL6ZMRTL.js +1 -0
- package/public/chunk-QAQ62ONT.js +1 -0
- package/public/chunk-QHRWSZEW.js +1 -0
- package/public/chunk-QOVSP2KD.js +1 -0
- package/public/chunk-QT6YV32Y.js +1 -0
- package/public/chunk-RKG5F4ZV.js +1 -0
- package/public/chunk-RMMQMQZX.js +1 -0
- package/public/chunk-RQA2H3J6.js +1 -0
- package/public/chunk-S2XBNDS5.js +1 -0
- package/public/chunk-SKS24AVF.js +1 -0
- package/public/chunk-SKVHW32E.js +5 -0
- package/public/chunk-TIXTDDTD.js +7 -0
- package/public/chunk-TP425OA6.js +1 -0
- package/public/chunk-TRIO3R5X.js +1 -0
- package/public/chunk-UBLIT2K3.js +1 -0
- package/public/{chunk-TZS4WGUK.js → chunk-UHT54HTE.js} +2 -2
- package/public/chunk-UNO5SD4B.js +1 -0
- package/public/chunk-USOUWLNH.js +2 -0
- package/public/chunk-VL2VV7JU.js +1 -0
- package/public/chunk-VQEPN6H2.js +1 -0
- package/public/chunk-VUKQDY5X.js +1 -0
- package/public/chunk-VUTUDBG5.js +1 -0
- package/public/chunk-VXLVIRES.js +1 -0
- package/public/chunk-W3624K3I.js +1 -0
- package/public/chunk-WCO7YV6E.js +8 -0
- package/public/chunk-XYRZUWP2.js +1 -0
- package/public/chunk-Y4XTCS5Q.js +41 -0
- package/public/chunk-Y5I5EFKZ.js +1 -0
- package/public/chunk-YDBOT4OU.js +1 -0
- package/public/chunk-YHXSTLHD.js +1 -0
- package/public/{chunk-JZZQRLNW.js → chunk-ZA436JJP.js} +1 -1
- package/public/chunk-ZOK6NY4K.js +8 -0
- package/public/chunk-ZVGCGGDU.js +1 -0
- package/public/index.html +2 -2
- package/public/main-N277YXB2.js +1 -0
- package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
- package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
- package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
- package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
- package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
- package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
- package/public/polyfills-4F4B5XMZ.js +2 -0
- package/public/styles-PGYQLREL.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/chunk-32ZJLZS4.js +0 -1
- package/public/chunk-34G5YV5T.js +0 -1
- package/public/chunk-37PRYZH6.js +0 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3NB33IBB.js +0 -1
- package/public/chunk-5ABW4ZKF.js +0 -20
- package/public/chunk-5KSPDTFH.js +0 -1
- package/public/chunk-5OHKMFXO.js +0 -1
- package/public/chunk-656LQTVE.js +0 -14
- package/public/chunk-7T234PWV.js +0 -1
- package/public/chunk-AZC7XCGC.js +0 -1
- package/public/chunk-BKUGARB4.js +0 -7
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-BY2TSVEY.js +0 -1
- package/public/chunk-C7QJOHXE.js +0 -1
- package/public/chunk-CKR46AVL.js +0 -1
- package/public/chunk-DLMGGPRM.js +0 -1
- package/public/chunk-DXZ6DCYP.js +0 -1
- package/public/chunk-EP66JAAV.js +0 -1
- package/public/chunk-FJF4WNUO.js +0 -1
- package/public/chunk-FQYNC4RH.js +0 -1
- package/public/chunk-HHG6WMVF.js +0 -1
- package/public/chunk-HHIHVUCL.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-II2UAWC2.js +0 -6
- package/public/chunk-IMOTYOKQ.js +0 -8
- package/public/chunk-JDQ5PHOU.js +0 -1
- package/public/chunk-KG3DHJZY.js +0 -1
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-LLGTFHIT.js +0 -1
- package/public/chunk-M346UY2G.js +0 -1
- package/public/chunk-MNBUOV7P.js +0 -1
- package/public/chunk-NI664X6I.js +0 -1
- package/public/chunk-NW6AFAD7.js +0 -1
- package/public/chunk-NZNNTHFQ.js +0 -1
- package/public/chunk-ORPWYWCL.js +0 -5
- package/public/chunk-P5FZV27L.js +0 -1
- package/public/chunk-PS4KQKK7.js +0 -1
- package/public/chunk-Q5YFESZW.js +0 -1
- package/public/chunk-QAEUHAL6.js +0 -1
- package/public/chunk-QBDPVXMM.js +0 -1
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-QJYLB6LD.js +0 -1
- package/public/chunk-R2W5BRWY.js +0 -32
- package/public/chunk-RIN5QMTV.js +0 -1
- package/public/chunk-RKC5OBYP.js +0 -1
- package/public/chunk-RT7V3UYQ.js +0 -5
- package/public/chunk-SCR7PUV7.js +0 -1
- package/public/chunk-SOEXENDP.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TH2G22O2.js +0 -23
- package/public/chunk-TMD6JYTR.js +0 -1
- package/public/chunk-TO5O6L7A.js +0 -1
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-UYLV5ENO.js +0 -1
- package/public/chunk-VPSLX47Z.js +0 -1
- package/public/chunk-VVGJ5MFU.js +0 -1
- package/public/chunk-WAUGELUM.js +0 -1
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WHJSVGC7.js +0 -1
- package/public/chunk-WXTR3AXD.js +0 -1
- package/public/chunk-X2AWRY46.js +0 -1
- package/public/chunk-X3GZMTJ5.js +0 -1
- package/public/chunk-X7YNKLZW.js +0 -1
- package/public/chunk-XRPL3VU7.js +0 -1
- package/public/chunk-Y3RRGTUL.js +0 -1
- package/public/chunk-YD5MPMXA.js +0 -1
- package/public/chunk-YJB6Y76M.js +0 -1
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/main-35ZSDHG6.js +0 -1
- package/public/media/01-RQ3S2L53.png +0 -0
- package/public/media/02-VNCG2I2A.png +0 -0
- package/public/media/03-HI42L4ZG.png +0 -0
- package/public/media/04-FJLL55LZ.png +0 -0
- package/public/media/05-V3EO6SPT.png +0 -0
- package/public/media/06-EOJZCQZN.png +0 -0
- package/public/media/07-KMKB5PBD.png +0 -0
- package/public/media/08-UQJRF6B2.png +0 -0
- package/public/media/09-2DJQFRHH.png +0 -0
- package/public/media/arrow_left-CQT7FZM7.svg +0 -4
- package/public/media/arrow_right-SBUDRR2G.svg +0 -4
- package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
- package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
- package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
- package/public/polyfills-C6JHVXJJ.js +0 -2
- package/public/scripts-6GVLYD7F.js +0 -62
- package/public/styles-EG5MFQEM.css +0 -1
- /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
|
@@ -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
|
|
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>
|
|
@@ -1,3 +1,69 @@
|
|
|
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
|
|
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="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"
|
|
15
|
+
id="b5PcGz8Oui"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
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"
|
|
19
|
+
id="g46Yzj7c3t"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
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"
|
|
23
|
+
id="a2R33A9W1s"
|
|
24
|
+
/>
|
|
25
|
+
</defs>
|
|
26
|
+
<g>
|
|
27
|
+
<g>
|
|
28
|
+
<g>
|
|
29
|
+
<use xlink:href="#b5PcGz8Oui" opacity="1" fill="#7f7f7f" fill-opacity="1" />
|
|
30
|
+
<g>
|
|
31
|
+
<use
|
|
32
|
+
xlink:href="#b5PcGz8Oui"
|
|
33
|
+
opacity="1"
|
|
34
|
+
fill-opacity="0"
|
|
35
|
+
stroke="#000000"
|
|
36
|
+
stroke-width="1"
|
|
37
|
+
stroke-opacity="0"
|
|
38
|
+
/>
|
|
39
|
+
</g>
|
|
40
|
+
</g>
|
|
41
|
+
<g>
|
|
42
|
+
<use xlink:href="#g46Yzj7c3t" opacity="1" fill="#7f7f7f" fill-opacity="1" />
|
|
43
|
+
<g>
|
|
44
|
+
<use
|
|
45
|
+
xlink:href="#g46Yzj7c3t"
|
|
46
|
+
opacity="1"
|
|
47
|
+
fill-opacity="0"
|
|
48
|
+
stroke="#000000"
|
|
49
|
+
stroke-width="1"
|
|
50
|
+
stroke-opacity="0"
|
|
51
|
+
/>
|
|
52
|
+
</g>
|
|
53
|
+
</g>
|
|
54
|
+
<g>
|
|
55
|
+
<use xlink:href="#a2R33A9W1s" opacity="1" fill="#7f7f7f" fill-opacity="1" />
|
|
56
|
+
<g>
|
|
57
|
+
<use
|
|
58
|
+
xlink:href="#a2R33A9W1s"
|
|
59
|
+
opacity="1"
|
|
60
|
+
fill-opacity="0"
|
|
61
|
+
stroke="#000000"
|
|
62
|
+
stroke-width="1"
|
|
63
|
+
stroke-opacity="0"
|
|
64
|
+
/>
|
|
65
|
+
</g>
|
|
66
|
+
</g>
|
|
67
|
+
</g>
|
|
68
|
+
</g>
|
|
69
|
+
</svg>
|
|
@@ -1,13 +1,46 @@
|
|
|
1
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
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
version="1.1"
|
|
7
|
+
width="500"
|
|
8
|
+
height="500"
|
|
9
|
+
viewBox="0 0 500 500"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
4
12
|
<desc>Created with Fabric.js 4.6.0</desc>
|
|
5
|
-
<defs
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
<defs />
|
|
14
|
+
<g
|
|
15
|
+
transform="matrix(1 0 0 1 250 125)"
|
|
16
|
+
id="Ly0Zljdh6uDT129kqPq2c"
|
|
17
|
+
opacity="1"
|
|
18
|
+
fill="#fc861d"
|
|
19
|
+
fill-opacity="1"
|
|
20
|
+
class="smoke_sensor_box"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
style="stroke: rgb(183,90,243); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill-rule: nonzero; opacity: 1;"
|
|
24
|
+
vector-effect="non-scaling-stroke"
|
|
25
|
+
transform=" translate(-222.5, -100)"
|
|
26
|
+
d="M 0 0 L 445 0 L 445 124.6137 L 402.96864 124.6137 L 350.9804 200 L 88.48046 200 L 36.492219999999996 124.6137 L 0.0011099999999970578 124.6137 z M 94.73049 185.04636 L 149.73026 185.04636 L 149.73026 130.21633 L 94.73048999999999 130.21633 z M 289.72949 184.04945 L 343.72913 184.04945 L 343.72913 130.21633 L 289.72949 130.21633 z M 224.72945 185.04636 L 279.72922 185.04636 L 279.72922 130.21633 L 224.72944999999999 130.21633 z M 159.73052 185.04636 L 214.73029000000002 185.04636 L 214.73029000000002 130.21633 L 159.73052 130.21633 z"
|
|
27
|
+
stroke-linecap="round"
|
|
28
|
+
/>
|
|
29
|
+
</g>
|
|
30
|
+
<g
|
|
31
|
+
transform="matrix(1 0 0 1 249.09 329.19)"
|
|
32
|
+
id="1bkxD90ICefRta9rtUGNo"
|
|
33
|
+
opacity="1"
|
|
34
|
+
fill="#fb0000"
|
|
35
|
+
fill-opacity="1"
|
|
36
|
+
class="smoke_sensor_trigger_lines"
|
|
37
|
+
>
|
|
38
|
+
<path
|
|
39
|
+
style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill-rule: nonzero; opacity: 1;"
|
|
40
|
+
vector-effect="non-scaling-stroke"
|
|
41
|
+
transform=" translate(-155.85, -60.81)"
|
|
42
|
+
d="M 171.76478 114.74011 C 171.76478 118.53511 167.28498 121.61471 161.76478 121.61471 C 156.24458 121.61471 151.76478 118.53511 151.76478 114.74011 C 151.76478 98.11741 151.76478 55.11191 151.76478 38.48931 C 151.76478 34.69431 156.24458 31.614710000000002 161.76478 31.614710000000002 C 167.28498 31.614710000000002 171.76478 34.69431 171.76478 38.48931 C 171.76478 55.11201 171.76478 98.11751000000001 171.76478 114.74011 z M 16.50458 73.14822 C 14.0652 76.05536 8.653950000000002 75.53491 4.425230000000001 71.98658999999999 C 0.19651000000000085 68.43826999999999 -1.2556899999999995 63.19959999999999 1.1836900000000008 60.29245999999999 C 11.86856 47.55872999999999 39.51196 14.614609999999992 50.19676 1.8809599999999946 C 52.63614 -1.0261800000000054 58.04739 -0.5057300000000056 62.276109999999996 3.0425899999999944 C 66.50483 6.590909999999994 67.95703 11.829579999999993 65.51764999999999 14.736719999999995 C 54.832779999999985 27.470449999999992 27.189379999999986 60.41457 16.50457999999999 73.14822 z M 246.18369 14.73671 C 243.74431 11.82957 245.19651000000002 6.5908999999999995 249.42523 3.042580000000001 C 253.65395 -0.505739999999999 259.0652 -1.0261899999999988 261.50458 1.880950000000001 C 272.18944999999997 14.61468 299.83285 47.5588 310.51765 60.292449999999995 C 312.95703000000003 63.19958999999999 311.50483 68.43826 307.27611 71.98657999999999 C 303.04739 75.5349 297.63614 76.05534999999999 295.19676000000004 73.14820999999999 C 284.51189000000005 60.41447999999999 256.86849000000007 27.470359999999992 246.18369000000004 14.736709999999995 z"
|
|
43
|
+
stroke-linecap="round"
|
|
44
|
+
/>
|
|
45
|
+
</g>
|
|
13
46
|
</svg>
|
|
@@ -1,15 +1,31 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
+
<!-- Created with Method Draw, but modified - http://github.com/duopixel/Method-Draw/ -->
|
|
12
|
+
<g>
|
|
13
|
+
<title>background</title>
|
|
14
|
+
<rect fill="none" id="canvas_background" height="34" width="34" y="-1" x="-1" />
|
|
15
|
+
<g display="none" overflow="visible" y="0" x="0" height="100%" width="100%" id="canvasGrid">
|
|
16
|
+
<rect fill="url(#gridpattern)" stroke-width="0" y="0" x="0" height="100%" width="100%" />
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
<g>
|
|
20
|
+
<title>speaker</title>
|
|
21
|
+
<path
|
|
22
|
+
stroke="#7F7F7F"
|
|
23
|
+
id="svg_12"
|
|
24
|
+
d="m2.63366,10.44981l0,11.04296l6.25803,0l8.3897,7.72829l0,-26.49955l-8.38553,7.7283l-6.26221,0zm19.22659,12.09743c1.7013,-1.70615 2.7538,-4.07114 2.75518,-6.67943c0.00138,-2.60829 -1.05806,-4.98158 -2.75796,-6.68786m3.20067,16.57845c2.51718,-2.53001 4.07787,-6.03471 4.07506,-9.89195c0.00141,-3.86001 -1.55925,-7.3675 -4.08062,-9.8947"
|
|
25
|
+
fill-opacity="null"
|
|
26
|
+
stroke-opacity="null"
|
|
27
|
+
stroke-width="2.0"
|
|
28
|
+
fill="none"
|
|
29
|
+
/>
|
|
9
30
|
</g>
|
|
10
|
-
</g>
|
|
11
|
-
<g>
|
|
12
|
-
<title>speaker</title>
|
|
13
|
-
<path stroke="#7F7F7F" id="svg_12" d="m2.63366,10.44981l0,11.04296l6.25803,0l8.3897,7.72829l0,-26.49955l-8.38553,7.7283l-6.26221,0zm19.22659,12.09743c1.7013,-1.70615 2.7538,-4.07114 2.75518,-6.67943c0.00138,-2.60829 -1.05806,-4.98158 -2.75796,-6.68786m3.20067,16.57845c2.51718,-2.53001 4.07787,-6.03471 4.07506,-9.89195c0.00141,-3.86001 -1.55925,-7.3675 -4.08062,-9.8947" fill-opacity="null" stroke-opacity="null" stroke-width="2.0" fill="none"/>
|
|
14
|
-
</g>
|
|
15
31
|
</svg>
|
|
@@ -1,3 +1,52 @@
|
|
|
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
|
|
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 640 640"
|
|
9
|
+
width="640"
|
|
10
|
+
height="640"
|
|
11
|
+
>
|
|
12
|
+
<defs>
|
|
13
|
+
<path
|
|
14
|
+
d="M636.07 262.6C636.07 298.02 494.86 326.73 320.67 326.73M636.07 262.6C636.07 262.6 636.07 262.6 636.07 262.6C636.07 298.02 494.86 326.73 320.67 326.73C146.48 326.73 5.27 298.02 5.27 262.6M5.27 262.6C5.27 227.17 146.48 198.46 320.67 198.46C494.86 198.46 636.07 227.17 636.07 262.6C636.07 288.25 636.07 493.49 636.07 519.15C636.07 554.57 494.86 583.29 320.67 583.29C146.48 583.29 5.27 554.57 5.27 519.15C5.27 502.04 5.27 416.53 5.27 262.6C5.27 262.6 5.27 262.6 5.27 262.6Z"
|
|
15
|
+
id="basSqSntZ"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M562.76 61.71C562.8 83.43 454.38 101.43 320.59 101.92M562.76 61.71C562.76 61.71 562.76 61.71 562.76 61.71C562.8 83.43 454.38 101.43 320.59 101.92C186.81 102.41 78.32 85.2 78.28 63.48M78.28 63.48C78.23 41.76 186.66 23.75 320.44 23.26C454.23 22.78 562.72 39.99 562.76 61.71C562.79 77.44 563.03 203.29 563.06 219.02C563.1 240.74 454.68 258.75 320.89 259.24C187.11 259.72 78.62 242.51 78.58 220.79C78.56 210.3 78.46 157.86 78.28 63.48C78.28 63.48 78.28 63.48 78.28 63.48Z"
|
|
19
|
+
id="a1rT1gayZh"
|
|
20
|
+
/>
|
|
21
|
+
</defs>
|
|
22
|
+
<g>
|
|
23
|
+
<g>
|
|
24
|
+
<g>
|
|
25
|
+
<use xlink:href="#basSqSntZ" opacity="1" fill="#919191" fill-opacity="1" />
|
|
26
|
+
<g>
|
|
27
|
+
<use
|
|
28
|
+
xlink:href="#basSqSntZ"
|
|
29
|
+
opacity="1"
|
|
30
|
+
fill-opacity="0"
|
|
31
|
+
stroke="#919191"
|
|
32
|
+
stroke-width="2"
|
|
33
|
+
stroke-opacity="1"
|
|
34
|
+
/>
|
|
35
|
+
</g>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
<use xlink:href="#a1rT1gayZh" opacity="1" fill="#666666" fill-opacity="1" />
|
|
39
|
+
<g>
|
|
40
|
+
<use
|
|
41
|
+
xlink:href="#a1rT1gayZh"
|
|
42
|
+
opacity="1"
|
|
43
|
+
fill-opacity="0"
|
|
44
|
+
stroke="#666666"
|
|
45
|
+
stroke-width="2"
|
|
46
|
+
stroke-opacity="1"
|
|
47
|
+
/>
|
|
48
|
+
</g>
|
|
49
|
+
</g>
|
|
50
|
+
</g>
|
|
51
|
+
</g>
|
|
52
|
+
</svg>
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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>power button</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, -132.000000)" fill="#000000">
|
|
17
|
+
<g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 132.000000)">
|
|
18
|
+
<path
|
|
19
|
+
d="M16,32 C24.836556,32 32,24.836556 32,16 C32,7.163444 24.836556,0 16,0 C7.163444,0 0,7.163444 0,16 C0,24.836556 7.163444,32 16,32 Z M16,30 C8.2680135,30 2,23.7319865 2,16 C2,8.2680135 8.2680135,2 16,2 C23.7319865,2 30,8.2680135 30,16 C30,23.7319865 23.7319865,30 16,30 Z M15,7.99754465 C15,7.44661595 15.4438648,7 16,7 C16.5522847,7 17,7.4463114 17,7.99754465 L17,15.0024554 C17,15.553384 16.5561352,16 16,16 C15.4477153,16 15,15.5536886 15,15.0024554 L15,7.99754465 Z M21.4589329,9.49999998 C21,9.97698687 21.1735519,10.8351 21.4589326,11.2029426 C22.4505994,12.4811551 23,14.065977 23,15.7447101 C23,19.7640218 19.8532802,23 16,23 C12.1467198,23 9,19.7640218 9,15.7447101 C9,14.0415493 9.56560927,12.4352187 10.5838497,11.1483389 C10.8725653,10.7834523 11,9.9670534 10.5,9.49999999 C10,9.03294657 9.01543812,9.9073372 9.01543812,9.9073372 C7.75536735,11.4998488 7,13.5315645 7,15.7447101 C7,20.8562656 11.0294373,25 16,25 C20.9705627,25 25,20.8562656 25,15.7447101 C25,13.5637007 24.2664101,11.5588905 23.0391328,9.97698685 C23.0391328,9.97698685 21.9178658,9.0230131 21.4589329,9.49999998 Z"
|
|
20
|
+
sketch:type="MSShapeGroup"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
13
23
|
</g>
|
|
14
|
-
</
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
version="1.1"
|
|
7
|
+
width="24"
|
|
8
|
+
height="24"
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
id="accessoryIcon"
|
|
13
|
+
fill="#666666"
|
|
14
|
+
d="M21,17H3V5H21M21,3H3A2,2 0 0,0 1,5V17A2,2 0 0,0 3,19H8V21H16V19H21A2,2 0 0,0 23,17V5A2,2 0 0,0 21,3Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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>temperature</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(-68.000000, -4.000000)" fill="#000000">
|
|
17
|
+
<g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(68.000000, 4.000000)">
|
|
18
|
+
<path
|
|
19
|
+
d="M10,11.7789307 C6.98979073,13.7416318 5,17.1384457 5,21 C5,27.0751322 9.92486775,32 16,32 C22.0751322,32 27,27.0751322 27,21 C27,17.1384457 25.0102093,13.7416318 22,11.7789307 L22,5.99867589 C22,2.68193801 19.3137085,0 16,0 C12.6930342,0 10,2.68569868 10,5.99867589 L10,11.7789307 L10,11.7789307 L10,11.7789307 Z M20,12.9355196 C22.963437,14.4082222 25,17.4662787 25,21 C25,25.9705627 20.9705627,30 16,30 C11.0294373,30 7,25.9705627 7,21 C7,17.4662787 9.03656304,14.4082222 12,12.9355196 L12,5.99867589 C12,3.79304107 13.794829,2 16,2 C18.2107313,2 20,3.78809918 20,5.99867589 L20,12.9355196 L20,12.9355196 L20,12.9355196 Z M14,13.7898787 C11.1085111,14.6504279 9,17.3289794 9,20.5 C9,24.3659932 12.1340068,27.5 16,27.5 C19.8659932,27.5 23,24.3659932 23,20.5 C23,17.3289794 20.8914889,14.6504279 18,13.7898787 L18,6.00585866 C18,4.89706013 17.1045695,4 16,4 C14.8877296,4 14,4.89805351 14,6.00585866 L14,13.7898787 L14,13.7898787 L14,13.7898787 Z M17,14.5829584 C19.8377133,15.0590365 22,17.5270037 22,20.5 C22,23.8137085 19.3137085,26.5 16,26.5 C12.6862915,26.5 10,23.8137085 10,20.5 C10,17.5270037 12.1622867,15.0590365 15,14.5829584 L15,6.00585866 C15,5.44641661 15.4439289,5 16,5 C16.5520479,5 17,5.44911059 17,6.00585866 L17,14.5829584 L17,14.5829584 L17,14.5829584 Z M17,24 C17,24.5 16,24.5 16,24.5 C13.790861,24.5 12,22.709139 12,20.5 C12,20.5 12,19.5 12.5,19.5 C13,19.5 13,20.1277791 13,20.5 C13,21.5 14.5,23.5 16,23.5 C16.7077999,23.5 17,23.5 17,24 L17,24 Z"
|
|
20
|
+
sketch:type="MSShapeGroup"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
13
23
|
</g>
|
|
14
|
-
</
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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>power</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, -36.000000)" fill="#000000">
|
|
17
|
+
<g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 36.000000)">
|
|
18
|
+
<path
|
|
19
|
+
d="M16,32 C24.836556,32 32,24.836556 32,16 C32,7.163444 24.836556,0 16,0 C7.163444,0 0,7.163444 0,16 C0,24.836556 7.163444,32 16,32 L16,32 Z M16,30 C8.2680135,30 2,23.7319865 2,16 C2,8.2680135 8.2680135,2 16,2 C23.7319865,2 30,8.2680135 30,16 C30,23.7319865 23.7319865,30 16,30 L16,30 Z M12.2575393,17.7112593 L12.1868707,17.7112593 C11.0779698,17.7112593 10.6478221,16.9467914 11.2212184,16.0037726 L16.4805582,7.35415962 C17.67876,5.38357359 18.0624739,5.55948915 17.3376772,7.746963 L15.7252918,12.6132252 C15.3772095,13.6637556 15.9942825,14.5048291 17.0992511,14.5048291 L20.1977772,14.5048291 L20.1846183,14.5177121 L20.2552868,14.5177121 C21.3641878,14.5177121 21.7943355,15.2821799 21.2209392,16.2251988 L16.1844844,24.5082506 C14.864477,26.6791606 14.4411534,26.4839632 15.241777,24.0676402 L16.7168658,19.6157462 C17.0649481,18.5652158 16.447875,17.7241422 15.3429064,17.7241422 L12.2443804,17.7241422 L12.2575393,17.7112593 L12.2575393,17.7112593 Z"
|
|
20
|
+
sketch:type="MSShapeGroup"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
13
23
|
</g>
|
|
14
|
-
</
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -1,17 +1,28 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
+
<svg
|
|
3
|
+
width="111px"
|
|
4
|
+
height="117px"
|
|
5
|
+
viewBox="0 0 111 117"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
9
|
+
>
|
|
10
|
+
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
|
|
11
|
+
<title>Water-tap-01</title>
|
|
12
|
+
<desc>Created with Sketch.</desc>
|
|
13
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
14
|
+
<g id="Water-tap-01" fill-rule="nonzero">
|
|
15
|
+
<path
|
|
16
|
+
d="M72.6672694,67 L95,67 L95,44.6666667 C95,32.2974359 85.0361664,22.3333333 72.6672694,22.3333333 L50.3345389,22.3333333 L50.3345389,11.1666667 L67.1699819,11.1666667 L67.1699819,0 L22.5045208,0 L22.5045208,11.1666667 L39.3399638,11.1666667 L39.3399638,22.3333333 L0,22.3333333 L0,44.6666667 L72.6672694,44.6666667 L72.6672694,67 Z"
|
|
17
|
+
id="XMLID_3_"
|
|
18
|
+
fill="#808080"
|
|
19
|
+
/>
|
|
20
|
+
<circle id="XMLID_4_" class="valve_off_hidden" fill="#2D98D3" cx="83.5" cy="84.5" r="5.5" />
|
|
21
|
+
<circle id="XMLID_5_" class="valve_off_hidden" fill="#2D98D3" cx="72.5" cy="98.5" r="5.5" />
|
|
22
|
+
<circle id="XMLID_6_" class="valve_off_hidden" fill="#2D98D3" cx="94.5" cy="98.5" r="5.5" />
|
|
23
|
+
<circle id="XMLID_7_" class="valve_off_hidden" fill="#2D98D3" cx="83.5" cy="111.5" r="5.5" />
|
|
24
|
+
<circle id="XMLID_8_" class="valve_off_hidden" fill="#2D98D3" cx="61.5" cy="111.5" r="5.5" />
|
|
25
|
+
<circle id="XMLID_9_" class="valve_off_hidden" fill="#2D98D3" cx="105.5" cy="111.5" r="5.5" />
|
|
16
26
|
</g>
|
|
17
|
-
</
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|